diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 0000000..5f7f3c4 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,3 @@ +# .coveragerc to control coverage.py +[run] +branch = True diff --git a/.gitignore b/.gitignore index 894a44c..e173534 100644 --- a/.gitignore +++ b/.gitignore @@ -102,3 +102,6 @@ venv.bak/ # mypy .mypy_cache/ + +# other +.vscode/ diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..4ec9a02 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +language: python +dist: xenial +sudo: true +install: + - sudo add-apt-repository -y ppa:deadsnakes/ppa + - sudo apt-get update + - sudo apt-get install -y python$TRAVIS_PYTHON_VERSION-dev python$TRAVIS_PYTHON_VERSION-tk + - pip install -r requirements-dev.txt +matrix: + include: + - name: '3.6' + python: 3.6 + - name: '3.7' + python: 3.7 +script: tox +after_success: if [ "${TRAVIS_PYTHON_VERSION}" == "3.7" ]; then coveralls; fi; \ No newline at end of file diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..021509c --- /dev/null +++ b/CHANGELOG @@ -0,0 +1,30 @@ +0.2.0 +----- + + - Support for tuples (ABIEncoderV2) + - Update dependency versions + - Require python 3.6 + - Added get_log_topic + +0.1.4 +----- + + - Properly handle arrays in events + - Verbose exceptions + +0.1.2 +----- + + - Added decode_logs + - Added decode_trace + +0.1.1 +----- + + - Added get_event_abi + - cleaned up the project structure + +0.1.0 +----- + + - Initial alpha release \ No newline at end of file diff --git a/README.md b/README.md index 3f97189..21ecde4 100644 --- a/README.md +++ b/README.md @@ -1,32 +1,51 @@ # eth-event +[![Pypi Status](https://img.shields.io/pypi/v/eth-event.svg)](https://pypi.org/project/eth-event/) [![Build Status](https://img.shields.io/travis/com/iamdefinitelyahuman/eth-event.svg)](https://travis-ci.com/iamdefinitelyahuman/eth-event) [![Coverage Status](https://coveralls.io/repos/github/iamdefinitelyahuman/eth-event/badge.svg?branch=master)](https://coveralls.io/github/iamdefinitelyahuman/eth-event?branch=master) + Simple tools for Ethereum event decoding and topic generation. ## Installation +You can install the latest release via ``pip``: + +```bash +$ pip install eth-brownie +``` + +Or clone the repository and use ``setuptools`` for the most up-to-date version: + ```bash -pip install eth-event +$ python3 setup.py install ``` ## Usage -The package includes five functions: +The package includes the following functions: + +* `get_event_topic(event_abi)`: Given an event ABI, returns the 32 byte encoded topic. + +```python +>>> from eth_event import get_event_topic +>>> get_event_topic({'name': 'Approval', 'anonymous': False, 'type': 'event', 'inputs': [{'name': 'owner', 'type': 'address', 'indexed': True}, {'name': 'spender', 'type': 'address', 'indexed': True}, {'name': 'value', 'type': 'uint256', 'indexed': False}]}) +'0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925' +``` -* `get_topics(abi)`: Given a contract ABI, returns a dictionary of `{'event name': "encrypted topic"}`. +* `get_topics(contract_abi)`: Given a contract ABI, returns a dictionary of `{'event name': "encrypted topic"}`. ```python ->>> import eth_event +>>> from eth_event import get_topics >>> abi = [{'name': 'Approval', 'anonymous': False, 'type': 'event', 'inputs': [{'name': 'owner', 'type': 'address', 'indexed': True}, {'name': 'spender', 'type': 'address', 'indexed': True}, {'name': 'value', 'type': 'uint256', 'indexed': False}]}, {'name': 'Transfer', 'anonymous': False, 'type': 'event', 'inputs': [{'name': 'from', 'type': 'address', 'indexed': True}, {'name': 'to', 'type': 'address', 'indexed': True}, {'name': 'value', 'type': 'uint256', 'indexed': False}]}] ->>> eth_event.get_topics(abi) +>>> get_topics(abi) {'Transfer': '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef', 'Approval': '0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925'} ``` -* `get_event_abi(abi)`: Given a contract ABI, returns a dictionary of `{'encrypted topic': "ABI"}`. Useful for stripping an ABI so that only event related data remains. +* `get_event_abi(contract_abi)`: Given a contract ABI, returns a dictionary of `{'encrypted topic': "ABI"}`. Useful for stripping an ABI so that only event related data remains. ```python ->>> event_abi = eth_event.get_event_abi(abi) +>>> from eth_event import get_event_abi +>>> get_event_abi(abi) {'0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef': {'name': 'Transfer', 'inputs': [{'name': 'from', 'type': 'address', 'indexed': True}, {'name': 'to', 'type': 'address', 'indexed': True}, {'name': 'value', 'type': 'uint256', 'indexed': False}]}, '0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925': {'name': 'Approval', 'inputs': [{'name': 'owner', 'type': 'address', 'indexed': True}, {'name': 'spender', 'type': 'address', 'indexed': True}, {'name': 'value', 'type': 'uint256', 'indexed': False}]}} ``` @@ -50,7 +69,7 @@ The package includes five functions: >>> tx = token.transfer(account[1], 100, {'from': account[0]}) ->>> eth_event.decode_event(tx.logs, token.abi) +>>> eth_event.decode_logs(tx.logs, token.abi) [{'name': 'Transfer', 'data': [{'name': 'from', 'type': 'address', 'value': '0xbd4940951bfa463f8fb6db762e55686f6cfdb73a'}, {'name': 'to', 'type': 'address', 'value': '0xbd4940951bfa463f8fb6db762e55686f6cfdb73a', 'decoded': True}, {'name': 'tokens', 'type': 'uint256', 'value': 100, 'decoded': True}]}] ``` @@ -60,7 +79,7 @@ The package includes five functions: >>> tx = token.transfer(account[1], 100, {'from': account[0]}) ->>> trace = web3.providers[0].make_request("debug_traceTransaction", ['0x71a7146996957b8a465a4e5dd41951d614254f8271fc9140b875c4fc55dde578', {}])['result']['structLogs] +>>> trace = web3.provider.make_request("debug_traceTransaction", ['0x71a7146996957b8a465a4e5dd41951d614254f8271fc9140b875c4fc55dde578', {}])['result']['structLogs] ] >>> eth_event.decode_trace(trace, token.abi) [{'name': 'Transfer', 'data': [{'name': 'from', 'type': 'address', 'value': '0xbd4940951bfa463f8fb6db762e55686f6cfdb73a'}, {'name': 'to', 'type': 'address', 'value': '0xbd4940951bfa463f8fb6db762e55686f6cfdb73a', 'decoded': True}, {'name': 'tokens', 'type': 'uint256', 'value': 100, 'decoded': True}]}] @@ -68,7 +87,17 @@ The package includes five functions: ## Limitations -If an array is indexed in an event, the topic is generated as a sha3 hash and so cannot be decrypted. In this case, the unencrypted topcic is returned and `decoded` is set to `False`. +* If an array is indexed in an event, the topic is generated as a sha3 hash and so cannot be decrypted. In this case, the unencrypted topcic is returned and `decoded` is set to `False`. + +* Anonymous events cannot be decoded. + +## Tests + +To run the test suite: + +```bash +$ tox +``` ## Development @@ -76,4 +105,4 @@ This project is still in development and should be considered an alpha. Comments ## License -This project is licensed under the [MIT license](LICENSE). \ No newline at end of file +This project is licensed under the [MIT license](LICENSE). diff --git a/eth_event/__init__.py b/eth_event/__init__.py index b8e6ccd..ed5dd58 100644 --- a/eth_event/__init__.py +++ b/eth_event/__init__.py @@ -1,6 +1,7 @@ #!/usr/bin/python3 -from .main import ( +from .main import ( # NOQA: F401 + get_log_topic, get_topics, get_event_abi, decode_event, diff --git a/eth_event/main.py b/eth_event/main.py index 8b903df..da8d974 100644 --- a/eth_event/main.py +++ b/eth_event/main.py @@ -6,40 +6,55 @@ from hexbytes import HexBytes -class ABIError(Exception): pass -class EventError(Exception): pass -class StructLogError(Exception): pass +class ABIError(Exception): + pass -def _topic(name, inputs): - return "0x" + keccak( - "{}({})".format(name, ",".join(i['type'] for i in inputs)).encode() - ).hex() +class EventError(Exception): + pass -def get_topics(abi): + +class StructLogError(Exception): + pass + + +def get_log_topic(event_abi): + if not isinstance(event_abi, dict): + raise TypeError("Must be a dictionary of the specific event's ABI") + if event_abi['anonymous']: + raise ABIError("Anonymous events do not have a topic") + types = _params(event_abi['inputs']) + key = f"{event_abi['name']}({','.join(types)})".encode() + return "0x"+keccak(key).hex() + + +def get_topics(contract_abi): """Generate encoded event topics from a contract ABI. Arguments: - abi -- A standard contract ABI in list format + contract_abi -- A standard contract ABI in list format Returns a dictionary in the following format: {'Event Name': "encoded bytes32 topic as a string"} """ + if not isinstance(contract_abi, list): + raise TypeError("Must be an entire contract ABI as a list") try: - return dict(( - i['name'], _topic(i['name'], i['inputs']) - ) for i in abi if i['type'] == "event" and not i['anonymous']) + return dict( + (i['name'], get_log_topic(i)) for i in contract_abi if + i['type'] == "event" and not i['anonymous'] + ) except (KeyError, TypeError): - raise ABIError("Invalid ABI") + raise ABIError("Malformed ABI") -def get_event_abi(abi): +def get_event_abi(contract_abi): """Convert a normal ABI to a dictionary style ABI specific to events. Arguments: - abi -- A standard contract ABI in list format + contract_abi -- A standard contract ABI in list format Returns a dict in the following format: @@ -47,14 +62,15 @@ def get_event_abi(abi): """ try: - events = [i for i in abi if i['type']=="event" and not i['anonymous']] + events = [i for i in contract_abi if i['type'] == "event" and not i['anonymous']] return dict(( - _topic(i['name'], i['inputs']), + get_log_topic(i), {'name': i['name'], 'inputs': i['inputs']} ) for i in events) except (KeyError, TypeError): raise ABIError("Invalid ABI") + def decode_event(event, abi): """Decode a transaction event. @@ -66,7 +82,7 @@ def decode_event(event, abi): Indexed arrays cannot be decoded and so the returned value will still be encoded. - + Returns a dictionary in the following format: { @@ -80,39 +96,48 @@ def decode_event(event, abi): } """ - if type(abi) is list: + if isinstance(abi, list): try: - key = event['topics'][0] + key = _bytes_to_hex_string(event['topics'][0]) except IndexError: raise EventError("Cannot decode anonymous event") except (KeyError, TypeError): raise EventError("Invalid event") - if type(key) is HexBytes: - key = key.hex() - abi = get_event_abi(abi)[key] + abi = get_event_abi(abi) + abi = abi[key] try: return { - 'name':abi['name'], - 'data':_decode(abi['inputs'], event['topics'][1:], event['data']) + 'name': abi['name'], + 'data': _decode(abi['inputs'], event['topics'][1:], event['data']) } except (KeyError, TypeError): raise EventError("Invalid event") -def decode_logs(logs, abi): +def decode_logs(logs, abi, skip_anonymous=True): """Decode a transaction event log. Arguments: logs -- A log of events from a transaction receipt. abi -- The contract ABI, as a regular ABI or a dict from get_event_abi() + skip_anonymous -- If True, events with no topic will + be skipped instead of raising. Returns a list of event dictionaries. """ - if type(abi) is list: + if isinstance(abi, list): abi = get_event_abi(abi) - return [decode_event(i, abi[HexBytes(i.topics[0]).hex()]) for i in logs] + result = [] + for i in logs: + if not i['topics']: + if not skip_anonymous: + raise EventError("Cannot decode anonymous event") + continue + key = HexBytes(i['topics'][0]).hex() + result.append(decode_event(i, abi[key])) + return result def decode_trace(trace, abi): @@ -128,18 +153,16 @@ def decode_trace(trace, abi): Returns a list of event dictionaries. """ - if type(abi) is list: + if isinstance(abi, list): abi = get_event_abi(abi) - try: - trace = [i for i in trace if "LOG" in i['op']] - except (IndexError, KeyError, TypeError): - raise StructLogError("Invalid StructLog") + if isinstance(trace, dict): + trace = trace['result']['structLogs'] events = [] - for log in trace: + for log in (i for i in trace if i['op'].startswith("LOG")): try: - topic = "0x"+log['stack'][-3] offset = int(log['stack'][-1], 16) * 2 - length = int(log['stack'][-1], 16) * 2 + length = int(log['stack'][-2], 16) * 2 + topic = "0x" + log['stack'][-3] except KeyError: raise StructLogError("StructLog has no stack") except (IndexError, TypeError): @@ -156,12 +179,19 @@ def decode_trace(trace, abi): return events +def _params(abi_params): + types = [] + for i in abi_params: + if i['type'] != "tuple": + types.append(i['type']) + continue + types.append(f"({','.join(x for x in _params(i['components']))})") + return types + + def _decode(inputs, topics, data): try: - types = [ - i['type'] if i['type'] != "bytes" else "bytes[]" - for i in inputs if not i['indexed'] - ] + types = _params(i for i in inputs if not i['indexed']) except (KeyError, TypeError): raise ABIError("Invalid ABI") if types and data == "0x": @@ -184,15 +214,18 @@ def _decode(inputs, topics, data): try: value = decode_single(i['type'], HexBytes(value)) except (InsufficientDataBytes, OverflowError): - result[-1].update({'value': value.hex(), 'decoded': False}) + result[-1].update({'value': value.hex(), 'decoded': False}) continue else: value = decoded.pop() - if i['type'] == "string": - value = HexBytes(value).decode('utf-8') - if type(value) is bytes: - value = "0x" + value.hex() - elif type(value) is HexBytes: - value = value.hex() + value = _bytes_to_hex_string(value) result[-1].update({'value': value, 'decoded': True}) - return result \ No newline at end of file + return result + + +def _bytes_to_hex_string(value): + if isinstance(value, bytes): + value = value.hex() + if not value.startswith('0x'): + value = "0x" + value + return value diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000..dfa60d9 --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,6 @@ +coveralls==1.7.0 +pytest>=5.0.0 +pytest-cov>=2.7.1 +tox-travis==0.12 +twine==1.13.0 +wheel==0.33.4 diff --git a/setup.py b/setup.py index 56aa850..e655930 100644 --- a/setup.py +++ b/setup.py @@ -6,30 +6,29 @@ long_description = fh.read() setup( - name = 'eth_event', - packages = find_packages(), - version = '0.1.4', - license = 'MIT', - description = 'Ethereum event decoder and topic generator', - long_description = long_description, - long_description_content_type="text/markdown", - author = 'Benjamin Hauser', - author_email = 'ben.hauser@hyperlink.capital', - url = 'https://github.com/iamdefinitelyahuman/eth-event', - download_url = 'https://github.com/iamdefinitelyahuman/eth-event/archive/0.1.4.tar.gz', - keywords = ['ethereum'], - install_requires=[ - 'eth-abi', - 'eth-hash', - 'hexbytes' - ], - classifiers=[ - 'Development Status :: 3 - Alpha', - 'Intended Audience :: Developers', - 'Topic :: Software Development :: Build Tools', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - ], -) + name='eth_event', + packages=find_packages(), + version='0.2.0', + license='MIT', + description='Ethereum event decoder and topic generator', + long_description=long_description, + long_description_content_type="text/markdown", + author='Benjamin Hauser', + author_email='b.hauser@zerolaw.tech', + url='https://github.com/iamdefinitelyahuman/eth-event', + keywords=['ethereum'], + install_requires=[ + 'eth-abi>=2.0.0,<3.0.0', + 'eth-hash[pycryptodome]>=0.2.0,<1.0.0', + 'hexbytes>=0.2.0,<1.0.0' + ], + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Topic :: Software Development :: Build Tools', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6', + "Programming Language :: Python :: 3.7" + ], +) diff --git a/tests/conftest.py b/tests/conftest.py new file mode 100644 index 0000000..ebb9fb3 --- /dev/null +++ b/tests/conftest.py @@ -0,0 +1,163 @@ +#!/usr/bin/python3 + +from hexbytes import HexBytes +import pytest + +# missing 'data' and 'topics' +BASE_LOG = { + 'logIndex': 0, + 'transactionIndex': 0, + 'transactionHash': HexBytes('0x9df54439626e5b7fce5ae2f02af47d86535bedaf533403204fcb76ba12eef21c'), # NOQA: E501 + 'blockHash': HexBytes('0xaae58fedb68b648857a24b4a29f3e7f2a905d5098a912562f7ddb895e129b087'), + 'blockNumber': 2, + 'address': '0x3194cBDC3dbcd3E11a07892e7bA5c3394048Cc87', + 'type': 'mined', +} + +LOGS = [ + ( # BasicTypesEvent + '0x000000000000000000000000000000000000000000000000000000000000000cffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffea00000000000000000000000066ab6d9362d4f35596279692f0251db635165871000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000deadbeef', # NOQA: E501 + [HexBytes('0x8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed')] + ), + ( # ComplexTypesEvent + '0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001b6920616d206120737472696e6721207375636820696d7072657373000000000000000000000000000000000000000000000000000000000000000000000000081234567890abcdef000000000000000000000000000000000000000000000000', # NOQA: E501 + [HexBytes('0x34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f')] + ), + ( # FixedLengthArrayEvent + "0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000030000000000000000000000000000000000000000000000000000000000000004ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6000000000000000000000000000000000000000000000000000000000000002a00000000000000000000000066ab6d9362d4f35596279692f0251db635165871000000000000000000000000000000000000000000000000000000000000000000000000000000000000000066ab6d9362d4f35596279692f0251db6351658710000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000deadbeef00000000000000000000000000000000000000000000000000000000069faded", # NOQA: E501 + [HexBytes('0x317cac24adbc0db1e065b9fe727c569313ba08d3e641d73a55955da25c10f1b9')] + ), + ( # DynamicArrayEvent + "0x00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000260000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000300000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffd6000000000000000000000000000000000000000000000000000000000000002a000000000000000000000000000000000000000000000000000000000000000200000000000000000000000066ab6d9362d4f35596279692f0251db6351658710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000deadbeef", # NOQA: E501 + [HexBytes('0x15bf5b2fd85b349c3ba8e0687fef3f75d19530656850746a30caed288a9d834b')] + ), + ( # StructEvent + "0x0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d6e6f407468616e6b732e636f6d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f2b3120353535203535352d313233340000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006173646600000000000000000000000033a4622b82d4c04a53e170c638b944ce27cffce3000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d6e6f407468616e6b732e636f6d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f2b3120353535203535352d313233340000000000000000000000000000000000", # NOQA: E501 + [HexBytes('0x2879c8a0baaa8a22a224aed7d8635b7d8e760d16c3f082cd5eba35e9775ab8fc')] + ), + ( # IndexedEvent + "0x000000000000000000000000000000000000000000000000000000000000123400000000000000000000000066ab6d9362d4f35596279692f0251db635165871", # NOQA: E501 + [HexBytes('0x7e4de51bd76e0680c76e06c0d5694cb33ce2f8c99b62ba846409bce9014638e0'), HexBytes('0x6e12a6379ea806efe7913a2e70ca6b83ef6d457210264b417f34e79bf5a4e2e9'), HexBytes('0x0000000000000000000000000000000000000000000000000000000000000666')] # NOQA: E501 + ) +] + + +@pytest.fixture(scope="session") +def abi(): + return [{ + 'name': "BasicTypesEvent", 'type': "event", 'anonymous': False, + 'inputs': [ + {'indexed': False, 'name': "a", 'type': "uint256"}, + {'indexed': False, 'name': "b", 'type': "int128"}, + {'indexed': False, 'name': "c", 'type': "address"}, + {'indexed': False, 'name': "d", 'type': "bool"}, + {'indexed': False, 'name': "e", 'type': "bytes32"} + ] + }, { + 'name': "ComplexTypesEvent", 'type': "event", 'anonymous': False, + 'inputs': [ + {'indexed': False, 'name': "a", 'type': "string"}, + {'indexed': False, 'name': "b", 'type': "bytes"} + ] + }, { + 'name': "FixedLengthArrayEvent", 'type': "event", 'anonymous': False, + 'inputs': [ + {'indexed': False, 'name': "a", 'type': "uint64[4]"}, + {'indexed': False, 'name': "b", 'type': "int128[2]"}, + {'indexed': False, 'name': "c", 'type': "address[3]"}, + {'indexed': False, 'name': "d", 'type': "bool[2]"}, + {'indexed': False, 'name': "e", 'type': "bytes32[2]"} + ] + }, { + 'name': "DynamicArrayEvent", 'type': "event", 'anonymous': False, + 'inputs': [ + {'indexed': False, 'name': "a", 'type': "uint64[]"}, + {'indexed': False, 'name': "b", 'type': "int128[]"}, + {'indexed': False, 'name': "c", 'type': "address[]"}, + {'indexed': False, 'name': "d", 'type': "bool[]"}, + {'indexed': False, 'name': "e", 'type': "bytes32[]"} + ] + }, { + 'name': "StructEvent", 'type': "event", 'anonymous': False, + 'inputs': [{ + 'name': "a", 'type': "tuple", 'indexed': False, + 'components': [ + {'name': "email", 'type': "string"}, + {'name': "phone", 'type': "string"} + ] + }, { + 'name': "b", 'type': "tuple", 'indexed': False, + 'components': [ + {'name': "name", 'type': "bytes32"}, + {'name': "addr", 'type': "address"}, + { + 'name': "contact", 'type': "tuple", + 'components': [ + {'name': "email", 'type': "string"}, + {'name': "phone", 'type': "string"} + ] + } + ] + }], + }, { + 'name': "IndexedEvent", 'type': "event", 'anonymous': False, + 'inputs': [ + {'indexed': False, 'name': "a", 'type': "bytes32"}, + {'indexed': True, 'name': "b", 'type': "bytes32[2]"}, + {'indexed': True, 'name': "c", 'type': "bytes32"}, + {'indexed': False, 'name': "d", 'type': "address"} + ] + }, { + 'name': "AnonymousEventA", 'type': "event", 'anonymous': True, + 'inputs': [{'indexed': False, 'name': "a", 'type': "address"}], + }, { + 'name': "AnonymousEventB", 'type': "event", 'anonymous': True, + 'inputs': [ + {'indexed': False, 'name': "a", 'type': "bytes32"}, + {'indexed': False, 'name': "b", 'type': "uint256"} + ] + }] + + +# auto-parametrize the log fixture with all expected-passing logs +def pytest_generate_tests(metafunc): + log_params = [] + for data, topics in LOGS: + log = BASE_LOG.copy() + log['data'] = data + log['topics'] = topics + log_params.append(log) + if 'log' in metafunc.fixturenames: + metafunc.parametrize('log', log_params) + + +@pytest.fixture +def complex_log(): + log = BASE_LOG.copy() + log['data'] = LOGS[1][0] + log['topics'] = LOGS[1][1] + return log + + +@pytest.fixture +def indexed_log(): + log = BASE_LOG.copy() + log['data'] = LOGS[5][0] + log['topics'] = LOGS[5][1] + return log + + +@pytest.fixture(scope="session") +def anon_a_log(): + log = BASE_LOG.copy() + log['data'] = "0x00000000000000000000000066ab6d9362d4f35596279692f0251db635165871" # NOQA: E501 + log['topics'] = [] + return log + + +@pytest.fixture(scope="session") +def anon_b_log(): + log = BASE_LOG.copy() + log['data'] = "0x0000000000000000000000000000000000000000000000000000000000012345000000000000000000000000000000000000000000000000000000000000002a" # NOQA: E501 + log['topics'] = [] + return log diff --git a/tests/test_abi.py b/tests/test_abi.py new file mode 100644 index 0000000..d6f698f --- /dev/null +++ b/tests/test_abi.py @@ -0,0 +1,41 @@ +#!/usr/bin/python3 + +import pytest + +from eth_event import ( + get_log_topic, + get_topics, + get_event_abi, + ABIError +) + + +def test_get_log_topic(abi): + for i in [i for i in abi if not i['anonymous']]: + get_log_topic(i) + + +def test_get_log_topic_anonymous(abi): + for i in [i for i in abi if i['anonymous']]: + with pytest.raises(ABIError): + get_log_topic(i) + + +def test_get_log_topic_contract_abi(abi): + with pytest.raises(TypeError): + get_log_topic(abi) + + +def test_get_topics(abi): + result = get_topics(abi) + assert len(result) + 2 == len(abi) + + +def test_get_topics_event_abi(abi): + with pytest.raises(TypeError): + get_topics(abi[0]) + + +def test_event_abi(abi): + result = get_event_abi(abi) + assert len(result) + 2 == len(abi) diff --git a/tests/test_decode_event.py b/tests/test_decode_event.py new file mode 100644 index 0000000..f9d7b6b --- /dev/null +++ b/tests/test_decode_event.py @@ -0,0 +1,55 @@ +#!/usr/bin/python3 + +import pytest + +from eth_event import ( + decode_event, + decode_logs, + EventError, +) + + +def test_decode_event(log, abi): + decode_event(log, abi) + + +def test_decode_event_anonymous(anon_a_log, abi): + with pytest.raises(EventError): + decode_event(anon_a_log, abi) + + +def test_decode_complex_event(complex_log, abi): + event = decode_event(complex_log, abi) + assert event['name'] == "ComplexTypesEvent" + data = [i['value'] for i in event['data']] + assert data == ["i am a string! such impress", "0x1234567890abcdef"] + + +def test_decode_logs(log, complex_log, abi): + decode_logs([log, complex_log], abi) + + +def test_decode_logs_anonymous(anon_a_log, anon_b_log, complex_log, abi): + logs = [anon_a_log, complex_log, anon_b_log] + with pytest.raises(EventError): + decode_logs(logs, abi, skip_anonymous=False) + events = decode_logs(logs, abi) + assert len(events) == 1 + + +def test_decode_insufficient(complex_log, abi): + complex_log['data'] = complex_log['data'][:-20] + with pytest.raises(EventError): + decode_event(complex_log, abi) + + +def test_decode_overflow(complex_log, abi): + complex_log['data'] = "0xfffffffffffffffffffffff"+complex_log['data'][2:] + with pytest.raises(EventError): + decode_event(complex_log, abi) + + +def test_decode_missing_topic(indexed_log, abi): + indexed_log['topics'].pop() + with pytest.raises(EventError): + decode_event(indexed_log, abi) diff --git a/tests/test_decode_trace.py b/tests/test_decode_trace.py new file mode 100644 index 0000000..85a1252 --- /dev/null +++ b/tests/test_decode_trace.py @@ -0,0 +1,50 @@ +#!/usr/bin/python3 + +import json +from pathlib import Path +import pytest + +from eth_event import ( + decode_trace, + StructLogError, +) + + +# LOG events are at indexes 378 and 536 +@pytest.fixture +def raw_trace(): + trace_json = Path(__file__).parent.joinpath('trace.json') + with trace_json.open() as fs: + data = json.load(fs) + return data + + +def test_decode_trace_basic(abi, raw_trace): + events = decode_trace(raw_trace['result']['structLogs'][:400], abi) + assert len(events) == 1 + assert events[0]['name'] == "BasicTypesEvent" + + +def test_decode_trace_complex(abi, raw_trace): + events = decode_trace(raw_trace['result']['structLogs'][400:], abi) + assert len(events) == 1 + assert events[0]['name'] == "ComplexTypesEvent" + assert [i['value'] for i in events[0]['data']] == ["hello", "0x6689"] + + +def test_decode_trace_multiple(abi, raw_trace): + events = decode_trace(raw_trace, abi) + assert len(events) == 2 + + +def test_decode_raises(abi, raw_trace): + trace = raw_trace['result']['structLogs'] + del trace[378]['memory'] + with pytest.raises(StructLogError): + decode_trace(raw_trace['result']['structLogs'][:400], abi) + trace[378]['stack'] = [] + with pytest.raises(StructLogError): + decode_trace(raw_trace['result']['structLogs'][:400], abi) + del trace[378]['stack'] + with pytest.raises(StructLogError): + decode_trace(raw_trace['result']['structLogs'][:400], abi) diff --git a/tests/trace.json b/tests/trace.json new file mode 100644 index 0000000..407b35c --- /dev/null +++ b/tests/trace.json @@ -0,0 +1 @@ +{"id": 47, "jsonrpc": "2.0", "result": {"gas": 28063, "returnValue": "", "structLogs": [{"depth": 0, "error": "", "gas": 6151, "gasCost": 21912, "memory": [], "op": "PUSH1", "pc": 0, "stack": [], "storage": null}, {"depth": 0, "error": "", "gas": 6148, "gasCost": 3, "memory": [], "op": "PUSH1", "pc": 2, "stack": ["0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 6145, "gasCost": 3, "memory": [], "op": "MSTORE", "pc": 4, "stack": ["0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 6133, "gasCost": 12, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH1", "pc": 5, "stack": [], "storage": null}, {"depth": 0, "error": "", "gas": 6130, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "CALLDATASIZE", "pc": 7, "stack": ["0000000000000000000000000000000000000000000000000000000000000004"], "storage": null}, {"depth": 0, "error": "", "gas": 6128, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "LT", "pc": 8, "stack": ["0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000064"], "storage": null}, {"depth": 0, "error": "", "gas": 6125, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 9, "stack": ["0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 6122, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPI", "pc": 12, "stack": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 6112, "gasCost": 10, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH4", "pc": 13, "stack": [], "storage": null}, {"depth": 0, "error": "", "gas": 6109, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH29", "pc": 18, "stack": ["00000000000000000000000000000000000000000000000000000000ffffffff"], "storage": null}, {"depth": 0, "error": "", "gas": 6106, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH1", "pc": 48, "stack": ["00000000000000000000000000000000000000000000000000000000ffffffff", "0000000100000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 6103, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "CALLDATALOAD", "pc": 50, "stack": ["00000000000000000000000000000000000000000000000000000000ffffffff", "0000000100000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 6100, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DIV", "pc": 51, "stack": ["00000000000000000000000000000000000000000000000000000000ffffffff", "0000000100000000000000000000000000000000000000000000000000000000", "7829e62a00000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 6095, "gasCost": 5, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "AND", "pc": 52, "stack": ["00000000000000000000000000000000000000000000000000000000ffffffff", "000000000000000000000000000000000000000000000000000000007829e62a"], "storage": null}, {"depth": 0, "error": "", "gas": 6092, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH4", "pc": 53, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a"], "storage": null}, {"depth": 0, "error": "", "gas": 6089, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP2", "pc": 58, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "000000000000000000000000000000000000000000000000000000007829e62a"], "storage": null}, {"depth": 0, "error": "", "gas": 6086, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "EQ", "pc": 59, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "000000000000000000000000000000000000000000000000000000007829e62a", "000000000000000000000000000000000000000000000000000000007829e62a"], "storage": null}, {"depth": 0, "error": "", "gas": 6083, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 60, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 6080, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPI", "pc": 63, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000045"], "storage": null}, {"depth": 0, "error": "", "gas": 6070, "gasCost": 10, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPDEST", "pc": 69, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a"], "storage": null}, {"depth": 0, "error": "", "gas": 6069, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "CALLVALUE", "pc": 70, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a"], "storage": null}, {"depth": 0, "error": "", "gas": 6067, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP1", "pc": 71, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 6064, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "ISZERO", "pc": 72, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 6061, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 73, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 6058, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPI", "pc": 76, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000051"], "storage": null}, {"depth": 0, "error": "", "gas": 6048, "gasCost": 10, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPDEST", "pc": 81, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 6047, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "POP", "pc": 82, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 6045, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 83, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a"], "storage": null}, {"depth": 0, "error": "", "gas": 6042, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 86, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065"], "storage": null}, {"depth": 0, "error": "", "gas": 6039, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "CALLDATASIZE", "pc": 89, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060"], "storage": null}, {"depth": 0, "error": "", "gas": 6037, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH1", "pc": 90, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064"], "storage": null}, {"depth": 0, "error": "", "gas": 6034, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 92, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004"], "storage": null}, {"depth": 0, "error": "", "gas": 6031, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMP", "pc": 95, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "000000000000000000000000000000000000000000000000000000000000013b"], "storage": null}, {"depth": 0, "error": "", "gas": 6023, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPDEST", "pc": 315, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004"], "storage": null}, {"depth": 0, "error": "", "gas": 6022, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH1", "pc": 316, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004"], "storage": null}, {"depth": 0, "error": "", "gas": 6019, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH1", "pc": 318, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 6016, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP3", "pc": 320, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 6013, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP5", "pc": 321, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000004"], "storage": null}, {"depth": 0, "error": "", "gas": 6010, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "SUB", "pc": 322, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000064"], "storage": null}, {"depth": 0, "error": "", "gas": 6007, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "SLT", "pc": 323, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000060"], "storage": null}, {"depth": 0, "error": "", "gas": 6004, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "ISZERO", "pc": 324, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 6001, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 325, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5998, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPI", "pc": 328, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "000000000000000000000000000000000000000000000000000000000000014d"], "storage": null}, {"depth": 0, "error": "", "gas": 5988, "gasCost": 10, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPDEST", "pc": 333, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5987, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP2", "pc": 334, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5984, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "CALLDATALOAD", "pc": 335, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000004"], "storage": null}, {"depth": 0, "error": "", "gas": 5981, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH8", "pc": 336, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 5978, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP2", "pc": 345, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "000000000000000000000000000000000000000000000000ffffffffffffffff"], "storage": null}, {"depth": 0, "error": "", "gas": 5975, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "GT", "pc": 346, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "000000000000000000000000000000000000000000000000ffffffffffffffff", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 5972, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "ISZERO", "pc": 347, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5969, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 348, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5966, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPI", "pc": 351, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000164"], "storage": null}, {"depth": 0, "error": "", "gas": 5956, "gasCost": 10, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPDEST", "pc": 356, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 5955, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 357, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 5952, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP5", "pc": 360, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170"], "storage": null}, {"depth": 0, "error": "", "gas": 5949, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP3", "pc": 361, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064"], "storage": null}, {"depth": 0, "error": "", "gas": 5946, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP6", "pc": 362, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 5943, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "ADD", "pc": 363, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000004"], "storage": null}, {"depth": 0, "error": "", "gas": 5940, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 364, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024"], "storage": null}, {"depth": 0, "error": "", "gas": 5937, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMP", "pc": 367, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "00000000000000000000000000000000000000000000000000000000000000e7"], "storage": null}, {"depth": 0, "error": "", "gas": 5929, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPDEST", "pc": 231, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024"], "storage": null}, {"depth": 0, "error": "", "gas": 5928, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH1", "pc": 232, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024"], "storage": null}, {"depth": 0, "error": "", "gas": 5925, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH1", "pc": 234, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5922, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP3", "pc": 236, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001f"], "storage": null}, {"depth": 0, "error": "", "gas": 5919, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "ADD", "pc": 237, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000001f", "0000000000000000000000000000000000000000000000000000000000000024"], "storage": null}, {"depth": 0, "error": "", "gas": 5916, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP4", "pc": 238, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000043"], "storage": null}, {"depth": 0, "error": "", "gas": 5913, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "SGT", "pc": 239, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000043", "0000000000000000000000000000000000000000000000000000000000000064"], "storage": null}, {"depth": 0, "error": "", "gas": 5910, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 240, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5907, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPI", "pc": 243, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "00000000000000000000000000000000000000000000000000000000000000f8"], "storage": null}, {"depth": 0, "error": "", "gas": 5897, "gasCost": 10, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPDEST", "pc": 248, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5896, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP2", "pc": 249, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5893, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "CALLDATALOAD", "pc": 250, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000024"], "storage": null}, {"depth": 0, "error": "", "gas": 5890, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 251, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5887, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 254, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b"], "storage": null}, {"depth": 0, "error": "", "gas": 5884, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP3", "pc": 257, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106"], "storage": null}, {"depth": 0, "error": "", "gas": 5881, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 258, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5878, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMP", "pc": 261, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000002ae"], "storage": null}, {"depth": 0, "error": "", "gas": 5870, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPDEST", "pc": 686, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5869, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH1", "pc": 687, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5866, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH8", "pc": 689, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5863, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP3", "pc": 698, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000ffffffffffffffff"], "storage": null}, {"depth": 0, "error": "", "gas": 5860, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "GT", "pc": 699, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000ffffffffffffffff", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5857, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "ISZERO", "pc": 700, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5854, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 701, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5851, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPI", "pc": 704, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001", "00000000000000000000000000000000000000000000000000000000000002c5"], "storage": null}, {"depth": 0, "error": "", "gas": 5841, "gasCost": 10, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPDEST", "pc": 709, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5840, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "POP", "pc": 710, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5838, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH1", "pc": 711, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5835, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH1", "pc": 713, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 5832, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "SWAP2", "pc": 715, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000020", "000000000000000000000000000000000000000000000000000000000000001f"], "storage": null}, {"depth": 0, "error": "", "gas": 5829, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "SWAP1", "pc": 716, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "000000000000000000000000000000000000000000000000000000000000001f", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5826, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "SWAP2", "pc": 717, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "000000000000000000000000000000000000000000000000000000000000001f", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 5823, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "ADD", "pc": 718, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000001f"], "storage": null}, {"depth": 0, "error": "", "gas": 5820, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH1", "pc": 719, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000021"], "storage": null}, {"depth": 0, "error": "", "gas": 5817, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "NOT", "pc": 721, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000021", "000000000000000000000000000000000000000000000000000000000000001f"], "storage": null}, {"depth": 0, "error": "", "gas": 5814, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "AND", "pc": 722, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000021", "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"], "storage": null}, {"depth": 0, "error": "", "gas": 5811, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "ADD", "pc": 723, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 5808, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "SWAP1", "pc": 724, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000106", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 5805, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMP", "pc": 725, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000106"], "storage": null}, {"depth": 0, "error": "", "gas": 5797, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPDEST", "pc": 262, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 5796, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 263, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 5793, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMP", "pc": 266, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000287"], "storage": null}, {"depth": 0, "error": "", "gas": 5785, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPDEST", "pc": 647, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 5784, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH1", "pc": 648, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 5781, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "MLOAD", "pc": 650, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 5778, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP2", "pc": 651, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5775, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP2", "pc": 652, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 5772, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "ADD", "pc": 653, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5769, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH8", "pc": 654, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5766, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP2", "pc": 663, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000ffffffffffffffff"], "storage": null}, {"depth": 0, "error": "", "gas": 5763, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "GT", "pc": 664, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000ffffffffffffffff", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5760, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP3", "pc": 665, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5757, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "DUP3", "pc": 666, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5754, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "LT", "pc": 667, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5751, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "OR", "pc": 668, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5748, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "ISZERO", "pc": 669, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5745, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH2", "pc": 670, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5742, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPI", "pc": 673, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000001", "00000000000000000000000000000000000000000000000000000000000002a6"], "storage": null}, {"depth": 0, "error": "", "gas": 5732, "gasCost": 10, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "JUMPDEST", "pc": 678, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5731, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "PUSH1", "pc": 679, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5728, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000080"], "op": "MSTORE", "pc": 681, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 5725, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0"], "op": "SWAP2", "pc": 682, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5722, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0"], "op": "SWAP1", "pc": 683, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000010b"], "storage": null}, {"depth": 0, "error": "", "gas": 5719, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0"], "op": "POP", "pc": 684, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", "000000000000000000000000000000000000000000000000000000000000010b", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 5717, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0"], "op": "JUMP", "pc": 685, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", "000000000000000000000000000000000000000000000000000000000000010b"], "storage": null}, {"depth": 0, "error": "", "gas": 5709, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0"], "op": "JUMPDEST", "pc": 267, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5708, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0"], "op": "SWAP2", "pc": 268, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5705, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0"], "op": "POP", "pc": 269, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5703, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0"], "op": "DUP1", "pc": 270, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5700, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0"], "op": "DUP3", "pc": 271, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5697, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0"], "op": "MSTORE", "pc": 272, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5688, "gasCost": 9, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "PUSH1", "pc": 273, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5685, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP4", "pc": 275, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 5682, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "ADD", "pc": 276, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000024"], "storage": null}, {"depth": 0, "error": "", "gas": 5679, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "PUSH1", "pc": 277, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044"], "storage": null}, {"depth": 0, "error": "", "gas": 5676, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP4", "pc": 279, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 5673, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "ADD", "pc": 280, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5670, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP6", "pc": 281, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 5667, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP4", "pc": 282, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000064"], "storage": null}, {"depth": 0, "error": "", "gas": 5664, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP4", "pc": 283, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5661, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "ADD", "pc": 284, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044"], "storage": null}, {"depth": 0, "error": "", "gas": 5658, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "GT", "pc": 285, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000046"], "storage": null}, {"depth": 0, "error": "", "gas": 5655, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "ISZERO", "pc": 286, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5652, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "PUSH2", "pc": 287, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5649, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "JUMPI", "pc": 290, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000127"], "storage": null}, {"depth": 0, "error": "", "gas": 5639, "gasCost": 10, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "JUMPDEST", "pc": 295, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 5638, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "PUSH2", "pc": 296, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 5635, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP4", "pc": 299, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132"], "storage": null}, {"depth": 0, "error": "", "gas": 5632, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP3", "pc": 300, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5629, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP5", "pc": 301, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 5626, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "PUSH2", "pc": 302, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000044"], "storage": null}, {"depth": 0, "error": "", "gas": 5623, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "JUMP", "pc": 305, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000044", "0000000000000000000000000000000000000000000000000000000000000330"], "storage": null}, {"depth": 0, "error": "", "gas": 5615, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "JUMPDEST", "pc": 816, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000044"], "storage": null}, {"depth": 0, "error": "", "gas": 5614, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP3", "pc": 817, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000044"], "storage": null}, {"depth": 0, "error": "", "gas": 5611, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP2", "pc": 818, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000044", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5608, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP4", "pc": 819, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000044", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044"], "storage": null}, {"depth": 0, "error": "", "gas": 5605, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "CALLDATACOPY", "pc": 820, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000044", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 5596, "gasCost": 9, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 821, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000044"], "storage": null}, {"depth": 0, "error": "", "gas": 5594, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH1", "pc": 822, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 5591, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP2", "pc": 824, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5588, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "ADD", "pc": 825, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5585, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "MSTORE", "pc": 826, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000a2"], "storage": null}, {"depth": 0, "error": "", "gas": 5579, "gasCost": 6, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 827, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000132"], "storage": null}, {"depth": 0, "error": "", "gas": 5571, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 306, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 5570, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 307, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 5568, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 308, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000044"], "storage": null}, {"depth": 0, "error": "", "gas": 5566, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 309, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 5564, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP3", "pc": 310, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5561, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP2", "pc": 311, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000170"], "storage": null}, {"depth": 0, "error": "", "gas": 5558, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 312, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000024", "0000000000000000000000000000000000000000000000000000000000000064"], "storage": null}, {"depth": 0, "error": "", "gas": 5556, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 313, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000170", "0000000000000000000000000000000000000000000000000000000000000024"], "storage": null}, {"depth": 0, "error": "", "gas": 5554, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 314, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000170"], "storage": null}, {"depth": 0, "error": "", "gas": 5546, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 368, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5545, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP5", "pc": 369, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5542, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP4", "pc": 370, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000064", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000060"], "storage": null}, {"depth": 0, "error": "", "gas": 5539, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 371, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000064"], "storage": null}, {"depth": 0, "error": "", "gas": 5537, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 372, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 5535, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 373, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000004", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5533, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 374, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000060", "0000000000000000000000000000000000000000000000000000000000000004"], "storage": null}, {"depth": 0, "error": "", "gas": 5531, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 375, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000060"], "storage": null}, {"depth": 0, "error": "", "gas": 5523, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 96, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5522, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 97, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5519, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 100, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000067"], "storage": null}, {"depth": 0, "error": "", "gas": 5511, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 103, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5510, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH32", "pc": 104, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5507, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH1", "pc": 137, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed"], "storage": null}, {"depth": 0, "error": "", "gas": 5504, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH1", "pc": 139, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5501, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "CALLER", "pc": 141, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5499, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH1", "pc": 142, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "storage": null}, {"depth": 0, "error": "", "gas": 5496, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH4", "pc": 144, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5493, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH1", "pc": 149, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 5490, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "MLOAD", "pc": 151, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 5487, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 152, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5484, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP6", "pc": 155, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "00000000000000000000000000000000000000000000000000000000000000a5"], "storage": null}, {"depth": 0, "error": "", "gas": 5481, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP5", "pc": 156, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5478, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP4", "pc": 157, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5475, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP3", "pc": 158, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "storage": null}, {"depth": 0, "error": "", "gas": 5472, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP2", "pc": 159, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5469, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP1", "pc": 160, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 5466, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 161, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5463, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 164, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000210"], "storage": null}, {"depth": 0, "error": "", "gas": 5455, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 528, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5454, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH1", "pc": 529, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5451, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "DUP2", "pc": 531, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 5448, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "ADD", "pc": 532, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "00000000000000000000000000000000000000000000000000000000000000a0", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5445, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 533, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 5442, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "DUP3", "pc": 536, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e"], "storage": null}, {"depth": 0, "error": "", "gas": 5439, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "DUP9", "pc": 537, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5436, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 538, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5433, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 541, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "00000000000000000000000000000000000000000000000000000000000001c5"], "storage": null}, {"depth": 0, "error": "", "gas": 5425, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 453, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5424, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 454, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5421, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "DUP2", "pc": 457, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181"], "storage": null}, {"depth": 0, "error": "", "gas": 5418, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 458, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5415, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 461, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000301"], "storage": null}, {"depth": 0, "error": "", "gas": 5407, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 769, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5406, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH1", "pc": 770, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5403, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 772, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5400, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "DUP3", "pc": 775, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c"], "storage": null}, {"depth": 0, "error": "", "gas": 5397, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 776, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5394, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 779, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "000000000000000000000000000000000000000000000000000000000000000c", "00000000000000000000000000000000000000000000000000000000000002fe"], "storage": null}, {"depth": 0, "error": "", "gas": 5386, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 766, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5385, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP1", "pc": 767, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5382, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 768, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000030c"], "storage": null}, {"depth": 0, "error": "", "gas": 5374, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 780, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5373, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP3", "pc": 781, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5370, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP2", "pc": 782, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000181"], "storage": null}, {"depth": 0, "error": "", "gas": 5367, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 783, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5365, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 784, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5363, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 785, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000000c", "0000000000000000000000000000000000000000000000000000000000000181"], "storage": null}, {"depth": 0, "error": "", "gas": 5355, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 385, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5354, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "DUP3", "pc": 386, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5351, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "MSTORE", "pc": 387, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000000c", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5348, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "POP", "pc": 388, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 5346, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "POP", "pc": 389, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5344, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "JUMP", "pc": 390, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000021e"], "storage": null}, {"depth": 0, "error": "", "gas": 5336, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "JUMPDEST", "pc": 542, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 5335, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "PUSH2", "pc": 543, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 5332, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "PUSH1", "pc": 546, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b"], "storage": null}, {"depth": 0, "error": "", "gas": 5329, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "DUP4", "pc": 548, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 5326, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "ADD", "pc": 549, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "0000000000000000000000000000000000000000000000000000000000000020", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5323, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "DUP8", "pc": 550, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0"], "storage": null}, {"depth": 0, "error": "", "gas": 5320, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "PUSH2", "pc": 551, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5317, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "JUMP", "pc": 554, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000000000000000000000000000000000000000001d7"], "storage": null}, {"depth": 0, "error": "", "gas": 5309, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "JUMPDEST", "pc": 471, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5308, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "PUSH2", "pc": 472, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5305, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "DUP2", "pc": 475, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181"], "storage": null}, {"depth": 0, "error": "", "gas": 5302, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "PUSH2", "pc": 476, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5299, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "JUMP", "pc": 479, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000325"], "storage": null}, {"depth": 0, "error": "", "gas": 5291, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "JUMPDEST", "pc": 805, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5290, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "PUSH1", "pc": 806, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5287, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "PUSH2", "pc": 808, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5284, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "DUP3", "pc": 811, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c"], "storage": null}, {"depth": 0, "error": "", "gas": 5281, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "PUSH2", "pc": 812, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5278, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "JUMP", "pc": 815, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000000000000000000000000000000000000000002f8"], "storage": null}, {"depth": 0, "error": "", "gas": 5270, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "JUMPDEST", "pc": 760, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5269, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "PUSH1", "pc": 761, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5266, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "SIGNEXTEND", "pc": 763, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "000000000000000000000000000000000000000000000000000000000000002a", "000000000000000000000000000000000000000000000000000000000000000f"], "storage": null}, {"depth": 0, "error": "", "gas": 5261, "gasCost": 5, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "SWAP1", "pc": 764, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5258, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "JUMP", "pc": 765, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000002a", "000000000000000000000000000000000000000000000000000000000000030c"], "storage": null}, {"depth": 0, "error": "", "gas": 5250, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "JUMPDEST", "pc": 780, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5249, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "SWAP3", "pc": 781, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5246, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "SWAP2", "pc": 782, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "000000000000000000000000000000000000000000000000000000000000002a", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000181"], "storage": null}, {"depth": 0, "error": "", "gas": 5243, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "POP", "pc": 783, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5241, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "POP", "pc": 784, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5239, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "JUMP", "pc": 785, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000181"], "storage": null}, {"depth": 0, "error": "", "gas": 5231, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "JUMPDEST", "pc": 385, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5230, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "DUP3", "pc": 386, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5227, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c"], "op": "MSTORE", "pc": 387, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000000000000000000000000000000000000000000e0"], "storage": null}, {"depth": 0, "error": "", "gas": 5221, "gasCost": 6, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "POP", "pc": 388, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 5219, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "POP", "pc": 389, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b", "00000000000000000000000000000000000000000000000000000000000000e0"], "storage": null}, {"depth": 0, "error": "", "gas": 5217, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "JUMP", "pc": 390, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000022b"], "storage": null}, {"depth": 0, "error": "", "gas": 5209, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "JUMPDEST", "pc": 555, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 5208, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "PUSH2", "pc": 556, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 5205, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "PUSH1", "pc": 559, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238"], "storage": null}, {"depth": 0, "error": "", "gas": 5202, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "DUP4", "pc": 561, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 5199, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "ADD", "pc": 562, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000040", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5196, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "DUP7", "pc": 563, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100"], "storage": null}, {"depth": 0, "error": "", "gas": 5193, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "PUSH2", "pc": 564, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "storage": null}, {"depth": 0, "error": "", "gas": 5190, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "JUMP", "pc": 567, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000178"], "storage": null}, {"depth": 0, "error": "", "gas": 5182, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "JUMPDEST", "pc": 376, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "storage": null}, {"depth": 0, "error": "", "gas": 5181, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "PUSH2", "pc": 377, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "storage": null}, {"depth": 0, "error": "", "gas": 5178, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "DUP2", "pc": 380, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000181"], "storage": null}, {"depth": 0, "error": "", "gas": 5175, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "PUSH2", "pc": 381, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000181", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "storage": null}, {"depth": 0, "error": "", "gas": 5172, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "JUMP", "pc": 384, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000181", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "00000000000000000000000000000000000000000000000000000000000002da"], "storage": null}, {"depth": 0, "error": "", "gas": 5164, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "JUMPDEST", "pc": 730, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000181", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "storage": null}, {"depth": 0, "error": "", "gas": 5163, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "PUSH20", "pc": 731, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000181", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "storage": null}, {"depth": 0, "error": "", "gas": 5160, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "AND", "pc": 752, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000181", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff"], "storage": null}, {"depth": 0, "error": "", "gas": 5157, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "SWAP1", "pc": 753, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000181", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "storage": null}, {"depth": 0, "error": "", "gas": 5154, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "JUMP", "pc": 754, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000181"], "storage": null}, {"depth": 0, "error": "", "gas": 5146, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "JUMPDEST", "pc": 385, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "storage": null}, {"depth": 0, "error": "", "gas": 5145, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "DUP3", "pc": 386, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "storage": null}, {"depth": 0, "error": "", "gas": 5142, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a"], "op": "MSTORE", "pc": 387, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000100"], "storage": null}, {"depth": 0, "error": "", "gas": 5136, "gasCost": 6, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "POP", "pc": 388, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "storage": null}, {"depth": 0, "error": "", "gas": 5134, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "POP", "pc": 389, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238", "0000000000000000000000000000000000000000000000000000000000000100"], "storage": null}, {"depth": 0, "error": "", "gas": 5132, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "JUMP", "pc": 390, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000238"], "storage": null}, {"depth": 0, "error": "", "gas": 5124, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "JUMPDEST", "pc": 568, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 5123, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "PUSH2", "pc": 569, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 5120, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "PUSH1", "pc": 572, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245"], "storage": null}, {"depth": 0, "error": "", "gas": 5117, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "DUP4", "pc": 574, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000060"], "storage": null}, {"depth": 0, "error": "", "gas": 5114, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "ADD", "pc": 575, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000060", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5111, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "DUP6", "pc": 576, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120"], "storage": null}, {"depth": 0, "error": "", "gas": 5108, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "PUSH2", "pc": 577, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5105, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "JUMP", "pc": 580, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000187"], "storage": null}, {"depth": 0, "error": "", "gas": 5097, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "JUMPDEST", "pc": 391, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5096, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "PUSH2", "pc": 392, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5093, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "DUP2", "pc": 395, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000181"], "storage": null}, {"depth": 0, "error": "", "gas": 5090, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "PUSH2", "pc": 396, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5087, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "JUMP", "pc": 399, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000000000001", "00000000000000000000000000000000000000000000000000000000000002f3"], "storage": null}, {"depth": 0, "error": "", "gas": 5079, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "JUMPDEST", "pc": 755, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5078, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "ISZERO", "pc": 756, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5075, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "ISZERO", "pc": 757, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 5072, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "SWAP1", "pc": 758, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5069, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "JUMP", "pc": 759, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000181"], "storage": null}, {"depth": 0, "error": "", "gas": 5061, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "JUMPDEST", "pc": 385, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5060, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "DUP3", "pc": 386, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5057, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "op": "MSTORE", "pc": 387, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000120"], "storage": null}, {"depth": 0, "error": "", "gas": 5051, "gasCost": 6, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "POP", "pc": 388, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 5049, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "POP", "pc": 389, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245", "0000000000000000000000000000000000000000000000000000000000000120"], "storage": null}, {"depth": 0, "error": "", "gas": 5047, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMP", "pc": 390, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000245"], "storage": null}, {"depth": 0, "error": "", "gas": 5039, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMPDEST", "pc": 581, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 5038, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "PUSH2", "pc": 582, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 5035, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "PUSH1", "pc": 585, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252"], "storage": null}, {"depth": 0, "error": "", "gas": 5032, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "DUP4", "pc": 587, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 5029, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "ADD", "pc": 588, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 5026, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "DUP5", "pc": 589, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 5023, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "PUSH2", "pc": 590, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 5020, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMP", "pc": 593, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000001ce"], "storage": null}, {"depth": 0, "error": "", "gas": 5012, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMPDEST", "pc": 462, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 5011, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "PUSH2", "pc": 463, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 5008, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "DUP2", "pc": 466, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181"], "storage": null}, {"depth": 0, "error": "", "gas": 5005, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "PUSH2", "pc": 467, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 5002, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMP", "pc": 470, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000312"], "storage": null}, {"depth": 0, "error": "", "gas": 4994, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMPDEST", "pc": 786, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4993, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "PUSH1", "pc": 787, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4990, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "PUSH2", "pc": 789, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 4987, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "PUSH2", "pc": 792, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c"], "storage": null}, {"depth": 0, "error": "", "gas": 4984, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "DUP4", "pc": 795, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "0000000000000000000000000000000000000000000000000000000000000320"], "storage": null}, {"depth": 0, "error": "", "gas": 4981, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "PUSH2", "pc": 796, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "0000000000000000000000000000000000000000000000000000000000000320", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4978, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMP", "pc": 799, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "0000000000000000000000000000000000000000000000000000000000000320", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000002fe"], "storage": null}, {"depth": 0, "error": "", "gas": 4970, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMPDEST", "pc": 766, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "0000000000000000000000000000000000000000000000000000000000000320", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4969, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "SWAP1", "pc": 767, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "0000000000000000000000000000000000000000000000000000000000000320", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4966, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMP", "pc": 768, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000320"], "storage": null}, {"depth": 0, "error": "", "gas": 4958, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMPDEST", "pc": 800, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4957, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "PUSH2", "pc": 801, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4954, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMP", "pc": 804, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000002fe"], "storage": null}, {"depth": 0, "error": "", "gas": 4946, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMPDEST", "pc": 766, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4945, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "SWAP1", "pc": 767, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000030c", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4942, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMP", "pc": 768, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567", "000000000000000000000000000000000000000000000000000000000000030c"], "storage": null}, {"depth": 0, "error": "", "gas": 4934, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMPDEST", "pc": 780, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4933, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "SWAP3", "pc": 781, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4930, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "SWAP2", "pc": 782, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000181"], "storage": null}, {"depth": 0, "error": "", "gas": 4927, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "POP", "pc": 783, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4925, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "POP", "pc": 784, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 4923, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMP", "pc": 785, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000181"], "storage": null}, {"depth": 0, "error": "", "gas": 4915, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "JUMPDEST", "pc": 385, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4914, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "DUP3", "pc": 386, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4911, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "op": "MSTORE", "pc": 387, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000001324567", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 4905, "gasCost": 6, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "POP", "pc": 388, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4903, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "POP", "pc": 389, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 4901, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMP", "pc": 390, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000252"], "storage": null}, {"depth": 0, "error": "", "gas": 4893, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMPDEST", "pc": 594, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 4892, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "SWAP7", "pc": 595, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 4889, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "SWAP6", "pc": 596, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "0000000000000000000000000000000000000000000000000000000000000160", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "00000000000000000000000000000000000000000000000000000000000000a5"], "storage": null}, {"depth": 0, "error": "", "gas": 4886, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "POP", "pc": 597, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000000c"], "storage": null}, {"depth": 0, "error": "", "gas": 4884, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "POP", "pc": 598, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 4882, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "POP", "pc": 599, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "storage": null}, {"depth": 0, "error": "", "gas": 4880, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "POP", "pc": 600, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 4878, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "POP", "pc": 601, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871"], "storage": null}, {"depth": 0, "error": "", "gas": 4876, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "POP", "pc": 602, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a5", "000000000000000000000000000000000000000000000000000000000000002a"], "storage": null}, {"depth": 0, "error": "", "gas": 4874, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMP", "pc": 603, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a5"], "storage": null}, {"depth": 0, "error": "", "gas": 4866, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMPDEST", "pc": 165, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 4865, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH1", "pc": 166, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 4862, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "MLOAD", "pc": 168, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 4859, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP1", "pc": 169, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 4856, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "SWAP2", "pc": 170, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000c0", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 4853, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "SUB", "pc": 171, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000c0", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 4850, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "SWAP1", "pc": 172, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000c0", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 4847, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "LOG1", "pc": 173, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "8be90ba92d3b46c912717b5514ae2cfde5e9acbb5980c2ec5ea937d7586d82ed", "00000000000000000000000000000000000000000000000000000000000000a0", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 2817, "gasCost": 2030, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH32", "pc": 174, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 2814, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP2", "pc": 207, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f"], "storage": null}, {"depth": 0, "error": "", "gas": 2811, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH1", "pc": 208, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 2808, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "MLOAD", "pc": 210, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 2805, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH2", "pc": 211, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 2802, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "SWAP2", "pc": 214, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "00000000000000000000000000000000000000000000000000000000000000dc"], "storage": null}, {"depth": 0, "error": "", "gas": 2799, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "SWAP1", "pc": 215, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 2796, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH2", "pc": 216, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 2793, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMP", "pc": 219, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "000000000000000000000000000000000000000000000000000000000000025c"], "storage": null}, {"depth": 0, "error": "", "gas": 2785, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMPDEST", "pc": 604, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 2784, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH1", "pc": 605, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 2781, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP1", "pc": 607, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 2778, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP3", "pc": 608, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 2775, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000000c", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "MSTORE", "pc": 609, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000040", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 2772, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP2", "pc": 610, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 2769, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "ADD", "pc": 611, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000040", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 2766, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH2", "pc": 612, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100"], "storage": null}, {"depth": 0, "error": "", "gas": 2763, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP2", "pc": 615, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c"], "storage": null}, {"depth": 0, "error": "", "gas": 2760, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH2", "pc": 616, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000100"], "storage": null}, {"depth": 0, "error": "", "gas": 2757, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMP", "pc": 619, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000100", "00000000000000000000000000000000000000000000000000000000000001e0"], "storage": null}, {"depth": 0, "error": "", "gas": 2749, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMPDEST", "pc": 480, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000100"], "storage": null}, {"depth": 0, "error": "", "gas": 2748, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH1", "pc": 481, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000100"], "storage": null}, {"depth": 0, "error": "", "gas": 2745, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP2", "pc": 483, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000100", "0000000000000000000000000000000000000000000000000000000000000005"], "storage": null}, {"depth": 0, "error": "", "gas": 2742, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "00000000000000000000000066ab6d9362d4f35596279692f0251db635165871", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "MSTORE", "pc": 484, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000100", "0000000000000000000000000000000000000000000000000000000000000005", "0000000000000000000000000000000000000000000000000000000000000100"], "storage": null}, {"depth": 0, "error": "", "gas": 2739, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH32", "pc": 485, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000100"], "storage": null}, {"depth": 0, "error": "", "gas": 2736, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH1", "pc": 518, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000100", "68656c6c6f000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2733, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP3", "pc": 520, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000100", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2730, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "ADD", "pc": 521, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000100", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000100"], "storage": null}, {"depth": 0, "error": "", "gas": 2727, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "MSTORE", "pc": 522, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000100", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000120"], "storage": null}, {"depth": 0, "error": "", "gas": 2724, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH1", "pc": 523, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000100"], "storage": null}, {"depth": 0, "error": "", "gas": 2721, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "ADD", "pc": 525, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000100", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 2718, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "SWAP1", "pc": 526, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "000000000000000000000000000000000000000000000000000000000000026c", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 2715, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMP", "pc": 527, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "0000000000000000000000000000000000000000000000000000000000000140", "000000000000000000000000000000000000000000000000000000000000026c"], "storage": null}, {"depth": 0, "error": "", "gas": 2707, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMPDEST", "pc": 620, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 2706, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "SWAP1", "pc": 621, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000100", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 2703, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "POP", "pc": 622, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000100"], "storage": null}, {"depth": 0, "error": "", "gas": 2701, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP2", "pc": 623, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 2698, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP2", "pc": 624, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 2695, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "SUB", "pc": 625, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 2692, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH1", "pc": 626, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 2689, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP4", "pc": 628, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2686, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "ADD", "pc": 629, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000020", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 2683, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "000000000000000000000000000000000000000000000000000000000000002a", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "MSTORE", "pc": 630, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000e0"], "storage": null}, {"depth": 0, "error": "", "gas": 2680, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH2", "pc": 631, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 2677, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP2", "pc": 634, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280"], "storage": null}, {"depth": 0, "error": "", "gas": 2674, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP5", "pc": 635, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 2671, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH2", "pc": 636, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 2668, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMP", "pc": 639, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000190"], "storage": null}, {"depth": 0, "error": "", "gas": 2660, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMPDEST", "pc": 400, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 2659, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH1", "pc": 401, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 2656, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH2", "pc": 403, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2653, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP3", "pc": 406, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000019b"], "storage": null}, {"depth": 0, "error": "", "gas": 2650, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "PUSH2", "pc": 407, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000019b", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 2647, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMP", "pc": 410, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000019b", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000002d6"], "storage": null}, {"depth": 0, "error": "", "gas": 2639, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMPDEST", "pc": 726, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000019b", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 2638, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "MLOAD", "pc": 727, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000019b", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 2635, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "SWAP1", "pc": 728, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "000000000000000000000000000000000000000000000000000000000000019b", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2632, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMP", "pc": 729, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000019b"], "storage": null}, {"depth": 0, "error": "", "gas": 2624, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "JUMPDEST", "pc": 411, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2623, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP1", "pc": 412, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2620, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "DUP5", "pc": 413, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2617, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000001324567"], "op": "MSTORE", "pc": 414, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 2614, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "PUSH2", "pc": 415, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2611, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP2", "pc": 418, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af"], "storage": null}, {"depth": 0, "error": "", "gas": 2608, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "PUSH1", "pc": 419, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2605, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP7", "pc": 421, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2602, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "ADD", "pc": 422, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 2599, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "PUSH1", "pc": 423, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 2596, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP7", "pc": 425, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2593, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "ADD", "pc": 426, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 2590, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "PUSH2", "pc": 427, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 2587, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "JUMP", "pc": 430, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "000000000000000000000000000000000000000000000000000000000000033c"], "storage": null}, {"depth": 0, "error": "", "gas": 2579, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "JUMPDEST", "pc": 828, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 2578, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "PUSH1", "pc": 829, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 2575, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "JUMPDEST", "pc": 831, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2574, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP4", "pc": 832, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2571, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP2", "pc": 833, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2568, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "LT", "pc": 834, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2565, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "ISZERO", "pc": 835, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 2562, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "PUSH2", "pc": 836, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2559, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "JUMPI", "pc": 839, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000357"], "storage": null}, {"depth": 0, "error": "", "gas": 2549, "gasCost": 10, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP2", "pc": 840, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2546, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP2", "pc": 841, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 2543, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "ADD", "pc": 842, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2540, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "MLOAD", "pc": 843, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 2537, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP4", "pc": 844, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000", "6689000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2534, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "DUP3", "pc": 845, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 2531, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "ADD", "pc": 846, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2528, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "op": "MSTORE", "pc": 847, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 2522, "gasCost": 6, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH1", "pc": 848, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2519, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "ADD", "pc": 850, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2516, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 851, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2513, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 854, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "000000000000000000000000000000000000000000000000000000000000033f"], "storage": null}, {"depth": 0, "error": "", "gas": 2505, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 831, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2504, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "DUP4", "pc": 832, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2501, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "DUP2", "pc": 833, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2498, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "LT", "pc": 834, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2495, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "ISZERO", "pc": 835, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2492, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 836, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 2489, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPI", "pc": 839, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000001", "0000000000000000000000000000000000000000000000000000000000000357"], "storage": null}, {"depth": 0, "error": "", "gas": 2479, "gasCost": 10, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 855, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2478, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "DUP4", "pc": 856, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2475, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "DUP2", "pc": 857, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2472, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "GT", "pc": 858, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2469, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "ISZERO", "pc": 859, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000001"], "storage": null}, {"depth": 0, "error": "", "gas": 2466, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 860, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2463, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPI", "pc": 863, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000366"], "storage": null}, {"depth": 0, "error": "", "gas": 2453, "gasCost": 10, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH1", "pc": 864, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2450, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "DUP5", "pc": 866, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2447, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "DUP5", "pc": 867, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2444, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "ADD", "pc": 868, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 2441, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000"], "op": "MSTORE", "pc": 869, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000162"], "storage": null}, {"depth": 0, "error": "", "gas": 2435, "gasCost": 6, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 870, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2434, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 871, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2432, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 872, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160", "00000000000000000000000000000000000000000000000000000000000000a0"], "storage": null}, {"depth": 0, "error": "", "gas": 2430, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 873, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 2428, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 874, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2426, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 875, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001af"], "storage": null}, {"depth": 0, "error": "", "gas": 2418, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 431, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2417, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 432, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2414, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "DUP2", "pc": 435, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001b8"], "storage": null}, {"depth": 0, "error": "", "gas": 2411, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH2", "pc": 436, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001b8", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2408, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 439, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001b8", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000036c"], "storage": null}, {"depth": 0, "error": "", "gas": 2400, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 876, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001b8", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2399, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH1", "pc": 877, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001b8", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2396, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "ADD", "pc": 879, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001b8", "0000000000000000000000000000000000000000000000000000000000000002", "000000000000000000000000000000000000000000000000000000000000001f"], "storage": null}, {"depth": 0, "error": "", "gas": 2393, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH1", "pc": 880, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001b8", "0000000000000000000000000000000000000000000000000000000000000021"], "storage": null}, {"depth": 0, "error": "", "gas": 2390, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "NOT", "pc": 882, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001b8", "0000000000000000000000000000000000000000000000000000000000000021", "000000000000000000000000000000000000000000000000000000000000001f"], "storage": null}, {"depth": 0, "error": "", "gas": 2387, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "AND", "pc": 883, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001b8", "0000000000000000000000000000000000000000000000000000000000000021", "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"], "storage": null}, {"depth": 0, "error": "", "gas": 2384, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP1", "pc": 884, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "00000000000000000000000000000000000000000000000000000000000001b8", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2381, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 885, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000020", "00000000000000000000000000000000000000000000000000000000000001b8"], "storage": null}, {"depth": 0, "error": "", "gas": 2373, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 440, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2372, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP1", "pc": 441, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2369, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP4", "pc": 442, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2366, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "ADD", "pc": 443, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000020", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 2363, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH1", "pc": 444, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000160"], "storage": null}, {"depth": 0, "error": "", "gas": 2360, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "ADD", "pc": 446, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000160", "0000000000000000000000000000000000000000000000000000000000000020"], "storage": null}, {"depth": 0, "error": "", "gas": 2357, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP4", "pc": 447, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000180"], "storage": null}, {"depth": 0, "error": "", "gas": 2354, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP3", "pc": 448, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000180", "0000000000000000000000000000000000000000000000000000000000000002", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000280"], "storage": null}, {"depth": 0, "error": "", "gas": 2351, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 449, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000180", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002"], "storage": null}, {"depth": 0, "error": "", "gas": 2349, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 450, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000180", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000000"], "storage": null}, {"depth": 0, "error": "", "gas": 2347, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 451, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000180", "0000000000000000000000000000000000000000000000000000000000000280", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 2345, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 452, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000180", "0000000000000000000000000000000000000000000000000000000000000280"], "storage": null}, {"depth": 0, "error": "", "gas": 2337, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 640, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000180"], "storage": null}, {"depth": 0, "error": "", "gas": 2336, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP4", "pc": 641, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000dc", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000180"], "storage": null}, {"depth": 0, "error": "", "gas": 2333, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP3", "pc": 642, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000180", "0000000000000000000000000000000000000000000000000000000000000080", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "00000000000000000000000000000000000000000000000000000000000000dc"], "storage": null}, {"depth": 0, "error": "", "gas": 2330, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 643, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000180", "00000000000000000000000000000000000000000000000000000000000000dc", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 2328, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 644, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000180", "00000000000000000000000000000000000000000000000000000000000000dc", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000140"], "storage": null}, {"depth": 0, "error": "", "gas": 2326, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 645, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000180", "00000000000000000000000000000000000000000000000000000000000000dc", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 2324, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 646, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000180", "00000000000000000000000000000000000000000000000000000000000000dc"], "storage": null}, {"depth": 0, "error": "", "gas": 2316, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 220, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000180"], "storage": null}, {"depth": 0, "error": "", "gas": 2315, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "PUSH1", "pc": 221, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000180"], "storage": null}, {"depth": 0, "error": "", "gas": 2312, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "MLOAD", "pc": 223, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000180", "0000000000000000000000000000000000000000000000000000000000000040"], "storage": null}, {"depth": 0, "error": "", "gas": 2309, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "DUP1", "pc": 224, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000180", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 2306, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP2", "pc": 225, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "0000000000000000000000000000000000000000000000000000000000000180", "00000000000000000000000000000000000000000000000000000000000000c0", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 2303, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SUB", "pc": 226, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000c0", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000180"], "storage": null}, {"depth": 0, "error": "", "gas": 2300, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "SWAP1", "pc": 227, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000c0", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 2297, "gasCost": 3, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "LOG1", "pc": 228, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080", "34dee2aae457a1f92adebb1c2acc5ea1acfb088b578a4974c114e8082bf6500f", "00000000000000000000000000000000000000000000000000000000000000c0", "00000000000000000000000000000000000000000000000000000000000000c0"], "storage": null}, {"depth": 0, "error": "", "gas": 11, "gasCost": 2286, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "POP", "pc": 229, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065", "0000000000000000000000000000000000000000000000000000000000000080"], "storage": null}, {"depth": 0, "error": "", "gas": 9, "gasCost": 2, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMP", "pc": 230, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a", "0000000000000000000000000000000000000000000000000000000000000065"], "storage": null}, {"depth": 0, "error": "", "gas": 1, "gasCost": 8, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "JUMPDEST", "pc": 101, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a"], "storage": null}, {"depth": 0, "error": "", "gas": 0, "gasCost": 1, "memory": ["0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000", "00000000000000000000000000000000000000000000000000000000000000c0", "0000000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000040", "0000000000000000000000000000000000000000000000000000000000000080", "0000000000000000000000000000000000000000000000000000000000000005", "68656c6c6f000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000002", "6689000000000000000000000000000000000000000000000000000000000000", "0000000000000000000000000000000000000000000000000000000000000000"], "op": "STOP", "pc": 102, "stack": ["000000000000000000000000000000000000000000000000000000007829e62a"], "storage": null}]}} \ No newline at end of file diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..fc6bc6b --- /dev/null +++ b/tox.ini @@ -0,0 +1,29 @@ +[tox] +envlist = + lint + py{36,37} + +[travis] +python = + 3.6: lint, py36 + 3.7: py37 + +[flake8] +max-line-length=100 + +[testenv:lint] +deps=flake8 +basepython=python3 +extras=linter +commands=flake8 {toxinidir}/eth_event/ {toxinidir}/tests/ + +[testenv:py36] +deps=pytest +commands=python -m pytest tests/ + +[testenv:py37] +deps = + pytest + pytest-cov + coveralls +commands=python -m pytest tests/ --cov=eth_event/