Skip to content

Instantly share code, notes, and snippets.

@toandaominh1997
Created November 26, 2022 09:29
Show Gist options
  • Save toandaominh1997/144e7bcac713c3a56997144556862f7d to your computer and use it in GitHub Desktop.
Save toandaominh1997/144e7bcac713c3a56997144556862f7d to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
{
"id": "1fb874cf1b180615a62cca3aa2f6e8ef",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.17",
"solcLongVersion": "0.8.17+commit.8df45f5f",
"input": {
"language": "Solidity",
"sources": {
"artifacts/tonne.sol": {
"content": ""
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"errors": [
{
"component": "general",
"errorCode": "1878",
"formattedMessage": "Warning: SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.\n--> artifacts/tonne.sol\n\n",
"message": "SPDX license identifier not provided in source file. Before publishing, consider adding a comment containing \"SPDX-License-Identifier: <SPDX-License>\" to each source file. Use \"SPDX-License-Identifier: UNLICENSED\" for non-open-source code. Please see https://spdx.org for more information.",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "artifacts/tonne.sol",
"start": -1
},
"type": "Warning"
},
{
"component": "general",
"errorCode": "3420",
"formattedMessage": "Warning: Source file does not specify required compiler version! Consider adding \"pragma solidity ^0.8.17;\"\n--> artifacts/tonne.sol\n\n",
"message": "Source file does not specify required compiler version! Consider adding \"pragma solidity ^0.8.17;\"",
"severity": "warning",
"sourceLocation": {
"end": -1,
"file": "artifacts/tonne.sol",
"start": -1
},
"type": "Warning"
}
],
"sources": {
"artifacts/tonne.sol": {
"ast": {
"absolutePath": "artifacts/tonne.sol",
"exportedSymbols": {},
"id": 1,
"nodeType": "SourceUnit",
"nodes": [],
"src": "0:0:0"
},
"id": 0
}
}
}
}
{
"id": "5633d92bb075d4eee29348341172cb5c",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.17",
"solcLongVersion": "0.8.17+commit.8df45f5f",
"input": {
"language": "Solidity",
"sources": {
"contract-5b669ab6be.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.13;\n\ncontract EtherWallet {\n address payable public owner;\n\n constructor() {\n owner = payable(msg.sender);\n }\n\n receive() external payable {}\n\n function withdraw(uint _amount) external {\n require(msg.sender == owner, \"caller is not owner\");\n payable(msg.sender).transfer(_amount);\n }\n\n function getBalance() external view returns (uint) {\n return address(this).balance;\n }\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contract-5b669ab6be.sol": {
"EtherWallet": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "getBalance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address payable",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "withdraw",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contract-5b669ab6be.sol\":58:479 contract EtherWallet {... */\n mstore(0x40, 0x80)\n /* \"contract-5b669ab6be.sol\":120:178 constructor() {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n /* \"contract-5b669ab6be.sol\":160:170 msg.sender */\n caller\n /* \"contract-5b669ab6be.sol\":144:149 owner */\n 0x00\n dup1\n /* \"contract-5b669ab6be.sol\":144:171 owner = payable(msg.sender) */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contract-5b669ab6be.sol\":58:479 contract EtherWallet {... */\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contract-5b669ab6be.sol\":58:479 contract EtherWallet {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x12065fe0\n eq\n tag_3\n jumpi\n dup1\n 0x2e1a7d4d\n eq\n tag_4\n jumpi\n dup1\n 0x8da5cb5b\n eq\n tag_5\n jumpi\n jump(tag_2)\n tag_1:\n jumpi(tag_2, calldatasize)\n stop\n tag_2:\n 0x00\n dup1\n revert\n /* \"contract-5b669ab6be.sol\":381:477 function getBalance() external view returns (uint) {... */\n tag_3:\n callvalue\n dup1\n iszero\n tag_8\n jumpi\n 0x00\n dup1\n revert\n tag_8:\n pop\n tag_9\n tag_10\n jump\t// in\n tag_9:\n mload(0x40)\n tag_11\n swap2\n swap1\n tag_12\n jump\t// in\n tag_11:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contract-5b669ab6be.sol\":219:375 function withdraw(uint _amount) external {... */\n tag_4:\n callvalue\n dup1\n iszero\n tag_13\n jumpi\n 0x00\n dup1\n revert\n tag_13:\n pop\n tag_14\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_15\n swap2\n swap1\n tag_16\n jump\t// in\n tag_15:\n tag_17\n jump\t// in\n tag_14:\n stop\n /* \"contract-5b669ab6be.sol\":85:113 address payable public owner */\n tag_5:\n callvalue\n dup1\n iszero\n tag_18\n jumpi\n 0x00\n dup1\n revert\n tag_18:\n pop\n tag_19\n tag_20\n jump\t// in\n tag_19:\n mload(0x40)\n tag_21\n swap2\n swap1\n tag_22\n jump\t// in\n tag_21:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contract-5b669ab6be.sol\":381:477 function getBalance() external view returns (uint) {... */\n tag_10:\n /* \"contract-5b669ab6be.sol\":426:430 uint */\n 0x00\n /* \"contract-5b669ab6be.sol\":449:470 address(this).balance */\n selfbalance\n /* \"contract-5b669ab6be.sol\":442:470 return address(this).balance */\n swap1\n pop\n /* \"contract-5b669ab6be.sol\":381:477 function getBalance() external view returns (uint) {... */\n swap1\n jump\t// out\n /* \"contract-5b669ab6be.sol\":219:375 function withdraw(uint _amount) external {... */\n tag_17:\n /* \"contract-5b669ab6be.sol\":292:297 owner */\n 0x00\n dup1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contract-5b669ab6be.sol\":278:297 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contract-5b669ab6be.sol\":278:288 msg.sender */\n caller\n /* \"contract-5b669ab6be.sol\":278:297 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"contract-5b669ab6be.sol\":270:321 require(msg.sender == owner, \"caller is not owner\") */\n tag_25\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_26\n swap1\n tag_27\n jump\t// in\n tag_26:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_25:\n /* \"contract-5b669ab6be.sol\":339:349 msg.sender */\n caller\n /* \"contract-5b669ab6be.sol\":331:359 payable(msg.sender).transfer */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contract-5b669ab6be.sol\":331:368 payable(msg.sender).transfer(_amount) */\n 0x08fc\n /* \"contract-5b669ab6be.sol\":360:367 _amount */\n dup3\n /* \"contract-5b669ab6be.sol\":331:368 payable(msg.sender).transfer(_amount) */\n swap1\n dup2\n iszero\n mul\n swap1\n mload(0x40)\n 0x00\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n dup6\n dup9\n dup9\n call\n swap4\n pop\n pop\n pop\n pop\n iszero\n dup1\n iszero\n tag_29\n jumpi\n returndatasize\n 0x00\n dup1\n returndatacopy\n revert(0x00, returndatasize)\n tag_29:\n pop\n /* \"contract-5b669ab6be.sol\":219:375 function withdraw(uint _amount) external {... */\n pop\n jump\t// out\n /* \"contract-5b669ab6be.sol\":85:113 address payable public owner */\n tag_20:\n 0x00\n dup1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n jump\t// out\n /* \"#utility.yul\":7:84 */\n tag_30:\n /* \"#utility.yul\":44:51 */\n 0x00\n /* \"#utility.yul\":73:78 */\n dup2\n /* \"#utility.yul\":62:78 */\n swap1\n pop\n /* \"#utility.yul\":7:84 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":90:208 */\n tag_31:\n /* \"#utility.yul\":177:201 */\n tag_46\n /* \"#utility.yul\":195:200 */\n dup2\n /* \"#utility.yul\":177:201 */\n tag_30\n jump\t// in\n tag_46:\n /* \"#utility.yul\":172:175 */\n dup3\n /* \"#utility.yul\":165:202 */\n mstore\n /* \"#utility.yul\":90:208 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":214:436 */\n tag_12:\n /* \"#utility.yul\":307:311 */\n 0x00\n /* \"#utility.yul\":345:347 */\n 0x20\n /* \"#utility.yul\":334:343 */\n dup3\n /* \"#utility.yul\":330:348 */\n add\n /* \"#utility.yul\":322:348 */\n swap1\n pop\n /* \"#utility.yul\":358:429 */\n tag_48\n /* \"#utility.yul\":426:427 */\n 0x00\n /* \"#utility.yul\":415:424 */\n dup4\n /* \"#utility.yul\":411:428 */\n add\n /* \"#utility.yul\":402:408 */\n dup5\n /* \"#utility.yul\":358:429 */\n tag_31\n jump\t// in\n tag_48:\n /* \"#utility.yul\":214:436 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":523:640 */\n tag_33:\n /* \"#utility.yul\":632:633 */\n 0x00\n /* \"#utility.yul\":629:630 */\n dup1\n /* \"#utility.yul\":622:634 */\n revert\n /* \"#utility.yul\":769:891 */\n tag_35:\n /* \"#utility.yul\":842:866 */\n tag_53\n /* \"#utility.yul\":860:865 */\n dup2\n /* \"#utility.yul\":842:866 */\n tag_30\n jump\t// in\n tag_53:\n /* \"#utility.yul\":835:840 */\n dup2\n /* \"#utility.yul\":832:867 */\n eq\n /* \"#utility.yul\":822:885 */\n tag_54\n jumpi\n /* \"#utility.yul\":881:882 */\n 0x00\n /* \"#utility.yul\":878:879 */\n dup1\n /* \"#utility.yul\":871:883 */\n revert\n /* \"#utility.yul\":822:885 */\n tag_54:\n /* \"#utility.yul\":769:891 */\n pop\n jump\t// out\n /* \"#utility.yul\":897:1036 */\n tag_36:\n /* \"#utility.yul\":943:948 */\n 0x00\n /* \"#utility.yul\":981:987 */\n dup2\n /* \"#utility.yul\":968:988 */\n calldataload\n /* \"#utility.yul\":959:988 */\n swap1\n pop\n /* \"#utility.yul\":997:1030 */\n tag_56\n /* \"#utility.yul\":1024:1029 */\n dup2\n /* \"#utility.yul\":997:1030 */\n tag_35\n jump\t// in\n tag_56:\n /* \"#utility.yul\":897:1036 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1042:1371 */\n tag_16:\n /* \"#utility.yul\":1101:1107 */\n 0x00\n /* \"#utility.yul\":1150:1152 */\n 0x20\n /* \"#utility.yul\":1138:1147 */\n dup3\n /* \"#utility.yul\":1129:1136 */\n dup5\n /* \"#utility.yul\":1125:1148 */\n sub\n /* \"#utility.yul\":1121:1153 */\n slt\n /* \"#utility.yul\":1118:1237 */\n iszero\n tag_58\n jumpi\n /* \"#utility.yul\":1156:1235 */\n tag_59\n tag_33\n jump\t// in\n tag_59:\n /* \"#utility.yul\":1118:1237 */\n tag_58:\n /* \"#utility.yul\":1276:1277 */\n 0x00\n /* \"#utility.yul\":1301:1354 */\n tag_60\n /* \"#utility.yul\":1346:1353 */\n dup5\n /* \"#utility.yul\":1337:1343 */\n dup3\n /* \"#utility.yul\":1326:1335 */\n dup6\n /* \"#utility.yul\":1322:1344 */\n add\n /* \"#utility.yul\":1301:1354 */\n tag_36\n jump\t// in\n tag_60:\n /* \"#utility.yul\":1291:1354 */\n swap2\n pop\n /* \"#utility.yul\":1247:1364 */\n pop\n /* \"#utility.yul\":1042:1371 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1377:1503 */\n tag_37:\n /* \"#utility.yul\":1414:1421 */\n 0x00\n /* \"#utility.yul\":1454:1496 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":1447:1452 */\n dup3\n /* \"#utility.yul\":1443:1497 */\n and\n /* \"#utility.yul\":1432:1497 */\n swap1\n pop\n /* \"#utility.yul\":1377:1503 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1509:1613 */\n tag_38:\n /* \"#utility.yul\":1554:1561 */\n 0x00\n /* \"#utility.yul\":1583:1607 */\n tag_63\n /* \"#utility.yul\":1601:1606 */\n dup3\n /* \"#utility.yul\":1583:1607 */\n tag_37\n jump\t// in\n tag_63:\n /* \"#utility.yul\":1572:1607 */\n swap1\n pop\n /* \"#utility.yul\":1509:1613 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1619:1761 */\n tag_39:\n /* \"#utility.yul\":1722:1754 */\n tag_65\n /* \"#utility.yul\":1748:1753 */\n dup2\n /* \"#utility.yul\":1722:1754 */\n tag_38\n jump\t// in\n tag_65:\n /* \"#utility.yul\":1717:1720 */\n dup3\n /* \"#utility.yul\":1710:1755 */\n mstore\n /* \"#utility.yul\":1619:1761 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1767:2021 */\n tag_22:\n /* \"#utility.yul\":1876:1880 */\n 0x00\n /* \"#utility.yul\":1914:1916 */\n 0x20\n /* \"#utility.yul\":1903:1912 */\n dup3\n /* \"#utility.yul\":1899:1917 */\n add\n /* \"#utility.yul\":1891:1917 */\n swap1\n pop\n /* \"#utility.yul\":1927:2014 */\n tag_67\n /* \"#utility.yul\":2011:2012 */\n 0x00\n /* \"#utility.yul\":2000:2009 */\n dup4\n /* \"#utility.yul\":1996:2013 */\n add\n /* \"#utility.yul\":1987:1993 */\n dup5\n /* \"#utility.yul\":1927:2014 */\n tag_39\n jump\t// in\n tag_67:\n /* \"#utility.yul\":1767:2021 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2027:2196 */\n tag_40:\n /* \"#utility.yul\":2111:2122 */\n 0x00\n /* \"#utility.yul\":2145:2151 */\n dup3\n /* \"#utility.yul\":2140:2143 */\n dup3\n /* \"#utility.yul\":2133:2152 */\n mstore\n /* \"#utility.yul\":2185:2189 */\n 0x20\n /* \"#utility.yul\":2180:2183 */\n dup3\n /* \"#utility.yul\":2176:2190 */\n add\n /* \"#utility.yul\":2161:2190 */\n swap1\n pop\n /* \"#utility.yul\":2027:2196 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2202:2371 */\n tag_41:\n /* \"#utility.yul\":2342:2363 */\n 0x63616c6c6572206973206e6f74206f776e657200000000000000000000000000\n /* \"#utility.yul\":2338:2339 */\n 0x00\n /* \"#utility.yul\":2330:2336 */\n dup3\n /* \"#utility.yul\":2326:2340 */\n add\n /* \"#utility.yul\":2319:2364 */\n mstore\n /* \"#utility.yul\":2202:2371 */\n pop\n jump\t// out\n /* \"#utility.yul\":2377:2743 */\n tag_42:\n /* \"#utility.yul\":2519:2522 */\n 0x00\n /* \"#utility.yul\":2540:2607 */\n tag_71\n /* \"#utility.yul\":2604:2606 */\n 0x13\n /* \"#utility.yul\":2599:2602 */\n dup4\n /* \"#utility.yul\":2540:2607 */\n tag_40\n jump\t// in\n tag_71:\n /* \"#utility.yul\":2533:2607 */\n swap2\n pop\n /* \"#utility.yul\":2616:2709 */\n tag_72\n /* \"#utility.yul\":2705:2708 */\n dup3\n /* \"#utility.yul\":2616:2709 */\n tag_41\n jump\t// in\n tag_72:\n /* \"#utility.yul\":2734:2736 */\n 0x20\n /* \"#utility.yul\":2729:2732 */\n dup3\n /* \"#utility.yul\":2725:2737 */\n add\n /* \"#utility.yul\":2718:2737 */\n swap1\n pop\n /* \"#utility.yul\":2377:2743 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2749:3168 */\n tag_27:\n /* \"#utility.yul\":2915:2919 */\n 0x00\n /* \"#utility.yul\":2953:2955 */\n 0x20\n /* \"#utility.yul\":2942:2951 */\n dup3\n /* \"#utility.yul\":2938:2956 */\n add\n /* \"#utility.yul\":2930:2956 */\n swap1\n pop\n /* \"#utility.yul\":3002:3011 */\n dup2\n /* \"#utility.yul\":2996:3000 */\n dup2\n /* \"#utility.yul\":2992:3012 */\n sub\n /* \"#utility.yul\":2988:2989 */\n 0x00\n /* \"#utility.yul\":2977:2986 */\n dup4\n /* \"#utility.yul\":2973:2990 */\n add\n /* \"#utility.yul\":2966:3013 */\n mstore\n /* \"#utility.yul\":3030:3161 */\n tag_74\n /* \"#utility.yul\":3156:3160 */\n dup2\n /* \"#utility.yul\":3030:3161 */\n tag_42\n jump\t// in\n tag_74:\n /* \"#utility.yul\":3022:3161 */\n swap1\n pop\n /* \"#utility.yul\":2749:3168 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122086408ae0daa8e772754f2f2df5a4b7fa72edcbbb297f037c41b2d19cef42111664736f6c63430008110033\n}\n",
"bytecode": {
"functionDebugData": {
"@_15": {
"entryPoint": null,
"id": 15,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610368806100606000396000f3fe6080604052600436106100385760003560e01c806312065fe0146100445780632e1a7d4d1461006f5780638da5cb5b146100985761003f565b3661003f57005b600080fd5b34801561005057600080fd5b506100596100c3565b60405161006691906101e0565b60405180910390f35b34801561007b57600080fd5b506100966004803603810190610091919061022c565b6100cb565b005b3480156100a457600080fd5b506100ad6101a3565b6040516100ba919061029a565b60405180910390f35b600047905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161015090610312565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561019f573d6000803e3d6000fd5b5050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000819050919050565b6101da816101c7565b82525050565b60006020820190506101f560008301846101d1565b92915050565b600080fd5b610209816101c7565b811461021457600080fd5b50565b60008135905061022681610200565b92915050565b600060208284031215610242576102416101fb565b5b600061025084828501610217565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061028482610259565b9050919050565b61029481610279565b82525050565b60006020820190506102af600083018461028b565b92915050565b600082825260208201905092915050565b7f63616c6c6572206973206e6f74206f776e657200000000000000000000000000600082015250565b60006102fc6013836102b5565b9150610307826102c6565b602082019050919050565b6000602082019050818103600083015261032b816102ef565b905091905056fea264697066735822122086408ae0daa8e772754f2f2df5a4b7fa72edcbbb297f037c41b2d19cef42111664736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLER PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x368 DUP1 PUSH2 0x60 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x38 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x12065FE0 EQ PUSH2 0x44 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x98 JUMPI PUSH2 0x3F JUMP JUMPDEST CALLDATASIZE PUSH2 0x3F JUMPI STOP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x59 PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x1E0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x96 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x91 SWAP2 SWAP1 PUSH2 0x22C JUMP JUMPDEST PUSH2 0xCB JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xAD PUSH2 0x1A3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBA SWAP2 SWAP1 PUSH2 0x29A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SELFBALANCE SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x159 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x150 SWAP1 PUSH2 0x312 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP3 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x19F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1DA DUP2 PUSH2 0x1C7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1F5 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1D1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x209 DUP2 PUSH2 0x1C7 JUMP JUMPDEST DUP2 EQ PUSH2 0x214 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x226 DUP2 PUSH2 0x200 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x242 JUMPI PUSH2 0x241 PUSH2 0x1FB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x250 DUP5 DUP3 DUP6 ADD PUSH2 0x217 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x284 DUP3 PUSH2 0x259 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x294 DUP2 PUSH2 0x279 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2AF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x28B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x63616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FC PUSH1 0x13 DUP4 PUSH2 0x2B5 JUMP JUMPDEST SWAP2 POP PUSH2 0x307 DUP3 PUSH2 0x2C6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x32B DUP2 PUSH2 0x2EF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP7 BLOCKHASH DUP11 0xE0 0xDA 0xA8 0xE7 PUSH19 0x754F2F2DF5A4B7FA72EDCBBB297F037C41B2D1 SWAP13 0xEF TIMESTAMP GT AND PUSH5 0x736F6C6343 STOP ADDMOD GT STOP CALLER ",
"sourceMap": "58:421:0:-:0;;;120:58;;;;;;;;;;160:10;144:5;;:27;;;;;;;;;;;;;;;;;;58:421;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_19": {
"entryPoint": null,
"id": 19,
"parameterSlots": 0,
"returnSlots": 0
},
"@getBalance_54": {
"entryPoint": 195,
"id": 54,
"parameterSlots": 0,
"returnSlots": 1
},
"@owner_3": {
"entryPoint": 419,
"id": 3,
"parameterSlots": 0,
"returnSlots": 0
},
"@withdraw_42": {
"entryPoint": 203,
"id": 42,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 535,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 556,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_payable_to_t_address_payable_fromStack": {
"entryPoint": 651,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197_to_t_string_memory_ptr_fromStack": {
"entryPoint": 751,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 465,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed": {
"entryPoint": 666,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 786,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 480,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 693,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address_payable": {
"entryPoint": 633,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 601,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 455,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 507,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197": {
"entryPoint": 710,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 512,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3171:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "812:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "878:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "881:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "871:6:1"
},
"nodeType": "YulFunctionCall",
"src": "871:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "871:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "835:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "860:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "842:17:1"
},
"nodeType": "YulFunctionCall",
"src": "842:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "832:2:1"
},
"nodeType": "YulFunctionCall",
"src": "832:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "825:6:1"
},
"nodeType": "YulFunctionCall",
"src": "825:43:1"
},
"nodeType": "YulIf",
"src": "822:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "805:5:1",
"type": ""
}
],
"src": "769:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "949:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "959:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "981:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "968:12:1"
},
"nodeType": "YulFunctionCall",
"src": "968:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "959:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1024:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "997:26:1"
},
"nodeType": "YulFunctionCall",
"src": "997:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "997:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "927:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "935:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "943:5:1",
"type": ""
}
],
"src": "897:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1108:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1154:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1156:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1156:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1156:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1129:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1138:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1125:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1121:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1121:32:1"
},
"nodeType": "YulIf",
"src": "1118:119:1"
},
{
"nodeType": "YulBlock",
"src": "1247:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1262:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1276:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1266:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1291:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1326:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1322:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1322:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1346:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1301:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1301:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1291:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1078:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1089:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1101:6:1",
"type": ""
}
],
"src": "1042:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1422:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1432:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1447:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1454:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1443:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1443:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1432:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1404:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1414:7:1",
"type": ""
}
],
"src": "1377:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1562:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1572:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1601:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1583:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1583:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1572:7:1"
}
]
}
]
},
"name": "cleanup_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1544:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1554:7:1",
"type": ""
}
],
"src": "1509:104:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1700:61:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1717:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1748:5:1"
}
],
"functionName": {
"name": "cleanup_t_address_payable",
"nodeType": "YulIdentifier",
"src": "1722:25:1"
},
"nodeType": "YulFunctionCall",
"src": "1722:32:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1710:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1710:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "1710:45:1"
}
]
},
"name": "abi_encode_t_address_payable_to_t_address_payable_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1688:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1695:3:1",
"type": ""
}
],
"src": "1619:142:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1881:140:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1891:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1903:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1914:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1899:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1899:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1891:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1987:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2000:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2011:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1996:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1996:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_payable_to_t_address_payable_fromStack",
"nodeType": "YulIdentifier",
"src": "1927:59:1"
},
"nodeType": "YulFunctionCall",
"src": "1927:87:1"
},
"nodeType": "YulExpressionStatement",
"src": "1927:87:1"
}
]
},
"name": "abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1853:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1865:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1876:4:1",
"type": ""
}
],
"src": "1767:254:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2123:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2140:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2145:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2133:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2133:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "2133:19:1"
},
{
"nodeType": "YulAssignment",
"src": "2161:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2180:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2185:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2176:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2176:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2161:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2095:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2100:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2111:11:1",
"type": ""
}
],
"src": "2027:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2308:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2330:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2338:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2326:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2326:14:1"
},
{
"hexValue": "63616c6c6572206973206e6f74206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "2342:21:1",
"type": "",
"value": "caller is not owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2319:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2319:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "2319:45:1"
}
]
},
"name": "store_literal_in_memory_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2300:6:1",
"type": ""
}
],
"src": "2202:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2523:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2533:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2599:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2604:2:1",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2540:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2540:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2533:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2705:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197",
"nodeType": "YulIdentifier",
"src": "2616:88:1"
},
"nodeType": "YulFunctionCall",
"src": "2616:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "2616:93:1"
},
{
"nodeType": "YulAssignment",
"src": "2718:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2729:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2734:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2725:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2725:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2718:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2511:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2519:3:1",
"type": ""
}
],
"src": "2377:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2920:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2930:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2942:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2953:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2938:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2938:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2930:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2977:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2988:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2973:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2973:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2996:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3002:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2992:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2992:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2966:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2966:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "2966:47:1"
},
{
"nodeType": "YulAssignment",
"src": "3022:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3156:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3030:124:1"
},
"nodeType": "YulFunctionCall",
"src": "3030:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3022:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2900:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2915:4:1",
"type": ""
}
],
"src": "2749:419:1"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address_payable(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_payable_to_t_address_payable_fromStack(value, pos) {\n mstore(pos, cleanup_t_address_payable(value))\n }\n\n function abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_payable_to_t_address_payable_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197(memPtr) {\n\n mstore(add(memPtr, 0), \"caller is not owner\")\n\n }\n\n function abi_encode_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100385760003560e01c806312065fe0146100445780632e1a7d4d1461006f5780638da5cb5b146100985761003f565b3661003f57005b600080fd5b34801561005057600080fd5b506100596100c3565b60405161006691906101e0565b60405180910390f35b34801561007b57600080fd5b506100966004803603810190610091919061022c565b6100cb565b005b3480156100a457600080fd5b506100ad6101a3565b6040516100ba919061029a565b60405180910390f35b600047905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161015090610312565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561019f573d6000803e3d6000fd5b5050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000819050919050565b6101da816101c7565b82525050565b60006020820190506101f560008301846101d1565b92915050565b600080fd5b610209816101c7565b811461021457600080fd5b50565b60008135905061022681610200565b92915050565b600060208284031215610242576102416101fb565b5b600061025084828501610217565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061028482610259565b9050919050565b61029481610279565b82525050565b60006020820190506102af600083018461028b565b92915050565b600082825260208201905092915050565b7f63616c6c6572206973206e6f74206f776e657200000000000000000000000000600082015250565b60006102fc6013836102b5565b9150610307826102c6565b602082019050919050565b6000602082019050818103600083015261032b816102ef565b905091905056fea264697066735822122086408ae0daa8e772754f2f2df5a4b7fa72edcbbb297f037c41b2d19cef42111664736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x38 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x12065FE0 EQ PUSH2 0x44 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x98 JUMPI PUSH2 0x3F JUMP JUMPDEST CALLDATASIZE PUSH2 0x3F JUMPI STOP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x59 PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x1E0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x96 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x91 SWAP2 SWAP1 PUSH2 0x22C JUMP JUMPDEST PUSH2 0xCB JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xAD PUSH2 0x1A3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBA SWAP2 SWAP1 PUSH2 0x29A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SELFBALANCE SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x159 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x150 SWAP1 PUSH2 0x312 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP3 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x19F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1DA DUP2 PUSH2 0x1C7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1F5 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1D1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x209 DUP2 PUSH2 0x1C7 JUMP JUMPDEST DUP2 EQ PUSH2 0x214 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x226 DUP2 PUSH2 0x200 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x242 JUMPI PUSH2 0x241 PUSH2 0x1FB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x250 DUP5 DUP3 DUP6 ADD PUSH2 0x217 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x284 DUP3 PUSH2 0x259 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x294 DUP2 PUSH2 0x279 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2AF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x28B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x63616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FC PUSH1 0x13 DUP4 PUSH2 0x2B5 JUMP JUMPDEST SWAP2 POP PUSH2 0x307 DUP3 PUSH2 0x2C6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x32B DUP2 PUSH2 0x2EF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP7 BLOCKHASH DUP11 0xE0 0xDA 0xA8 0xE7 PUSH19 0x754F2F2DF5A4B7FA72EDCBBB297F037C41B2D1 SWAP13 0xEF TIMESTAMP GT AND PUSH5 0x736F6C6343 STOP ADDMOD GT STOP CALLER ",
"sourceMap": "58:421:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;219:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;381:96;426:4;449:21;442:28;;381:96;:::o;219:156::-;292:5;;;;;;;;;;278:19;;:10;:19;;;270:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;339:10;331:28;;:37;360:7;331:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219:156;:::o;85:28::-;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;523:117::-;632:1;629;622:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o;1377:126::-;1414:7;1454:42;1447:5;1443:54;1432:65;;1377:126;;;:::o;1509:104::-;1554:7;1583:24;1601:5;1583:24;:::i;:::-;1572:35;;1509:104;;;:::o;1619:142::-;1722:32;1748:5;1722:32;:::i;:::-;1717:3;1710:45;1619:142;;:::o;1767:254::-;1876:4;1914:2;1903:9;1899:18;1891:26;;1927:87;2011:1;2000:9;1996:17;1987:6;1927:87;:::i;:::-;1767:254;;;;:::o;2027:169::-;2111:11;2145:6;2140:3;2133:19;2185:4;2180:3;2176:14;2161:29;;2027:169;;;;:::o;2202:::-;2342:21;2338:1;2330:6;2326:14;2319:45;2202:169;:::o;2377:366::-;2519:3;2540:67;2604:2;2599:3;2540:67;:::i;:::-;2533:74;;2616:93;2705:3;2616:93;:::i;:::-;2734:2;2729:3;2725:12;2718:19;;2377:366;;;:::o;2749:419::-;2915:4;2953:2;2942:9;2938:18;2930:26;;3002:9;2996:4;2992:20;2988:1;2977:9;2973:17;2966:47;3030:131;3156:4;3030:131;:::i;:::-;3022:139;;2749:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "174400",
"executionCost": "24486",
"totalCost": "198886"
},
"external": {
"getBalance()": "317",
"owner()": "2533",
"withdraw(uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 58,
"end": 479,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 58,
"end": 479,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 58,
"end": 479,
"name": "MSTORE",
"source": 0
},
{
"begin": 120,
"end": 178,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 120,
"end": 178,
"name": "DUP1",
"source": 0
},
{
"begin": 120,
"end": 178,
"name": "ISZERO",
"source": 0
},
{
"begin": 120,
"end": 178,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 120,
"end": 178,
"name": "JUMPI",
"source": 0
},
{
"begin": 120,
"end": 178,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 120,
"end": 178,
"name": "DUP1",
"source": 0
},
{
"begin": 120,
"end": 178,
"name": "REVERT",
"source": 0
},
{
"begin": 120,
"end": 178,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 120,
"end": 178,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 120,
"end": 178,
"name": "POP",
"source": 0
},
{
"begin": 160,
"end": 170,
"name": "CALLER",
"source": 0
},
{
"begin": 144,
"end": 149,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 144,
"end": 149,
"name": "DUP1",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 144,
"end": 171,
"name": "EXP",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "DUP2",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "SLOAD",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "DUP2",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 144,
"end": 171,
"name": "MUL",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "NOT",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "AND",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "SWAP1",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "DUP4",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 144,
"end": 171,
"name": "AND",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "MUL",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "OR",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "SWAP1",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "SSTORE",
"source": 0
},
{
"begin": 144,
"end": 171,
"name": "POP",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 58,
"end": 479,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 58,
"end": 479,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 479,
"name": "CODECOPY",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 479,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a264697066735822122086408ae0daa8e772754f2f2df5a4b7fa72edcbbb297f037c41b2d19cef42111664736f6c63430008110033",
".code": [
{
"begin": 58,
"end": 479,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 58,
"end": 479,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 58,
"end": 479,
"name": "MSTORE",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 58,
"end": 479,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "LT",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 479,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 479,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 58,
"end": 479,
"name": "SHR",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH",
"source": 0,
"value": "12065FE0"
},
{
"begin": 58,
"end": 479,
"name": "EQ",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 58,
"end": 479,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH",
"source": 0,
"value": "2E1A7D4D"
},
{
"begin": 58,
"end": 479,
"name": "EQ",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 58,
"end": 479,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH",
"source": 0,
"value": "8DA5CB5B"
},
{
"begin": 58,
"end": 479,
"name": "EQ",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 58,
"end": 479,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 58,
"end": 479,
"name": "JUMP",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 58,
"end": 479,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 58,
"end": 479,
"name": "JUMPI",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "STOP",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 58,
"end": 479,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 58,
"end": 479,
"name": "DUP1",
"source": 0
},
{
"begin": 58,
"end": 479,
"name": "REVERT",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 381,
"end": 477,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "DUP1",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "ISZERO",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 381,
"end": 477,
"name": "JUMPI",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 381,
"end": 477,
"name": "DUP1",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "REVERT",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 381,
"end": 477,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "POP",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 381,
"end": 477,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 381,
"end": 477,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 381,
"end": 477,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 381,
"end": 477,
"name": "MLOAD",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 381,
"end": 477,
"name": "SWAP2",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "SWAP1",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 381,
"end": 477,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 381,
"end": 477,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 381,
"end": 477,
"name": "MLOAD",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "DUP1",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "SWAP2",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "SUB",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "SWAP1",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "RETURN",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 219,
"end": 375,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "DUP1",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "ISZERO",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 219,
"end": 375,
"name": "JUMPI",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 219,
"end": 375,
"name": "DUP1",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "REVERT",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 219,
"end": 375,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "POP",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 219,
"end": 375,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 219,
"end": 375,
"name": "DUP1",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "SUB",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "DUP2",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "ADD",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "SWAP1",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 219,
"end": 375,
"name": "SWAP2",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "SWAP1",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 219,
"end": 375,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 219,
"end": 375,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 219,
"end": 375,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 219,
"end": 375,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "STOP",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 85,
"end": 113,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "DUP1",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "ISZERO",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 85,
"end": 113,
"name": "JUMPI",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 85,
"end": 113,
"name": "DUP1",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "REVERT",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 85,
"end": 113,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "POP",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 85,
"end": 113,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 85,
"end": 113,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 85,
"end": 113,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 85,
"end": 113,
"name": "MLOAD",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 85,
"end": 113,
"name": "SWAP2",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "SWAP1",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 85,
"end": 113,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 85,
"end": 113,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 85,
"end": 113,
"name": "MLOAD",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "DUP1",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "SWAP2",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "SUB",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "SWAP1",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "RETURN",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 381,
"end": 477,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 426,
"end": 430,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 449,
"end": 470,
"name": "SELFBALANCE",
"source": 0
},
{
"begin": 442,
"end": 470,
"name": "SWAP1",
"source": 0
},
{
"begin": 442,
"end": 470,
"name": "POP",
"source": 0
},
{
"begin": 381,
"end": 477,
"name": "SWAP1",
"source": 0
},
{
"begin": 381,
"end": 477,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 219,
"end": 375,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 292,
"end": 297,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 292,
"end": 297,
"name": "DUP1",
"source": 0
},
{
"begin": 292,
"end": 297,
"name": "SLOAD",
"source": 0
},
{
"begin": 292,
"end": 297,
"name": "SWAP1",
"source": 0
},
{
"begin": 292,
"end": 297,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 292,
"end": 297,
"name": "EXP",
"source": 0
},
{
"begin": 292,
"end": 297,
"name": "SWAP1",
"source": 0
},
{
"begin": 292,
"end": 297,
"name": "DIV",
"source": 0
},
{
"begin": 292,
"end": 297,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 292,
"end": 297,
"name": "AND",
"source": 0
},
{
"begin": 278,
"end": 297,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 278,
"end": 297,
"name": "AND",
"source": 0
},
{
"begin": 278,
"end": 288,
"name": "CALLER",
"source": 0
},
{
"begin": 278,
"end": 297,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 278,
"end": 297,
"name": "AND",
"source": 0
},
{
"begin": 278,
"end": 297,
"name": "EQ",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 270,
"end": 321,
"name": "JUMPI",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 270,
"end": 321,
"name": "MLOAD",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 270,
"end": 321,
"name": "DUP2",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "MSTORE",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 270,
"end": 321,
"name": "ADD",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 270,
"end": 321,
"name": "SWAP1",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 270,
"end": 321,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 270,
"end": 321,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 270,
"end": 321,
"name": "MLOAD",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "DUP1",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "SWAP2",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "SUB",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "SWAP1",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "REVERT",
"source": 0
},
{
"begin": 270,
"end": 321,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 270,
"end": 321,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 339,
"end": 349,
"name": "CALLER",
"source": 0
},
{
"begin": 331,
"end": 359,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 331,
"end": 359,
"name": "AND",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "PUSH",
"source": 0,
"value": "8FC"
},
{
"begin": 360,
"end": 367,
"name": "DUP3",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "SWAP1",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "DUP2",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "ISZERO",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "MUL",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "SWAP1",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 331,
"end": 368,
"name": "MLOAD",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 331,
"end": 368,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 331,
"end": 368,
"name": "MLOAD",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "DUP1",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "DUP4",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "SUB",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "DUP2",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "DUP6",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "DUP9",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "DUP9",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "CALL",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "SWAP4",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "POP",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "POP",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "POP",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "POP",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "ISZERO",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "DUP1",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "ISZERO",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 331,
"end": 368,
"name": "JUMPI",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 331,
"end": 368,
"name": "DUP1",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "RETURNDATACOPY",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 331,
"end": 368,
"name": "REVERT",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "tag",
"source": 0,
"value": "29"
},
{
"begin": 331,
"end": 368,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 331,
"end": 368,
"name": "POP",
"source": 0
},
{
"begin": 219,
"end": 375,
"name": "POP",
"source": 0
},
{
"begin": 219,
"end": 375,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 85,
"end": 113,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 85,
"end": 113,
"name": "DUP1",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "SLOAD",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "SWAP1",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 85,
"end": 113,
"name": "EXP",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "SWAP1",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "DIV",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 85,
"end": 113,
"name": "AND",
"source": 0
},
{
"begin": 85,
"end": 113,
"name": "DUP2",
"source": 0
},
{
"begin": 85,
"end": 113,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 7,
"end": 84,
"name": "tag",
"source": 1,
"value": "30"
},
{
"begin": 7,
"end": 84,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 44,
"end": 51,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 73,
"end": 78,
"name": "DUP2",
"source": 1
},
{
"begin": 62,
"end": 78,
"name": "SWAP1",
"source": 1
},
{
"begin": 62,
"end": 78,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 84,
"name": "SWAP2",
"source": 1
},
{
"begin": 7,
"end": 84,
"name": "SWAP1",
"source": 1
},
{
"begin": 7,
"end": 84,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 84,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 90,
"end": 208,
"name": "tag",
"source": 1,
"value": "31"
},
{
"begin": 90,
"end": 208,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 177,
"end": 201,
"name": "PUSH [tag]",
"source": 1,
"value": "46"
},
{
"begin": 195,
"end": 200,
"name": "DUP2",
"source": 1
},
{
"begin": 177,
"end": 201,
"name": "PUSH [tag]",
"source": 1,
"value": "30"
},
{
"begin": 177,
"end": 201,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 177,
"end": 201,
"name": "tag",
"source": 1,
"value": "46"
},
{
"begin": 177,
"end": 201,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 172,
"end": 175,
"name": "DUP3",
"source": 1
},
{
"begin": 165,
"end": 202,
"name": "MSTORE",
"source": 1
},
{
"begin": 90,
"end": 208,
"name": "POP",
"source": 1
},
{
"begin": 90,
"end": 208,
"name": "POP",
"source": 1
},
{
"begin": 90,
"end": 208,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "tag",
"source": 1,
"value": "12"
},
{
"begin": 214,
"end": 436,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 307,
"end": 311,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 345,
"end": 347,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 334,
"end": 343,
"name": "DUP3",
"source": 1
},
{
"begin": 330,
"end": 348,
"name": "ADD",
"source": 1
},
{
"begin": 322,
"end": 348,
"name": "SWAP1",
"source": 1
},
{
"begin": 322,
"end": 348,
"name": "POP",
"source": 1
},
{
"begin": 358,
"end": 429,
"name": "PUSH [tag]",
"source": 1,
"value": "48"
},
{
"begin": 426,
"end": 427,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 415,
"end": 424,
"name": "DUP4",
"source": 1
},
{
"begin": 411,
"end": 428,
"name": "ADD",
"source": 1
},
{
"begin": 402,
"end": 408,
"name": "DUP5",
"source": 1
},
{
"begin": 358,
"end": 429,
"name": "PUSH [tag]",
"source": 1,
"value": "31"
},
{
"begin": 358,
"end": 429,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 358,
"end": 429,
"name": "tag",
"source": 1,
"value": "48"
},
{
"begin": 358,
"end": 429,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "SWAP3",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "SWAP2",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "POP",
"source": 1
},
{
"begin": 214,
"end": 436,
"name": "POP",
"source": 1
},
{
"begin": 214,
"end": 436,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 523,
"end": 640,
"name": "tag",
"source": 1,
"value": "33"
},
{
"begin": 523,
"end": 640,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 632,
"end": 633,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 629,
"end": 630,
"name": "DUP1",
"source": 1
},
{
"begin": 622,
"end": 634,
"name": "REVERT",
"source": 1
},
{
"begin": 769,
"end": 891,
"name": "tag",
"source": 1,
"value": "35"
},
{
"begin": 769,
"end": 891,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 842,
"end": 866,
"name": "PUSH [tag]",
"source": 1,
"value": "53"
},
{
"begin": 860,
"end": 865,
"name": "DUP2",
"source": 1
},
{
"begin": 842,
"end": 866,
"name": "PUSH [tag]",
"source": 1,
"value": "30"
},
{
"begin": 842,
"end": 866,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 842,
"end": 866,
"name": "tag",
"source": 1,
"value": "53"
},
{
"begin": 842,
"end": 866,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 835,
"end": 840,
"name": "DUP2",
"source": 1
},
{
"begin": 832,
"end": 867,
"name": "EQ",
"source": 1
},
{
"begin": 822,
"end": 885,
"name": "PUSH [tag]",
"source": 1,
"value": "54"
},
{
"begin": 822,
"end": 885,
"name": "JUMPI",
"source": 1
},
{
"begin": 881,
"end": 882,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 878,
"end": 879,
"name": "DUP1",
"source": 1
},
{
"begin": 871,
"end": 883,
"name": "REVERT",
"source": 1
},
{
"begin": 822,
"end": 885,
"name": "tag",
"source": 1,
"value": "54"
},
{
"begin": 822,
"end": 885,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 769,
"end": 891,
"name": "POP",
"source": 1
},
{
"begin": 769,
"end": 891,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 897,
"end": 1036,
"name": "tag",
"source": 1,
"value": "36"
},
{
"begin": 897,
"end": 1036,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 943,
"end": 948,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 981,
"end": 987,
"name": "DUP2",
"source": 1
},
{
"begin": 968,
"end": 988,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 959,
"end": 988,
"name": "SWAP1",
"source": 1
},
{
"begin": 959,
"end": 988,
"name": "POP",
"source": 1
},
{
"begin": 997,
"end": 1030,
"name": "PUSH [tag]",
"source": 1,
"value": "56"
},
{
"begin": 1024,
"end": 1029,
"name": "DUP2",
"source": 1
},
{
"begin": 997,
"end": 1030,
"name": "PUSH [tag]",
"source": 1,
"value": "35"
},
{
"begin": 997,
"end": 1030,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 997,
"end": 1030,
"name": "tag",
"source": 1,
"value": "56"
},
{
"begin": 997,
"end": 1030,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 897,
"end": 1036,
"name": "SWAP3",
"source": 1
},
{
"begin": 897,
"end": 1036,
"name": "SWAP2",
"source": 1
},
{
"begin": 897,
"end": 1036,
"name": "POP",
"source": 1
},
{
"begin": 897,
"end": 1036,
"name": "POP",
"source": 1
},
{
"begin": 897,
"end": 1036,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1042,
"end": 1371,
"name": "tag",
"source": 1,
"value": "16"
},
{
"begin": 1042,
"end": 1371,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1101,
"end": 1107,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1150,
"end": 1152,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1138,
"end": 1147,
"name": "DUP3",
"source": 1
},
{
"begin": 1129,
"end": 1136,
"name": "DUP5",
"source": 1
},
{
"begin": 1125,
"end": 1148,
"name": "SUB",
"source": 1
},
{
"begin": 1121,
"end": 1153,
"name": "SLT",
"source": 1
},
{
"begin": 1118,
"end": 1237,
"name": "ISZERO",
"source": 1
},
{
"begin": 1118,
"end": 1237,
"name": "PUSH [tag]",
"source": 1,
"value": "58"
},
{
"begin": 1118,
"end": 1237,
"name": "JUMPI",
"source": 1
},
{
"begin": 1156,
"end": 1235,
"name": "PUSH [tag]",
"source": 1,
"value": "59"
},
{
"begin": 1156,
"end": 1235,
"name": "PUSH [tag]",
"source": 1,
"value": "33"
},
{
"begin": 1156,
"end": 1235,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1156,
"end": 1235,
"name": "tag",
"source": 1,
"value": "59"
},
{
"begin": 1156,
"end": 1235,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1118,
"end": 1237,
"name": "tag",
"source": 1,
"value": "58"
},
{
"begin": 1118,
"end": 1237,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1276,
"end": 1277,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1301,
"end": 1354,
"name": "PUSH [tag]",
"source": 1,
"value": "60"
},
{
"begin": 1346,
"end": 1353,
"name": "DUP5",
"source": 1
},
{
"begin": 1337,
"end": 1343,
"name": "DUP3",
"source": 1
},
{
"begin": 1326,
"end": 1335,
"name": "DUP6",
"source": 1
},
{
"begin": 1322,
"end": 1344,
"name": "ADD",
"source": 1
},
{
"begin": 1301,
"end": 1354,
"name": "PUSH [tag]",
"source": 1,
"value": "36"
},
{
"begin": 1301,
"end": 1354,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1301,
"end": 1354,
"name": "tag",
"source": 1,
"value": "60"
},
{
"begin": 1301,
"end": 1354,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1291,
"end": 1354,
"name": "SWAP2",
"source": 1
},
{
"begin": 1291,
"end": 1354,
"name": "POP",
"source": 1
},
{
"begin": 1247,
"end": 1364,
"name": "POP",
"source": 1
},
{
"begin": 1042,
"end": 1371,
"name": "SWAP3",
"source": 1
},
{
"begin": 1042,
"end": 1371,
"name": "SWAP2",
"source": 1
},
{
"begin": 1042,
"end": 1371,
"name": "POP",
"source": 1
},
{
"begin": 1042,
"end": 1371,
"name": "POP",
"source": 1
},
{
"begin": 1042,
"end": 1371,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1377,
"end": 1503,
"name": "tag",
"source": 1,
"value": "37"
},
{
"begin": 1377,
"end": 1503,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1414,
"end": 1421,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1454,
"end": 1496,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1447,
"end": 1452,
"name": "DUP3",
"source": 1
},
{
"begin": 1443,
"end": 1497,
"name": "AND",
"source": 1
},
{
"begin": 1432,
"end": 1497,
"name": "SWAP1",
"source": 1
},
{
"begin": 1432,
"end": 1497,
"name": "POP",
"source": 1
},
{
"begin": 1377,
"end": 1503,
"name": "SWAP2",
"source": 1
},
{
"begin": 1377,
"end": 1503,
"name": "SWAP1",
"source": 1
},
{
"begin": 1377,
"end": 1503,
"name": "POP",
"source": 1
},
{
"begin": 1377,
"end": 1503,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1509,
"end": 1613,
"name": "tag",
"source": 1,
"value": "38"
},
{
"begin": 1509,
"end": 1613,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1554,
"end": 1561,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1583,
"end": 1607,
"name": "PUSH [tag]",
"source": 1,
"value": "63"
},
{
"begin": 1601,
"end": 1606,
"name": "DUP3",
"source": 1
},
{
"begin": 1583,
"end": 1607,
"name": "PUSH [tag]",
"source": 1,
"value": "37"
},
{
"begin": 1583,
"end": 1607,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1583,
"end": 1607,
"name": "tag",
"source": 1,
"value": "63"
},
{
"begin": 1583,
"end": 1607,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1572,
"end": 1607,
"name": "SWAP1",
"source": 1
},
{
"begin": 1572,
"end": 1607,
"name": "POP",
"source": 1
},
{
"begin": 1509,
"end": 1613,
"name": "SWAP2",
"source": 1
},
{
"begin": 1509,
"end": 1613,
"name": "SWAP1",
"source": 1
},
{
"begin": 1509,
"end": 1613,
"name": "POP",
"source": 1
},
{
"begin": 1509,
"end": 1613,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1619,
"end": 1761,
"name": "tag",
"source": 1,
"value": "39"
},
{
"begin": 1619,
"end": 1761,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1722,
"end": 1754,
"name": "PUSH [tag]",
"source": 1,
"value": "65"
},
{
"begin": 1748,
"end": 1753,
"name": "DUP2",
"source": 1
},
{
"begin": 1722,
"end": 1754,
"name": "PUSH [tag]",
"source": 1,
"value": "38"
},
{
"begin": 1722,
"end": 1754,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1722,
"end": 1754,
"name": "tag",
"source": 1,
"value": "65"
},
{
"begin": 1722,
"end": 1754,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1717,
"end": 1720,
"name": "DUP3",
"source": 1
},
{
"begin": 1710,
"end": 1755,
"name": "MSTORE",
"source": 1
},
{
"begin": 1619,
"end": 1761,
"name": "POP",
"source": 1
},
{
"begin": 1619,
"end": 1761,
"name": "POP",
"source": 1
},
{
"begin": 1619,
"end": 1761,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1767,
"end": 2021,
"name": "tag",
"source": 1,
"value": "22"
},
{
"begin": 1767,
"end": 2021,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1876,
"end": 1880,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1914,
"end": 1916,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1903,
"end": 1912,
"name": "DUP3",
"source": 1
},
{
"begin": 1899,
"end": 1917,
"name": "ADD",
"source": 1
},
{
"begin": 1891,
"end": 1917,
"name": "SWAP1",
"source": 1
},
{
"begin": 1891,
"end": 1917,
"name": "POP",
"source": 1
},
{
"begin": 1927,
"end": 2014,
"name": "PUSH [tag]",
"source": 1,
"value": "67"
},
{
"begin": 2011,
"end": 2012,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2000,
"end": 2009,
"name": "DUP4",
"source": 1
},
{
"begin": 1996,
"end": 2013,
"name": "ADD",
"source": 1
},
{
"begin": 1987,
"end": 1993,
"name": "DUP5",
"source": 1
},
{
"begin": 1927,
"end": 2014,
"name": "PUSH [tag]",
"source": 1,
"value": "39"
},
{
"begin": 1927,
"end": 2014,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1927,
"end": 2014,
"name": "tag",
"source": 1,
"value": "67"
},
{
"begin": 1927,
"end": 2014,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1767,
"end": 2021,
"name": "SWAP3",
"source": 1
},
{
"begin": 1767,
"end": 2021,
"name": "SWAP2",
"source": 1
},
{
"begin": 1767,
"end": 2021,
"name": "POP",
"source": 1
},
{
"begin": 1767,
"end": 2021,
"name": "POP",
"source": 1
},
{
"begin": 1767,
"end": 2021,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2027,
"end": 2196,
"name": "tag",
"source": 1,
"value": "40"
},
{
"begin": 2027,
"end": 2196,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2111,
"end": 2122,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2145,
"end": 2151,
"name": "DUP3",
"source": 1
},
{
"begin": 2140,
"end": 2143,
"name": "DUP3",
"source": 1
},
{
"begin": 2133,
"end": 2152,
"name": "MSTORE",
"source": 1
},
{
"begin": 2185,
"end": 2189,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2180,
"end": 2183,
"name": "DUP3",
"source": 1
},
{
"begin": 2176,
"end": 2190,
"name": "ADD",
"source": 1
},
{
"begin": 2161,
"end": 2190,
"name": "SWAP1",
"source": 1
},
{
"begin": 2161,
"end": 2190,
"name": "POP",
"source": 1
},
{
"begin": 2027,
"end": 2196,
"name": "SWAP3",
"source": 1
},
{
"begin": 2027,
"end": 2196,
"name": "SWAP2",
"source": 1
},
{
"begin": 2027,
"end": 2196,
"name": "POP",
"source": 1
},
{
"begin": 2027,
"end": 2196,
"name": "POP",
"source": 1
},
{
"begin": 2027,
"end": 2196,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2202,
"end": 2371,
"name": "tag",
"source": 1,
"value": "41"
},
{
"begin": 2202,
"end": 2371,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2342,
"end": 2363,
"name": "PUSH",
"source": 1,
"value": "63616C6C6572206973206E6F74206F776E657200000000000000000000000000"
},
{
"begin": 2338,
"end": 2339,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2330,
"end": 2336,
"name": "DUP3",
"source": 1
},
{
"begin": 2326,
"end": 2340,
"name": "ADD",
"source": 1
},
{
"begin": 2319,
"end": 2364,
"name": "MSTORE",
"source": 1
},
{
"begin": 2202,
"end": 2371,
"name": "POP",
"source": 1
},
{
"begin": 2202,
"end": 2371,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2377,
"end": 2743,
"name": "tag",
"source": 1,
"value": "42"
},
{
"begin": 2377,
"end": 2743,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2519,
"end": 2522,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2540,
"end": 2607,
"name": "PUSH [tag]",
"source": 1,
"value": "71"
},
{
"begin": 2604,
"end": 2606,
"name": "PUSH",
"source": 1,
"value": "13"
},
{
"begin": 2599,
"end": 2602,
"name": "DUP4",
"source": 1
},
{
"begin": 2540,
"end": 2607,
"name": "PUSH [tag]",
"source": 1,
"value": "40"
},
{
"begin": 2540,
"end": 2607,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2540,
"end": 2607,
"name": "tag",
"source": 1,
"value": "71"
},
{
"begin": 2540,
"end": 2607,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2533,
"end": 2607,
"name": "SWAP2",
"source": 1
},
{
"begin": 2533,
"end": 2607,
"name": "POP",
"source": 1
},
{
"begin": 2616,
"end": 2709,
"name": "PUSH [tag]",
"source": 1,
"value": "72"
},
{
"begin": 2705,
"end": 2708,
"name": "DUP3",
"source": 1
},
{
"begin": 2616,
"end": 2709,
"name": "PUSH [tag]",
"source": 1,
"value": "41"
},
{
"begin": 2616,
"end": 2709,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2616,
"end": 2709,
"name": "tag",
"source": 1,
"value": "72"
},
{
"begin": 2616,
"end": 2709,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2734,
"end": 2736,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2729,
"end": 2732,
"name": "DUP3",
"source": 1
},
{
"begin": 2725,
"end": 2737,
"name": "ADD",
"source": 1
},
{
"begin": 2718,
"end": 2737,
"name": "SWAP1",
"source": 1
},
{
"begin": 2718,
"end": 2737,
"name": "POP",
"source": 1
},
{
"begin": 2377,
"end": 2743,
"name": "SWAP2",
"source": 1
},
{
"begin": 2377,
"end": 2743,
"name": "SWAP1",
"source": 1
},
{
"begin": 2377,
"end": 2743,
"name": "POP",
"source": 1
},
{
"begin": 2377,
"end": 2743,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2749,
"end": 3168,
"name": "tag",
"source": 1,
"value": "27"
},
{
"begin": 2749,
"end": 3168,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2915,
"end": 2919,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2953,
"end": 2955,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2942,
"end": 2951,
"name": "DUP3",
"source": 1
},
{
"begin": 2938,
"end": 2956,
"name": "ADD",
"source": 1
},
{
"begin": 2930,
"end": 2956,
"name": "SWAP1",
"source": 1
},
{
"begin": 2930,
"end": 2956,
"name": "POP",
"source": 1
},
{
"begin": 3002,
"end": 3011,
"name": "DUP2",
"source": 1
},
{
"begin": 2996,
"end": 3000,
"name": "DUP2",
"source": 1
},
{
"begin": 2992,
"end": 3012,
"name": "SUB",
"source": 1
},
{
"begin": 2988,
"end": 2989,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2977,
"end": 2986,
"name": "DUP4",
"source": 1
},
{
"begin": 2973,
"end": 2990,
"name": "ADD",
"source": 1
},
{
"begin": 2966,
"end": 3013,
"name": "MSTORE",
"source": 1
},
{
"begin": 3030,
"end": 3161,
"name": "PUSH [tag]",
"source": 1,
"value": "74"
},
{
"begin": 3156,
"end": 3160,
"name": "DUP2",
"source": 1
},
{
"begin": 3030,
"end": 3161,
"name": "PUSH [tag]",
"source": 1,
"value": "42"
},
{
"begin": 3030,
"end": 3161,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3030,
"end": 3161,
"name": "tag",
"source": 1,
"value": "74"
},
{
"begin": 3030,
"end": 3161,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3022,
"end": 3161,
"name": "SWAP1",
"source": 1
},
{
"begin": 3022,
"end": 3161,
"name": "POP",
"source": 1
},
{
"begin": 2749,
"end": 3168,
"name": "SWAP2",
"source": 1
},
{
"begin": 2749,
"end": 3168,
"name": "SWAP1",
"source": 1
},
{
"begin": 2749,
"end": 3168,
"name": "POP",
"source": 1
},
{
"begin": 2749,
"end": 3168,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
}
]
}
},
"sourceList": [
"contract-5b669ab6be.sol",
"#utility.yul"
]
},
"methodIdentifiers": {
"getBalance()": "12065fe0",
"owner()": "8da5cb5b",
"withdraw(uint256)": "2e1a7d4d"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.17+commit.8df45f5f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[],\"name\":\"getBalance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address payable\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdraw\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contract-5b669ab6be.sol\":\"EtherWallet\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contract-5b669ab6be.sol\":{\"keccak256\":\"0x292d2f712cb45a22e6ba985f4f037b8ee389f569cf8b39b43ae7d5d5c531d49f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://74933db85fca5005b2477387c7e4bf8ed628718d96bb77ecaa914116b76eb2a4\",\"dweb:/ipfs/QmWpNyBiUiCdDbnumwjfgdDKCwNvGW7u9rjp5w2zhWE8Ap\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 3,
"contract": "contract-5b669ab6be.sol:EtherWallet",
"label": "owner",
"offset": 0,
"slot": "0",
"type": "t_address_payable"
}
],
"types": {
"t_address_payable": {
"encoding": "inplace",
"label": "address payable",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contract-5b669ab6be.sol": {
"ast": {
"absolutePath": "contract-5b669ab6be.sol",
"exportedSymbols": {
"EtherWallet": [
55
]
},
"id": 56,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".13"
],
"nodeType": "PragmaDirective",
"src": "32:24:0"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "EtherWallet",
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 55,
"linearizedBaseContracts": [
55
],
"name": "EtherWallet",
"nameLocation": "67:11:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"functionSelector": "8da5cb5b",
"id": 3,
"mutability": "mutable",
"name": "owner",
"nameLocation": "108:5:0",
"nodeType": "VariableDeclaration",
"scope": 55,
"src": "85:28:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
},
"typeName": {
"id": 2,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "85:15:0",
"stateMutability": "payable",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"visibility": "public"
},
{
"body": {
"id": 14,
"nodeType": "Block",
"src": "134:44:0",
"statements": [
{
"expression": {
"id": 12,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 6,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 3,
"src": "144:5:0",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"arguments": [
{
"expression": {
"id": 9,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "160:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 10,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "164:6:0",
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "160:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 8,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "152:8:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_payable_$",
"typeString": "type(address payable)"
},
"typeName": {
"id": 7,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "152:8:0",
"stateMutability": "payable",
"typeDescriptions": {}
}
},
"id": 11,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "152:19:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"src": "144:27:0",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"id": 13,
"nodeType": "ExpressionStatement",
"src": "144:27:0"
}
]
},
"id": 15,
"implemented": true,
"kind": "constructor",
"modifiers": [],
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 4,
"nodeType": "ParameterList",
"parameters": [],
"src": "131:2:0"
},
"returnParameters": {
"id": 5,
"nodeType": "ParameterList",
"parameters": [],
"src": "134:0:0"
},
"scope": 55,
"src": "120:58:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 18,
"nodeType": "Block",
"src": "211:2:0",
"statements": []
},
"id": 19,
"implemented": true,
"kind": "receive",
"modifiers": [],
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 16,
"nodeType": "ParameterList",
"parameters": [],
"src": "191:2:0"
},
"returnParameters": {
"id": 17,
"nodeType": "ParameterList",
"parameters": [],
"src": "211:0:0"
},
"scope": 55,
"src": "184:29:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "external"
},
{
"body": {
"id": 41,
"nodeType": "Block",
"src": "260:115:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 28,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"expression": {
"id": 25,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "278:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 26,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "282:6:0",
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "278:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "==",
"rightExpression": {
"id": 27,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 3,
"src": "292:5:0",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"src": "278:19:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "63616c6c6572206973206e6f74206f776e6572",
"id": 29,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "299:21:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197",
"typeString": "literal_string \"caller is not owner\""
},
"value": "caller is not owner"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197",
"typeString": "literal_string \"caller is not owner\""
}
],
"id": 24,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "270:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 30,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "270:51:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 31,
"nodeType": "ExpressionStatement",
"src": "270:51:0"
},
{
"expression": {
"arguments": [
{
"id": 38,
"name": "_amount",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 21,
"src": "360:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"expression": {
"arguments": [
{
"expression": {
"id": 34,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "339:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 35,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "343:6:0",
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "339:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 33,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "331:8:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_payable_$",
"typeString": "type(address payable)"
},
"typeName": {
"id": 32,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "331:8:0",
"stateMutability": "payable",
"typeDescriptions": {}
}
},
"id": 36,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "331:19:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"id": 37,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "351:8:0",
"memberName": "transfer",
"nodeType": "MemberAccess",
"src": "331:28:0",
"typeDescriptions": {
"typeIdentifier": "t_function_transfer_nonpayable$_t_uint256_$returns$__$",
"typeString": "function (uint256)"
}
},
"id": 39,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "331:37:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 40,
"nodeType": "ExpressionStatement",
"src": "331:37:0"
}
]
},
"functionSelector": "2e1a7d4d",
"id": 42,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "withdraw",
"nameLocation": "228:8:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 22,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 21,
"mutability": "mutable",
"name": "_amount",
"nameLocation": "242:7:0",
"nodeType": "VariableDeclaration",
"scope": 42,
"src": "237:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 20,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "237:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "236:14:0"
},
"returnParameters": {
"id": 23,
"nodeType": "ParameterList",
"parameters": [],
"src": "260:0:0"
},
"scope": 55,
"src": "219:156:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
},
{
"body": {
"id": 53,
"nodeType": "Block",
"src": "432:45:0",
"statements": [
{
"expression": {
"expression": {
"arguments": [
{
"id": 49,
"name": "this",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967268,
"src": "457:4:0",
"typeDescriptions": {
"typeIdentifier": "t_contract$_EtherWallet_$55",
"typeString": "contract EtherWallet"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_contract$_EtherWallet_$55",
"typeString": "contract EtherWallet"
}
],
"id": 48,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "449:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 47,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "449:7:0",
"typeDescriptions": {}
}
},
"id": 50,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "449:13:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"id": 51,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "463:7:0",
"memberName": "balance",
"nodeType": "MemberAccess",
"src": "449:21:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"functionReturnParameters": 46,
"id": 52,
"nodeType": "Return",
"src": "442:28:0"
}
]
},
"functionSelector": "12065fe0",
"id": 54,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "getBalance",
"nameLocation": "390:10:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 43,
"nodeType": "ParameterList",
"parameters": [],
"src": "400:2:0"
},
"returnParameters": {
"id": 46,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 45,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 54,
"src": "426:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 44,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "426:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "425:6:0"
},
"scope": 55,
"src": "381:96:0",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
}
],
"scope": 56,
"src": "58:421:0",
"usedErrors": []
}
],
"src": "32:448:0"
},
"id": 0
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_15": {
"entryPoint": null,
"id": 15,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610368806100606000396000f3fe6080604052600436106100385760003560e01c806312065fe0146100445780632e1a7d4d1461006f5780638da5cb5b146100985761003f565b3661003f57005b600080fd5b34801561005057600080fd5b506100596100c3565b60405161006691906101e0565b60405180910390f35b34801561007b57600080fd5b506100966004803603810190610091919061022c565b6100cb565b005b3480156100a457600080fd5b506100ad6101a3565b6040516100ba919061029a565b60405180910390f35b600047905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161015090610312565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561019f573d6000803e3d6000fd5b5050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000819050919050565b6101da816101c7565b82525050565b60006020820190506101f560008301846101d1565b92915050565b600080fd5b610209816101c7565b811461021457600080fd5b50565b60008135905061022681610200565b92915050565b600060208284031215610242576102416101fb565b5b600061025084828501610217565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061028482610259565b9050919050565b61029481610279565b82525050565b60006020820190506102af600083018461028b565b92915050565b600082825260208201905092915050565b7f63616c6c6572206973206e6f74206f776e657200000000000000000000000000600082015250565b60006102fc6013836102b5565b9150610307826102c6565b602082019050919050565b6000602082019050818103600083015261032b816102ef565b905091905056fea264697066735822122086408ae0daa8e772754f2f2df5a4b7fa72edcbbb297f037c41b2d19cef42111664736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP CALLER PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x368 DUP1 PUSH2 0x60 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x38 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x12065FE0 EQ PUSH2 0x44 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x98 JUMPI PUSH2 0x3F JUMP JUMPDEST CALLDATASIZE PUSH2 0x3F JUMPI STOP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x59 PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x1E0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x96 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x91 SWAP2 SWAP1 PUSH2 0x22C JUMP JUMPDEST PUSH2 0xCB JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xAD PUSH2 0x1A3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBA SWAP2 SWAP1 PUSH2 0x29A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SELFBALANCE SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x159 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x150 SWAP1 PUSH2 0x312 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP3 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x19F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1DA DUP2 PUSH2 0x1C7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1F5 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1D1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x209 DUP2 PUSH2 0x1C7 JUMP JUMPDEST DUP2 EQ PUSH2 0x214 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x226 DUP2 PUSH2 0x200 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x242 JUMPI PUSH2 0x241 PUSH2 0x1FB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x250 DUP5 DUP3 DUP6 ADD PUSH2 0x217 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x284 DUP3 PUSH2 0x259 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x294 DUP2 PUSH2 0x279 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2AF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x28B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x63616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FC PUSH1 0x13 DUP4 PUSH2 0x2B5 JUMP JUMPDEST SWAP2 POP PUSH2 0x307 DUP3 PUSH2 0x2C6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x32B DUP2 PUSH2 0x2EF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP7 BLOCKHASH DUP11 0xE0 0xDA 0xA8 0xE7 PUSH19 0x754F2F2DF5A4B7FA72EDCBBB297F037C41B2D1 SWAP13 0xEF TIMESTAMP GT AND PUSH5 0x736F6C6343 STOP ADDMOD GT STOP CALLER ",
"sourceMap": "58:421:0:-:0;;;120:58;;;;;;;;;;160:10;144:5;;:27;;;;;;;;;;;;;;;;;;58:421;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_19": {
"entryPoint": null,
"id": 19,
"parameterSlots": 0,
"returnSlots": 0
},
"@getBalance_54": {
"entryPoint": 195,
"id": 54,
"parameterSlots": 0,
"returnSlots": 1
},
"@owner_3": {
"entryPoint": 419,
"id": 3,
"parameterSlots": 0,
"returnSlots": 0
},
"@withdraw_42": {
"entryPoint": 203,
"id": 42,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 535,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 556,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_payable_to_t_address_payable_fromStack": {
"entryPoint": 651,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197_to_t_string_memory_ptr_fromStack": {
"entryPoint": 751,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 465,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed": {
"entryPoint": 666,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 786,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 480,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 693,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address_payable": {
"entryPoint": 633,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 601,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 455,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 507,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197": {
"entryPoint": 710,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 512,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3171:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "812:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "878:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "881:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "871:6:1"
},
"nodeType": "YulFunctionCall",
"src": "871:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "871:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "835:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "860:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "842:17:1"
},
"nodeType": "YulFunctionCall",
"src": "842:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "832:2:1"
},
"nodeType": "YulFunctionCall",
"src": "832:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "825:6:1"
},
"nodeType": "YulFunctionCall",
"src": "825:43:1"
},
"nodeType": "YulIf",
"src": "822:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "805:5:1",
"type": ""
}
],
"src": "769:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "949:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "959:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "981:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "968:12:1"
},
"nodeType": "YulFunctionCall",
"src": "968:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "959:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1024:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "997:26:1"
},
"nodeType": "YulFunctionCall",
"src": "997:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "997:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "927:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "935:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "943:5:1",
"type": ""
}
],
"src": "897:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1108:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1154:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1156:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1156:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1156:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1129:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1138:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1125:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1121:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1121:32:1"
},
"nodeType": "YulIf",
"src": "1118:119:1"
},
{
"nodeType": "YulBlock",
"src": "1247:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1262:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1276:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1266:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1291:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1326:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1322:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1322:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1346:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1301:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1301:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1291:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1078:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1089:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1101:6:1",
"type": ""
}
],
"src": "1042:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1422:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1432:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1447:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1454:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1443:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1443:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1432:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1404:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1414:7:1",
"type": ""
}
],
"src": "1377:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1562:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1572:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1601:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1583:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1583:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1572:7:1"
}
]
}
]
},
"name": "cleanup_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1544:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1554:7:1",
"type": ""
}
],
"src": "1509:104:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1700:61:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1717:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1748:5:1"
}
],
"functionName": {
"name": "cleanup_t_address_payable",
"nodeType": "YulIdentifier",
"src": "1722:25:1"
},
"nodeType": "YulFunctionCall",
"src": "1722:32:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1710:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1710:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "1710:45:1"
}
]
},
"name": "abi_encode_t_address_payable_to_t_address_payable_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1688:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1695:3:1",
"type": ""
}
],
"src": "1619:142:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1881:140:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1891:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1903:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1914:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1899:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1899:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1891:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1987:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2000:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2011:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1996:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1996:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_payable_to_t_address_payable_fromStack",
"nodeType": "YulIdentifier",
"src": "1927:59:1"
},
"nodeType": "YulFunctionCall",
"src": "1927:87:1"
},
"nodeType": "YulExpressionStatement",
"src": "1927:87:1"
}
]
},
"name": "abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1853:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1865:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1876:4:1",
"type": ""
}
],
"src": "1767:254:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2123:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2140:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2145:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2133:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2133:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "2133:19:1"
},
{
"nodeType": "YulAssignment",
"src": "2161:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2180:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2185:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2176:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2176:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2161:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2095:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2100:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2111:11:1",
"type": ""
}
],
"src": "2027:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2308:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2330:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2338:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2326:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2326:14:1"
},
{
"hexValue": "63616c6c6572206973206e6f74206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "2342:21:1",
"type": "",
"value": "caller is not owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2319:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2319:45:1"
},
"nodeType": "YulExpressionStatement",
"src": "2319:45:1"
}
]
},
"name": "store_literal_in_memory_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2300:6:1",
"type": ""
}
],
"src": "2202:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2523:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2533:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2599:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2604:2:1",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2540:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2540:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2533:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2705:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197",
"nodeType": "YulIdentifier",
"src": "2616:88:1"
},
"nodeType": "YulFunctionCall",
"src": "2616:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "2616:93:1"
},
{
"nodeType": "YulAssignment",
"src": "2718:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2729:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2734:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2725:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2725:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2718:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2511:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2519:3:1",
"type": ""
}
],
"src": "2377:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2920:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2930:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2942:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2953:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2938:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2938:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2930:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2977:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2988:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2973:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2973:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2996:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3002:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2992:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2992:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2966:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2966:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "2966:47:1"
},
{
"nodeType": "YulAssignment",
"src": "3022:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3156:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3030:124:1"
},
"nodeType": "YulFunctionCall",
"src": "3030:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3022:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2900:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2915:4:1",
"type": ""
}
],
"src": "2749:419:1"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address_payable(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_payable_to_t_address_payable_fromStack(value, pos) {\n mstore(pos, cleanup_t_address_payable(value))\n }\n\n function abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_payable_to_t_address_payable_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197(memPtr) {\n\n mstore(add(memPtr, 0), \"caller is not owner\")\n\n }\n\n function abi_encode_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_71bf1d68d1389a2700f2d22d4c4aeb9705cf8c62dc7efd39c7b83facc381f197_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100385760003560e01c806312065fe0146100445780632e1a7d4d1461006f5780638da5cb5b146100985761003f565b3661003f57005b600080fd5b34801561005057600080fd5b506100596100c3565b60405161006691906101e0565b60405180910390f35b34801561007b57600080fd5b506100966004803603810190610091919061022c565b6100cb565b005b3480156100a457600080fd5b506100ad6101a3565b6040516100ba919061029a565b60405180910390f35b600047905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610159576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161015090610312565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561019f573d6000803e3d6000fd5b5050565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000819050919050565b6101da816101c7565b82525050565b60006020820190506101f560008301846101d1565b92915050565b600080fd5b610209816101c7565b811461021457600080fd5b50565b60008135905061022681610200565b92915050565b600060208284031215610242576102416101fb565b5b600061025084828501610217565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061028482610259565b9050919050565b61029481610279565b82525050565b60006020820190506102af600083018461028b565b92915050565b600082825260208201905092915050565b7f63616c6c6572206973206e6f74206f776e657200000000000000000000000000600082015250565b60006102fc6013836102b5565b9150610307826102c6565b602082019050919050565b6000602082019050818103600083015261032b816102ef565b905091905056fea264697066735822122086408ae0daa8e772754f2f2df5a4b7fa72edcbbb297f037c41b2d19cef42111664736f6c63430008110033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x38 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x12065FE0 EQ PUSH2 0x44 JUMPI DUP1 PUSH4 0x2E1A7D4D EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x98 JUMPI PUSH2 0x3F JUMP JUMPDEST CALLDATASIZE PUSH2 0x3F JUMPI STOP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x50 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x59 PUSH2 0xC3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x1E0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x96 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x91 SWAP2 SWAP1 PUSH2 0x22C JUMP JUMPDEST PUSH2 0xCB JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xA4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xAD PUSH2 0x1A3 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xBA SWAP2 SWAP1 PUSH2 0x29A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 SELFBALANCE SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x159 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x150 SWAP1 PUSH2 0x312 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP3 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x19F JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1DA DUP2 PUSH2 0x1C7 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1F5 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1D1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x209 DUP2 PUSH2 0x1C7 JUMP JUMPDEST DUP2 EQ PUSH2 0x214 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x226 DUP2 PUSH2 0x200 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x242 JUMPI PUSH2 0x241 PUSH2 0x1FB JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x250 DUP5 DUP3 DUP6 ADD PUSH2 0x217 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x284 DUP3 PUSH2 0x259 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x294 DUP2 PUSH2 0x279 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2AF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x28B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x63616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FC PUSH1 0x13 DUP4 PUSH2 0x2B5 JUMP JUMPDEST SWAP2 POP PUSH2 0x307 DUP3 PUSH2 0x2C6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x32B DUP2 PUSH2 0x2EF JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP7 BLOCKHASH DUP11 0xE0 0xDA 0xA8 0xE7 PUSH19 0x754F2F2DF5A4B7FA72EDCBBB297F037C41B2D1 SWAP13 0xEF TIMESTAMP GT AND PUSH5 0x736F6C6343 STOP ADDMOD GT STOP CALLER ",
"sourceMap": "58:421:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;381:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;219:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;381:96;426:4;449:21;442:28;;381:96;:::o;219:156::-;292:5;;;;;;;;;;278:19;;:10;:19;;;270:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;339:10;331:28;;:37;360:7;331:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;219:156;:::o;85:28::-;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;523:117::-;632:1;629;622:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o;1377:126::-;1414:7;1454:42;1447:5;1443:54;1432:65;;1377:126;;;:::o;1509:104::-;1554:7;1583:24;1601:5;1583:24;:::i;:::-;1572:35;;1509:104;;;:::o;1619:142::-;1722:32;1748:5;1722:32;:::i;:::-;1717:3;1710:45;1619:142;;:::o;1767:254::-;1876:4;1914:2;1903:9;1899:18;1891:26;;1927:87;2011:1;2000:9;1996:17;1987:6;1927:87;:::i;:::-;1767:254;;;;:::o;2027:169::-;2111:11;2145:6;2140:3;2133:19;2185:4;2180:3;2176:14;2161:29;;2027:169;;;;:::o;2202:::-;2342:21;2338:1;2330:6;2326:14;2319:45;2202:169;:::o;2377:366::-;2519:3;2540:67;2604:2;2599:3;2540:67;:::i;:::-;2533:74;;2616:93;2705:3;2616:93;:::i;:::-;2734:2;2729:3;2725:12;2718:19;;2377:366;;;:::o;2749:419::-;2915:4;2953:2;2942:9;2938:18;2930:26;;3002:9;2996:4;2992:20;2988:1;2977:9;2973:17;2966:47;3030:131;3156:4;3030:131;:::i;:::-;3022:139;;2749:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "174400",
"executionCost": "24486",
"totalCost": "198886"
},
"external": {
"getBalance()": "317",
"owner()": "2533",
"withdraw(uint256)": "infinite"
}
},
"methodIdentifiers": {
"getBalance()": "12065fe0",
"owner()": "8da5cb5b",
"withdraw(uint256)": "2e1a7d4d"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "getBalance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address payable",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "withdraw",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
]
}
{
"compiler": {
"version": "0.8.17+commit.8df45f5f"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "getBalance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address payable",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "withdraw",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contract-5b669ab6be.sol": "EtherWallet"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contract-5b669ab6be.sol": {
"keccak256": "0x292d2f712cb45a22e6ba985f4f037b8ee389f569cf8b39b43ae7d5d5c531d49f",
"license": "MIT",
"urls": [
"bzz-raw://74933db85fca5005b2477387c7e4bf8ed628718d96bb77ecaa914116b76eb2a4",
"dweb:/ipfs/QmWpNyBiUiCdDbnumwjfgdDKCwNvGW7u9rjp5w2zhWE8Ap"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
contract EtherWallet {
address payable public owner;
constructor() {
owner = payable(msg.sender);
}
receive() external payable {}
function withdraw(uint _amount) external {
require(msg.sender == owner, "caller is not owner");
payable(msg.sender).transfer(_amount);
}
function getBalance() external view returns (uint) {
return address(this).balance;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment