Skip to content

Instantly share code, notes, and snippets.

@jd-apprentice
Created July 31, 2022 20:58
Show Gist options
  • Save jd-apprentice/94705ad132c5e93f46fb298c721673f3 to your computer and use it in GitHub Desktop.
Save jd-apprentice/94705ad132c5e93f46fb298c721673f3 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=

Example ToDo Contract

  • Create a task
  • Read a task
  • Update a task
{
"id": "27e09f84877aba03797b7eb7cfe84252",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contract-6bd9b0eaa7.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.4;\n\n// Contrato\ncontract ToDoContract {\n uint256 public taskCounter = 0;\n\n constructor () {}\n\n // Evento TaskCreated\n event TaskCreated(\n uint id,\n string title,\n string description,\n bool done,\n uint createdAt\n );\n\n // Evento ToggleDone\n event TaskToggleDone (\n uint id,\n bool done\n );\n\n // Task struct\n struct Task {\n uint256 id;\n string title;\n string description;\n bool done;\n uint256 createAt;\n }\n \n // Array\n mapping(uint256 => Task) public tasks;\n\n // Create a Task\n function createTask(string memory _title, string memory _description) public {\n taskCounter++;\n tasks[taskCounter] = Task(taskCounter, _title, _description, false, block.timestamp);\n emit TaskCreated(taskCounter, _title, _description, false, block.timestamp);\n }\n\n // Task completed\n function toggleDone(uint256 _id) public {\n Task memory _task = tasks[_id];\n _task.done = !_task.done;\n tasks[_id] = _task;\n emit TaskToggleDone(_id, _task.done);\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-6bd9b0eaa7.sol": {
"ToDoContract": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "string",
"name": "title",
"type": "string"
},
{
"indexed": false,
"internalType": "string",
"name": "description",
"type": "string"
},
{
"indexed": false,
"internalType": "bool",
"name": "done",
"type": "bool"
},
{
"indexed": false,
"internalType": "uint256",
"name": "createdAt",
"type": "uint256"
}
],
"name": "TaskCreated",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "bool",
"name": "done",
"type": "bool"
}
],
"name": "TaskToggleDone",
"type": "event"
},
{
"inputs": [
{
"internalType": "string",
"name": "_title",
"type": "string"
},
{
"internalType": "string",
"name": "_description",
"type": "string"
}
],
"name": "createTask",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "taskCounter",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "tasks",
"outputs": [
{
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"internalType": "string",
"name": "title",
"type": "string"
},
{
"internalType": "string",
"name": "description",
"type": "string"
},
{
"internalType": "bool",
"name": "done",
"type": "bool"
},
{
"internalType": "uint256",
"name": "createAt",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_id",
"type": "uint256"
}
],
"name": "toggleDone",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contract-6bd9b0eaa7.sol\":69:1166 contract ToDoContract {... */\n mstore(0x40, 0x80)\n /* \"contract-6bd9b0eaa7.sol\":126:127 0 */\n 0x00\n /* \"contract-6bd9b0eaa7.sol\":97:127 uint256 public taskCounter = 0 */\n dup1\n sstore\n /* \"contract-6bd9b0eaa7.sol\":134:151 constructor () {} */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n /* \"contract-6bd9b0eaa7.sol\":69:1166 contract ToDoContract {... */\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-6bd9b0eaa7.sol\":69:1166 contract ToDoContract {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x292a4585\n eq\n tag_3\n jumpi\n dup1\n 0x58671730\n eq\n tag_4\n jumpi\n dup1\n 0x8d977672\n eq\n tag_5\n jumpi\n dup1\n 0xd81ef739\n eq\n tag_6\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contract-6bd9b0eaa7.sol\":659:945 function createTask(string memory _title, string memory _description) public {... */\n tag_3:\n tag_7\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_8\n swap2\n swap1\n tag_9\n jump\t// in\n tag_8:\n tag_10\n jump\t// in\n tag_7:\n stop\n /* \"contract-6bd9b0eaa7.sol\":97:127 uint256 public taskCounter = 0 */\n tag_4:\n tag_11\n tag_12\n jump\t// in\n tag_11:\n mload(0x40)\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contract-6bd9b0eaa7.sol\":594:631 mapping(uint256 => Task) public tasks */\n tag_5:\n tag_15\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_16\n swap2\n swap1\n tag_17\n jump\t// in\n tag_16:\n tag_18\n jump\t// in\n tag_15:\n mload(0x40)\n tag_19\n swap6\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_20\n jump\t// in\n tag_19:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contract-6bd9b0eaa7.sol\":973:1164 function toggleDone(uint256 _id) public {... */\n tag_6:\n tag_21\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_22\n swap2\n swap1\n tag_17\n jump\t// in\n tag_22:\n tag_23\n jump\t// in\n tag_21:\n stop\n /* \"contract-6bd9b0eaa7.sol\":659:945 function createTask(string memory _title, string memory _description) public {... */\n tag_10:\n /* \"contract-6bd9b0eaa7.sol\":746:757 taskCounter */\n 0x00\n dup1\n /* \"contract-6bd9b0eaa7.sol\":746:759 taskCounter++ */\n dup2\n sload\n dup1\n swap3\n swap2\n swap1\n tag_25\n swap1\n tag_26\n jump\t// in\n tag_25:\n swap2\n swap1\n pop\n sstore\n pop\n /* \"contract-6bd9b0eaa7.sol\":790:853 Task(taskCounter, _title, _description, false, block.timestamp) */\n mload(0x40)\n dup1\n 0xa0\n add\n 0x40\n mstore\n dup1\n /* \"contract-6bd9b0eaa7.sol\":795:806 taskCounter */\n sload(0x00)\n /* \"contract-6bd9b0eaa7.sol\":790:853 Task(taskCounter, _title, _description, false, block.timestamp) */\n dup2\n mstore\n 0x20\n add\n /* \"contract-6bd9b0eaa7.sol\":808:814 _title */\n dup4\n /* \"contract-6bd9b0eaa7.sol\":790:853 Task(taskCounter, _title, _description, false, block.timestamp) */\n dup2\n mstore\n 0x20\n add\n /* \"contract-6bd9b0eaa7.sol\":816:828 _description */\n dup3\n /* \"contract-6bd9b0eaa7.sol\":790:853 Task(taskCounter, _title, _description, false, block.timestamp) */\n dup2\n mstore\n 0x20\n add\n /* \"contract-6bd9b0eaa7.sol\":830:835 false */\n 0x00\n /* \"contract-6bd9b0eaa7.sol\":790:853 Task(taskCounter, _title, _description, false, block.timestamp) */\n iszero\n iszero\n dup2\n mstore\n 0x20\n add\n /* \"contract-6bd9b0eaa7.sol\":837:852 block.timestamp */\n timestamp\n /* \"contract-6bd9b0eaa7.sol\":790:853 Task(taskCounter, _title, _description, false, block.timestamp) */\n dup2\n mstore\n pop\n /* \"contract-6bd9b0eaa7.sol\":769:774 tasks */\n 0x01\n /* \"contract-6bd9b0eaa7.sol\":769:787 tasks[taskCounter] */\n 0x00\n /* \"contract-6bd9b0eaa7.sol\":775:786 taskCounter */\n dup1\n sload\n /* \"contract-6bd9b0eaa7.sol\":769:787 tasks[taskCounter] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contract-6bd9b0eaa7.sol\":769:853 tasks[taskCounter] = Task(taskCounter, _title, _description, false, block.timestamp) */\n 0x00\n dup3\n add\n mload\n dup2\n 0x00\n add\n sstore\n 0x20\n dup3\n add\n mload\n dup2\n 0x01\n add\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_27\n swap3\n swap2\n swap1\n tag_28\n jump\t// in\n tag_27:\n pop\n 0x40\n dup3\n add\n mload\n dup2\n 0x02\n add\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_29\n swap3\n swap2\n swap1\n tag_28\n jump\t// in\n tag_29:\n pop\n 0x60\n dup3\n add\n mload\n dup2\n 0x03\n add\n exp(0x0100, 0x00)\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n 0x80\n dup3\n add\n mload\n dup2\n 0x04\n add\n sstore\n swap1\n pop\n pop\n /* \"contract-6bd9b0eaa7.sol\":868:938 TaskCreated(taskCounter, _title, _description, false, block.timestamp) */\n 0x6549102bed7d1bb5ec529ee14e2ca60ffc1f47f66d4cc6ca713220613cc64c25\n /* \"contract-6bd9b0eaa7.sol\":880:891 taskCounter */\n sload(0x00)\n /* \"contract-6bd9b0eaa7.sol\":893:899 _title */\n dup4\n /* \"contract-6bd9b0eaa7.sol\":901:913 _description */\n dup4\n /* \"contract-6bd9b0eaa7.sol\":915:920 false */\n 0x00\n /* \"contract-6bd9b0eaa7.sol\":922:937 block.timestamp */\n timestamp\n /* \"contract-6bd9b0eaa7.sol\":868:938 TaskCreated(taskCounter, _title, _description, false, block.timestamp) */\n mload(0x40)\n tag_30\n swap6\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_20\n jump\t// in\n tag_30:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log1\n /* \"contract-6bd9b0eaa7.sol\":659:945 function createTask(string memory _title, string memory _description) public {... */\n pop\n pop\n jump\t// out\n /* \"contract-6bd9b0eaa7.sol\":97:127 uint256 public taskCounter = 0 */\n tag_12:\n sload(0x00)\n dup2\n jump\t// out\n /* \"contract-6bd9b0eaa7.sol\":594:631 mapping(uint256 => Task) public tasks */\n tag_18:\n mstore(0x20, 0x01)\n dup1\n 0x00\n mstore\n keccak256(0x00, 0x40)\n 0x00\n swap2\n pop\n swap1\n pop\n dup1\n 0x00\n add\n sload\n swap1\n dup1\n 0x01\n add\n dup1\n sload\n tag_31\n swap1\n tag_32\n jump\t// in\n tag_31:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_33\n swap1\n tag_32\n jump\t// in\n tag_33:\n dup1\n iszero\n tag_34\n jumpi\n dup1\n 0x1f\n lt\n tag_35\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_34)\n tag_35:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_36:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_36\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_34:\n pop\n pop\n pop\n pop\n pop\n swap1\n dup1\n 0x02\n add\n dup1\n sload\n tag_37\n swap1\n tag_32\n jump\t// in\n tag_37:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_38\n swap1\n tag_32\n jump\t// in\n tag_38:\n dup1\n iszero\n tag_39\n jumpi\n dup1\n 0x1f\n lt\n tag_40\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_39)\n tag_40:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_41:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_41\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_39:\n pop\n pop\n pop\n pop\n pop\n swap1\n dup1\n 0x03\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n swap1\n dup1\n 0x04\n add\n sload\n swap1\n pop\n dup6\n jump\t// out\n /* \"contract-6bd9b0eaa7.sol\":973:1164 function toggleDone(uint256 _id) public {... */\n tag_23:\n /* \"contract-6bd9b0eaa7.sol\":1022:1039 Task memory _task */\n 0x00\n /* \"contract-6bd9b0eaa7.sol\":1042:1047 tasks */\n 0x01\n /* \"contract-6bd9b0eaa7.sol\":1042:1052 tasks[_id] */\n 0x00\n /* \"contract-6bd9b0eaa7.sol\":1048:1051 _id */\n dup4\n /* \"contract-6bd9b0eaa7.sol\":1042:1052 tasks[_id] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contract-6bd9b0eaa7.sol\":1022:1052 Task memory _task = tasks[_id] */\n mload(0x40)\n dup1\n 0xa0\n add\n 0x40\n mstore\n swap1\n dup2\n 0x00\n dup3\n add\n sload\n dup2\n mstore\n 0x20\n add\n 0x01\n dup3\n add\n dup1\n sload\n tag_43\n swap1\n tag_32\n jump\t// in\n tag_43:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_44\n swap1\n tag_32\n jump\t// in\n tag_44:\n dup1\n iszero\n tag_45\n jumpi\n dup1\n 0x1f\n lt\n tag_46\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_45)\n tag_46:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_47:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_47\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_45:\n pop\n pop\n pop\n pop\n pop\n dup2\n mstore\n 0x20\n add\n 0x02\n dup3\n add\n dup1\n sload\n tag_48\n swap1\n tag_32\n jump\t// in\n tag_48:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_49\n swap1\n tag_32\n jump\t// in\n tag_49:\n dup1\n iszero\n tag_50\n jumpi\n dup1\n 0x1f\n lt\n tag_51\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_50)\n tag_51:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_52:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_52\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_50:\n pop\n pop\n pop\n pop\n pop\n dup2\n mstore\n 0x20\n add\n 0x03\n dup3\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n iszero\n iszero\n iszero\n iszero\n dup2\n mstore\n 0x20\n add\n 0x04\n dup3\n add\n sload\n dup2\n mstore\n pop\n pop\n swap1\n pop\n /* \"contract-6bd9b0eaa7.sol\":1075:1080 _task */\n dup1\n /* \"contract-6bd9b0eaa7.sol\":1075:1085 _task.done */\n 0x60\n add\n mload\n /* \"contract-6bd9b0eaa7.sol\":1074:1085 !_task.done */\n iszero\n /* \"contract-6bd9b0eaa7.sol\":1061:1066 _task */\n dup2\n /* \"contract-6bd9b0eaa7.sol\":1061:1071 _task.done */\n 0x60\n add\n /* \"contract-6bd9b0eaa7.sol\":1061:1085 _task.done = !_task.done */\n swap1\n iszero\n iszero\n swap1\n dup2\n iszero\n iszero\n dup2\n mstore\n pop\n pop\n /* \"contract-6bd9b0eaa7.sol\":1107:1112 _task */\n dup1\n /* \"contract-6bd9b0eaa7.sol\":1094:1099 tasks */\n 0x01\n /* \"contract-6bd9b0eaa7.sol\":1094:1104 tasks[_id] */\n 0x00\n /* \"contract-6bd9b0eaa7.sol\":1100:1103 _id */\n dup5\n /* \"contract-6bd9b0eaa7.sol\":1094:1104 tasks[_id] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contract-6bd9b0eaa7.sol\":1094:1112 tasks[_id] = _task */\n 0x00\n dup3\n add\n mload\n dup2\n 0x00\n add\n sstore\n 0x20\n dup3\n add\n mload\n dup2\n 0x01\n add\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_53\n swap3\n swap2\n swap1\n tag_28\n jump\t// in\n tag_53:\n pop\n 0x40\n dup3\n add\n mload\n dup2\n 0x02\n add\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_54\n swap3\n swap2\n swap1\n tag_28\n jump\t// in\n tag_54:\n pop\n 0x60\n dup3\n add\n mload\n dup2\n 0x03\n add\n exp(0x0100, 0x00)\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n 0x80\n dup3\n add\n mload\n dup2\n 0x04\n add\n sstore\n swap1\n pop\n pop\n /* \"contract-6bd9b0eaa7.sol\":1126:1157 TaskToggleDone(_id, _task.done) */\n 0x389dee00d487dd41dd5bf0f43eeaa5b663b3af022d52368df89d388150295f45\n /* \"contract-6bd9b0eaa7.sol\":1141:1144 _id */\n dup3\n /* \"contract-6bd9b0eaa7.sol\":1146:1151 _task */\n dup3\n /* \"contract-6bd9b0eaa7.sol\":1146:1156 _task.done */\n 0x60\n add\n mload\n /* \"contract-6bd9b0eaa7.sol\":1126:1157 TaskToggleDone(_id, _task.done) */\n mload(0x40)\n tag_55\n swap3\n swap2\n swap1\n tag_56\n jump\t// in\n tag_55:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log1\n /* \"contract-6bd9b0eaa7.sol\":1013:1164 {... */\n pop\n /* \"contract-6bd9b0eaa7.sol\":973:1164 function toggleDone(uint256 _id) public {... */\n pop\n jump\t// out\n tag_28:\n dup3\n dup1\n sload\n tag_57\n swap1\n tag_32\n jump\t// in\n tag_57:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_59\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_58)\n tag_59:\n dup3\n 0x1f\n lt\n tag_60\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_58)\n tag_60:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_58\n jumpi\n swap2\n dup3\n add\n tag_61:\n dup3\n dup2\n gt\n iszero\n tag_62\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_61)\n tag_62:\n tag_58:\n pop\n swap1\n pop\n tag_63\n swap2\n swap1\n tag_64\n jump\t// in\n tag_63:\n pop\n swap1\n jump\t// out\n tag_64:\n tag_65:\n dup1\n dup3\n gt\n iszero\n tag_66\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_65)\n tag_66:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:419 */\n tag_68:\n /* \"#utility.yul\":85:90 */\n 0x00\n /* \"#utility.yul\":110:176 */\n tag_70\n /* \"#utility.yul\":126:175 */\n tag_71\n /* \"#utility.yul\":168:174 */\n dup5\n /* \"#utility.yul\":126:175 */\n tag_72\n jump\t// in\n tag_71:\n /* \"#utility.yul\":110:176 */\n tag_73\n jump\t// in\n tag_70:\n /* \"#utility.yul\":101:176 */\n swap1\n pop\n /* \"#utility.yul\":199:205 */\n dup3\n /* \"#utility.yul\":192:197 */\n dup2\n /* \"#utility.yul\":185:206 */\n mstore\n /* \"#utility.yul\":237:241 */\n 0x20\n /* \"#utility.yul\":230:235 */\n dup2\n /* \"#utility.yul\":226:242 */\n add\n /* \"#utility.yul\":275:278 */\n dup5\n /* \"#utility.yul\":266:272 */\n dup5\n /* \"#utility.yul\":261:264 */\n dup5\n /* \"#utility.yul\":257:273 */\n add\n /* \"#utility.yul\":254:279 */\n gt\n /* \"#utility.yul\":251:363 */\n iszero\n tag_74\n jumpi\n /* \"#utility.yul\":282:361 */\n tag_75\n tag_76\n jump\t// in\n tag_75:\n /* \"#utility.yul\":251:363 */\n tag_74:\n /* \"#utility.yul\":372:413 */\n tag_77\n /* \"#utility.yul\":406:412 */\n dup5\n /* \"#utility.yul\":401:404 */\n dup3\n /* \"#utility.yul\":396:399 */\n dup6\n /* \"#utility.yul\":372:413 */\n tag_78\n jump\t// in\n tag_77:\n /* \"#utility.yul\":91:419 */\n pop\n /* \"#utility.yul\":7:419 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":439:779 */\n tag_79:\n /* \"#utility.yul\":495:500 */\n 0x00\n /* \"#utility.yul\":544:547 */\n dup3\n /* \"#utility.yul\":537:541 */\n 0x1f\n /* \"#utility.yul\":529:535 */\n dup4\n /* \"#utility.yul\":525:542 */\n add\n /* \"#utility.yul\":521:548 */\n slt\n /* \"#utility.yul\":511:633 */\n tag_81\n jumpi\n /* \"#utility.yul\":552:631 */\n tag_82\n tag_83\n jump\t// in\n tag_82:\n /* \"#utility.yul\":511:633 */\n tag_81:\n /* \"#utility.yul\":669:675 */\n dup2\n /* \"#utility.yul\":656:676 */\n calldataload\n /* \"#utility.yul\":694:773 */\n tag_84\n /* \"#utility.yul\":769:772 */\n dup5\n /* \"#utility.yul\":761:767 */\n dup3\n /* \"#utility.yul\":754:758 */\n 0x20\n /* \"#utility.yul\":746:752 */\n dup7\n /* \"#utility.yul\":742:759 */\n add\n /* \"#utility.yul\":694:773 */\n tag_68\n jump\t// in\n tag_84:\n /* \"#utility.yul\":685:773 */\n swap2\n pop\n /* \"#utility.yul\":501:779 */\n pop\n /* \"#utility.yul\":439:779 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":785:924 */\n tag_85:\n /* \"#utility.yul\":831:836 */\n 0x00\n /* \"#utility.yul\":869:875 */\n dup2\n /* \"#utility.yul\":856:876 */\n calldataload\n /* \"#utility.yul\":847:876 */\n swap1\n pop\n /* \"#utility.yul\":885:918 */\n tag_87\n /* \"#utility.yul\":912:917 */\n dup2\n /* \"#utility.yul\":885:918 */\n tag_88\n jump\t// in\n tag_87:\n /* \"#utility.yul\":785:924 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":930:1764 */\n tag_9:\n /* \"#utility.yul\":1018:1024 */\n 0x00\n /* \"#utility.yul\":1026:1032 */\n dup1\n /* \"#utility.yul\":1075:1077 */\n 0x40\n /* \"#utility.yul\":1063:1072 */\n dup4\n /* \"#utility.yul\":1054:1061 */\n dup6\n /* \"#utility.yul\":1050:1073 */\n sub\n /* \"#utility.yul\":1046:1078 */\n slt\n /* \"#utility.yul\":1043:1162 */\n iszero\n tag_90\n jumpi\n /* \"#utility.yul\":1081:1160 */\n tag_91\n tag_92\n jump\t// in\n tag_91:\n /* \"#utility.yul\":1043:1162 */\n tag_90:\n /* \"#utility.yul\":1229:1230 */\n 0x00\n /* \"#utility.yul\":1218:1227 */\n dup4\n /* \"#utility.yul\":1214:1231 */\n add\n /* \"#utility.yul\":1201:1232 */\n calldataload\n /* \"#utility.yul\":1259:1277 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1251:1257 */\n dup2\n /* \"#utility.yul\":1248:1278 */\n gt\n /* \"#utility.yul\":1245:1362 */\n iszero\n tag_93\n jumpi\n /* \"#utility.yul\":1281:1360 */\n tag_94\n tag_95\n jump\t// in\n tag_94:\n /* \"#utility.yul\":1245:1362 */\n tag_93:\n /* \"#utility.yul\":1386:1449 */\n tag_96\n /* \"#utility.yul\":1441:1448 */\n dup6\n /* \"#utility.yul\":1432:1438 */\n dup3\n /* \"#utility.yul\":1421:1430 */\n dup7\n /* \"#utility.yul\":1417:1439 */\n add\n /* \"#utility.yul\":1386:1449 */\n tag_79\n jump\t// in\n tag_96:\n /* \"#utility.yul\":1376:1449 */\n swap3\n pop\n /* \"#utility.yul\":1172:1459 */\n pop\n /* \"#utility.yul\":1526:1528 */\n 0x20\n /* \"#utility.yul\":1515:1524 */\n dup4\n /* \"#utility.yul\":1511:1529 */\n add\n /* \"#utility.yul\":1498:1530 */\n calldataload\n /* \"#utility.yul\":1557:1575 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1549:1555 */\n dup2\n /* \"#utility.yul\":1546:1576 */\n gt\n /* \"#utility.yul\":1543:1660 */\n iszero\n tag_97\n jumpi\n /* \"#utility.yul\":1579:1658 */\n tag_98\n tag_95\n jump\t// in\n tag_98:\n /* \"#utility.yul\":1543:1660 */\n tag_97:\n /* \"#utility.yul\":1684:1747 */\n tag_99\n /* \"#utility.yul\":1739:1746 */\n dup6\n /* \"#utility.yul\":1730:1736 */\n dup3\n /* \"#utility.yul\":1719:1728 */\n dup7\n /* \"#utility.yul\":1715:1737 */\n add\n /* \"#utility.yul\":1684:1747 */\n tag_79\n jump\t// in\n tag_99:\n /* \"#utility.yul\":1674:1747 */\n swap2\n pop\n /* \"#utility.yul\":1469:1757 */\n pop\n /* \"#utility.yul\":930:1764 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1770:2099 */\n tag_17:\n /* \"#utility.yul\":1829:1835 */\n 0x00\n /* \"#utility.yul\":1878:1880 */\n 0x20\n /* \"#utility.yul\":1866:1875 */\n dup3\n /* \"#utility.yul\":1857:1864 */\n dup5\n /* \"#utility.yul\":1853:1876 */\n sub\n /* \"#utility.yul\":1849:1881 */\n slt\n /* \"#utility.yul\":1846:1965 */\n iszero\n tag_101\n jumpi\n /* \"#utility.yul\":1884:1963 */\n tag_102\n tag_92\n jump\t// in\n tag_102:\n /* \"#utility.yul\":1846:1965 */\n tag_101:\n /* \"#utility.yul\":2004:2005 */\n 0x00\n /* \"#utility.yul\":2029:2082 */\n tag_103\n /* \"#utility.yul\":2074:2081 */\n dup5\n /* \"#utility.yul\":2065:2071 */\n dup3\n /* \"#utility.yul\":2054:2063 */\n dup6\n /* \"#utility.yul\":2050:2072 */\n add\n /* \"#utility.yul\":2029:2082 */\n tag_85\n jump\t// in\n tag_103:\n /* \"#utility.yul\":2019:2082 */\n swap2\n pop\n /* \"#utility.yul\":1975:2092 */\n pop\n /* \"#utility.yul\":1770:2099 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2105:2214 */\n tag_104:\n /* \"#utility.yul\":2186:2207 */\n tag_106\n /* \"#utility.yul\":2201:2206 */\n dup2\n /* \"#utility.yul\":2186:2207 */\n tag_107\n jump\t// in\n tag_106:\n /* \"#utility.yul\":2181:2184 */\n dup3\n /* \"#utility.yul\":2174:2208 */\n mstore\n /* \"#utility.yul\":2105:2214 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2220:2584 */\n tag_108:\n /* \"#utility.yul\":2308:2311 */\n 0x00\n /* \"#utility.yul\":2336:2375 */\n tag_110\n /* \"#utility.yul\":2369:2374 */\n dup3\n /* \"#utility.yul\":2336:2375 */\n tag_111\n jump\t// in\n tag_110:\n /* \"#utility.yul\":2391:2462 */\n tag_112\n /* \"#utility.yul\":2455:2461 */\n dup2\n /* \"#utility.yul\":2450:2453 */\n dup6\n /* \"#utility.yul\":2391:2462 */\n tag_113\n jump\t// in\n tag_112:\n /* \"#utility.yul\":2384:2462 */\n swap4\n pop\n /* \"#utility.yul\":2471:2523 */\n tag_114\n /* \"#utility.yul\":2516:2522 */\n dup2\n /* \"#utility.yul\":2511:2514 */\n dup6\n /* \"#utility.yul\":2504:2508 */\n 0x20\n /* \"#utility.yul\":2497:2502 */\n dup7\n /* \"#utility.yul\":2493:2509 */\n add\n /* \"#utility.yul\":2471:2523 */\n tag_115\n jump\t// in\n tag_114:\n /* \"#utility.yul\":2548:2577 */\n tag_116\n /* \"#utility.yul\":2570:2576 */\n dup2\n /* \"#utility.yul\":2548:2577 */\n tag_117\n jump\t// in\n tag_116:\n /* \"#utility.yul\":2543:2546 */\n dup5\n /* \"#utility.yul\":2539:2578 */\n add\n /* \"#utility.yul\":2532:2578 */\n swap2\n pop\n /* \"#utility.yul\":2312:2584 */\n pop\n /* \"#utility.yul\":2220:2584 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2590:2708 */\n tag_118:\n /* \"#utility.yul\":2677:2701 */\n tag_120\n /* \"#utility.yul\":2695:2700 */\n dup2\n /* \"#utility.yul\":2677:2701 */\n tag_121\n jump\t// in\n tag_120:\n /* \"#utility.yul\":2672:2675 */\n dup3\n /* \"#utility.yul\":2665:2702 */\n mstore\n /* \"#utility.yul\":2590:2708 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2714:2936 */\n tag_14:\n /* \"#utility.yul\":2807:2811 */\n 0x00\n /* \"#utility.yul\":2845:2847 */\n 0x20\n /* \"#utility.yul\":2834:2843 */\n dup3\n /* \"#utility.yul\":2830:2848 */\n add\n /* \"#utility.yul\":2822:2848 */\n swap1\n pop\n /* \"#utility.yul\":2858:2929 */\n tag_123\n /* \"#utility.yul\":2926:2927 */\n 0x00\n /* \"#utility.yul\":2915:2924 */\n dup4\n /* \"#utility.yul\":2911:2928 */\n add\n /* \"#utility.yul\":2902:2908 */\n dup5\n /* \"#utility.yul\":2858:2929 */\n tag_118\n jump\t// in\n tag_123:\n /* \"#utility.yul\":2714:2936 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2942:3262 */\n tag_56:\n /* \"#utility.yul\":3057:3061 */\n 0x00\n /* \"#utility.yul\":3095:3097 */\n 0x40\n /* \"#utility.yul\":3084:3093 */\n dup3\n /* \"#utility.yul\":3080:3098 */\n add\n /* \"#utility.yul\":3072:3098 */\n swap1\n pop\n /* \"#utility.yul\":3108:3179 */\n tag_125\n /* \"#utility.yul\":3176:3177 */\n 0x00\n /* \"#utility.yul\":3165:3174 */\n dup4\n /* \"#utility.yul\":3161:3178 */\n add\n /* \"#utility.yul\":3152:3158 */\n dup6\n /* \"#utility.yul\":3108:3179 */\n tag_118\n jump\t// in\n tag_125:\n /* \"#utility.yul\":3189:3255 */\n tag_126\n /* \"#utility.yul\":3251:3253 */\n 0x20\n /* \"#utility.yul\":3240:3249 */\n dup4\n /* \"#utility.yul\":3236:3254 */\n add\n /* \"#utility.yul\":3227:3233 */\n dup5\n /* \"#utility.yul\":3189:3255 */\n tag_104\n jump\t// in\n tag_126:\n /* \"#utility.yul\":2942:3262 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3268:4102 */\n tag_20:\n /* \"#utility.yul\":3507:3511 */\n 0x00\n /* \"#utility.yul\":3545:3548 */\n 0xa0\n /* \"#utility.yul\":3534:3543 */\n dup3\n /* \"#utility.yul\":3530:3549 */\n add\n /* \"#utility.yul\":3522:3549 */\n swap1\n pop\n /* \"#utility.yul\":3559:3630 */\n tag_128\n /* \"#utility.yul\":3627:3628 */\n 0x00\n /* \"#utility.yul\":3616:3625 */\n dup4\n /* \"#utility.yul\":3612:3629 */\n add\n /* \"#utility.yul\":3603:3609 */\n dup9\n /* \"#utility.yul\":3559:3630 */\n tag_118\n jump\t// in\n tag_128:\n /* \"#utility.yul\":3677:3686 */\n dup2\n /* \"#utility.yul\":3671:3675 */\n dup2\n /* \"#utility.yul\":3667:3687 */\n sub\n /* \"#utility.yul\":3662:3664 */\n 0x20\n /* \"#utility.yul\":3651:3660 */\n dup4\n /* \"#utility.yul\":3647:3665 */\n add\n /* \"#utility.yul\":3640:3688 */\n mstore\n /* \"#utility.yul\":3705:3783 */\n tag_129\n /* \"#utility.yul\":3778:3782 */\n dup2\n /* \"#utility.yul\":3769:3775 */\n dup8\n /* \"#utility.yul\":3705:3783 */\n tag_108\n jump\t// in\n tag_129:\n /* \"#utility.yul\":3697:3783 */\n swap1\n pop\n /* \"#utility.yul\":3830:3839 */\n dup2\n /* \"#utility.yul\":3824:3828 */\n dup2\n /* \"#utility.yul\":3820:3840 */\n sub\n /* \"#utility.yul\":3815:3817 */\n 0x40\n /* \"#utility.yul\":3804:3813 */\n dup4\n /* \"#utility.yul\":3800:3818 */\n add\n /* \"#utility.yul\":3793:3841 */\n mstore\n /* \"#utility.yul\":3858:3936 */\n tag_130\n /* \"#utility.yul\":3931:3935 */\n dup2\n /* \"#utility.yul\":3922:3928 */\n dup7\n /* \"#utility.yul\":3858:3936 */\n tag_108\n jump\t// in\n tag_130:\n /* \"#utility.yul\":3850:3936 */\n swap1\n pop\n /* \"#utility.yul\":3946:4012 */\n tag_131\n /* \"#utility.yul\":4008:4010 */\n 0x60\n /* \"#utility.yul\":3997:4006 */\n dup4\n /* \"#utility.yul\":3993:4011 */\n add\n /* \"#utility.yul\":3984:3990 */\n dup6\n /* \"#utility.yul\":3946:4012 */\n tag_104\n jump\t// in\n tag_131:\n /* \"#utility.yul\":4022:4095 */\n tag_132\n /* \"#utility.yul\":4090:4093 */\n 0x80\n /* \"#utility.yul\":4079:4088 */\n dup4\n /* \"#utility.yul\":4075:4094 */\n add\n /* \"#utility.yul\":4066:4072 */\n dup5\n /* \"#utility.yul\":4022:4095 */\n tag_118\n jump\t// in\n tag_132:\n /* \"#utility.yul\":3268:4102 */\n swap7\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4108:4237 */\n tag_73:\n /* \"#utility.yul\":4142:4148 */\n 0x00\n /* \"#utility.yul\":4169:4189 */\n tag_134\n tag_135\n jump\t// in\n tag_134:\n /* \"#utility.yul\":4159:4189 */\n swap1\n pop\n /* \"#utility.yul\":4198:4231 */\n tag_136\n /* \"#utility.yul\":4226:4230 */\n dup3\n /* \"#utility.yul\":4218:4224 */\n dup3\n /* \"#utility.yul\":4198:4231 */\n tag_137\n jump\t// in\n tag_136:\n /* \"#utility.yul\":4108:4237 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4243:4318 */\n tag_135:\n /* \"#utility.yul\":4276:4282 */\n 0x00\n /* \"#utility.yul\":4309:4311 */\n 0x40\n /* \"#utility.yul\":4303:4312 */\n mload\n /* \"#utility.yul\":4293:4312 */\n swap1\n pop\n /* \"#utility.yul\":4243:4318 */\n swap1\n jump\t// out\n /* \"#utility.yul\":4324:4632 */\n tag_72:\n /* \"#utility.yul\":4386:4390 */\n 0x00\n /* \"#utility.yul\":4476:4494 */\n 0xffffffffffffffff\n /* \"#utility.yul\":4468:4474 */\n dup3\n /* \"#utility.yul\":4465:4495 */\n gt\n /* \"#utility.yul\":4462:4518 */\n iszero\n tag_140\n jumpi\n /* \"#utility.yul\":4498:4516 */\n tag_141\n tag_142\n jump\t// in\n tag_141:\n /* \"#utility.yul\":4462:4518 */\n tag_140:\n /* \"#utility.yul\":4536:4565 */\n tag_143\n /* \"#utility.yul\":4558:4564 */\n dup3\n /* \"#utility.yul\":4536:4565 */\n tag_117\n jump\t// in\n tag_143:\n /* \"#utility.yul\":4528:4565 */\n swap1\n pop\n /* \"#utility.yul\":4620:4624 */\n 0x20\n /* \"#utility.yul\":4614:4618 */\n dup2\n /* \"#utility.yul\":4610:4625 */\n add\n /* \"#utility.yul\":4602:4625 */\n swap1\n pop\n /* \"#utility.yul\":4324:4632 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4638:4737 */\n tag_111:\n /* \"#utility.yul\":4690:4696 */\n 0x00\n /* \"#utility.yul\":4724:4729 */\n dup2\n /* \"#utility.yul\":4718:4730 */\n mload\n /* \"#utility.yul\":4708:4730 */\n swap1\n pop\n /* \"#utility.yul\":4638:4737 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4743:4912 */\n tag_113:\n /* \"#utility.yul\":4827:4838 */\n 0x00\n /* \"#utility.yul\":4861:4867 */\n dup3\n /* \"#utility.yul\":4856:4859 */\n dup3\n /* \"#utility.yul\":4849:4868 */\n mstore\n /* \"#utility.yul\":4901:4905 */\n 0x20\n /* \"#utility.yul\":4896:4899 */\n dup3\n /* \"#utility.yul\":4892:4906 */\n add\n /* \"#utility.yul\":4877:4906 */\n swap1\n pop\n /* \"#utility.yul\":4743:4912 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4918:5008 */\n tag_107:\n /* \"#utility.yul\":4952:4959 */\n 0x00\n /* \"#utility.yul\":4995:5000 */\n dup2\n /* \"#utility.yul\":4988:5001 */\n iszero\n /* \"#utility.yul\":4981:5002 */\n iszero\n /* \"#utility.yul\":4970:5002 */\n swap1\n pop\n /* \"#utility.yul\":4918:5008 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5014:5091 */\n tag_121:\n /* \"#utility.yul\":5051:5058 */\n 0x00\n /* \"#utility.yul\":5080:5085 */\n dup2\n /* \"#utility.yul\":5069:5085 */\n swap1\n pop\n /* \"#utility.yul\":5014:5091 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5097:5251 */\n tag_78:\n /* \"#utility.yul\":5181:5187 */\n dup3\n /* \"#utility.yul\":5176:5179 */\n dup2\n /* \"#utility.yul\":5171:5174 */\n dup4\n /* \"#utility.yul\":5158:5188 */\n calldatacopy\n /* \"#utility.yul\":5243:5244 */\n 0x00\n /* \"#utility.yul\":5234:5240 */\n dup4\n /* \"#utility.yul\":5229:5232 */\n dup4\n /* \"#utility.yul\":5225:5241 */\n add\n /* \"#utility.yul\":5218:5245 */\n mstore\n /* \"#utility.yul\":5097:5251 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5257:5564 */\n tag_115:\n /* \"#utility.yul\":5325:5326 */\n 0x00\n /* \"#utility.yul\":5335:5448 */\n tag_150:\n /* \"#utility.yul\":5349:5355 */\n dup4\n /* \"#utility.yul\":5346:5347 */\n dup2\n /* \"#utility.yul\":5343:5356 */\n lt\n /* \"#utility.yul\":5335:5448 */\n iszero\n tag_152\n jumpi\n /* \"#utility.yul\":5434:5435 */\n dup1\n /* \"#utility.yul\":5429:5432 */\n dup3\n /* \"#utility.yul\":5425:5436 */\n add\n /* \"#utility.yul\":5419:5437 */\n mload\n /* \"#utility.yul\":5415:5416 */\n dup2\n /* \"#utility.yul\":5410:5413 */\n dup5\n /* \"#utility.yul\":5406:5417 */\n add\n /* \"#utility.yul\":5399:5438 */\n mstore\n /* \"#utility.yul\":5371:5373 */\n 0x20\n /* \"#utility.yul\":5368:5369 */\n dup2\n /* \"#utility.yul\":5364:5374 */\n add\n /* \"#utility.yul\":5359:5374 */\n swap1\n pop\n /* \"#utility.yul\":5335:5448 */\n jump(tag_150)\n tag_152:\n /* \"#utility.yul\":5466:5472 */\n dup4\n /* \"#utility.yul\":5463:5464 */\n dup2\n /* \"#utility.yul\":5460:5473 */\n gt\n /* \"#utility.yul\":5457:5558 */\n iszero\n tag_153\n jumpi\n /* \"#utility.yul\":5546:5547 */\n 0x00\n /* \"#utility.yul\":5537:5543 */\n dup5\n /* \"#utility.yul\":5532:5535 */\n dup5\n /* \"#utility.yul\":5528:5544 */\n add\n /* \"#utility.yul\":5521:5548 */\n mstore\n /* \"#utility.yul\":5457:5558 */\n tag_153:\n /* \"#utility.yul\":5306:5564 */\n pop\n /* \"#utility.yul\":5257:5564 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5570:5890 */\n tag_32:\n /* \"#utility.yul\":5614:5620 */\n 0x00\n /* \"#utility.yul\":5651:5652 */\n 0x02\n /* \"#utility.yul\":5645:5649 */\n dup3\n /* \"#utility.yul\":5641:5653 */\n div\n /* \"#utility.yul\":5631:5653 */\n swap1\n pop\n /* \"#utility.yul\":5698:5699 */\n 0x01\n /* \"#utility.yul\":5692:5696 */\n dup3\n /* \"#utility.yul\":5688:5700 */\n and\n /* \"#utility.yul\":5719:5737 */\n dup1\n /* \"#utility.yul\":5709:5790 */\n tag_155\n jumpi\n /* \"#utility.yul\":5775:5779 */\n 0x7f\n /* \"#utility.yul\":5767:5773 */\n dup3\n /* \"#utility.yul\":5763:5780 */\n and\n /* \"#utility.yul\":5753:5780 */\n swap2\n pop\n /* \"#utility.yul\":5709:5790 */\n tag_155:\n /* \"#utility.yul\":5837:5839 */\n 0x20\n /* \"#utility.yul\":5829:5835 */\n dup3\n /* \"#utility.yul\":5826:5840 */\n lt\n /* \"#utility.yul\":5806:5824 */\n dup2\n /* \"#utility.yul\":5803:5841 */\n eq\n /* \"#utility.yul\":5800:5884 */\n iszero\n tag_156\n jumpi\n /* \"#utility.yul\":5856:5874 */\n tag_157\n tag_158\n jump\t// in\n tag_157:\n /* \"#utility.yul\":5800:5884 */\n tag_156:\n /* \"#utility.yul\":5621:5890 */\n pop\n /* \"#utility.yul\":5570:5890 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5896:6177 */\n tag_137:\n /* \"#utility.yul\":5979:6006 */\n tag_160\n /* \"#utility.yul\":6001:6005 */\n dup3\n /* \"#utility.yul\":5979:6006 */\n tag_117\n jump\t// in\n tag_160:\n /* \"#utility.yul\":5971:5977 */\n dup2\n /* \"#utility.yul\":5967:6007 */\n add\n /* \"#utility.yul\":6109:6115 */\n dup2\n /* \"#utility.yul\":6097:6107 */\n dup2\n /* \"#utility.yul\":6094:6116 */\n lt\n /* \"#utility.yul\":6073:6091 */\n 0xffffffffffffffff\n /* \"#utility.yul\":6061:6071 */\n dup3\n /* \"#utility.yul\":6058:6092 */\n gt\n /* \"#utility.yul\":6055:6117 */\n or\n /* \"#utility.yul\":6052:6140 */\n iszero\n tag_161\n jumpi\n /* \"#utility.yul\":6120:6138 */\n tag_162\n tag_142\n jump\t// in\n tag_162:\n /* \"#utility.yul\":6052:6140 */\n tag_161:\n /* \"#utility.yul\":6160:6170 */\n dup1\n /* \"#utility.yul\":6156:6158 */\n 0x40\n /* \"#utility.yul\":6149:6171 */\n mstore\n /* \"#utility.yul\":5939:6177 */\n pop\n /* \"#utility.yul\":5896:6177 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6183:6416 */\n tag_26:\n /* \"#utility.yul\":6222:6225 */\n 0x00\n /* \"#utility.yul\":6245:6269 */\n tag_164\n /* \"#utility.yul\":6263:6268 */\n dup3\n /* \"#utility.yul\":6245:6269 */\n tag_121\n jump\t// in\n tag_164:\n /* \"#utility.yul\":6236:6269 */\n swap2\n pop\n /* \"#utility.yul\":6291:6357 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":6284:6289 */\n dup3\n /* \"#utility.yul\":6281:6358 */\n eq\n /* \"#utility.yul\":6278:6381 */\n iszero\n tag_165\n jumpi\n /* \"#utility.yul\":6361:6379 */\n tag_166\n tag_167\n jump\t// in\n tag_166:\n /* \"#utility.yul\":6278:6381 */\n tag_165:\n /* \"#utility.yul\":6408:6409 */\n 0x01\n /* \"#utility.yul\":6401:6406 */\n dup3\n /* \"#utility.yul\":6397:6410 */\n add\n /* \"#utility.yul\":6390:6410 */\n swap1\n pop\n /* \"#utility.yul\":6183:6416 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6422:6602 */\n tag_167:\n /* \"#utility.yul\":6470:6547 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6467:6468 */\n 0x00\n /* \"#utility.yul\":6460:6548 */\n mstore\n /* \"#utility.yul\":6567:6571 */\n 0x11\n /* \"#utility.yul\":6564:6565 */\n 0x04\n /* \"#utility.yul\":6557:6572 */\n mstore\n /* \"#utility.yul\":6591:6595 */\n 0x24\n /* \"#utility.yul\":6588:6589 */\n 0x00\n /* \"#utility.yul\":6581:6596 */\n revert\n /* \"#utility.yul\":6608:6788 */\n tag_158:\n /* \"#utility.yul\":6656:6733 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6653:6654 */\n 0x00\n /* \"#utility.yul\":6646:6734 */\n mstore\n /* \"#utility.yul\":6753:6757 */\n 0x22\n /* \"#utility.yul\":6750:6751 */\n 0x04\n /* \"#utility.yul\":6743:6758 */\n mstore\n /* \"#utility.yul\":6777:6781 */\n 0x24\n /* \"#utility.yul\":6774:6775 */\n 0x00\n /* \"#utility.yul\":6767:6782 */\n revert\n /* \"#utility.yul\":6794:6974 */\n tag_142:\n /* \"#utility.yul\":6842:6919 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6839:6840 */\n 0x00\n /* \"#utility.yul\":6832:6920 */\n mstore\n /* \"#utility.yul\":6939:6943 */\n 0x41\n /* \"#utility.yul\":6936:6937 */\n 0x04\n /* \"#utility.yul\":6929:6944 */\n mstore\n /* \"#utility.yul\":6963:6967 */\n 0x24\n /* \"#utility.yul\":6960:6961 */\n 0x00\n /* \"#utility.yul\":6953:6968 */\n revert\n /* \"#utility.yul\":6980:7097 */\n tag_83:\n /* \"#utility.yul\":7089:7090 */\n 0x00\n /* \"#utility.yul\":7086:7087 */\n dup1\n /* \"#utility.yul\":7079:7091 */\n revert\n /* \"#utility.yul\":7103:7220 */\n tag_76:\n /* \"#utility.yul\":7212:7213 */\n 0x00\n /* \"#utility.yul\":7209:7210 */\n dup1\n /* \"#utility.yul\":7202:7214 */\n revert\n /* \"#utility.yul\":7226:7343 */\n tag_95:\n /* \"#utility.yul\":7335:7336 */\n 0x00\n /* \"#utility.yul\":7332:7333 */\n dup1\n /* \"#utility.yul\":7325:7337 */\n revert\n /* \"#utility.yul\":7349:7466 */\n tag_92:\n /* \"#utility.yul\":7458:7459 */\n 0x00\n /* \"#utility.yul\":7455:7456 */\n dup1\n /* \"#utility.yul\":7448:7460 */\n revert\n /* \"#utility.yul\":7472:7574 */\n tag_117:\n /* \"#utility.yul\":7513:7519 */\n 0x00\n /* \"#utility.yul\":7564:7566 */\n 0x1f\n /* \"#utility.yul\":7560:7567 */\n not\n /* \"#utility.yul\":7555:7557 */\n 0x1f\n /* \"#utility.yul\":7548:7553 */\n dup4\n /* \"#utility.yul\":7544:7558 */\n add\n /* \"#utility.yul\":7540:7568 */\n and\n /* \"#utility.yul\":7530:7568 */\n swap1\n pop\n /* \"#utility.yul\":7472:7574 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7580:7702 */\n tag_88:\n /* \"#utility.yul\":7653:7677 */\n tag_177\n /* \"#utility.yul\":7671:7676 */\n dup2\n /* \"#utility.yul\":7653:7677 */\n tag_121\n jump\t// in\n tag_177:\n /* \"#utility.yul\":7646:7651 */\n dup2\n /* \"#utility.yul\":7643:7678 */\n eq\n /* \"#utility.yul\":7633:7696 */\n tag_178\n jumpi\n /* \"#utility.yul\":7692:7693 */\n 0x00\n /* \"#utility.yul\":7689:7690 */\n dup1\n /* \"#utility.yul\":7682:7694 */\n revert\n /* \"#utility.yul\":7633:7696 */\n tag_178:\n /* \"#utility.yul\":7580:7702 */\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220ae987bd5ac0b74f12b0406b69ed56a950d84cced063896cf9a23af69cb9a36e164736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {
"@_8": {
"entryPoint": null,
"id": 8,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "60806040526000805534801561001457600080fd5b50610ad0806100246000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063292a458514610051578063586717301461006d5780638d9776721461008b578063d81ef739146100bf575b600080fd5b61006b600480360381019061006691906106ba565b6100db565b005b6100756101e9565b60405161008291906107b6565b60405180910390f35b6100a560048036038101906100a09190610732565b6101ef565b6040516100b69594939291906107fa565b60405180910390f35b6100d960048036038101906100d49190610732565b610342565b005b6000808154809291906100ed90610988565b91905055506040518060a001604052806000548152602001838152602001828152602001600015158152602001428152506001600080548152602001908152602001600020600082015181600001556020820151816001019080519060200190610158929190610592565b506040820151816002019080519060200190610175929190610592565b5060608201518160030160006101000a81548160ff021916908315150217905550608082015181600401559050507f6549102bed7d1bb5ec529ee14e2ca60ffc1f47f66d4cc6ca713220613cc64c2560005483836000426040516101dd9594939291906107fa565b60405180910390a15050565b60005481565b600160205280600052604060002060009150905080600001549080600101805461021890610925565b80601f016020809104026020016040519081016040528092919081815260200182805461024490610925565b80156102915780601f1061026657610100808354040283529160200191610291565b820191906000526020600020905b81548152906001019060200180831161027457829003601f168201915b5050505050908060020180546102a690610925565b80601f01602080910402602001604051908101604052809291908181526020018280546102d290610925565b801561031f5780601f106102f45761010080835404028352916020019161031f565b820191906000526020600020905b81548152906001019060200180831161030257829003601f168201915b5050505050908060030160009054906101000a900460ff16908060040154905085565b6000600160008381526020019081526020016000206040518060a00160405290816000820154815260200160018201805461037c90610925565b80601f01602080910402602001604051908101604052809291908181526020018280546103a890610925565b80156103f55780601f106103ca576101008083540402835291602001916103f5565b820191906000526020600020905b8154815290600101906020018083116103d857829003601f168201915b5050505050815260200160028201805461040e90610925565b80601f016020809104026020016040519081016040528092919081815260200182805461043a90610925565b80156104875780601f1061045c57610100808354040283529160200191610487565b820191906000526020600020905b81548152906001019060200180831161046a57829003601f168201915b505050505081526020016003820160009054906101000a900460ff1615151515815260200160048201548152505090508060600151158160600190151590811515815250508060016000848152602001908152602001600020600082015181600001556020820151816001019080519060200190610506929190610592565b506040820151816002019080519060200190610523929190610592565b5060608201518160030160006101000a81548160ff021916908315150217905550608082015181600401559050507f389dee00d487dd41dd5bf0f43eeaa5b663b3af022d52368df89d388150295f458282606001516040516105869291906107d1565b60405180910390a15050565b82805461059e90610925565b90600052602060002090601f0160209004810192826105c05760008555610607565b82601f106105d957805160ff1916838001178555610607565b82800160010185558215610607579182015b828111156106065782518255916020019190600101906105eb565b5b5090506106149190610618565b5090565b5b80821115610631576000816000905550600101610619565b5090565b600061064861064384610880565b61085b565b90508281526020810184848401111561066457610663610a63565b5b61066f8482856108e3565b509392505050565b600082601f83011261068c5761068b610a5e565b5b813561069c848260208601610635565b91505092915050565b6000813590506106b481610a83565b92915050565b600080604083850312156106d1576106d0610a6d565b5b600083013567ffffffffffffffff8111156106ef576106ee610a68565b5b6106fb85828601610677565b925050602083013567ffffffffffffffff81111561071c5761071b610a68565b5b61072885828601610677565b9150509250929050565b60006020828403121561074857610747610a6d565b5b6000610756848285016106a5565b91505092915050565b610768816108cd565b82525050565b6000610779826108b1565b61078381856108bc565b93506107938185602086016108f2565b61079c81610a72565b840191505092915050565b6107b0816108d9565b82525050565b60006020820190506107cb60008301846107a7565b92915050565b60006040820190506107e660008301856107a7565b6107f3602083018461075f565b9392505050565b600060a08201905061080f60008301886107a7565b8181036020830152610821818761076e565b90508181036040830152610835818661076e565b9050610844606083018561075f565b61085160808301846107a7565b9695505050505050565b6000610865610876565b90506108718282610957565b919050565b6000604051905090565b600067ffffffffffffffff82111561089b5761089a610a2f565b5b6108a482610a72565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60008115159050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156109105780820151818401526020810190506108f5565b8381111561091f576000848401525b50505050565b6000600282049050600182168061093d57607f821691505b6020821081141561095157610950610a00565b5b50919050565b61096082610a72565b810181811067ffffffffffffffff8211171561097f5761097e610a2f565b5b80604052505050565b6000610993826108d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156109c6576109c56109d1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b610a8c816108d9565b8114610a9757600080fd5b5056fea2646970667358221220ae987bd5ac0b74f12b0406b69ed56a950d84cced063896cf9a23af69cb9a36e164736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 SSTORE CALLVALUE DUP1 ISZERO PUSH2 0x14 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xAD0 DUP1 PUSH2 0x24 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x292A4585 EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x58671730 EQ PUSH2 0x6D JUMPI DUP1 PUSH4 0x8D977672 EQ PUSH2 0x8B JUMPI DUP1 PUSH4 0xD81EF739 EQ PUSH2 0xBF JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x6BA JUMP JUMPDEST PUSH2 0xDB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x75 PUSH2 0x1E9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x82 SWAP2 SWAP1 PUSH2 0x7B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xA5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA0 SWAP2 SWAP1 PUSH2 0x732 JUMP JUMPDEST PUSH2 0x1EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB6 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x7FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD4 SWAP2 SWAP1 PUSH2 0x732 JUMP JUMPDEST PUSH2 0x342 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0xED SWAP1 PUSH2 0x988 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 SLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP DUP2 MSTORE POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x158 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x175 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE SWAP1 POP POP PUSH32 0x6549102BED7D1BB5EC529EE14E2CA60FFC1F47F66D4CC6CA713220613CC64C25 PUSH1 0x0 SLOAD DUP4 DUP4 PUSH1 0x0 TIMESTAMP PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x7FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x218 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x244 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x291 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x266 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x291 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x274 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD DUP1 SLOAD PUSH2 0x2A6 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2D2 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x31F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2F4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x31F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x302 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 DUP1 PUSH1 0x4 ADD SLOAD SWAP1 POP DUP6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x37C SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x3A8 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3F5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3CA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3F5 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3D8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD DUP1 SLOAD PUSH2 0x40E SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x43A SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x487 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x45C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x487 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x46A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x60 ADD MLOAD ISZERO DUP2 PUSH1 0x60 ADD SWAP1 ISZERO ISZERO SWAP1 DUP2 ISZERO ISZERO DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x506 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x523 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE SWAP1 POP POP PUSH32 0x389DEE00D487DD41DD5BF0F43EEAA5B663B3AF022D52368DF89D388150295F45 DUP3 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x586 SWAP3 SWAP2 SWAP1 PUSH2 0x7D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x59E SWAP1 PUSH2 0x925 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x5C0 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x607 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x5D9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x607 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x607 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x606 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x5EB JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x614 SWAP2 SWAP1 PUSH2 0x618 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x631 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x619 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x648 PUSH2 0x643 DUP5 PUSH2 0x880 JUMP JUMPDEST PUSH2 0x85B JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x664 JUMPI PUSH2 0x663 PUSH2 0xA63 JUMP JUMPDEST JUMPDEST PUSH2 0x66F DUP5 DUP3 DUP6 PUSH2 0x8E3 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x68C JUMPI PUSH2 0x68B PUSH2 0xA5E JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x69C DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x635 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x6B4 DUP2 PUSH2 0xA83 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6D1 JUMPI PUSH2 0x6D0 PUSH2 0xA6D JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x6EF JUMPI PUSH2 0x6EE PUSH2 0xA68 JUMP JUMPDEST JUMPDEST PUSH2 0x6FB DUP6 DUP3 DUP7 ADD PUSH2 0x677 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x71C JUMPI PUSH2 0x71B PUSH2 0xA68 JUMP JUMPDEST JUMPDEST PUSH2 0x728 DUP6 DUP3 DUP7 ADD PUSH2 0x677 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x748 JUMPI PUSH2 0x747 PUSH2 0xA6D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x756 DUP5 DUP3 DUP6 ADD PUSH2 0x6A5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x768 DUP2 PUSH2 0x8CD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x779 DUP3 PUSH2 0x8B1 JUMP JUMPDEST PUSH2 0x783 DUP2 DUP6 PUSH2 0x8BC JUMP JUMPDEST SWAP4 POP PUSH2 0x793 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x8F2 JUMP JUMPDEST PUSH2 0x79C DUP2 PUSH2 0xA72 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7B0 DUP2 PUSH2 0x8D9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x7CB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x7A7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x7E6 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x7A7 JUMP JUMPDEST PUSH2 0x7F3 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x75F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x80F PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x7A7 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x821 DUP2 DUP8 PUSH2 0x76E JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x835 DUP2 DUP7 PUSH2 0x76E JUMP JUMPDEST SWAP1 POP PUSH2 0x844 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x75F JUMP JUMPDEST PUSH2 0x851 PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x7A7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x865 PUSH2 0x876 JUMP JUMPDEST SWAP1 POP PUSH2 0x871 DUP3 DUP3 PUSH2 0x957 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x89B JUMPI PUSH2 0x89A PUSH2 0xA2F JUMP JUMPDEST JUMPDEST PUSH2 0x8A4 DUP3 PUSH2 0xA72 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x910 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x8F5 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x91F JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x93D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x951 JUMPI PUSH2 0x950 PUSH2 0xA00 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x960 DUP3 PUSH2 0xA72 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x97F JUMPI PUSH2 0x97E PUSH2 0xA2F JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x993 DUP3 PUSH2 0x8D9 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x9C6 JUMPI PUSH2 0x9C5 PUSH2 0x9D1 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA8C DUP2 PUSH2 0x8D9 JUMP JUMPDEST DUP2 EQ PUSH2 0xA97 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAE SWAP9 PUSH28 0xD5AC0B74F12B0406B69ED56A950D84CCED063896CF9A23AF69CB9A36 0xE1 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "69:1097:0:-:0;;;126:1;97:30;;134:17;;;;;;;;;;69:1097;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@createTask_75": {
"entryPoint": 219,
"id": 75,
"parameterSlots": 2,
"returnSlots": 0
},
"@taskCounter_4": {
"entryPoint": 489,
"id": 4,
"parameterSlots": 0,
"returnSlots": 0
},
"@tasks_42": {
"entryPoint": 495,
"id": 42,
"parameterSlots": 0,
"returnSlots": 0
},
"@toggleDone_108": {
"entryPoint": 834,
"id": 108,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1589,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1655,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 1701,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr": {
"entryPoint": 1722,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1842,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 1887,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1902,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1959,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1974,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_bool__to_t_uint256_t_bool__fromStack_reversed": {
"entryPoint": 2001,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr_t_string_memory_ptr_t_bool_t_uint256__to_t_uint256_t_string_memory_ptr_t_string_memory_ptr_t_bool_t_uint256__fromStack_reversed": {
"entryPoint": 2042,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 2139,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 2166,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 2176,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 2225,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 2236,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 2253,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 2265,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 2275,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 2290,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 2341,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 2391,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 2440,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 2513,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 2560,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 2607,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 2654,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 2659,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 2664,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2669,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 2674,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 2691,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7705:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "91:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "101:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "168:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "126:41:1"
},
"nodeType": "YulFunctionCall",
"src": "126:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "110:15:1"
},
"nodeType": "YulFunctionCall",
"src": "110:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "101:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "192:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "199:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "185:6:1"
},
"nodeType": "YulFunctionCall",
"src": "185:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "185:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "215:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "230:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "237:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "226:3:1"
},
"nodeType": "YulFunctionCall",
"src": "226:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "219:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "280:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "282:77:1"
},
"nodeType": "YulFunctionCall",
"src": "282:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "282:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "261:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "257:3:1"
},
"nodeType": "YulFunctionCall",
"src": "257:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "275:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "254:2:1"
},
"nodeType": "YulFunctionCall",
"src": "254:25:1"
},
"nodeType": "YulIf",
"src": "251:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "396:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "401:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "406:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "372:23:1"
},
"nodeType": "YulFunctionCall",
"src": "372:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "372:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "64:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "69:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "77:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "85:5:1",
"type": ""
}
],
"src": "7:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "501:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "550:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "552:77:1"
},
"nodeType": "YulFunctionCall",
"src": "552:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "552:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "529:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "537:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "525:3:1"
},
"nodeType": "YulFunctionCall",
"src": "525:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "544:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "521:3:1"
},
"nodeType": "YulFunctionCall",
"src": "521:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "514:6:1"
},
"nodeType": "YulFunctionCall",
"src": "514:35:1"
},
"nodeType": "YulIf",
"src": "511:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "642:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "669:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "656:12:1"
},
"nodeType": "YulFunctionCall",
"src": "656:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "646:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "685:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "746:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "754:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "742:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "761:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "769:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "694:47:1"
},
"nodeType": "YulFunctionCall",
"src": "694:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "685:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "479:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "487:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "495:5:1",
"type": ""
}
],
"src": "439:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "837:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "847:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "869:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "856:12:1"
},
"nodeType": "YulFunctionCall",
"src": "856:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "847:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "912:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "885:26:1"
},
"nodeType": "YulFunctionCall",
"src": "885:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "885:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "815:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "823:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "831:5:1",
"type": ""
}
],
"src": "785:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1033:731:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1079:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1081:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1081:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1081:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1054:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1063:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1050:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1050:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1075:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1046:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1046:32:1"
},
"nodeType": "YulIf",
"src": "1043:119:1"
},
{
"nodeType": "YulBlock",
"src": "1172:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1187:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1218:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1229:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1214:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1214:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1201:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1201:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1191:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1279:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1281:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1281:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1281:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1251:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1259:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1248:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1248:30:1"
},
"nodeType": "YulIf",
"src": "1245:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1376:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1421:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1432:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1417:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1417:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1441:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1386:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1386:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1376:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1469:288:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1484:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1515:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1526:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1511:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1511:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1498:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1498:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1488:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1577:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1579:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1579:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1579:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1549:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1557:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1546:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1546:30:1"
},
"nodeType": "YulIf",
"src": "1543:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1674:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1719:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1730:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1715:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1715:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1739:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1684:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1684:63:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1674:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "995:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1006:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1018:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1026:6:1",
"type": ""
}
],
"src": "930:834:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1836:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1882:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1884:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1884:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1884:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1857:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1866:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1853:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1853:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1878:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1849:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1849:32:1"
},
"nodeType": "YulIf",
"src": "1846:119:1"
},
{
"nodeType": "YulBlock",
"src": "1975:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1990:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2004:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1994:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2019:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2054:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2065:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2050:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2050:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2074:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2029:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2029:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2019:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1806:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1817:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1829:6:1",
"type": ""
}
],
"src": "1770:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2164:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2181:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2201:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2186:14:1"
},
"nodeType": "YulFunctionCall",
"src": "2186:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2174:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2174:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "2174:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2152:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2159:3:1",
"type": ""
}
],
"src": "2105:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2312:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2322:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2369:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2336:32:1"
},
"nodeType": "YulFunctionCall",
"src": "2336:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2326:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2384:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2450:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2455:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2391:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2391:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2384:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2497:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2504:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2493:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2493:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2511:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2516:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2471:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2471:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "2471:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2532:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2543:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2570:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2548:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2548:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2539:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2539:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2532:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2293:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2300:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2308:3:1",
"type": ""
}
],
"src": "2220:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2655:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2672:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2695:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2677:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2677:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2665:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2665:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "2665:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2643:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2650:3:1",
"type": ""
}
],
"src": "2590:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2812:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2822:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2834:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2845:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2830:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2830:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2822:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2902:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2915:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2926:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2911:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2911:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2858:43:1"
},
"nodeType": "YulFunctionCall",
"src": "2858:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "2858:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2784:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2796:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2807:4:1",
"type": ""
}
],
"src": "2714:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3062:200:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3072:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3084:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3095:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3080:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3080:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3072:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3152:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3165:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3176:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3161:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3161:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3108:43:1"
},
"nodeType": "YulFunctionCall",
"src": "3108:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "3108:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3227:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3240:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3251:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3236:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3236:18:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3189:37:1"
},
"nodeType": "YulFunctionCall",
"src": "3189:66:1"
},
"nodeType": "YulExpressionStatement",
"src": "3189:66:1"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_bool__to_t_uint256_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3026:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3038:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3046:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3057:4:1",
"type": ""
}
],
"src": "2942:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3512:590:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3522:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3534:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3545:3:1",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3530:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3530:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3522:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3603:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3616:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3627:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3612:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3612:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3559:43:1"
},
"nodeType": "YulFunctionCall",
"src": "3559:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "3559:71:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3651:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3662:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3647:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3647:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3671:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3677:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3667:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3667:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3640:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3640:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "3640:48:1"
},
{
"nodeType": "YulAssignment",
"src": "3697:86:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3769:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3778:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3705:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3705:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3697:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3804:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3815:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3800:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3800:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3824:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3830:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3820:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3820:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3793:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3793:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "3793:48:1"
},
{
"nodeType": "YulAssignment",
"src": "3850:86:1",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3922:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3931:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3858:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3858:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3850:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "3984:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3997:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4008:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3993:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3993:18:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3946:37:1"
},
"nodeType": "YulFunctionCall",
"src": "3946:66:1"
},
"nodeType": "YulExpressionStatement",
"src": "3946:66:1"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "4066:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4079:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4090:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4075:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4075:19:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "4022:43:1"
},
"nodeType": "YulFunctionCall",
"src": "4022:73:1"
},
"nodeType": "YulExpressionStatement",
"src": "4022:73:1"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr_t_string_memory_ptr_t_bool_t_uint256__to_t_uint256_t_string_memory_ptr_t_string_memory_ptr_t_bool_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3452:9:1",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "3464:6:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3472:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3480:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3488:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3496:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3507:4:1",
"type": ""
}
],
"src": "3268:834:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4149:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4159:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "4169:18:1"
},
"nodeType": "YulFunctionCall",
"src": "4169:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4159:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4218:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4226:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "4198:19:1"
},
"nodeType": "YulFunctionCall",
"src": "4198:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "4198:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4133:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4142:6:1",
"type": ""
}
],
"src": "4108:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4283:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4293:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4309:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4303:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4303:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4293:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4276:6:1",
"type": ""
}
],
"src": "4243:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4391:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4496:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4498:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4498:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4498:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4468:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4476:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4465:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4465:30:1"
},
"nodeType": "YulIf",
"src": "4462:56:1"
},
{
"nodeType": "YulAssignment",
"src": "4528:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4558:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4536:21:1"
},
"nodeType": "YulFunctionCall",
"src": "4536:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4528:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4602:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4614:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4620:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4610:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4610:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4602:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4375:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4386:4:1",
"type": ""
}
],
"src": "4324:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4697:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4708:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4724:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4718:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4718:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4708:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4680:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4690:6:1",
"type": ""
}
],
"src": "4638:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4839:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4856:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4861:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4849:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4849:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "4849:19:1"
},
{
"nodeType": "YulAssignment",
"src": "4877:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4896:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4901:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4892:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4892:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4877:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4811:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4816:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4827:11:1",
"type": ""
}
],
"src": "4743:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4960:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4970:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4995:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4988:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4988:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4981:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4981:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4970:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4942:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4952:7:1",
"type": ""
}
],
"src": "4918:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5059:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5069:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5080:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5069:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5041:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5051:7:1",
"type": ""
}
],
"src": "5014:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5148:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5171:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5176:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5181:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "5158:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5158:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "5158:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5229:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5234:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5225:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5225:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5243:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5218:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5218:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "5218:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5130:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5135:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5140:6:1",
"type": ""
}
],
"src": "5097:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5306:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5316:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5325:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5320:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5385:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5410:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5415:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5406:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5406:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5429:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5434:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5425:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5425:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5419:5:1"
},
"nodeType": "YulFunctionCall",
"src": "5419:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5399:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5399:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "5399:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5346:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5349:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5343:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5343:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5357:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5359:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5368:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5371:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5364:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5364:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5359:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5339:3:1",
"statements": []
},
"src": "5335:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5482:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5532:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5537:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5528:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5528:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5546:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5521:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5521:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "5521:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5463:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5466:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5460:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5460:13:1"
},
"nodeType": "YulIf",
"src": "5457:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5288:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5293:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5298:6:1",
"type": ""
}
],
"src": "5257:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5621:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5631:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5645:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5651:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5641:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5641:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5631:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5662:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5692:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5698:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5688:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5688:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5666:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5739:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5753:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5767:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5775:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5763:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5763:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5753:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5719:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5712:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5712:26:1"
},
"nodeType": "YulIf",
"src": "5709:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5842:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5856:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5856:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5856:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5806:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5829:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5837:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5826:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5826:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5803:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5803:38:1"
},
"nodeType": "YulIf",
"src": "5800:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5605:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5614:6:1",
"type": ""
}
],
"src": "5570:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5939:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5949:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5971:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "6001:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5979:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5979:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5967:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5967:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "5953:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6118:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "6120:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6120:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6120:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6061:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6073:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6058:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6058:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6097:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6109:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6094:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6094:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "6055:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6055:62:1"
},
"nodeType": "YulIf",
"src": "6052:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6156:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6160:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6149:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6149:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "6149:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5925:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "5933:4:1",
"type": ""
}
],
"src": "5896:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6226:190:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6236:33:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6263:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6245:17:1"
},
"nodeType": "YulFunctionCall",
"src": "6245:24:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6236:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6359:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6361:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6361:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6361:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6284:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6291:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6281:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6281:77:1"
},
"nodeType": "YulIf",
"src": "6278:103:1"
},
{
"nodeType": "YulAssignment",
"src": "6390:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6401:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6408:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6397:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6397:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6390:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6212:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "6222:3:1",
"type": ""
}
],
"src": "6183:233:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6450:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6467:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6470:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6460:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6460:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6460:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6564:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6567:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6557:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6557:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6557:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6588:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6591:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6581:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6581:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6581:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6422:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6636:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6653:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6656:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6646:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6646:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6646:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6750:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6753:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6743:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6743:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6743:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6774:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6777:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6767:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6767:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6767:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6608:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6822:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6839:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6842:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6832:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6832:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6832:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6936:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6939:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6929:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6929:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6929:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6960:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6963:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6953:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6953:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6953:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "6794:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7069:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7086:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7089:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7079:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7079:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7079:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "6980:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7192:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7209:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7212:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7202:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7202:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7202:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "7103:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7315:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7332:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7335:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7325:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7325:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7325:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "7226:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7438:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7455:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7458:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7448:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7448:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7448:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "7349:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7520:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7530:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7548:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7555:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7544:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7544:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7564:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7560:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7560:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7540:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7540:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7530:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7503:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7513:6:1",
"type": ""
}
],
"src": "7472:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7623:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7680:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7689:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7692:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7682:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7682:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7682:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7646:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7671:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7653:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7653:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7643:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7643:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7636:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7636:43:1"
},
"nodeType": "YulIf",
"src": "7633:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7616:5:1",
"type": ""
}
],
"src": "7580:122:1"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\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_string_memory_ptrt_string_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\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 abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\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 abi_encode_tuple_t_uint256_t_bool__to_t_uint256_t_bool__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_bool_to_t_bool_fromStack(value1, add(headStart, 32))\n\n }\n\n function abi_encode_tuple_t_uint256_t_string_memory_ptr_t_string_memory_ptr_t_bool_t_uint256__to_t_uint256_t_string_memory_ptr_t_string_memory_ptr_t_bool_t_uint256__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n mstore(add(headStart, 64), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value2, tail)\n\n abi_encode_t_bool_to_t_bool_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value4, add(headStart, 128))\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\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 cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061004c5760003560e01c8063292a458514610051578063586717301461006d5780638d9776721461008b578063d81ef739146100bf575b600080fd5b61006b600480360381019061006691906106ba565b6100db565b005b6100756101e9565b60405161008291906107b6565b60405180910390f35b6100a560048036038101906100a09190610732565b6101ef565b6040516100b69594939291906107fa565b60405180910390f35b6100d960048036038101906100d49190610732565b610342565b005b6000808154809291906100ed90610988565b91905055506040518060a001604052806000548152602001838152602001828152602001600015158152602001428152506001600080548152602001908152602001600020600082015181600001556020820151816001019080519060200190610158929190610592565b506040820151816002019080519060200190610175929190610592565b5060608201518160030160006101000a81548160ff021916908315150217905550608082015181600401559050507f6549102bed7d1bb5ec529ee14e2ca60ffc1f47f66d4cc6ca713220613cc64c2560005483836000426040516101dd9594939291906107fa565b60405180910390a15050565b60005481565b600160205280600052604060002060009150905080600001549080600101805461021890610925565b80601f016020809104026020016040519081016040528092919081815260200182805461024490610925565b80156102915780601f1061026657610100808354040283529160200191610291565b820191906000526020600020905b81548152906001019060200180831161027457829003601f168201915b5050505050908060020180546102a690610925565b80601f01602080910402602001604051908101604052809291908181526020018280546102d290610925565b801561031f5780601f106102f45761010080835404028352916020019161031f565b820191906000526020600020905b81548152906001019060200180831161030257829003601f168201915b5050505050908060030160009054906101000a900460ff16908060040154905085565b6000600160008381526020019081526020016000206040518060a00160405290816000820154815260200160018201805461037c90610925565b80601f01602080910402602001604051908101604052809291908181526020018280546103a890610925565b80156103f55780601f106103ca576101008083540402835291602001916103f5565b820191906000526020600020905b8154815290600101906020018083116103d857829003601f168201915b5050505050815260200160028201805461040e90610925565b80601f016020809104026020016040519081016040528092919081815260200182805461043a90610925565b80156104875780601f1061045c57610100808354040283529160200191610487565b820191906000526020600020905b81548152906001019060200180831161046a57829003601f168201915b505050505081526020016003820160009054906101000a900460ff1615151515815260200160048201548152505090508060600151158160600190151590811515815250508060016000848152602001908152602001600020600082015181600001556020820151816001019080519060200190610506929190610592565b506040820151816002019080519060200190610523929190610592565b5060608201518160030160006101000a81548160ff021916908315150217905550608082015181600401559050507f389dee00d487dd41dd5bf0f43eeaa5b663b3af022d52368df89d388150295f458282606001516040516105869291906107d1565b60405180910390a15050565b82805461059e90610925565b90600052602060002090601f0160209004810192826105c05760008555610607565b82601f106105d957805160ff1916838001178555610607565b82800160010185558215610607579182015b828111156106065782518255916020019190600101906105eb565b5b5090506106149190610618565b5090565b5b80821115610631576000816000905550600101610619565b5090565b600061064861064384610880565b61085b565b90508281526020810184848401111561066457610663610a63565b5b61066f8482856108e3565b509392505050565b600082601f83011261068c5761068b610a5e565b5b813561069c848260208601610635565b91505092915050565b6000813590506106b481610a83565b92915050565b600080604083850312156106d1576106d0610a6d565b5b600083013567ffffffffffffffff8111156106ef576106ee610a68565b5b6106fb85828601610677565b925050602083013567ffffffffffffffff81111561071c5761071b610a68565b5b61072885828601610677565b9150509250929050565b60006020828403121561074857610747610a6d565b5b6000610756848285016106a5565b91505092915050565b610768816108cd565b82525050565b6000610779826108b1565b61078381856108bc565b93506107938185602086016108f2565b61079c81610a72565b840191505092915050565b6107b0816108d9565b82525050565b60006020820190506107cb60008301846107a7565b92915050565b60006040820190506107e660008301856107a7565b6107f3602083018461075f565b9392505050565b600060a08201905061080f60008301886107a7565b8181036020830152610821818761076e565b90508181036040830152610835818661076e565b9050610844606083018561075f565b61085160808301846107a7565b9695505050505050565b6000610865610876565b90506108718282610957565b919050565b6000604051905090565b600067ffffffffffffffff82111561089b5761089a610a2f565b5b6108a482610a72565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60008115159050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156109105780820151818401526020810190506108f5565b8381111561091f576000848401525b50505050565b6000600282049050600182168061093d57607f821691505b6020821081141561095157610950610a00565b5b50919050565b61096082610a72565b810181811067ffffffffffffffff8211171561097f5761097e610a2f565b5b80604052505050565b6000610993826108d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156109c6576109c56109d1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b610a8c816108d9565b8114610a9757600080fd5b5056fea2646970667358221220ae987bd5ac0b74f12b0406b69ed56a950d84cced063896cf9a23af69cb9a36e164736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x292A4585 EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x58671730 EQ PUSH2 0x6D JUMPI DUP1 PUSH4 0x8D977672 EQ PUSH2 0x8B JUMPI DUP1 PUSH4 0xD81EF739 EQ PUSH2 0xBF JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x6BA JUMP JUMPDEST PUSH2 0xDB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x75 PUSH2 0x1E9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x82 SWAP2 SWAP1 PUSH2 0x7B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xA5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA0 SWAP2 SWAP1 PUSH2 0x732 JUMP JUMPDEST PUSH2 0x1EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB6 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x7FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD4 SWAP2 SWAP1 PUSH2 0x732 JUMP JUMPDEST PUSH2 0x342 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0xED SWAP1 PUSH2 0x988 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 SLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP DUP2 MSTORE POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x158 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x175 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE SWAP1 POP POP PUSH32 0x6549102BED7D1BB5EC529EE14E2CA60FFC1F47F66D4CC6CA713220613CC64C25 PUSH1 0x0 SLOAD DUP4 DUP4 PUSH1 0x0 TIMESTAMP PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x7FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x218 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x244 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x291 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x266 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x291 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x274 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD DUP1 SLOAD PUSH2 0x2A6 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2D2 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x31F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2F4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x31F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x302 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 DUP1 PUSH1 0x4 ADD SLOAD SWAP1 POP DUP6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x37C SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x3A8 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3F5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3CA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3F5 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3D8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD DUP1 SLOAD PUSH2 0x40E SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x43A SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x487 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x45C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x487 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x46A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x60 ADD MLOAD ISZERO DUP2 PUSH1 0x60 ADD SWAP1 ISZERO ISZERO SWAP1 DUP2 ISZERO ISZERO DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x506 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x523 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE SWAP1 POP POP PUSH32 0x389DEE00D487DD41DD5BF0F43EEAA5B663B3AF022D52368DF89D388150295F45 DUP3 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x586 SWAP3 SWAP2 SWAP1 PUSH2 0x7D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x59E SWAP1 PUSH2 0x925 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x5C0 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x607 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x5D9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x607 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x607 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x606 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x5EB JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x614 SWAP2 SWAP1 PUSH2 0x618 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x631 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x619 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x648 PUSH2 0x643 DUP5 PUSH2 0x880 JUMP JUMPDEST PUSH2 0x85B JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x664 JUMPI PUSH2 0x663 PUSH2 0xA63 JUMP JUMPDEST JUMPDEST PUSH2 0x66F DUP5 DUP3 DUP6 PUSH2 0x8E3 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x68C JUMPI PUSH2 0x68B PUSH2 0xA5E JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x69C DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x635 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x6B4 DUP2 PUSH2 0xA83 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6D1 JUMPI PUSH2 0x6D0 PUSH2 0xA6D JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x6EF JUMPI PUSH2 0x6EE PUSH2 0xA68 JUMP JUMPDEST JUMPDEST PUSH2 0x6FB DUP6 DUP3 DUP7 ADD PUSH2 0x677 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x71C JUMPI PUSH2 0x71B PUSH2 0xA68 JUMP JUMPDEST JUMPDEST PUSH2 0x728 DUP6 DUP3 DUP7 ADD PUSH2 0x677 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x748 JUMPI PUSH2 0x747 PUSH2 0xA6D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x756 DUP5 DUP3 DUP6 ADD PUSH2 0x6A5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x768 DUP2 PUSH2 0x8CD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x779 DUP3 PUSH2 0x8B1 JUMP JUMPDEST PUSH2 0x783 DUP2 DUP6 PUSH2 0x8BC JUMP JUMPDEST SWAP4 POP PUSH2 0x793 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x8F2 JUMP JUMPDEST PUSH2 0x79C DUP2 PUSH2 0xA72 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7B0 DUP2 PUSH2 0x8D9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x7CB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x7A7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x7E6 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x7A7 JUMP JUMPDEST PUSH2 0x7F3 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x75F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x80F PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x7A7 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x821 DUP2 DUP8 PUSH2 0x76E JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x835 DUP2 DUP7 PUSH2 0x76E JUMP JUMPDEST SWAP1 POP PUSH2 0x844 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x75F JUMP JUMPDEST PUSH2 0x851 PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x7A7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x865 PUSH2 0x876 JUMP JUMPDEST SWAP1 POP PUSH2 0x871 DUP3 DUP3 PUSH2 0x957 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x89B JUMPI PUSH2 0x89A PUSH2 0xA2F JUMP JUMPDEST JUMPDEST PUSH2 0x8A4 DUP3 PUSH2 0xA72 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x910 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x8F5 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x91F JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x93D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x951 JUMPI PUSH2 0x950 PUSH2 0xA00 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x960 DUP3 PUSH2 0xA72 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x97F JUMPI PUSH2 0x97E PUSH2 0xA2F JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x993 DUP3 PUSH2 0x8D9 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x9C6 JUMPI PUSH2 0x9C5 PUSH2 0x9D1 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA8C DUP2 PUSH2 0x8D9 JUMP JUMPDEST DUP2 EQ PUSH2 0xA97 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAE SWAP9 PUSH28 0xD5AC0B74F12B0406B69ED56A950D84CCED063896CF9A23AF69CB9A36 0xE1 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "69:1097:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;659:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;594:37;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;973:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;659:286;746:11;;:13;;;;;;;;;:::i;:::-;;;;;;790:63;;;;;;;;795:11;;790:63;;;;808:6;790:63;;;;816:12;790:63;;;;830:5;790:63;;;;;;837:15;790:63;;;769:5;:18;775:11;;769:18;;;;;;;;;;;:84;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;868:70;880:11;;893:6;901:12;915:5;922:15;868:70;;;;;;;;;;:::i;:::-;;;;;;;;659:286;;:::o;97:30::-;;;;:::o;594:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;973:191::-;1022:17;1042:5;:10;1048:3;1042:10;;;;;;;;;;;1022:30;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1075:5;:10;;;1074:11;1061:5;:10;;:24;;;;;;;;;;;1107:5;1094;:10;1100:3;1094:10;;;;;;;;;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1126:31;1141:3;1146:5;:10;;;1126:31;;;;;;;:::i;:::-;;;;;;;;1013:151;973:191;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:412:1:-;85:5;110:66;126:49;168:6;126:49;:::i;:::-;110:66;:::i;:::-;101:75;;199:6;192:5;185:21;237:4;230:5;226:16;275:3;266:6;261:3;257:16;254:25;251:112;;;282:79;;:::i;:::-;251:112;372:41;406:6;401:3;396;372:41;:::i;:::-;91:328;7:412;;;;;:::o;439:340::-;495:5;544:3;537:4;529:6;525:17;521:27;511:122;;552:79;;:::i;:::-;511:122;669:6;656:20;694:79;769:3;761:6;754:4;746:6;742:17;694:79;:::i;:::-;685:88;;501:278;439:340;;;;:::o;785:139::-;831:5;869:6;856:20;847:29;;885:33;912:5;885:33;:::i;:::-;785:139;;;;:::o;930:834::-;1018:6;1026;1075:2;1063:9;1054:7;1050:23;1046:32;1043:119;;;1081:79;;:::i;:::-;1043:119;1229:1;1218:9;1214:17;1201:31;1259:18;1251:6;1248:30;1245:117;;;1281:79;;:::i;:::-;1245:117;1386:63;1441:7;1432:6;1421:9;1417:22;1386:63;:::i;:::-;1376:73;;1172:287;1526:2;1515:9;1511:18;1498:32;1557:18;1549:6;1546:30;1543:117;;;1579:79;;:::i;:::-;1543:117;1684:63;1739:7;1730:6;1719:9;1715:22;1684:63;:::i;:::-;1674:73;;1469:288;930:834;;;;;:::o;1770:329::-;1829:6;1878:2;1866:9;1857:7;1853:23;1849:32;1846:119;;;1884:79;;:::i;:::-;1846:119;2004:1;2029:53;2074:7;2065:6;2054:9;2050:22;2029:53;:::i;:::-;2019:63;;1975:117;1770:329;;;;:::o;2105:109::-;2186:21;2201:5;2186:21;:::i;:::-;2181:3;2174:34;2105:109;;:::o;2220:364::-;2308:3;2336:39;2369:5;2336:39;:::i;:::-;2391:71;2455:6;2450:3;2391:71;:::i;:::-;2384:78;;2471:52;2516:6;2511:3;2504:4;2497:5;2493:16;2471:52;:::i;:::-;2548:29;2570:6;2548:29;:::i;:::-;2543:3;2539:39;2532:46;;2312:272;2220:364;;;;:::o;2590:118::-;2677:24;2695:5;2677:24;:::i;:::-;2672:3;2665:37;2590:118;;:::o;2714:222::-;2807:4;2845:2;2834:9;2830:18;2822:26;;2858:71;2926:1;2915:9;2911:17;2902:6;2858:71;:::i;:::-;2714:222;;;;:::o;2942:320::-;3057:4;3095:2;3084:9;3080:18;3072:26;;3108:71;3176:1;3165:9;3161:17;3152:6;3108:71;:::i;:::-;3189:66;3251:2;3240:9;3236:18;3227:6;3189:66;:::i;:::-;2942:320;;;;;:::o;3268:834::-;3507:4;3545:3;3534:9;3530:19;3522:27;;3559:71;3627:1;3616:9;3612:17;3603:6;3559:71;:::i;:::-;3677:9;3671:4;3667:20;3662:2;3651:9;3647:18;3640:48;3705:78;3778:4;3769:6;3705:78;:::i;:::-;3697:86;;3830:9;3824:4;3820:20;3815:2;3804:9;3800:18;3793:48;3858:78;3931:4;3922:6;3858:78;:::i;:::-;3850:86;;3946:66;4008:2;3997:9;3993:18;3984:6;3946:66;:::i;:::-;4022:73;4090:3;4079:9;4075:19;4066:6;4022:73;:::i;:::-;3268:834;;;;;;;;:::o;4108:129::-;4142:6;4169:20;;:::i;:::-;4159:30;;4198:33;4226:4;4218:6;4198:33;:::i;:::-;4108:129;;;:::o;4243:75::-;4276:6;4309:2;4303:9;4293:19;;4243:75;:::o;4324:308::-;4386:4;4476:18;4468:6;4465:30;4462:56;;;4498:18;;:::i;:::-;4462:56;4536:29;4558:6;4536:29;:::i;:::-;4528:37;;4620:4;4614;4610:15;4602:23;;4324:308;;;:::o;4638:99::-;4690:6;4724:5;4718:12;4708:22;;4638:99;;;:::o;4743:169::-;4827:11;4861:6;4856:3;4849:19;4901:4;4896:3;4892:14;4877:29;;4743:169;;;;:::o;4918:90::-;4952:7;4995:5;4988:13;4981:21;4970:32;;4918:90;;;:::o;5014:77::-;5051:7;5080:5;5069:16;;5014:77;;;:::o;5097:154::-;5181:6;5176:3;5171;5158:30;5243:1;5234:6;5229:3;5225:16;5218:27;5097:154;;;:::o;5257:307::-;5325:1;5335:113;5349:6;5346:1;5343:13;5335:113;;;5434:1;5429:3;5425:11;5419:18;5415:1;5410:3;5406:11;5399:39;5371:2;5368:1;5364:10;5359:15;;5335:113;;;5466:6;5463:1;5460:13;5457:101;;;5546:1;5537:6;5532:3;5528:16;5521:27;5457:101;5306:258;5257:307;;;:::o;5570:320::-;5614:6;5651:1;5645:4;5641:12;5631:22;;5698:1;5692:4;5688:12;5719:18;5709:81;;5775:4;5767:6;5763:17;5753:27;;5709:81;5837:2;5829:6;5826:14;5806:18;5803:38;5800:84;;;5856:18;;:::i;:::-;5800:84;5621:269;5570:320;;;:::o;5896:281::-;5979:27;6001:4;5979:27;:::i;:::-;5971:6;5967:40;6109:6;6097:10;6094:22;6073:18;6061:10;6058:34;6055:62;6052:88;;;6120:18;;:::i;:::-;6052:88;6160:10;6156:2;6149:22;5939:238;5896:281;;:::o;6183:233::-;6222:3;6245:24;6263:5;6245:24;:::i;:::-;6236:33;;6291:66;6284:5;6281:77;6278:103;;;6361:18;;:::i;:::-;6278:103;6408:1;6401:5;6397:13;6390:20;;6183:233;;;:::o;6422:180::-;6470:77;6467:1;6460:88;6567:4;6564:1;6557:15;6591:4;6588:1;6581:15;6608:180;6656:77;6653:1;6646:88;6753:4;6750:1;6743:15;6777:4;6774:1;6767:15;6794:180;6842:77;6839:1;6832:88;6939:4;6936:1;6929:15;6963:4;6960:1;6953:15;6980:117;7089:1;7086;7079:12;7103:117;7212:1;7209;7202:12;7226:117;7335:1;7332;7325:12;7349:117;7458:1;7455;7448:12;7472:102;7513:6;7564:2;7560:7;7555:2;7548:5;7544:14;7540:28;7530:38;;7472:102;;;:::o;7580:122::-;7653:24;7671:5;7653:24;:::i;:::-;7646:5;7643:35;7633:63;;7692:1;7689;7682:12;7633:63;7580:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "553600",
"executionCost": "5593",
"totalCost": "559193"
},
"external": {
"createTask(string,string)": "infinite",
"taskCounter()": "2429",
"tasks(uint256)": "infinite",
"toggleDone(uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 69,
"end": 1166,
"name": "MSTORE",
"source": 0
},
{
"begin": 126,
"end": 127,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 97,
"end": 127,
"name": "DUP1",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "SSTORE",
"source": 0
},
{
"begin": 134,
"end": 151,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 134,
"end": 151,
"name": "DUP1",
"source": 0
},
{
"begin": 134,
"end": 151,
"name": "ISZERO",
"source": 0
},
{
"begin": 134,
"end": 151,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 134,
"end": 151,
"name": "JUMPI",
"source": 0
},
{
"begin": 134,
"end": 151,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 134,
"end": 151,
"name": "DUP1",
"source": 0
},
{
"begin": 134,
"end": 151,
"name": "REVERT",
"source": 0
},
{
"begin": 134,
"end": 151,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 134,
"end": 151,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 134,
"end": 151,
"name": "POP",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 69,
"end": 1166,
"name": "DUP1",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 69,
"end": 1166,
"name": "CODECOPY",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 69,
"end": 1166,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220ae987bd5ac0b74f12b0406b69ed56a950d84cced063896cf9a23af69cb9a36e164736f6c63430008070033",
".code": [
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 69,
"end": 1166,
"name": "MSTORE",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "DUP1",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "ISZERO",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 69,
"end": 1166,
"name": "JUMPI",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 69,
"end": 1166,
"name": "DUP1",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "REVERT",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 69,
"end": 1166,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "POP",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 69,
"end": 1166,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "LT",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 69,
"end": 1166,
"name": "JUMPI",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 69,
"end": 1166,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 69,
"end": 1166,
"name": "SHR",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "DUP1",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "292A4585"
},
{
"begin": 69,
"end": 1166,
"name": "EQ",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 69,
"end": 1166,
"name": "JUMPI",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "DUP1",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "58671730"
},
{
"begin": 69,
"end": 1166,
"name": "EQ",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 69,
"end": 1166,
"name": "JUMPI",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "DUP1",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "8D977672"
},
{
"begin": 69,
"end": 1166,
"name": "EQ",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 69,
"end": 1166,
"name": "JUMPI",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "DUP1",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "D81EF739"
},
{
"begin": 69,
"end": 1166,
"name": "EQ",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 69,
"end": 1166,
"name": "JUMPI",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 69,
"end": 1166,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 69,
"end": 1166,
"name": "DUP1",
"source": 0
},
{
"begin": 69,
"end": 1166,
"name": "REVERT",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 659,
"end": 945,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 659,
"end": 945,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 659,
"end": 945,
"name": "DUP1",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "SUB",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "DUP2",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "ADD",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "SWAP1",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 659,
"end": 945,
"name": "SWAP2",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "SWAP1",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 659,
"end": 945,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 659,
"end": 945,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 659,
"end": 945,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 659,
"end": 945,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 659,
"end": 945,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 659,
"end": 945,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "STOP",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 97,
"end": 127,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 97,
"end": 127,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 97,
"end": 127,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 97,
"end": 127,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 97,
"end": 127,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 97,
"end": 127,
"name": "MLOAD",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 97,
"end": 127,
"name": "SWAP2",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "SWAP1",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 97,
"end": 127,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 97,
"end": 127,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 97,
"end": 127,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 97,
"end": 127,
"name": "MLOAD",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "DUP1",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "SWAP2",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "SUB",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "SWAP1",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "RETURN",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SUB",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 594,
"end": 631,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 594,
"end": 631,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 594,
"end": 631,
"name": "MLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 594,
"end": 631,
"name": "SWAP6",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP5",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP4",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP3",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 594,
"end": 631,
"name": "MLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SUB",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "RETURN",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 973,
"end": 1164,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 973,
"end": 1164,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 973,
"end": 1164,
"name": "DUP1",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "SUB",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "DUP2",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "ADD",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "SWAP1",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 973,
"end": 1164,
"name": "SWAP2",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "SWAP1",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 973,
"end": 1164,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 973,
"end": 1164,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 973,
"end": 1164,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 973,
"end": 1164,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 973,
"end": 1164,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 973,
"end": 1164,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "STOP",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 659,
"end": 945,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 746,
"end": 757,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 746,
"end": 757,
"name": "DUP1",
"source": 0
},
{
"begin": 746,
"end": 759,
"name": "DUP2",
"source": 0
},
{
"begin": 746,
"end": 759,
"name": "SLOAD",
"source": 0
},
{
"begin": 746,
"end": 759,
"name": "DUP1",
"source": 0
},
{
"begin": 746,
"end": 759,
"name": "SWAP3",
"source": 0
},
{
"begin": 746,
"end": 759,
"name": "SWAP2",
"source": 0
},
{
"begin": 746,
"end": 759,
"name": "SWAP1",
"source": 0
},
{
"begin": 746,
"end": 759,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 746,
"end": 759,
"name": "SWAP1",
"source": 0
},
{
"begin": 746,
"end": 759,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 746,
"end": 759,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 746,
"end": 759,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 746,
"end": 759,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 746,
"end": 759,
"name": "SWAP2",
"source": 0
},
{
"begin": 746,
"end": 759,
"name": "SWAP1",
"source": 0
},
{
"begin": 746,
"end": 759,
"name": "POP",
"source": 0
},
{
"begin": 746,
"end": 759,
"name": "SSTORE",
"source": 0
},
{
"begin": 746,
"end": 759,
"name": "POP",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 790,
"end": 853,
"name": "MLOAD",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "DUP1",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "A0"
},
{
"begin": 790,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 790,
"end": 853,
"name": "MSTORE",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "DUP1",
"source": 0
},
{
"begin": 795,
"end": 806,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 795,
"end": 806,
"name": "SLOAD",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "DUP2",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "MSTORE",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 790,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 808,
"end": 814,
"name": "DUP4",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "DUP2",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "MSTORE",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 790,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 816,
"end": 828,
"name": "DUP3",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "DUP2",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "MSTORE",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 790,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 830,
"end": 835,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 790,
"end": 853,
"name": "ISZERO",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "ISZERO",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "DUP2",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "MSTORE",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 790,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 837,
"end": 852,
"name": "TIMESTAMP",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "DUP2",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "MSTORE",
"source": 0
},
{
"begin": 790,
"end": 853,
"name": "POP",
"source": 0
},
{
"begin": 769,
"end": 774,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 769,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 775,
"end": 786,
"name": "DUP1",
"source": 0
},
{
"begin": 775,
"end": 786,
"name": "SLOAD",
"source": 0
},
{
"begin": 769,
"end": 787,
"name": "DUP2",
"source": 0
},
{
"begin": 769,
"end": 787,
"name": "MSTORE",
"source": 0
},
{
"begin": 769,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 769,
"end": 787,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 787,
"name": "SWAP1",
"source": 0
},
{
"begin": 769,
"end": 787,
"name": "DUP2",
"source": 0
},
{
"begin": 769,
"end": 787,
"name": "MSTORE",
"source": 0
},
{
"begin": 769,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 769,
"end": 787,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 787,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 769,
"end": 787,
"name": "KECCAK256",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 769,
"end": 853,
"name": "DUP3",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "MLOAD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "DUP2",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 769,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SSTORE",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 769,
"end": 853,
"name": "DUP3",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "MLOAD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "DUP2",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 769,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SWAP1",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "DUP1",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "MLOAD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SWAP1",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 769,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SWAP1",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 769,
"end": 853,
"name": "SWAP3",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SWAP2",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SWAP1",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 769,
"end": 853,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 769,
"end": 853,
"name": "tag",
"source": 0,
"value": "27"
},
{
"begin": 769,
"end": 853,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "POP",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 769,
"end": 853,
"name": "DUP3",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "MLOAD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "DUP2",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 769,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SWAP1",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "DUP1",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "MLOAD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SWAP1",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 769,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SWAP1",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 769,
"end": 853,
"name": "SWAP3",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SWAP2",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SWAP1",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 769,
"end": 853,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 769,
"end": 853,
"name": "tag",
"source": 0,
"value": "29"
},
{
"begin": 769,
"end": 853,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "POP",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 769,
"end": 853,
"name": "DUP3",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "MLOAD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "DUP2",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 769,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 769,
"end": 853,
"name": "EXP",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "DUP2",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SLOAD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "DUP2",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 769,
"end": 853,
"name": "MUL",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "NOT",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "AND",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SWAP1",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "DUP4",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "ISZERO",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "ISZERO",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "MUL",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "OR",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SWAP1",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SSTORE",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "POP",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 769,
"end": 853,
"name": "DUP3",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "MLOAD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "DUP2",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 769,
"end": 853,
"name": "ADD",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SSTORE",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "SWAP1",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "POP",
"source": 0
},
{
"begin": 769,
"end": 853,
"name": "POP",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "PUSH",
"source": 0,
"value": "6549102BED7D1BB5EC529EE14E2CA60FFC1F47F66D4CC6CA713220613CC64C25"
},
{
"begin": 880,
"end": 891,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 880,
"end": 891,
"name": "SLOAD",
"source": 0
},
{
"begin": 893,
"end": 899,
"name": "DUP4",
"source": 0
},
{
"begin": 901,
"end": 913,
"name": "DUP4",
"source": 0
},
{
"begin": 915,
"end": 920,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 922,
"end": 937,
"name": "TIMESTAMP",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 868,
"end": 938,
"name": "MLOAD",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 868,
"end": 938,
"name": "SWAP6",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "SWAP5",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "SWAP4",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "SWAP3",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "SWAP2",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "SWAP1",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 868,
"end": 938,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 868,
"end": 938,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 868,
"end": 938,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 868,
"end": 938,
"name": "MLOAD",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "DUP1",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "SWAP2",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "SUB",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "SWAP1",
"source": 0
},
{
"begin": 868,
"end": 938,
"name": "LOG1",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "POP",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "POP",
"source": 0
},
{
"begin": 659,
"end": 945,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 97,
"end": 127,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 97,
"end": 127,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 97,
"end": 127,
"name": "SLOAD",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "DUP2",
"source": 0
},
{
"begin": 97,
"end": 127,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "MSTORE",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 594,
"end": 631,
"name": "MSTORE",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 594,
"end": 631,
"name": "KECCAK256",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "POP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "POP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 594,
"end": 631,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "31"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DIV",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "MUL",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 594,
"end": 631,
"name": "MLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 594,
"end": 631,
"name": "MSTORE",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP3",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "MSTORE",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP3",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "33"
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 594,
"end": 631,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "33"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "ISZERO",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 594,
"end": 631,
"name": "JUMPI",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 594,
"end": 631,
"name": "LT",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 594,
"end": 631,
"name": "JUMPI",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP4",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DIV",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "MUL",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP4",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "MSTORE",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 594,
"end": 631,
"name": "JUMP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "35"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP3",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 594,
"end": 631,
"name": "MSTORE",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 594,
"end": 631,
"name": "KECCAK256",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "36"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "MSTORE",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP4",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "GT",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 594,
"end": 631,
"name": "JUMPI",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP3",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SUB",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 594,
"end": 631,
"name": "AND",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP3",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "34"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "POP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "POP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "POP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "POP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "POP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 594,
"end": 631,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "37"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DIV",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "MUL",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 594,
"end": 631,
"name": "MLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 594,
"end": 631,
"name": "MSTORE",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP3",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "MSTORE",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP3",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 594,
"end": 631,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "38"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "ISZERO",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "39"
},
{
"begin": 594,
"end": 631,
"name": "JUMPI",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 594,
"end": 631,
"name": "LT",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 594,
"end": 631,
"name": "JUMPI",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP4",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DIV",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "MUL",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP4",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "MSTORE",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "39"
},
{
"begin": 594,
"end": 631,
"name": "JUMP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "40"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP3",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 594,
"end": 631,
"name": "MSTORE",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 594,
"end": 631,
"name": "KECCAK256",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "41"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "MSTORE",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP4",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "GT",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 594,
"end": 631,
"name": "JUMPI",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP3",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SUB",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 594,
"end": 631,
"name": "AND",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP3",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP2",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "tag",
"source": 0,
"value": "39"
},
{
"begin": 594,
"end": 631,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "POP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "POP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "POP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "POP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "POP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 594,
"end": 631,
"name": "EXP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DIV",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 594,
"end": 631,
"name": "AND",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 594,
"end": 631,
"name": "ADD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SLOAD",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "SWAP1",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "POP",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "DUP6",
"source": 0
},
{
"begin": 594,
"end": 631,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 973,
"end": 1164,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 973,
"end": 1164,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1022,
"end": 1039,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1042,
"end": 1047,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1042,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1048,
"end": 1051,
"name": "DUP4",
"source": 0
},
{
"begin": 1042,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1042,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1042,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1042,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1042,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1042,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1042,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1042,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1042,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1042,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1042,
"end": 1052,
"name": "KECCAK256",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1022,
"end": 1052,
"name": "MLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "A0"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1022,
"end": 1052,
"name": "DUP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1022,
"end": 1052,
"name": "DUP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1022,
"end": 1052,
"name": "tag",
"source": 0,
"value": "43"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DIV",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MUL",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1022,
"end": 1052,
"name": "MLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "44"
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1022,
"end": 1052,
"name": "tag",
"source": 0,
"value": "44"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ISZERO",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "45"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPI",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 1022,
"end": 1052,
"name": "LT",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "46"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPI",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP4",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DIV",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MUL",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP4",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "45"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "tag",
"source": 0,
"value": "46"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1022,
"end": 1052,
"name": "KECCAK256",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "tag",
"source": 0,
"value": "47"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP4",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "GT",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "47"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPI",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SUB",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 1022,
"end": 1052,
"name": "AND",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "tag",
"source": 0,
"value": "45"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "POP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "POP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "POP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "POP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "POP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 1022,
"end": 1052,
"name": "DUP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "48"
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1022,
"end": 1052,
"name": "tag",
"source": 0,
"value": "48"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DIV",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MUL",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1022,
"end": 1052,
"name": "MLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "49"
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1022,
"end": 1052,
"name": "tag",
"source": 0,
"value": "49"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ISZERO",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "50"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPI",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 1022,
"end": 1052,
"name": "LT",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "51"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPI",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP4",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DIV",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MUL",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP4",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "50"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "tag",
"source": 0,
"value": "51"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1022,
"end": 1052,
"name": "KECCAK256",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "tag",
"source": 0,
"value": "52"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP4",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "GT",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH [tag]",
"source": 0,
"value": "52"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPI",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SUB",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 1022,
"end": 1052,
"name": "AND",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "tag",
"source": 0,
"value": "50"
},
{
"begin": 1022,
"end": 1052,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "POP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "POP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "POP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "POP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "POP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 1022,
"end": 1052,
"name": "DUP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1022,
"end": 1052,
"name": "EXP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DIV",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 1022,
"end": 1052,
"name": "AND",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ISZERO",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ISZERO",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ISZERO",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ISZERO",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1022,
"end": 1052,
"name": "DUP3",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "ADD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SLOAD",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "DUP2",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "MSTORE",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "POP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "POP",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "SWAP1",
"source": 0
},
{
"begin": 1022,
"end": 1052,
"name": "POP",
"source": 0
},
{
"begin": 1075,
"end": 1080,
"name": "DUP1",
"source": 0
},
{
"begin": 1075,
"end": 1085,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 1075,
"end": 1085,
"name": "ADD",
"source": 0
},
{
"begin": 1075,
"end": 1085,
"name": "MLOAD",
"source": 0
},
{
"begin": 1074,
"end": 1085,
"name": "ISZERO",
"source": 0
},
{
"begin": 1061,
"end": 1066,
"name": "DUP2",
"source": 0
},
{
"begin": 1061,
"end": 1071,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 1061,
"end": 1071,
"name": "ADD",
"source": 0
},
{
"begin": 1061,
"end": 1085,
"name": "SWAP1",
"source": 0
},
{
"begin": 1061,
"end": 1085,
"name": "ISZERO",
"source": 0
},
{
"begin": 1061,
"end": 1085,
"name": "ISZERO",
"source": 0
},
{
"begin": 1061,
"end": 1085,
"name": "SWAP1",
"source": 0
},
{
"begin": 1061,
"end": 1085,
"name": "DUP2",
"source": 0
},
{
"begin": 1061,
"end": 1085,
"name": "ISZERO",
"source": 0
},
{
"begin": 1061,
"end": 1085,
"name": "ISZERO",
"source": 0
},
{
"begin": 1061,
"end": 1085,
"name": "DUP2",
"source": 0
},
{
"begin": 1061,
"end": 1085,
"name": "MSTORE",
"source": 0
},
{
"begin": 1061,
"end": 1085,
"name": "POP",
"source": 0
},
{
"begin": 1061,
"end": 1085,
"name": "POP",
"source": 0
},
{
"begin": 1107,
"end": 1112,
"name": "DUP1",
"source": 0
},
{
"begin": 1094,
"end": 1099,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1094,
"end": 1104,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1100,
"end": 1103,
"name": "DUP5",
"source": 0
},
{
"begin": 1094,
"end": 1104,
"name": "DUP2",
"source": 0
},
{
"begin": 1094,
"end": 1104,
"name": "MSTORE",
"source": 0
},
{
"begin": 1094,
"end": 1104,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1094,
"end": 1104,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1104,
"name": "SWAP1",
"source": 0
},
{
"begin": 1094,
"end": 1104,
"name": "DUP2",
"source": 0
},
{
"begin": 1094,
"end": 1104,
"name": "MSTORE",
"source": 0
},
{
"begin": 1094,
"end": 1104,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1094,
"end": 1104,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1104,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1094,
"end": 1104,
"name": "KECCAK256",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1094,
"end": 1112,
"name": "DUP3",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "MLOAD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "DUP2",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1094,
"end": 1112,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SSTORE",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1094,
"end": 1112,
"name": "DUP3",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "MLOAD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "DUP2",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1094,
"end": 1112,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP1",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "DUP1",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "MLOAD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP1",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1094,
"end": 1112,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP1",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH [tag]",
"source": 0,
"value": "53"
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP3",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP2",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP1",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 1094,
"end": 1112,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1094,
"end": 1112,
"name": "tag",
"source": 0,
"value": "53"
},
{
"begin": 1094,
"end": 1112,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "POP",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1094,
"end": 1112,
"name": "DUP3",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "MLOAD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "DUP2",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 1094,
"end": 1112,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP1",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "DUP1",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "MLOAD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP1",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1094,
"end": 1112,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP1",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH [tag]",
"source": 0,
"value": "54"
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP3",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP2",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP1",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 1094,
"end": 1112,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1094,
"end": 1112,
"name": "tag",
"source": 0,
"value": "54"
},
{
"begin": 1094,
"end": 1112,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "POP",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 1094,
"end": 1112,
"name": "DUP3",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "MLOAD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "DUP2",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 1094,
"end": 1112,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1094,
"end": 1112,
"name": "EXP",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "DUP2",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SLOAD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "DUP2",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 1094,
"end": 1112,
"name": "MUL",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "NOT",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "AND",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP1",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "DUP4",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "ISZERO",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "ISZERO",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "MUL",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "OR",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP1",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SSTORE",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "POP",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 1094,
"end": 1112,
"name": "DUP3",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "MLOAD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "DUP2",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1094,
"end": 1112,
"name": "ADD",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SSTORE",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "SWAP1",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "POP",
"source": 0
},
{
"begin": 1094,
"end": 1112,
"name": "POP",
"source": 0
},
{
"begin": 1126,
"end": 1157,
"name": "PUSH",
"source": 0,
"value": "389DEE00D487DD41DD5BF0F43EEAA5B663B3AF022D52368DF89D388150295F45"
},
{
"begin": 1141,
"end": 1144,
"name": "DUP3",
"source": 0
},
{
"begin": 1146,
"end": 1151,
"name": "DUP3",
"source": 0
},
{
"begin": 1146,
"end": 1156,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 1146,
"end": 1156,
"name": "ADD",
"source": 0
},
{
"begin": 1146,
"end": 1156,
"name": "MLOAD",
"source": 0
},
{
"begin": 1126,
"end": 1157,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1126,
"end": 1157,
"name": "MLOAD",
"source": 0
},
{
"begin": 1126,
"end": 1157,
"name": "PUSH [tag]",
"source": 0,
"value": "55"
},
{
"begin": 1126,
"end": 1157,
"name": "SWAP3",
"source": 0
},
{
"begin": 1126,
"end": 1157,
"name": "SWAP2",
"source": 0
},
{
"begin": 1126,
"end": 1157,
"name": "SWAP1",
"source": 0
},
{
"begin": 1126,
"end": 1157,
"name": "PUSH [tag]",
"source": 0,
"value": "56"
},
{
"begin": 1126,
"end": 1157,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1126,
"end": 1157,
"name": "tag",
"source": 0,
"value": "55"
},
{
"begin": 1126,
"end": 1157,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1126,
"end": 1157,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1126,
"end": 1157,
"name": "MLOAD",
"source": 0
},
{
"begin": 1126,
"end": 1157,
"name": "DUP1",
"source": 0
},
{
"begin": 1126,
"end": 1157,
"name": "SWAP2",
"source": 0
},
{
"begin": 1126,
"end": 1157,
"name": "SUB",
"source": 0
},
{
"begin": 1126,
"end": 1157,
"name": "SWAP1",
"source": 0
},
{
"begin": 1126,
"end": 1157,
"name": "LOG1",
"source": 0
},
{
"begin": 1013,
"end": 1164,
"name": "POP",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "POP",
"source": 0
},
{
"begin": 973,
"end": 1164,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "28"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "57"
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "32"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[in]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "57"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "MSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "KECCAK256",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DIV",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "59"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP6",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "58"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "59"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "LT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "60"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "FF"
},
{
"begin": -1,
"end": -1,
"name": "NOT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "AND",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP4",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "OR",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP6",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "58"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "60"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP6",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ISZERO",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "58"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "61"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "GT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ISZERO",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "62"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "61"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "62"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "58"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "63"
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "64"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[in]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "63"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[out]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "64"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "65"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP3",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "GT",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "ISZERO",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "66"
},
{
"begin": -1,
"end": -1,
"name": "JUMPI",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SSTORE",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "ADD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "65"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "66"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[out]"
},
{
"begin": 7,
"end": 419,
"name": "tag",
"source": 1,
"value": "68"
},
{
"begin": 7,
"end": 419,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 85,
"end": 90,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 110,
"end": 176,
"name": "PUSH [tag]",
"source": 1,
"value": "70"
},
{
"begin": 126,
"end": 175,
"name": "PUSH [tag]",
"source": 1,
"value": "71"
},
{
"begin": 168,
"end": 174,
"name": "DUP5",
"source": 1
},
{
"begin": 126,
"end": 175,
"name": "PUSH [tag]",
"source": 1,
"value": "72"
},
{
"begin": 126,
"end": 175,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 126,
"end": 175,
"name": "tag",
"source": 1,
"value": "71"
},
{
"begin": 126,
"end": 175,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 110,
"end": 176,
"name": "PUSH [tag]",
"source": 1,
"value": "73"
},
{
"begin": 110,
"end": 176,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 110,
"end": 176,
"name": "tag",
"source": 1,
"value": "70"
},
{
"begin": 110,
"end": 176,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 101,
"end": 176,
"name": "SWAP1",
"source": 1
},
{
"begin": 101,
"end": 176,
"name": "POP",
"source": 1
},
{
"begin": 199,
"end": 205,
"name": "DUP3",
"source": 1
},
{
"begin": 192,
"end": 197,
"name": "DUP2",
"source": 1
},
{
"begin": 185,
"end": 206,
"name": "MSTORE",
"source": 1
},
{
"begin": 237,
"end": 241,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 230,
"end": 235,
"name": "DUP2",
"source": 1
},
{
"begin": 226,
"end": 242,
"name": "ADD",
"source": 1
},
{
"begin": 275,
"end": 278,
"name": "DUP5",
"source": 1
},
{
"begin": 266,
"end": 272,
"name": "DUP5",
"source": 1
},
{
"begin": 261,
"end": 264,
"name": "DUP5",
"source": 1
},
{
"begin": 257,
"end": 273,
"name": "ADD",
"source": 1
},
{
"begin": 254,
"end": 279,
"name": "GT",
"source": 1
},
{
"begin": 251,
"end": 363,
"name": "ISZERO",
"source": 1
},
{
"begin": 251,
"end": 363,
"name": "PUSH [tag]",
"source": 1,
"value": "74"
},
{
"begin": 251,
"end": 363,
"name": "JUMPI",
"source": 1
},
{
"begin": 282,
"end": 361,
"name": "PUSH [tag]",
"source": 1,
"value": "75"
},
{
"begin": 282,
"end": 361,
"name": "PUSH [tag]",
"source": 1,
"value": "76"
},
{
"begin": 282,
"end": 361,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 282,
"end": 361,
"name": "tag",
"source": 1,
"value": "75"
},
{
"begin": 282,
"end": 361,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 251,
"end": 363,
"name": "tag",
"source": 1,
"value": "74"
},
{
"begin": 251,
"end": 363,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 372,
"end": 413,
"name": "PUSH [tag]",
"source": 1,
"value": "77"
},
{
"begin": 406,
"end": 412,
"name": "DUP5",
"source": 1
},
{
"begin": 401,
"end": 404,
"name": "DUP3",
"source": 1
},
{
"begin": 396,
"end": 399,
"name": "DUP6",
"source": 1
},
{
"begin": 372,
"end": 413,
"name": "PUSH [tag]",
"source": 1,
"value": "78"
},
{
"begin": 372,
"end": 413,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 372,
"end": 413,
"name": "tag",
"source": 1,
"value": "77"
},
{
"begin": 372,
"end": 413,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 91,
"end": 419,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "SWAP4",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "SWAP3",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 419,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 439,
"end": 779,
"name": "tag",
"source": 1,
"value": "79"
},
{
"begin": 439,
"end": 779,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 495,
"end": 500,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 544,
"end": 547,
"name": "DUP3",
"source": 1
},
{
"begin": 537,
"end": 541,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 529,
"end": 535,
"name": "DUP4",
"source": 1
},
{
"begin": 525,
"end": 542,
"name": "ADD",
"source": 1
},
{
"begin": 521,
"end": 548,
"name": "SLT",
"source": 1
},
{
"begin": 511,
"end": 633,
"name": "PUSH [tag]",
"source": 1,
"value": "81"
},
{
"begin": 511,
"end": 633,
"name": "JUMPI",
"source": 1
},
{
"begin": 552,
"end": 631,
"name": "PUSH [tag]",
"source": 1,
"value": "82"
},
{
"begin": 552,
"end": 631,
"name": "PUSH [tag]",
"source": 1,
"value": "83"
},
{
"begin": 552,
"end": 631,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 552,
"end": 631,
"name": "tag",
"source": 1,
"value": "82"
},
{
"begin": 552,
"end": 631,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 511,
"end": 633,
"name": "tag",
"source": 1,
"value": "81"
},
{
"begin": 511,
"end": 633,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 669,
"end": 675,
"name": "DUP2",
"source": 1
},
{
"begin": 656,
"end": 676,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 694,
"end": 773,
"name": "PUSH [tag]",
"source": 1,
"value": "84"
},
{
"begin": 769,
"end": 772,
"name": "DUP5",
"source": 1
},
{
"begin": 761,
"end": 767,
"name": "DUP3",
"source": 1
},
{
"begin": 754,
"end": 758,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 746,
"end": 752,
"name": "DUP7",
"source": 1
},
{
"begin": 742,
"end": 759,
"name": "ADD",
"source": 1
},
{
"begin": 694,
"end": 773,
"name": "PUSH [tag]",
"source": 1,
"value": "68"
},
{
"begin": 694,
"end": 773,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 694,
"end": 773,
"name": "tag",
"source": 1,
"value": "84"
},
{
"begin": 694,
"end": 773,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 685,
"end": 773,
"name": "SWAP2",
"source": 1
},
{
"begin": 685,
"end": 773,
"name": "POP",
"source": 1
},
{
"begin": 501,
"end": 779,
"name": "POP",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "SWAP3",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "SWAP2",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "POP",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "POP",
"source": 1
},
{
"begin": 439,
"end": 779,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 785,
"end": 924,
"name": "tag",
"source": 1,
"value": "85"
},
{
"begin": 785,
"end": 924,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 831,
"end": 836,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 869,
"end": 875,
"name": "DUP2",
"source": 1
},
{
"begin": 856,
"end": 876,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 847,
"end": 876,
"name": "SWAP1",
"source": 1
},
{
"begin": 847,
"end": 876,
"name": "POP",
"source": 1
},
{
"begin": 885,
"end": 918,
"name": "PUSH [tag]",
"source": 1,
"value": "87"
},
{
"begin": 912,
"end": 917,
"name": "DUP2",
"source": 1
},
{
"begin": 885,
"end": 918,
"name": "PUSH [tag]",
"source": 1,
"value": "88"
},
{
"begin": 885,
"end": 918,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 885,
"end": 918,
"name": "tag",
"source": 1,
"value": "87"
},
{
"begin": 885,
"end": 918,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "SWAP3",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "SWAP2",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "POP",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "POP",
"source": 1
},
{
"begin": 785,
"end": 924,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 930,
"end": 1764,
"name": "tag",
"source": 1,
"value": "9"
},
{
"begin": 930,
"end": 1764,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1018,
"end": 1024,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1026,
"end": 1032,
"name": "DUP1",
"source": 1
},
{
"begin": 1075,
"end": 1077,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1063,
"end": 1072,
"name": "DUP4",
"source": 1
},
{
"begin": 1054,
"end": 1061,
"name": "DUP6",
"source": 1
},
{
"begin": 1050,
"end": 1073,
"name": "SUB",
"source": 1
},
{
"begin": 1046,
"end": 1078,
"name": "SLT",
"source": 1
},
{
"begin": 1043,
"end": 1162,
"name": "ISZERO",
"source": 1
},
{
"begin": 1043,
"end": 1162,
"name": "PUSH [tag]",
"source": 1,
"value": "90"
},
{
"begin": 1043,
"end": 1162,
"name": "JUMPI",
"source": 1
},
{
"begin": 1081,
"end": 1160,
"name": "PUSH [tag]",
"source": 1,
"value": "91"
},
{
"begin": 1081,
"end": 1160,
"name": "PUSH [tag]",
"source": 1,
"value": "92"
},
{
"begin": 1081,
"end": 1160,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1081,
"end": 1160,
"name": "tag",
"source": 1,
"value": "91"
},
{
"begin": 1081,
"end": 1160,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1043,
"end": 1162,
"name": "tag",
"source": 1,
"value": "90"
},
{
"begin": 1043,
"end": 1162,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1229,
"end": 1230,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1218,
"end": 1227,
"name": "DUP4",
"source": 1
},
{
"begin": 1214,
"end": 1231,
"name": "ADD",
"source": 1
},
{
"begin": 1201,
"end": 1232,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 1259,
"end": 1277,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1251,
"end": 1257,
"name": "DUP2",
"source": 1
},
{
"begin": 1248,
"end": 1278,
"name": "GT",
"source": 1
},
{
"begin": 1245,
"end": 1362,
"name": "ISZERO",
"source": 1
},
{
"begin": 1245,
"end": 1362,
"name": "PUSH [tag]",
"source": 1,
"value": "93"
},
{
"begin": 1245,
"end": 1362,
"name": "JUMPI",
"source": 1
},
{
"begin": 1281,
"end": 1360,
"name": "PUSH [tag]",
"source": 1,
"value": "94"
},
{
"begin": 1281,
"end": 1360,
"name": "PUSH [tag]",
"source": 1,
"value": "95"
},
{
"begin": 1281,
"end": 1360,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1281,
"end": 1360,
"name": "tag",
"source": 1,
"value": "94"
},
{
"begin": 1281,
"end": 1360,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1245,
"end": 1362,
"name": "tag",
"source": 1,
"value": "93"
},
{
"begin": 1245,
"end": 1362,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1386,
"end": 1449,
"name": "PUSH [tag]",
"source": 1,
"value": "96"
},
{
"begin": 1441,
"end": 1448,
"name": "DUP6",
"source": 1
},
{
"begin": 1432,
"end": 1438,
"name": "DUP3",
"source": 1
},
{
"begin": 1421,
"end": 1430,
"name": "DUP7",
"source": 1
},
{
"begin": 1417,
"end": 1439,
"name": "ADD",
"source": 1
},
{
"begin": 1386,
"end": 1449,
"name": "PUSH [tag]",
"source": 1,
"value": "79"
},
{
"begin": 1386,
"end": 1449,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1386,
"end": 1449,
"name": "tag",
"source": 1,
"value": "96"
},
{
"begin": 1386,
"end": 1449,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1376,
"end": 1449,
"name": "SWAP3",
"source": 1
},
{
"begin": 1376,
"end": 1449,
"name": "POP",
"source": 1
},
{
"begin": 1172,
"end": 1459,
"name": "POP",
"source": 1
},
{
"begin": 1526,
"end": 1528,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1515,
"end": 1524,
"name": "DUP4",
"source": 1
},
{
"begin": 1511,
"end": 1529,
"name": "ADD",
"source": 1
},
{
"begin": 1498,
"end": 1530,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 1557,
"end": 1575,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1549,
"end": 1555,
"name": "DUP2",
"source": 1
},
{
"begin": 1546,
"end": 1576,
"name": "GT",
"source": 1
},
{
"begin": 1543,
"end": 1660,
"name": "ISZERO",
"source": 1
},
{
"begin": 1543,
"end": 1660,
"name": "PUSH [tag]",
"source": 1,
"value": "97"
},
{
"begin": 1543,
"end": 1660,
"name": "JUMPI",
"source": 1
},
{
"begin": 1579,
"end": 1658,
"name": "PUSH [tag]",
"source": 1,
"value": "98"
},
{
"begin": 1579,
"end": 1658,
"name": "PUSH [tag]",
"source": 1,
"value": "95"
},
{
"begin": 1579,
"end": 1658,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1579,
"end": 1658,
"name": "tag",
"source": 1,
"value": "98"
},
{
"begin": 1579,
"end": 1658,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1543,
"end": 1660,
"name": "tag",
"source": 1,
"value": "97"
},
{
"begin": 1543,
"end": 1660,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1684,
"end": 1747,
"name": "PUSH [tag]",
"source": 1,
"value": "99"
},
{
"begin": 1739,
"end": 1746,
"name": "DUP6",
"source": 1
},
{
"begin": 1730,
"end": 1736,
"name": "DUP3",
"source": 1
},
{
"begin": 1719,
"end": 1728,
"name": "DUP7",
"source": 1
},
{
"begin": 1715,
"end": 1737,
"name": "ADD",
"source": 1
},
{
"begin": 1684,
"end": 1747,
"name": "PUSH [tag]",
"source": 1,
"value": "79"
},
{
"begin": 1684,
"end": 1747,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1684,
"end": 1747,
"name": "tag",
"source": 1,
"value": "99"
},
{
"begin": 1684,
"end": 1747,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1674,
"end": 1747,
"name": "SWAP2",
"source": 1
},
{
"begin": 1674,
"end": 1747,
"name": "POP",
"source": 1
},
{
"begin": 1469,
"end": 1757,
"name": "POP",
"source": 1
},
{
"begin": 930,
"end": 1764,
"name": "SWAP3",
"source": 1
},
{
"begin": 930,
"end": 1764,
"name": "POP",
"source": 1
},
{
"begin": 930,
"end": 1764,
"name": "SWAP3",
"source": 1
},
{
"begin": 930,
"end": 1764,
"name": "SWAP1",
"source": 1
},
{
"begin": 930,
"end": 1764,
"name": "POP",
"source": 1
},
{
"begin": 930,
"end": 1764,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1770,
"end": 2099,
"name": "tag",
"source": 1,
"value": "17"
},
{
"begin": 1770,
"end": 2099,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1829,
"end": 1835,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1878,
"end": 1880,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1866,
"end": 1875,
"name": "DUP3",
"source": 1
},
{
"begin": 1857,
"end": 1864,
"name": "DUP5",
"source": 1
},
{
"begin": 1853,
"end": 1876,
"name": "SUB",
"source": 1
},
{
"begin": 1849,
"end": 1881,
"name": "SLT",
"source": 1
},
{
"begin": 1846,
"end": 1965,
"name": "ISZERO",
"source": 1
},
{
"begin": 1846,
"end": 1965,
"name": "PUSH [tag]",
"source": 1,
"value": "101"
},
{
"begin": 1846,
"end": 1965,
"name": "JUMPI",
"source": 1
},
{
"begin": 1884,
"end": 1963,
"name": "PUSH [tag]",
"source": 1,
"value": "102"
},
{
"begin": 1884,
"end": 1963,
"name": "PUSH [tag]",
"source": 1,
"value": "92"
},
{
"begin": 1884,
"end": 1963,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1884,
"end": 1963,
"name": "tag",
"source": 1,
"value": "102"
},
{
"begin": 1884,
"end": 1963,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1846,
"end": 1965,
"name": "tag",
"source": 1,
"value": "101"
},
{
"begin": 1846,
"end": 1965,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2004,
"end": 2005,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2029,
"end": 2082,
"name": "PUSH [tag]",
"source": 1,
"value": "103"
},
{
"begin": 2074,
"end": 2081,
"name": "DUP5",
"source": 1
},
{
"begin": 2065,
"end": 2071,
"name": "DUP3",
"source": 1
},
{
"begin": 2054,
"end": 2063,
"name": "DUP6",
"source": 1
},
{
"begin": 2050,
"end": 2072,
"name": "ADD",
"source": 1
},
{
"begin": 2029,
"end": 2082,
"name": "PUSH [tag]",
"source": 1,
"value": "85"
},
{
"begin": 2029,
"end": 2082,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2029,
"end": 2082,
"name": "tag",
"source": 1,
"value": "103"
},
{
"begin": 2029,
"end": 2082,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2019,
"end": 2082,
"name": "SWAP2",
"source": 1
},
{
"begin": 2019,
"end": 2082,
"name": "POP",
"source": 1
},
{
"begin": 1975,
"end": 2092,
"name": "POP",
"source": 1
},
{
"begin": 1770,
"end": 2099,
"name": "SWAP3",
"source": 1
},
{
"begin": 1770,
"end": 2099,
"name": "SWAP2",
"source": 1
},
{
"begin": 1770,
"end": 2099,
"name": "POP",
"source": 1
},
{
"begin": 1770,
"end": 2099,
"name": "POP",
"source": 1
},
{
"begin": 1770,
"end": 2099,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2105,
"end": 2214,
"name": "tag",
"source": 1,
"value": "104"
},
{
"begin": 2105,
"end": 2214,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2186,
"end": 2207,
"name": "PUSH [tag]",
"source": 1,
"value": "106"
},
{
"begin": 2201,
"end": 2206,
"name": "DUP2",
"source": 1
},
{
"begin": 2186,
"end": 2207,
"name": "PUSH [tag]",
"source": 1,
"value": "107"
},
{
"begin": 2186,
"end": 2207,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2186,
"end": 2207,
"name": "tag",
"source": 1,
"value": "106"
},
{
"begin": 2186,
"end": 2207,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2181,
"end": 2184,
"name": "DUP3",
"source": 1
},
{
"begin": 2174,
"end": 2208,
"name": "MSTORE",
"source": 1
},
{
"begin": 2105,
"end": 2214,
"name": "POP",
"source": 1
},
{
"begin": 2105,
"end": 2214,
"name": "POP",
"source": 1
},
{
"begin": 2105,
"end": 2214,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2220,
"end": 2584,
"name": "tag",
"source": 1,
"value": "108"
},
{
"begin": 2220,
"end": 2584,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2308,
"end": 2311,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2336,
"end": 2375,
"name": "PUSH [tag]",
"source": 1,
"value": "110"
},
{
"begin": 2369,
"end": 2374,
"name": "DUP3",
"source": 1
},
{
"begin": 2336,
"end": 2375,
"name": "PUSH [tag]",
"source": 1,
"value": "111"
},
{
"begin": 2336,
"end": 2375,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2336,
"end": 2375,
"name": "tag",
"source": 1,
"value": "110"
},
{
"begin": 2336,
"end": 2375,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2391,
"end": 2462,
"name": "PUSH [tag]",
"source": 1,
"value": "112"
},
{
"begin": 2455,
"end": 2461,
"name": "DUP2",
"source": 1
},
{
"begin": 2450,
"end": 2453,
"name": "DUP6",
"source": 1
},
{
"begin": 2391,
"end": 2462,
"name": "PUSH [tag]",
"source": 1,
"value": "113"
},
{
"begin": 2391,
"end": 2462,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2391,
"end": 2462,
"name": "tag",
"source": 1,
"value": "112"
},
{
"begin": 2391,
"end": 2462,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2384,
"end": 2462,
"name": "SWAP4",
"source": 1
},
{
"begin": 2384,
"end": 2462,
"name": "POP",
"source": 1
},
{
"begin": 2471,
"end": 2523,
"name": "PUSH [tag]",
"source": 1,
"value": "114"
},
{
"begin": 2516,
"end": 2522,
"name": "DUP2",
"source": 1
},
{
"begin": 2511,
"end": 2514,
"name": "DUP6",
"source": 1
},
{
"begin": 2504,
"end": 2508,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2497,
"end": 2502,
"name": "DUP7",
"source": 1
},
{
"begin": 2493,
"end": 2509,
"name": "ADD",
"source": 1
},
{
"begin": 2471,
"end": 2523,
"name": "PUSH [tag]",
"source": 1,
"value": "115"
},
{
"begin": 2471,
"end": 2523,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2471,
"end": 2523,
"name": "tag",
"source": 1,
"value": "114"
},
{
"begin": 2471,
"end": 2523,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2548,
"end": 2577,
"name": "PUSH [tag]",
"source": 1,
"value": "116"
},
{
"begin": 2570,
"end": 2576,
"name": "DUP2",
"source": 1
},
{
"begin": 2548,
"end": 2577,
"name": "PUSH [tag]",
"source": 1,
"value": "117"
},
{
"begin": 2548,
"end": 2577,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2548,
"end": 2577,
"name": "tag",
"source": 1,
"value": "116"
},
{
"begin": 2548,
"end": 2577,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2543,
"end": 2546,
"name": "DUP5",
"source": 1
},
{
"begin": 2539,
"end": 2578,
"name": "ADD",
"source": 1
},
{
"begin": 2532,
"end": 2578,
"name": "SWAP2",
"source": 1
},
{
"begin": 2532,
"end": 2578,
"name": "POP",
"source": 1
},
{
"begin": 2312,
"end": 2584,
"name": "POP",
"source": 1
},
{
"begin": 2220,
"end": 2584,
"name": "SWAP3",
"source": 1
},
{
"begin": 2220,
"end": 2584,
"name": "SWAP2",
"source": 1
},
{
"begin": 2220,
"end": 2584,
"name": "POP",
"source": 1
},
{
"begin": 2220,
"end": 2584,
"name": "POP",
"source": 1
},
{
"begin": 2220,
"end": 2584,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2590,
"end": 2708,
"name": "tag",
"source": 1,
"value": "118"
},
{
"begin": 2590,
"end": 2708,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2677,
"end": 2701,
"name": "PUSH [tag]",
"source": 1,
"value": "120"
},
{
"begin": 2695,
"end": 2700,
"name": "DUP2",
"source": 1
},
{
"begin": 2677,
"end": 2701,
"name": "PUSH [tag]",
"source": 1,
"value": "121"
},
{
"begin": 2677,
"end": 2701,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2677,
"end": 2701,
"name": "tag",
"source": 1,
"value": "120"
},
{
"begin": 2677,
"end": 2701,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2672,
"end": 2675,
"name": "DUP3",
"source": 1
},
{
"begin": 2665,
"end": 2702,
"name": "MSTORE",
"source": 1
},
{
"begin": 2590,
"end": 2708,
"name": "POP",
"source": 1
},
{
"begin": 2590,
"end": 2708,
"name": "POP",
"source": 1
},
{
"begin": 2590,
"end": 2708,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2714,
"end": 2936,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 2714,
"end": 2936,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2807,
"end": 2811,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2845,
"end": 2847,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2834,
"end": 2843,
"name": "DUP3",
"source": 1
},
{
"begin": 2830,
"end": 2848,
"name": "ADD",
"source": 1
},
{
"begin": 2822,
"end": 2848,
"name": "SWAP1",
"source": 1
},
{
"begin": 2822,
"end": 2848,
"name": "POP",
"source": 1
},
{
"begin": 2858,
"end": 2929,
"name": "PUSH [tag]",
"source": 1,
"value": "123"
},
{
"begin": 2926,
"end": 2927,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2915,
"end": 2924,
"name": "DUP4",
"source": 1
},
{
"begin": 2911,
"end": 2928,
"name": "ADD",
"source": 1
},
{
"begin": 2902,
"end": 2908,
"name": "DUP5",
"source": 1
},
{
"begin": 2858,
"end": 2929,
"name": "PUSH [tag]",
"source": 1,
"value": "118"
},
{
"begin": 2858,
"end": 2929,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2858,
"end": 2929,
"name": "tag",
"source": 1,
"value": "123"
},
{
"begin": 2858,
"end": 2929,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2714,
"end": 2936,
"name": "SWAP3",
"source": 1
},
{
"begin": 2714,
"end": 2936,
"name": "SWAP2",
"source": 1
},
{
"begin": 2714,
"end": 2936,
"name": "POP",
"source": 1
},
{
"begin": 2714,
"end": 2936,
"name": "POP",
"source": 1
},
{
"begin": 2714,
"end": 2936,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2942,
"end": 3262,
"name": "tag",
"source": 1,
"value": "56"
},
{
"begin": 2942,
"end": 3262,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3057,
"end": 3061,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3095,
"end": 3097,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 3084,
"end": 3093,
"name": "DUP3",
"source": 1
},
{
"begin": 3080,
"end": 3098,
"name": "ADD",
"source": 1
},
{
"begin": 3072,
"end": 3098,
"name": "SWAP1",
"source": 1
},
{
"begin": 3072,
"end": 3098,
"name": "POP",
"source": 1
},
{
"begin": 3108,
"end": 3179,
"name": "PUSH [tag]",
"source": 1,
"value": "125"
},
{
"begin": 3176,
"end": 3177,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3165,
"end": 3174,
"name": "DUP4",
"source": 1
},
{
"begin": 3161,
"end": 3178,
"name": "ADD",
"source": 1
},
{
"begin": 3152,
"end": 3158,
"name": "DUP6",
"source": 1
},
{
"begin": 3108,
"end": 3179,
"name": "PUSH [tag]",
"source": 1,
"value": "118"
},
{
"begin": 3108,
"end": 3179,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3108,
"end": 3179,
"name": "tag",
"source": 1,
"value": "125"
},
{
"begin": 3108,
"end": 3179,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3189,
"end": 3255,
"name": "PUSH [tag]",
"source": 1,
"value": "126"
},
{
"begin": 3251,
"end": 3253,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 3240,
"end": 3249,
"name": "DUP4",
"source": 1
},
{
"begin": 3236,
"end": 3254,
"name": "ADD",
"source": 1
},
{
"begin": 3227,
"end": 3233,
"name": "DUP5",
"source": 1
},
{
"begin": 3189,
"end": 3255,
"name": "PUSH [tag]",
"source": 1,
"value": "104"
},
{
"begin": 3189,
"end": 3255,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3189,
"end": 3255,
"name": "tag",
"source": 1,
"value": "126"
},
{
"begin": 3189,
"end": 3255,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2942,
"end": 3262,
"name": "SWAP4",
"source": 1
},
{
"begin": 2942,
"end": 3262,
"name": "SWAP3",
"source": 1
},
{
"begin": 2942,
"end": 3262,
"name": "POP",
"source": 1
},
{
"begin": 2942,
"end": 3262,
"name": "POP",
"source": 1
},
{
"begin": 2942,
"end": 3262,
"name": "POP",
"source": 1
},
{
"begin": 2942,
"end": 3262,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 3268,
"end": 4102,
"name": "tag",
"source": 1,
"value": "20"
},
{
"begin": 3268,
"end": 4102,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3507,
"end": 3511,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3545,
"end": 3548,
"name": "PUSH",
"source": 1,
"value": "A0"
},
{
"begin": 3534,
"end": 3543,
"name": "DUP3",
"source": 1
},
{
"begin": 3530,
"end": 3549,
"name": "ADD",
"source": 1
},
{
"begin": 3522,
"end": 3549,
"name": "SWAP1",
"source": 1
},
{
"begin": 3522,
"end": 3549,
"name": "POP",
"source": 1
},
{
"begin": 3559,
"end": 3630,
"name": "PUSH [tag]",
"source": 1,
"value": "128"
},
{
"begin": 3627,
"end": 3628,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3616,
"end": 3625,
"name": "DUP4",
"source": 1
},
{
"begin": 3612,
"end": 3629,
"name": "ADD",
"source": 1
},
{
"begin": 3603,
"end": 3609,
"name": "DUP9",
"source": 1
},
{
"begin": 3559,
"end": 3630,
"name": "PUSH [tag]",
"source": 1,
"value": "118"
},
{
"begin": 3559,
"end": 3630,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3559,
"end": 3630,
"name": "tag",
"source": 1,
"value": "128"
},
{
"begin": 3559,
"end": 3630,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3677,
"end": 3686,
"name": "DUP2",
"source": 1
},
{
"begin": 3671,
"end": 3675,
"name": "DUP2",
"source": 1
},
{
"begin": 3667,
"end": 3687,
"name": "SUB",
"source": 1
},
{
"begin": 3662,
"end": 3664,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 3651,
"end": 3660,
"name": "DUP4",
"source": 1
},
{
"begin": 3647,
"end": 3665,
"name": "ADD",
"source": 1
},
{
"begin": 3640,
"end": 3688,
"name": "MSTORE",
"source": 1
},
{
"begin": 3705,
"end": 3783,
"name": "PUSH [tag]",
"source": 1,
"value": "129"
},
{
"begin": 3778,
"end": 3782,
"name": "DUP2",
"source": 1
},
{
"begin": 3769,
"end": 3775,
"name": "DUP8",
"source": 1
},
{
"begin": 3705,
"end": 3783,
"name": "PUSH [tag]",
"source": 1,
"value": "108"
},
{
"begin": 3705,
"end": 3783,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3705,
"end": 3783,
"name": "tag",
"source": 1,
"value": "129"
},
{
"begin": 3705,
"end": 3783,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3697,
"end": 3783,
"name": "SWAP1",
"source": 1
},
{
"begin": 3697,
"end": 3783,
"name": "POP",
"source": 1
},
{
"begin": 3830,
"end": 3839,
"name": "DUP2",
"source": 1
},
{
"begin": 3824,
"end": 3828,
"name": "DUP2",
"source": 1
},
{
"begin": 3820,
"end": 3840,
"name": "SUB",
"source": 1
},
{
"begin": 3815,
"end": 3817,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 3804,
"end": 3813,
"name": "DUP4",
"source": 1
},
{
"begin": 3800,
"end": 3818,
"name": "ADD",
"source": 1
},
{
"begin": 3793,
"end": 3841,
"name": "MSTORE",
"source": 1
},
{
"begin": 3858,
"end": 3936,
"name": "PUSH [tag]",
"source": 1,
"value": "130"
},
{
"begin": 3931,
"end": 3935,
"name": "DUP2",
"source": 1
},
{
"begin": 3922,
"end": 3928,
"name": "DUP7",
"source": 1
},
{
"begin": 3858,
"end": 3936,
"name": "PUSH [tag]",
"source": 1,
"value": "108"
},
{
"begin": 3858,
"end": 3936,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3858,
"end": 3936,
"name": "tag",
"source": 1,
"value": "130"
},
{
"begin": 3858,
"end": 3936,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3850,
"end": 3936,
"name": "SWAP1",
"source": 1
},
{
"begin": 3850,
"end": 3936,
"name": "POP",
"source": 1
},
{
"begin": 3946,
"end": 4012,
"name": "PUSH [tag]",
"source": 1,
"value": "131"
},
{
"begin": 4008,
"end": 4010,
"name": "PUSH",
"source": 1,
"value": "60"
},
{
"begin": 3997,
"end": 4006,
"name": "DUP4",
"source": 1
},
{
"begin": 3993,
"end": 4011,
"name": "ADD",
"source": 1
},
{
"begin": 3984,
"end": 3990,
"name": "DUP6",
"source": 1
},
{
"begin": 3946,
"end": 4012,
"name": "PUSH [tag]",
"source": 1,
"value": "104"
},
{
"begin": 3946,
"end": 4012,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 3946,
"end": 4012,
"name": "tag",
"source": 1,
"value": "131"
},
{
"begin": 3946,
"end": 4012,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4022,
"end": 4095,
"name": "PUSH [tag]",
"source": 1,
"value": "132"
},
{
"begin": 4090,
"end": 4093,
"name": "PUSH",
"source": 1,
"value": "80"
},
{
"begin": 4079,
"end": 4088,
"name": "DUP4",
"source": 1
},
{
"begin": 4075,
"end": 4094,
"name": "ADD",
"source": 1
},
{
"begin": 4066,
"end": 4072,
"name": "DUP5",
"source": 1
},
{
"begin": 4022,
"end": 4095,
"name": "PUSH [tag]",
"source": 1,
"value": "118"
},
{
"begin": 4022,
"end": 4095,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 4022,
"end": 4095,
"name": "tag",
"source": 1,
"value": "132"
},
{
"begin": 4022,
"end": 4095,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3268,
"end": 4102,
"name": "SWAP7",
"source": 1
},
{
"begin": 3268,
"end": 4102,
"name": "SWAP6",
"source": 1
},
{
"begin": 3268,
"end": 4102,
"name": "POP",
"source": 1
},
{
"begin": 3268,
"end": 4102,
"name": "POP",
"source": 1
},
{
"begin": 3268,
"end": 4102,
"name": "POP",
"source": 1
},
{
"begin": 3268,
"end": 4102,
"name": "POP",
"source": 1
},
{
"begin": 3268,
"end": 4102,
"name": "POP",
"source": 1
},
{
"begin": 3268,
"end": 4102,
"name": "POP",
"source": 1
},
{
"begin": 3268,
"end": 4102,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 4108,
"end": 4237,
"name": "tag",
"source": 1,
"value": "73"
},
{
"begin": 4108,
"end": 4237,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4142,
"end": 4148,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4169,
"end": 4189,
"name": "PUSH [tag]",
"source": 1,
"value": "134"
},
{
"begin": 4169,
"end": 4189,
"name": "PUSH [tag]",
"source": 1,
"value": "135"
},
{
"begin": 4169,
"end": 4189,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 4169,
"end": 4189,
"name": "tag",
"source": 1,
"value": "134"
},
{
"begin": 4169,
"end": 4189,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4159,
"end": 4189,
"name": "SWAP1",
"source": 1
},
{
"begin": 4159,
"end": 4189,
"name": "POP",
"source": 1
},
{
"begin": 4198,
"end": 4231,
"name": "PUSH [tag]",
"source": 1,
"value": "136"
},
{
"begin": 4226,
"end": 4230,
"name": "DUP3",
"source": 1
},
{
"begin": 4218,
"end": 4224,
"name": "DUP3",
"source": 1
},
{
"begin": 4198,
"end": 4231,
"name": "PUSH [tag]",
"source": 1,
"value": "137"
},
{
"begin": 4198,
"end": 4231,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 4198,
"end": 4231,
"name": "tag",
"source": 1,
"value": "136"
},
{
"begin": 4198,
"end": 4231,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4108,
"end": 4237,
"name": "SWAP2",
"source": 1
},
{
"begin": 4108,
"end": 4237,
"name": "SWAP1",
"source": 1
},
{
"begin": 4108,
"end": 4237,
"name": "POP",
"source": 1
},
{
"begin": 4108,
"end": 4237,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 4243,
"end": 4318,
"name": "tag",
"source": 1,
"value": "135"
},
{
"begin": 4243,
"end": 4318,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4276,
"end": 4282,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4309,
"end": 4311,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 4303,
"end": 4312,
"name": "MLOAD",
"source": 1
},
{
"begin": 4293,
"end": 4312,
"name": "SWAP1",
"source": 1
},
{
"begin": 4293,
"end": 4312,
"name": "POP",
"source": 1
},
{
"begin": 4243,
"end": 4318,
"name": "SWAP1",
"source": 1
},
{
"begin": 4243,
"end": 4318,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 4324,
"end": 4632,
"name": "tag",
"source": 1,
"value": "72"
},
{
"begin": 4324,
"end": 4632,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4386,
"end": 4390,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4476,
"end": 4494,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 4468,
"end": 4474,
"name": "DUP3",
"source": 1
},
{
"begin": 4465,
"end": 4495,
"name": "GT",
"source": 1
},
{
"begin": 4462,
"end": 4518,
"name": "ISZERO",
"source": 1
},
{
"begin": 4462,
"end": 4518,
"name": "PUSH [tag]",
"source": 1,
"value": "140"
},
{
"begin": 4462,
"end": 4518,
"name": "JUMPI",
"source": 1
},
{
"begin": 4498,
"end": 4516,
"name": "PUSH [tag]",
"source": 1,
"value": "141"
},
{
"begin": 4498,
"end": 4516,
"name": "PUSH [tag]",
"source": 1,
"value": "142"
},
{
"begin": 4498,
"end": 4516,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 4498,
"end": 4516,
"name": "tag",
"source": 1,
"value": "141"
},
{
"begin": 4498,
"end": 4516,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4462,
"end": 4518,
"name": "tag",
"source": 1,
"value": "140"
},
{
"begin": 4462,
"end": 4518,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4536,
"end": 4565,
"name": "PUSH [tag]",
"source": 1,
"value": "143"
},
{
"begin": 4558,
"end": 4564,
"name": "DUP3",
"source": 1
},
{
"begin": 4536,
"end": 4565,
"name": "PUSH [tag]",
"source": 1,
"value": "117"
},
{
"begin": 4536,
"end": 4565,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 4536,
"end": 4565,
"name": "tag",
"source": 1,
"value": "143"
},
{
"begin": 4536,
"end": 4565,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4528,
"end": 4565,
"name": "SWAP1",
"source": 1
},
{
"begin": 4528,
"end": 4565,
"name": "POP",
"source": 1
},
{
"begin": 4620,
"end": 4624,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 4614,
"end": 4618,
"name": "DUP2",
"source": 1
},
{
"begin": 4610,
"end": 4625,
"name": "ADD",
"source": 1
},
{
"begin": 4602,
"end": 4625,
"name": "SWAP1",
"source": 1
},
{
"begin": 4602,
"end": 4625,
"name": "POP",
"source": 1
},
{
"begin": 4324,
"end": 4632,
"name": "SWAP2",
"source": 1
},
{
"begin": 4324,
"end": 4632,
"name": "SWAP1",
"source": 1
},
{
"begin": 4324,
"end": 4632,
"name": "POP",
"source": 1
},
{
"begin": 4324,
"end": 4632,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 4638,
"end": 4737,
"name": "tag",
"source": 1,
"value": "111"
},
{
"begin": 4638,
"end": 4737,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4690,
"end": 4696,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4724,
"end": 4729,
"name": "DUP2",
"source": 1
},
{
"begin": 4718,
"end": 4730,
"name": "MLOAD",
"source": 1
},
{
"begin": 4708,
"end": 4730,
"name": "SWAP1",
"source": 1
},
{
"begin": 4708,
"end": 4730,
"name": "POP",
"source": 1
},
{
"begin": 4638,
"end": 4737,
"name": "SWAP2",
"source": 1
},
{
"begin": 4638,
"end": 4737,
"name": "SWAP1",
"source": 1
},
{
"begin": 4638,
"end": 4737,
"name": "POP",
"source": 1
},
{
"begin": 4638,
"end": 4737,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 4743,
"end": 4912,
"name": "tag",
"source": 1,
"value": "113"
},
{
"begin": 4743,
"end": 4912,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4827,
"end": 4838,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4861,
"end": 4867,
"name": "DUP3",
"source": 1
},
{
"begin": 4856,
"end": 4859,
"name": "DUP3",
"source": 1
},
{
"begin": 4849,
"end": 4868,
"name": "MSTORE",
"source": 1
},
{
"begin": 4901,
"end": 4905,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 4896,
"end": 4899,
"name": "DUP3",
"source": 1
},
{
"begin": 4892,
"end": 4906,
"name": "ADD",
"source": 1
},
{
"begin": 4877,
"end": 4906,
"name": "SWAP1",
"source": 1
},
{
"begin": 4877,
"end": 4906,
"name": "POP",
"source": 1
},
{
"begin": 4743,
"end": 4912,
"name": "SWAP3",
"source": 1
},
{
"begin": 4743,
"end": 4912,
"name": "SWAP2",
"source": 1
},
{
"begin": 4743,
"end": 4912,
"name": "POP",
"source": 1
},
{
"begin": 4743,
"end": 4912,
"name": "POP",
"source": 1
},
{
"begin": 4743,
"end": 4912,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 4918,
"end": 5008,
"name": "tag",
"source": 1,
"value": "107"
},
{
"begin": 4918,
"end": 5008,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4952,
"end": 4959,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4995,
"end": 5000,
"name": "DUP2",
"source": 1
},
{
"begin": 4988,
"end": 5001,
"name": "ISZERO",
"source": 1
},
{
"begin": 4981,
"end": 5002,
"name": "ISZERO",
"source": 1
},
{
"begin": 4970,
"end": 5002,
"name": "SWAP1",
"source": 1
},
{
"begin": 4970,
"end": 5002,
"name": "POP",
"source": 1
},
{
"begin": 4918,
"end": 5008,
"name": "SWAP2",
"source": 1
},
{
"begin": 4918,
"end": 5008,
"name": "SWAP1",
"source": 1
},
{
"begin": 4918,
"end": 5008,
"name": "POP",
"source": 1
},
{
"begin": 4918,
"end": 5008,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 5014,
"end": 5091,
"name": "tag",
"source": 1,
"value": "121"
},
{
"begin": 5014,
"end": 5091,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5051,
"end": 5058,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5080,
"end": 5085,
"name": "DUP2",
"source": 1
},
{
"begin": 5069,
"end": 5085,
"name": "SWAP1",
"source": 1
},
{
"begin": 5069,
"end": 5085,
"name": "POP",
"source": 1
},
{
"begin": 5014,
"end": 5091,
"name": "SWAP2",
"source": 1
},
{
"begin": 5014,
"end": 5091,
"name": "SWAP1",
"source": 1
},
{
"begin": 5014,
"end": 5091,
"name": "POP",
"source": 1
},
{
"begin": 5014,
"end": 5091,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 5097,
"end": 5251,
"name": "tag",
"source": 1,
"value": "78"
},
{
"begin": 5097,
"end": 5251,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5181,
"end": 5187,
"name": "DUP3",
"source": 1
},
{
"begin": 5176,
"end": 5179,
"name": "DUP2",
"source": 1
},
{
"begin": 5171,
"end": 5174,
"name": "DUP4",
"source": 1
},
{
"begin": 5158,
"end": 5188,
"name": "CALLDATACOPY",
"source": 1
},
{
"begin": 5243,
"end": 5244,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5234,
"end": 5240,
"name": "DUP4",
"source": 1
},
{
"begin": 5229,
"end": 5232,
"name": "DUP4",
"source": 1
},
{
"begin": 5225,
"end": 5241,
"name": "ADD",
"source": 1
},
{
"begin": 5218,
"end": 5245,
"name": "MSTORE",
"source": 1
},
{
"begin": 5097,
"end": 5251,
"name": "POP",
"source": 1
},
{
"begin": 5097,
"end": 5251,
"name": "POP",
"source": 1
},
{
"begin": 5097,
"end": 5251,
"name": "POP",
"source": 1
},
{
"begin": 5097,
"end": 5251,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 5257,
"end": 5564,
"name": "tag",
"source": 1,
"value": "115"
},
{
"begin": 5257,
"end": 5564,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5325,
"end": 5326,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5335,
"end": 5448,
"name": "tag",
"source": 1,
"value": "150"
},
{
"begin": 5335,
"end": 5448,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5349,
"end": 5355,
"name": "DUP4",
"source": 1
},
{
"begin": 5346,
"end": 5347,
"name": "DUP2",
"source": 1
},
{
"begin": 5343,
"end": 5356,
"name": "LT",
"source": 1
},
{
"begin": 5335,
"end": 5448,
"name": "ISZERO",
"source": 1
},
{
"begin": 5335,
"end": 5448,
"name": "PUSH [tag]",
"source": 1,
"value": "152"
},
{
"begin": 5335,
"end": 5448,
"name": "JUMPI",
"source": 1
},
{
"begin": 5434,
"end": 5435,
"name": "DUP1",
"source": 1
},
{
"begin": 5429,
"end": 5432,
"name": "DUP3",
"source": 1
},
{
"begin": 5425,
"end": 5436,
"name": "ADD",
"source": 1
},
{
"begin": 5419,
"end": 5437,
"name": "MLOAD",
"source": 1
},
{
"begin": 5415,
"end": 5416,
"name": "DUP2",
"source": 1
},
{
"begin": 5410,
"end": 5413,
"name": "DUP5",
"source": 1
},
{
"begin": 5406,
"end": 5417,
"name": "ADD",
"source": 1
},
{
"begin": 5399,
"end": 5438,
"name": "MSTORE",
"source": 1
},
{
"begin": 5371,
"end": 5373,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 5368,
"end": 5369,
"name": "DUP2",
"source": 1
},
{
"begin": 5364,
"end": 5374,
"name": "ADD",
"source": 1
},
{
"begin": 5359,
"end": 5374,
"name": "SWAP1",
"source": 1
},
{
"begin": 5359,
"end": 5374,
"name": "POP",
"source": 1
},
{
"begin": 5335,
"end": 5448,
"name": "PUSH [tag]",
"source": 1,
"value": "150"
},
{
"begin": 5335,
"end": 5448,
"name": "JUMP",
"source": 1
},
{
"begin": 5335,
"end": 5448,
"name": "tag",
"source": 1,
"value": "152"
},
{
"begin": 5335,
"end": 5448,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5466,
"end": 5472,
"name": "DUP4",
"source": 1
},
{
"begin": 5463,
"end": 5464,
"name": "DUP2",
"source": 1
},
{
"begin": 5460,
"end": 5473,
"name": "GT",
"source": 1
},
{
"begin": 5457,
"end": 5558,
"name": "ISZERO",
"source": 1
},
{
"begin": 5457,
"end": 5558,
"name": "PUSH [tag]",
"source": 1,
"value": "153"
},
{
"begin": 5457,
"end": 5558,
"name": "JUMPI",
"source": 1
},
{
"begin": 5546,
"end": 5547,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5537,
"end": 5543,
"name": "DUP5",
"source": 1
},
{
"begin": 5532,
"end": 5535,
"name": "DUP5",
"source": 1
},
{
"begin": 5528,
"end": 5544,
"name": "ADD",
"source": 1
},
{
"begin": 5521,
"end": 5548,
"name": "MSTORE",
"source": 1
},
{
"begin": 5457,
"end": 5558,
"name": "tag",
"source": 1,
"value": "153"
},
{
"begin": 5457,
"end": 5558,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5306,
"end": 5564,
"name": "POP",
"source": 1
},
{
"begin": 5257,
"end": 5564,
"name": "POP",
"source": 1
},
{
"begin": 5257,
"end": 5564,
"name": "POP",
"source": 1
},
{
"begin": 5257,
"end": 5564,
"name": "POP",
"source": 1
},
{
"begin": 5257,
"end": 5564,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 5570,
"end": 5890,
"name": "tag",
"source": 1,
"value": "32"
},
{
"begin": 5570,
"end": 5890,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5614,
"end": 5620,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5651,
"end": 5652,
"name": "PUSH",
"source": 1,
"value": "2"
},
{
"begin": 5645,
"end": 5649,
"name": "DUP3",
"source": 1
},
{
"begin": 5641,
"end": 5653,
"name": "DIV",
"source": 1
},
{
"begin": 5631,
"end": 5653,
"name": "SWAP1",
"source": 1
},
{
"begin": 5631,
"end": 5653,
"name": "POP",
"source": 1
},
{
"begin": 5698,
"end": 5699,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 5692,
"end": 5696,
"name": "DUP3",
"source": 1
},
{
"begin": 5688,
"end": 5700,
"name": "AND",
"source": 1
},
{
"begin": 5719,
"end": 5737,
"name": "DUP1",
"source": 1
},
{
"begin": 5709,
"end": 5790,
"name": "PUSH [tag]",
"source": 1,
"value": "155"
},
{
"begin": 5709,
"end": 5790,
"name": "JUMPI",
"source": 1
},
{
"begin": 5775,
"end": 5779,
"name": "PUSH",
"source": 1,
"value": "7F"
},
{
"begin": 5767,
"end": 5773,
"name": "DUP3",
"source": 1
},
{
"begin": 5763,
"end": 5780,
"name": "AND",
"source": 1
},
{
"begin": 5753,
"end": 5780,
"name": "SWAP2",
"source": 1
},
{
"begin": 5753,
"end": 5780,
"name": "POP",
"source": 1
},
{
"begin": 5709,
"end": 5790,
"name": "tag",
"source": 1,
"value": "155"
},
{
"begin": 5709,
"end": 5790,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5837,
"end": 5839,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 5829,
"end": 5835,
"name": "DUP3",
"source": 1
},
{
"begin": 5826,
"end": 5840,
"name": "LT",
"source": 1
},
{
"begin": 5806,
"end": 5824,
"name": "DUP2",
"source": 1
},
{
"begin": 5803,
"end": 5841,
"name": "EQ",
"source": 1
},
{
"begin": 5800,
"end": 5884,
"name": "ISZERO",
"source": 1
},
{
"begin": 5800,
"end": 5884,
"name": "PUSH [tag]",
"source": 1,
"value": "156"
},
{
"begin": 5800,
"end": 5884,
"name": "JUMPI",
"source": 1
},
{
"begin": 5856,
"end": 5874,
"name": "PUSH [tag]",
"source": 1,
"value": "157"
},
{
"begin": 5856,
"end": 5874,
"name": "PUSH [tag]",
"source": 1,
"value": "158"
},
{
"begin": 5856,
"end": 5874,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 5856,
"end": 5874,
"name": "tag",
"source": 1,
"value": "157"
},
{
"begin": 5856,
"end": 5874,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5800,
"end": 5884,
"name": "tag",
"source": 1,
"value": "156"
},
{
"begin": 5800,
"end": 5884,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5621,
"end": 5890,
"name": "POP",
"source": 1
},
{
"begin": 5570,
"end": 5890,
"name": "SWAP2",
"source": 1
},
{
"begin": 5570,
"end": 5890,
"name": "SWAP1",
"source": 1
},
{
"begin": 5570,
"end": 5890,
"name": "POP",
"source": 1
},
{
"begin": 5570,
"end": 5890,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 5896,
"end": 6177,
"name": "tag",
"source": 1,
"value": "137"
},
{
"begin": 5896,
"end": 6177,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5979,
"end": 6006,
"name": "PUSH [tag]",
"source": 1,
"value": "160"
},
{
"begin": 6001,
"end": 6005,
"name": "DUP3",
"source": 1
},
{
"begin": 5979,
"end": 6006,
"name": "PUSH [tag]",
"source": 1,
"value": "117"
},
{
"begin": 5979,
"end": 6006,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 5979,
"end": 6006,
"name": "tag",
"source": 1,
"value": "160"
},
{
"begin": 5979,
"end": 6006,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5971,
"end": 5977,
"name": "DUP2",
"source": 1
},
{
"begin": 5967,
"end": 6007,
"name": "ADD",
"source": 1
},
{
"begin": 6109,
"end": 6115,
"name": "DUP2",
"source": 1
},
{
"begin": 6097,
"end": 6107,
"name": "DUP2",
"source": 1
},
{
"begin": 6094,
"end": 6116,
"name": "LT",
"source": 1
},
{
"begin": 6073,
"end": 6091,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 6061,
"end": 6071,
"name": "DUP3",
"source": 1
},
{
"begin": 6058,
"end": 6092,
"name": "GT",
"source": 1
},
{
"begin": 6055,
"end": 6117,
"name": "OR",
"source": 1
},
{
"begin": 6052,
"end": 6140,
"name": "ISZERO",
"source": 1
},
{
"begin": 6052,
"end": 6140,
"name": "PUSH [tag]",
"source": 1,
"value": "161"
},
{
"begin": 6052,
"end": 6140,
"name": "JUMPI",
"source": 1
},
{
"begin": 6120,
"end": 6138,
"name": "PUSH [tag]",
"source": 1,
"value": "162"
},
{
"begin": 6120,
"end": 6138,
"name": "PUSH [tag]",
"source": 1,
"value": "142"
},
{
"begin": 6120,
"end": 6138,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 6120,
"end": 6138,
"name": "tag",
"source": 1,
"value": "162"
},
{
"begin": 6120,
"end": 6138,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6052,
"end": 6140,
"name": "tag",
"source": 1,
"value": "161"
},
{
"begin": 6052,
"end": 6140,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6160,
"end": 6170,
"name": "DUP1",
"source": 1
},
{
"begin": 6156,
"end": 6158,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 6149,
"end": 6171,
"name": "MSTORE",
"source": 1
},
{
"begin": 5939,
"end": 6177,
"name": "POP",
"source": 1
},
{
"begin": 5896,
"end": 6177,
"name": "POP",
"source": 1
},
{
"begin": 5896,
"end": 6177,
"name": "POP",
"source": 1
},
{
"begin": 5896,
"end": 6177,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 6183,
"end": 6416,
"name": "tag",
"source": 1,
"value": "26"
},
{
"begin": 6183,
"end": 6416,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6222,
"end": 6225,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6245,
"end": 6269,
"name": "PUSH [tag]",
"source": 1,
"value": "164"
},
{
"begin": 6263,
"end": 6268,
"name": "DUP3",
"source": 1
},
{
"begin": 6245,
"end": 6269,
"name": "PUSH [tag]",
"source": 1,
"value": "121"
},
{
"begin": 6245,
"end": 6269,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 6245,
"end": 6269,
"name": "tag",
"source": 1,
"value": "164"
},
{
"begin": 6245,
"end": 6269,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6236,
"end": 6269,
"name": "SWAP2",
"source": 1
},
{
"begin": 6236,
"end": 6269,
"name": "POP",
"source": 1
},
{
"begin": 6291,
"end": 6357,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 6284,
"end": 6289,
"name": "DUP3",
"source": 1
},
{
"begin": 6281,
"end": 6358,
"name": "EQ",
"source": 1
},
{
"begin": 6278,
"end": 6381,
"name": "ISZERO",
"source": 1
},
{
"begin": 6278,
"end": 6381,
"name": "PUSH [tag]",
"source": 1,
"value": "165"
},
{
"begin": 6278,
"end": 6381,
"name": "JUMPI",
"source": 1
},
{
"begin": 6361,
"end": 6379,
"name": "PUSH [tag]",
"source": 1,
"value": "166"
},
{
"begin": 6361,
"end": 6379,
"name": "PUSH [tag]",
"source": 1,
"value": "167"
},
{
"begin": 6361,
"end": 6379,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 6361,
"end": 6379,
"name": "tag",
"source": 1,
"value": "166"
},
{
"begin": 6361,
"end": 6379,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6278,
"end": 6381,
"name": "tag",
"source": 1,
"value": "165"
},
{
"begin": 6278,
"end": 6381,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6408,
"end": 6409,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 6401,
"end": 6406,
"name": "DUP3",
"source": 1
},
{
"begin": 6397,
"end": 6410,
"name": "ADD",
"source": 1
},
{
"begin": 6390,
"end": 6410,
"name": "SWAP1",
"source": 1
},
{
"begin": 6390,
"end": 6410,
"name": "POP",
"source": 1
},
{
"begin": 6183,
"end": 6416,
"name": "SWAP2",
"source": 1
},
{
"begin": 6183,
"end": 6416,
"name": "SWAP1",
"source": 1
},
{
"begin": 6183,
"end": 6416,
"name": "POP",
"source": 1
},
{
"begin": 6183,
"end": 6416,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 6422,
"end": 6602,
"name": "tag",
"source": 1,
"value": "167"
},
{
"begin": 6422,
"end": 6602,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6470,
"end": 6547,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 6467,
"end": 6468,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6460,
"end": 6548,
"name": "MSTORE",
"source": 1
},
{
"begin": 6567,
"end": 6571,
"name": "PUSH",
"source": 1,
"value": "11"
},
{
"begin": 6564,
"end": 6565,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 6557,
"end": 6572,
"name": "MSTORE",
"source": 1
},
{
"begin": 6591,
"end": 6595,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 6588,
"end": 6589,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6581,
"end": 6596,
"name": "REVERT",
"source": 1
},
{
"begin": 6608,
"end": 6788,
"name": "tag",
"source": 1,
"value": "158"
},
{
"begin": 6608,
"end": 6788,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6656,
"end": 6733,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 6653,
"end": 6654,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6646,
"end": 6734,
"name": "MSTORE",
"source": 1
},
{
"begin": 6753,
"end": 6757,
"name": "PUSH",
"source": 1,
"value": "22"
},
{
"begin": 6750,
"end": 6751,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 6743,
"end": 6758,
"name": "MSTORE",
"source": 1
},
{
"begin": 6777,
"end": 6781,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 6774,
"end": 6775,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6767,
"end": 6782,
"name": "REVERT",
"source": 1
},
{
"begin": 6794,
"end": 6974,
"name": "tag",
"source": 1,
"value": "142"
},
{
"begin": 6794,
"end": 6974,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6842,
"end": 6919,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 6839,
"end": 6840,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6832,
"end": 6920,
"name": "MSTORE",
"source": 1
},
{
"begin": 6939,
"end": 6943,
"name": "PUSH",
"source": 1,
"value": "41"
},
{
"begin": 6936,
"end": 6937,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 6929,
"end": 6944,
"name": "MSTORE",
"source": 1
},
{
"begin": 6963,
"end": 6967,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 6960,
"end": 6961,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6953,
"end": 6968,
"name": "REVERT",
"source": 1
},
{
"begin": 6980,
"end": 7097,
"name": "tag",
"source": 1,
"value": "83"
},
{
"begin": 6980,
"end": 7097,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7089,
"end": 7090,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 7086,
"end": 7087,
"name": "DUP1",
"source": 1
},
{
"begin": 7079,
"end": 7091,
"name": "REVERT",
"source": 1
},
{
"begin": 7103,
"end": 7220,
"name": "tag",
"source": 1,
"value": "76"
},
{
"begin": 7103,
"end": 7220,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7212,
"end": 7213,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 7209,
"end": 7210,
"name": "DUP1",
"source": 1
},
{
"begin": 7202,
"end": 7214,
"name": "REVERT",
"source": 1
},
{
"begin": 7226,
"end": 7343,
"name": "tag",
"source": 1,
"value": "95"
},
{
"begin": 7226,
"end": 7343,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7335,
"end": 7336,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 7332,
"end": 7333,
"name": "DUP1",
"source": 1
},
{
"begin": 7325,
"end": 7337,
"name": "REVERT",
"source": 1
},
{
"begin": 7349,
"end": 7466,
"name": "tag",
"source": 1,
"value": "92"
},
{
"begin": 7349,
"end": 7466,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7458,
"end": 7459,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 7455,
"end": 7456,
"name": "DUP1",
"source": 1
},
{
"begin": 7448,
"end": 7460,
"name": "REVERT",
"source": 1
},
{
"begin": 7472,
"end": 7574,
"name": "tag",
"source": 1,
"value": "117"
},
{
"begin": 7472,
"end": 7574,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7513,
"end": 7519,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 7564,
"end": 7566,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 7560,
"end": 7567,
"name": "NOT",
"source": 1
},
{
"begin": 7555,
"end": 7557,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 7548,
"end": 7553,
"name": "DUP4",
"source": 1
},
{
"begin": 7544,
"end": 7558,
"name": "ADD",
"source": 1
},
{
"begin": 7540,
"end": 7568,
"name": "AND",
"source": 1
},
{
"begin": 7530,
"end": 7568,
"name": "SWAP1",
"source": 1
},
{
"begin": 7530,
"end": 7568,
"name": "POP",
"source": 1
},
{
"begin": 7472,
"end": 7574,
"name": "SWAP2",
"source": 1
},
{
"begin": 7472,
"end": 7574,
"name": "SWAP1",
"source": 1
},
{
"begin": 7472,
"end": 7574,
"name": "POP",
"source": 1
},
{
"begin": 7472,
"end": 7574,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 7580,
"end": 7702,
"name": "tag",
"source": 1,
"value": "88"
},
{
"begin": 7580,
"end": 7702,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7653,
"end": 7677,
"name": "PUSH [tag]",
"source": 1,
"value": "177"
},
{
"begin": 7671,
"end": 7676,
"name": "DUP2",
"source": 1
},
{
"begin": 7653,
"end": 7677,
"name": "PUSH [tag]",
"source": 1,
"value": "121"
},
{
"begin": 7653,
"end": 7677,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 7653,
"end": 7677,
"name": "tag",
"source": 1,
"value": "177"
},
{
"begin": 7653,
"end": 7677,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7646,
"end": 7651,
"name": "DUP2",
"source": 1
},
{
"begin": 7643,
"end": 7678,
"name": "EQ",
"source": 1
},
{
"begin": 7633,
"end": 7696,
"name": "PUSH [tag]",
"source": 1,
"value": "178"
},
{
"begin": 7633,
"end": 7696,
"name": "JUMPI",
"source": 1
},
{
"begin": 7692,
"end": 7693,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 7689,
"end": 7690,
"name": "DUP1",
"source": 1
},
{
"begin": 7682,
"end": 7694,
"name": "REVERT",
"source": 1
},
{
"begin": 7633,
"end": 7696,
"name": "tag",
"source": 1,
"value": "178"
},
{
"begin": 7633,
"end": 7696,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7580,
"end": 7702,
"name": "POP",
"source": 1
},
{
"begin": 7580,
"end": 7702,
"name": "JUMP",
"source": 1,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"createTask(string,string)": "292a4585",
"taskCounter()": "58671730",
"tasks(uint256)": "8d977672",
"toggleDone(uint256)": "d81ef739"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"title\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"done\",\"type\":\"bool\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"createdAt\",\"type\":\"uint256\"}],\"name\":\"TaskCreated\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"bool\",\"name\":\"done\",\"type\":\"bool\"}],\"name\":\"TaskToggleDone\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_title\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"_description\",\"type\":\"string\"}],\"name\":\"createTask\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"taskCounter\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"tasks\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"id\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"title\",\"type\":\"string\"},{\"internalType\":\"string\",\"name\":\"description\",\"type\":\"string\"},{\"internalType\":\"bool\",\"name\":\"done\",\"type\":\"bool\"},{\"internalType\":\"uint256\",\"name\":\"createAt\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_id\",\"type\":\"uint256\"}],\"name\":\"toggleDone\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contract-6bd9b0eaa7.sol\":\"ToDoContract\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contract-6bd9b0eaa7.sol\":{\"keccak256\":\"0xdad3842ca316af709a9af725e316586d2c001eddd641cfe28eb19b529b838683\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ef8fd766d1e9166c92b3ac9732c8445f257911b14b7f9633f751c64ac98c4199\",\"dweb:/ipfs/Qmcwq4qL1TfzYa7RpqRJJcZmyJEEYnCLSraRgtvK9MKZBN\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 4,
"contract": "contract-6bd9b0eaa7.sol:ToDoContract",
"label": "taskCounter",
"offset": 0,
"slot": "0",
"type": "t_uint256"
},
{
"astId": 42,
"contract": "contract-6bd9b0eaa7.sol:ToDoContract",
"label": "tasks",
"offset": 0,
"slot": "1",
"type": "t_mapping(t_uint256,t_struct(Task)37_storage)"
}
],
"types": {
"t_bool": {
"encoding": "inplace",
"label": "bool",
"numberOfBytes": "1"
},
"t_mapping(t_uint256,t_struct(Task)37_storage)": {
"encoding": "mapping",
"key": "t_uint256",
"label": "mapping(uint256 => struct ToDoContract.Task)",
"numberOfBytes": "32",
"value": "t_struct(Task)37_storage"
},
"t_string_storage": {
"encoding": "bytes",
"label": "string",
"numberOfBytes": "32"
},
"t_struct(Task)37_storage": {
"encoding": "inplace",
"label": "struct ToDoContract.Task",
"members": [
{
"astId": 28,
"contract": "contract-6bd9b0eaa7.sol:ToDoContract",
"label": "id",
"offset": 0,
"slot": "0",
"type": "t_uint256"
},
{
"astId": 30,
"contract": "contract-6bd9b0eaa7.sol:ToDoContract",
"label": "title",
"offset": 0,
"slot": "1",
"type": "t_string_storage"
},
{
"astId": 32,
"contract": "contract-6bd9b0eaa7.sol:ToDoContract",
"label": "description",
"offset": 0,
"slot": "2",
"type": "t_string_storage"
},
{
"astId": 34,
"contract": "contract-6bd9b0eaa7.sol:ToDoContract",
"label": "done",
"offset": 0,
"slot": "3",
"type": "t_bool"
},
{
"astId": 36,
"contract": "contract-6bd9b0eaa7.sol:ToDoContract",
"label": "createAt",
"offset": 0,
"slot": "4",
"type": "t_uint256"
}
],
"numberOfBytes": "160"
},
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contract-6bd9b0eaa7.sol": {
"ast": {
"absolutePath": "contract-6bd9b0eaa7.sol",
"exportedSymbols": {
"ToDoContract": [
109
]
},
"id": 110,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".4"
],
"nodeType": "PragmaDirective",
"src": "32:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 109,
"linearizedBaseContracts": [
109
],
"name": "ToDoContract",
"nameLocation": "78:12:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"functionSelector": "58671730",
"id": 4,
"mutability": "mutable",
"name": "taskCounter",
"nameLocation": "112:11:0",
"nodeType": "VariableDeclaration",
"scope": 109,
"src": "97:30:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 2,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "97:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"value": {
"hexValue": "30",
"id": 3,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "126:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
},
"visibility": "public"
},
{
"body": {
"id": 7,
"nodeType": "Block",
"src": "149:2:0",
"statements": []
},
"id": 8,
"implemented": true,
"kind": "constructor",
"modifiers": [],
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 5,
"nodeType": "ParameterList",
"parameters": [],
"src": "146:2:0"
},
"returnParameters": {
"id": 6,
"nodeType": "ParameterList",
"parameters": [],
"src": "149:0:0"
},
"scope": 109,
"src": "134:17:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"anonymous": false,
"id": 20,
"name": "TaskCreated",
"nameLocation": "189:11:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 19,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 10,
"indexed": false,
"mutability": "mutable",
"name": "id",
"nameLocation": "215:2:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "210:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 9,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "210:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 12,
"indexed": false,
"mutability": "mutable",
"name": "title",
"nameLocation": "234:5:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "227:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string"
},
"typeName": {
"id": 11,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "227:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 14,
"indexed": false,
"mutability": "mutable",
"name": "description",
"nameLocation": "256:11:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "249:18:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string"
},
"typeName": {
"id": 13,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "249:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 16,
"indexed": false,
"mutability": "mutable",
"name": "done",
"nameLocation": "282:4:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "277:9:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 15,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "277:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 18,
"indexed": false,
"mutability": "mutable",
"name": "createdAt",
"nameLocation": "301:9:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "296:14:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 17,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "296:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "200:116:0"
},
"src": "183:134:0"
},
{
"anonymous": false,
"id": 26,
"name": "TaskToggleDone",
"nameLocation": "354:14:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 25,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 22,
"indexed": false,
"mutability": "mutable",
"name": "id",
"nameLocation": "384:2:0",
"nodeType": "VariableDeclaration",
"scope": 26,
"src": "379:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 21,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "379:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 24,
"indexed": false,
"mutability": "mutable",
"name": "done",
"nameLocation": "401:4:0",
"nodeType": "VariableDeclaration",
"scope": 26,
"src": "396:9:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 23,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "396:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "369:42:0"
},
"src": "348:64:0"
},
{
"canonicalName": "ToDoContract.Task",
"id": 37,
"members": [
{
"constant": false,
"id": 28,
"mutability": "mutable",
"name": "id",
"nameLocation": "467:2:0",
"nodeType": "VariableDeclaration",
"scope": 37,
"src": "459:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 27,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "459:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 30,
"mutability": "mutable",
"name": "title",
"nameLocation": "486:5:0",
"nodeType": "VariableDeclaration",
"scope": 37,
"src": "479:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
},
"typeName": {
"id": 29,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "479:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 32,
"mutability": "mutable",
"name": "description",
"nameLocation": "508:11:0",
"nodeType": "VariableDeclaration",
"scope": 37,
"src": "501:18:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
},
"typeName": {
"id": 31,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "501:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 34,
"mutability": "mutable",
"name": "done",
"nameLocation": "534:4:0",
"nodeType": "VariableDeclaration",
"scope": 37,
"src": "529:9:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 33,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "529:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 36,
"mutability": "mutable",
"name": "createAt",
"nameLocation": "556:8:0",
"nodeType": "VariableDeclaration",
"scope": 37,
"src": "548:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 35,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "548:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"name": "Task",
"nameLocation": "444:4:0",
"nodeType": "StructDefinition",
"scope": 109,
"src": "437:134:0",
"visibility": "public"
},
{
"constant": false,
"functionSelector": "8d977672",
"id": 42,
"mutability": "mutable",
"name": "tasks",
"nameLocation": "626:5:0",
"nodeType": "VariableDeclaration",
"scope": 109,
"src": "594:37:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Task_$37_storage_$",
"typeString": "mapping(uint256 => struct ToDoContract.Task)"
},
"typeName": {
"id": 41,
"keyType": {
"id": 38,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "602:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Mapping",
"src": "594:24:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Task_$37_storage_$",
"typeString": "mapping(uint256 => struct ToDoContract.Task)"
},
"valueType": {
"id": 40,
"nodeType": "UserDefinedTypeName",
"pathNode": {
"id": 39,
"name": "Task",
"nodeType": "IdentifierPath",
"referencedDeclaration": 37,
"src": "613:4:0"
},
"referencedDeclaration": 37,
"src": "613:4:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Task_$37_storage_ptr",
"typeString": "struct ToDoContract.Task"
}
}
},
"visibility": "public"
},
{
"body": {
"id": 74,
"nodeType": "Block",
"src": "736:209:0",
"statements": [
{
"expression": {
"id": 50,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"nodeType": "UnaryOperation",
"operator": "++",
"prefix": false,
"src": "746:13:0",
"subExpression": {
"id": 49,
"name": "taskCounter",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4,
"src": "746:11:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 51,
"nodeType": "ExpressionStatement",
"src": "746:13:0"
},
{
"expression": {
"id": 63,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"baseExpression": {
"id": 52,
"name": "tasks",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 42,
"src": "769:5:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Task_$37_storage_$",
"typeString": "mapping(uint256 => struct ToDoContract.Task storage ref)"
}
},
"id": 54,
"indexExpression": {
"id": 53,
"name": "taskCounter",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4,
"src": "775:11:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "769:18:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Task_$37_storage",
"typeString": "struct ToDoContract.Task storage ref"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"arguments": [
{
"id": 56,
"name": "taskCounter",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4,
"src": "795:11:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
{
"id": 57,
"name": "_title",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 44,
"src": "808:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
}
},
{
"id": 58,
"name": "_description",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 46,
"src": "816:12:0",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
}
},
{
"hexValue": "66616c7365",
"id": 59,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "830:5:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "false"
},
{
"expression": {
"id": 60,
"name": "block",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967292,
"src": "837:5:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_block",
"typeString": "block"
}
},
"id": 61,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "timestamp",
"nodeType": "MemberAccess",
"src": "837:15:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
{
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
},
{
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
},
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"id": 55,
"name": "Task",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 37,
"src": "790:4:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_struct$_Task_$37_storage_ptr_$",
"typeString": "type(struct ToDoContract.Task storage pointer)"
}
},
"id": 62,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "structConstructorCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "790:63:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_struct$_Task_$37_memory_ptr",
"typeString": "struct ToDoContract.Task memory"
}
},
"src": "769:84:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Task_$37_storage",
"typeString": "struct ToDoContract.Task storage ref"
}
},
"id": 64,
"nodeType": "ExpressionStatement",
"src": "769:84:0"
},
{
"eventCall": {
"arguments": [
{
"id": 66,
"name": "taskCounter",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4,
"src": "880:11:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
{
"id": 67,
"name": "_title",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 44,
"src": "893:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
}
},
{
"id": 68,
"name": "_description",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 46,
"src": "901:12:0",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
}
},
{
"hexValue": "66616c7365",
"id": 69,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "915:5:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "false"
},
{
"expression": {
"id": 70,
"name": "block",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967292,
"src": "922:5:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_block",
"typeString": "block"
}
},
"id": 71,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "timestamp",
"nodeType": "MemberAccess",
"src": "922:15:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
{
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
},
{
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string memory"
},
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"id": 65,
"name": "TaskCreated",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 20,
"src": "868:11:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_uint256_$_t_string_memory_ptr_$_t_string_memory_ptr_$_t_bool_$_t_uint256_$returns$__$",
"typeString": "function (uint256,string memory,string memory,bool,uint256)"
}
},
"id": 72,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "868:70:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 73,
"nodeType": "EmitStatement",
"src": "863:75:0"
}
]
},
"functionSelector": "292a4585",
"id": 75,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "createTask",
"nameLocation": "668:10:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 47,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 44,
"mutability": "mutable",
"name": "_title",
"nameLocation": "693:6:0",
"nodeType": "VariableDeclaration",
"scope": 75,
"src": "679:20:0",
"stateVariable": false,
"storageLocation": "memory",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string"
},
"typeName": {
"id": 43,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "679:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 46,
"mutability": "mutable",
"name": "_description",
"nameLocation": "715:12:0",
"nodeType": "VariableDeclaration",
"scope": 75,
"src": "701:26:0",
"stateVariable": false,
"storageLocation": "memory",
"typeDescriptions": {
"typeIdentifier": "t_string_memory_ptr",
"typeString": "string"
},
"typeName": {
"id": 45,
"name": "string",
"nodeType": "ElementaryTypeName",
"src": "701:6:0",
"typeDescriptions": {
"typeIdentifier": "t_string_storage_ptr",
"typeString": "string"
}
},
"visibility": "internal"
}
],
"src": "678:50:0"
},
"returnParameters": {
"id": 48,
"nodeType": "ParameterList",
"parameters": [],
"src": "736:0:0"
},
"scope": 109,
"src": "659:286:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 107,
"nodeType": "Block",
"src": "1013:151:0",
"statements": [
{
"assignments": [
82
],
"declarations": [
{
"constant": false,
"id": 82,
"mutability": "mutable",
"name": "_task",
"nameLocation": "1034:5:0",
"nodeType": "VariableDeclaration",
"scope": 107,
"src": "1022:17:0",
"stateVariable": false,
"storageLocation": "memory",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Task_$37_memory_ptr",
"typeString": "struct ToDoContract.Task"
},
"typeName": {
"id": 81,
"nodeType": "UserDefinedTypeName",
"pathNode": {
"id": 80,
"name": "Task",
"nodeType": "IdentifierPath",
"referencedDeclaration": 37,
"src": "1022:4:0"
},
"referencedDeclaration": 37,
"src": "1022:4:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Task_$37_storage_ptr",
"typeString": "struct ToDoContract.Task"
}
},
"visibility": "internal"
}
],
"id": 86,
"initialValue": {
"baseExpression": {
"id": 83,
"name": "tasks",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 42,
"src": "1042:5:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Task_$37_storage_$",
"typeString": "mapping(uint256 => struct ToDoContract.Task storage ref)"
}
},
"id": 85,
"indexExpression": {
"id": 84,
"name": "_id",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 77,
"src": "1048:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "1042:10:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Task_$37_storage",
"typeString": "struct ToDoContract.Task storage ref"
}
},
"nodeType": "VariableDeclarationStatement",
"src": "1022:30:0"
},
{
"expression": {
"id": 93,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"expression": {
"id": 87,
"name": "_task",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 82,
"src": "1061:5:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Task_$37_memory_ptr",
"typeString": "struct ToDoContract.Task memory"
}
},
"id": 89,
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"memberName": "done",
"nodeType": "MemberAccess",
"referencedDeclaration": 34,
"src": "1061:10:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"id": 92,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"nodeType": "UnaryOperation",
"operator": "!",
"prefix": true,
"src": "1074:11:0",
"subExpression": {
"expression": {
"id": 90,
"name": "_task",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 82,
"src": "1075:5:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Task_$37_memory_ptr",
"typeString": "struct ToDoContract.Task memory"
}
},
"id": 91,
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"memberName": "done",
"nodeType": "MemberAccess",
"referencedDeclaration": 34,
"src": "1075:10:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"src": "1061:24:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 94,
"nodeType": "ExpressionStatement",
"src": "1061:24:0"
},
{
"expression": {
"id": 99,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"baseExpression": {
"id": 95,
"name": "tasks",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 42,
"src": "1094:5:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_uint256_$_t_struct$_Task_$37_storage_$",
"typeString": "mapping(uint256 => struct ToDoContract.Task storage ref)"
}
},
"id": 97,
"indexExpression": {
"id": 96,
"name": "_id",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 77,
"src": "1100:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "1094:10:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Task_$37_storage",
"typeString": "struct ToDoContract.Task storage ref"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"id": 98,
"name": "_task",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 82,
"src": "1107:5:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Task_$37_memory_ptr",
"typeString": "struct ToDoContract.Task memory"
}
},
"src": "1094:18:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Task_$37_storage",
"typeString": "struct ToDoContract.Task storage ref"
}
},
"id": 100,
"nodeType": "ExpressionStatement",
"src": "1094:18:0"
},
{
"eventCall": {
"arguments": [
{
"id": 102,
"name": "_id",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 77,
"src": "1141:3:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
{
"expression": {
"id": 103,
"name": "_task",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 82,
"src": "1146:5:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Task_$37_memory_ptr",
"typeString": "struct ToDoContract.Task memory"
}
},
"id": 104,
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"memberName": "done",
"nodeType": "MemberAccess",
"referencedDeclaration": 34,
"src": "1146:10:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
{
"typeIdentifier": "t_bool",
"typeString": "bool"
}
],
"id": 101,
"name": "TaskToggleDone",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 26,
"src": "1126:14:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_uint256_$_t_bool_$returns$__$",
"typeString": "function (uint256,bool)"
}
},
"id": 105,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1126:31:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 106,
"nodeType": "EmitStatement",
"src": "1121:36:0"
}
]
},
"functionSelector": "d81ef739",
"id": 108,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "toggleDone",
"nameLocation": "982:10:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 78,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 77,
"mutability": "mutable",
"name": "_id",
"nameLocation": "1001:3:0",
"nodeType": "VariableDeclaration",
"scope": 108,
"src": "993:11:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 76,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "993:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "992:13:0"
},
"returnParameters": {
"id": 79,
"nodeType": "ParameterList",
"parameters": [],
"src": "1013:0:0"
},
"scope": 109,
"src": "973:191:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
}
],
"scope": 110,
"src": "69:1097:0",
"usedErrors": []
}
],
"src": "32:1135: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
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_8": {
"entryPoint": null,
"id": 8,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "60806040526000805534801561001457600080fd5b50610ad0806100246000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063292a458514610051578063586717301461006d5780638d9776721461008b578063d81ef739146100bf575b600080fd5b61006b600480360381019061006691906106ba565b6100db565b005b6100756101e9565b60405161008291906107b6565b60405180910390f35b6100a560048036038101906100a09190610732565b6101ef565b6040516100b69594939291906107fa565b60405180910390f35b6100d960048036038101906100d49190610732565b610342565b005b6000808154809291906100ed90610988565b91905055506040518060a001604052806000548152602001838152602001828152602001600015158152602001428152506001600080548152602001908152602001600020600082015181600001556020820151816001019080519060200190610158929190610592565b506040820151816002019080519060200190610175929190610592565b5060608201518160030160006101000a81548160ff021916908315150217905550608082015181600401559050507f6549102bed7d1bb5ec529ee14e2ca60ffc1f47f66d4cc6ca713220613cc64c2560005483836000426040516101dd9594939291906107fa565b60405180910390a15050565b60005481565b600160205280600052604060002060009150905080600001549080600101805461021890610925565b80601f016020809104026020016040519081016040528092919081815260200182805461024490610925565b80156102915780601f1061026657610100808354040283529160200191610291565b820191906000526020600020905b81548152906001019060200180831161027457829003601f168201915b5050505050908060020180546102a690610925565b80601f01602080910402602001604051908101604052809291908181526020018280546102d290610925565b801561031f5780601f106102f45761010080835404028352916020019161031f565b820191906000526020600020905b81548152906001019060200180831161030257829003601f168201915b5050505050908060030160009054906101000a900460ff16908060040154905085565b6000600160008381526020019081526020016000206040518060a00160405290816000820154815260200160018201805461037c90610925565b80601f01602080910402602001604051908101604052809291908181526020018280546103a890610925565b80156103f55780601f106103ca576101008083540402835291602001916103f5565b820191906000526020600020905b8154815290600101906020018083116103d857829003601f168201915b5050505050815260200160028201805461040e90610925565b80601f016020809104026020016040519081016040528092919081815260200182805461043a90610925565b80156104875780601f1061045c57610100808354040283529160200191610487565b820191906000526020600020905b81548152906001019060200180831161046a57829003601f168201915b505050505081526020016003820160009054906101000a900460ff1615151515815260200160048201548152505090508060600151158160600190151590811515815250508060016000848152602001908152602001600020600082015181600001556020820151816001019080519060200190610506929190610592565b506040820151816002019080519060200190610523929190610592565b5060608201518160030160006101000a81548160ff021916908315150217905550608082015181600401559050507f389dee00d487dd41dd5bf0f43eeaa5b663b3af022d52368df89d388150295f458282606001516040516105869291906107d1565b60405180910390a15050565b82805461059e90610925565b90600052602060002090601f0160209004810192826105c05760008555610607565b82601f106105d957805160ff1916838001178555610607565b82800160010185558215610607579182015b828111156106065782518255916020019190600101906105eb565b5b5090506106149190610618565b5090565b5b80821115610631576000816000905550600101610619565b5090565b600061064861064384610880565b61085b565b90508281526020810184848401111561066457610663610a63565b5b61066f8482856108e3565b509392505050565b600082601f83011261068c5761068b610a5e565b5b813561069c848260208601610635565b91505092915050565b6000813590506106b481610a83565b92915050565b600080604083850312156106d1576106d0610a6d565b5b600083013567ffffffffffffffff8111156106ef576106ee610a68565b5b6106fb85828601610677565b925050602083013567ffffffffffffffff81111561071c5761071b610a68565b5b61072885828601610677565b9150509250929050565b60006020828403121561074857610747610a6d565b5b6000610756848285016106a5565b91505092915050565b610768816108cd565b82525050565b6000610779826108b1565b61078381856108bc565b93506107938185602086016108f2565b61079c81610a72565b840191505092915050565b6107b0816108d9565b82525050565b60006020820190506107cb60008301846107a7565b92915050565b60006040820190506107e660008301856107a7565b6107f3602083018461075f565b9392505050565b600060a08201905061080f60008301886107a7565b8181036020830152610821818761076e565b90508181036040830152610835818661076e565b9050610844606083018561075f565b61085160808301846107a7565b9695505050505050565b6000610865610876565b90506108718282610957565b919050565b6000604051905090565b600067ffffffffffffffff82111561089b5761089a610a2f565b5b6108a482610a72565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60008115159050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156109105780820151818401526020810190506108f5565b8381111561091f576000848401525b50505050565b6000600282049050600182168061093d57607f821691505b6020821081141561095157610950610a00565b5b50919050565b61096082610a72565b810181811067ffffffffffffffff8211171561097f5761097e610a2f565b5b80604052505050565b6000610993826108d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156109c6576109c56109d1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b610a8c816108d9565b8114610a9757600080fd5b5056fea2646970667358221220ae987bd5ac0b74f12b0406b69ed56a950d84cced063896cf9a23af69cb9a36e164736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 SSTORE CALLVALUE DUP1 ISZERO PUSH2 0x14 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xAD0 DUP1 PUSH2 0x24 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x292A4585 EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x58671730 EQ PUSH2 0x6D JUMPI DUP1 PUSH4 0x8D977672 EQ PUSH2 0x8B JUMPI DUP1 PUSH4 0xD81EF739 EQ PUSH2 0xBF JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x6BA JUMP JUMPDEST PUSH2 0xDB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x75 PUSH2 0x1E9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x82 SWAP2 SWAP1 PUSH2 0x7B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xA5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA0 SWAP2 SWAP1 PUSH2 0x732 JUMP JUMPDEST PUSH2 0x1EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB6 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x7FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD4 SWAP2 SWAP1 PUSH2 0x732 JUMP JUMPDEST PUSH2 0x342 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0xED SWAP1 PUSH2 0x988 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 SLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP DUP2 MSTORE POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x158 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x175 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE SWAP1 POP POP PUSH32 0x6549102BED7D1BB5EC529EE14E2CA60FFC1F47F66D4CC6CA713220613CC64C25 PUSH1 0x0 SLOAD DUP4 DUP4 PUSH1 0x0 TIMESTAMP PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x7FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x218 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x244 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x291 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x266 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x291 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x274 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD DUP1 SLOAD PUSH2 0x2A6 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2D2 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x31F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2F4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x31F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x302 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 DUP1 PUSH1 0x4 ADD SLOAD SWAP1 POP DUP6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x37C SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x3A8 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3F5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3CA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3F5 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3D8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD DUP1 SLOAD PUSH2 0x40E SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x43A SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x487 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x45C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x487 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x46A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x60 ADD MLOAD ISZERO DUP2 PUSH1 0x60 ADD SWAP1 ISZERO ISZERO SWAP1 DUP2 ISZERO ISZERO DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x506 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x523 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE SWAP1 POP POP PUSH32 0x389DEE00D487DD41DD5BF0F43EEAA5B663B3AF022D52368DF89D388150295F45 DUP3 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x586 SWAP3 SWAP2 SWAP1 PUSH2 0x7D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x59E SWAP1 PUSH2 0x925 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x5C0 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x607 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x5D9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x607 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x607 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x606 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x5EB JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x614 SWAP2 SWAP1 PUSH2 0x618 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x631 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x619 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x648 PUSH2 0x643 DUP5 PUSH2 0x880 JUMP JUMPDEST PUSH2 0x85B JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x664 JUMPI PUSH2 0x663 PUSH2 0xA63 JUMP JUMPDEST JUMPDEST PUSH2 0x66F DUP5 DUP3 DUP6 PUSH2 0x8E3 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x68C JUMPI PUSH2 0x68B PUSH2 0xA5E JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x69C DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x635 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x6B4 DUP2 PUSH2 0xA83 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6D1 JUMPI PUSH2 0x6D0 PUSH2 0xA6D JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x6EF JUMPI PUSH2 0x6EE PUSH2 0xA68 JUMP JUMPDEST JUMPDEST PUSH2 0x6FB DUP6 DUP3 DUP7 ADD PUSH2 0x677 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x71C JUMPI PUSH2 0x71B PUSH2 0xA68 JUMP JUMPDEST JUMPDEST PUSH2 0x728 DUP6 DUP3 DUP7 ADD PUSH2 0x677 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x748 JUMPI PUSH2 0x747 PUSH2 0xA6D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x756 DUP5 DUP3 DUP6 ADD PUSH2 0x6A5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x768 DUP2 PUSH2 0x8CD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x779 DUP3 PUSH2 0x8B1 JUMP JUMPDEST PUSH2 0x783 DUP2 DUP6 PUSH2 0x8BC JUMP JUMPDEST SWAP4 POP PUSH2 0x793 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x8F2 JUMP JUMPDEST PUSH2 0x79C DUP2 PUSH2 0xA72 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7B0 DUP2 PUSH2 0x8D9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x7CB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x7A7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x7E6 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x7A7 JUMP JUMPDEST PUSH2 0x7F3 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x75F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x80F PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x7A7 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x821 DUP2 DUP8 PUSH2 0x76E JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x835 DUP2 DUP7 PUSH2 0x76E JUMP JUMPDEST SWAP1 POP PUSH2 0x844 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x75F JUMP JUMPDEST PUSH2 0x851 PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x7A7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x865 PUSH2 0x876 JUMP JUMPDEST SWAP1 POP PUSH2 0x871 DUP3 DUP3 PUSH2 0x957 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x89B JUMPI PUSH2 0x89A PUSH2 0xA2F JUMP JUMPDEST JUMPDEST PUSH2 0x8A4 DUP3 PUSH2 0xA72 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x910 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x8F5 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x91F JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x93D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x951 JUMPI PUSH2 0x950 PUSH2 0xA00 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x960 DUP3 PUSH2 0xA72 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x97F JUMPI PUSH2 0x97E PUSH2 0xA2F JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x993 DUP3 PUSH2 0x8D9 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x9C6 JUMPI PUSH2 0x9C5 PUSH2 0x9D1 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA8C DUP2 PUSH2 0x8D9 JUMP JUMPDEST DUP2 EQ PUSH2 0xA97 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAE SWAP9 PUSH28 0xD5AC0B74F12B0406B69ED56A950D84CCED063896CF9A23AF69CB9A36 0xE1 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "69:1097:0:-:0;;;126:1;97:30;;134:17;;;;;;;;;;69:1097;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@createTask_75": {
"entryPoint": 219,
"id": 75,
"parameterSlots": 2,
"returnSlots": 0
},
"@taskCounter_4": {
"entryPoint": 489,
"id": 4,
"parameterSlots": 0,
"returnSlots": 0
},
"@tasks_42": {
"entryPoint": 495,
"id": 42,
"parameterSlots": 0,
"returnSlots": 0
},
"@toggleDone_108": {
"entryPoint": 834,
"id": 108,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1589,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1655,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 1701,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr": {
"entryPoint": 1722,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1842,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 1887,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1902,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1959,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1974,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_bool__to_t_uint256_t_bool__fromStack_reversed": {
"entryPoint": 2001,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr_t_string_memory_ptr_t_bool_t_uint256__to_t_uint256_t_string_memory_ptr_t_string_memory_ptr_t_bool_t_uint256__fromStack_reversed": {
"entryPoint": 2042,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 2139,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 2166,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 2176,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 2225,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 2236,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 2253,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 2265,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 2275,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 2290,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 2341,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 2391,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 2440,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 2513,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 2560,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 2607,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 2654,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 2659,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 2664,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2669,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 2674,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 2691,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7705:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "91:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "101:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "168:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "126:41:1"
},
"nodeType": "YulFunctionCall",
"src": "126:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "110:15:1"
},
"nodeType": "YulFunctionCall",
"src": "110:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "101:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "192:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "199:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "185:6:1"
},
"nodeType": "YulFunctionCall",
"src": "185:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "185:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "215:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "230:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "237:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "226:3:1"
},
"nodeType": "YulFunctionCall",
"src": "226:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "219:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "280:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "282:77:1"
},
"nodeType": "YulFunctionCall",
"src": "282:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "282:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "261:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "257:3:1"
},
"nodeType": "YulFunctionCall",
"src": "257:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "275:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "254:2:1"
},
"nodeType": "YulFunctionCall",
"src": "254:25:1"
},
"nodeType": "YulIf",
"src": "251:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "396:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "401:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "406:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "372:23:1"
},
"nodeType": "YulFunctionCall",
"src": "372:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "372:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "64:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "69:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "77:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "85:5:1",
"type": ""
}
],
"src": "7:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "501:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "550:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "552:77:1"
},
"nodeType": "YulFunctionCall",
"src": "552:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "552:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "529:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "537:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "525:3:1"
},
"nodeType": "YulFunctionCall",
"src": "525:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "544:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "521:3:1"
},
"nodeType": "YulFunctionCall",
"src": "521:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "514:6:1"
},
"nodeType": "YulFunctionCall",
"src": "514:35:1"
},
"nodeType": "YulIf",
"src": "511:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "642:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "669:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "656:12:1"
},
"nodeType": "YulFunctionCall",
"src": "656:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "646:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "685:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "746:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "754:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "742:3:1"
},
"nodeType": "YulFunctionCall",
"src": "742:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "761:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "769:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "694:47:1"
},
"nodeType": "YulFunctionCall",
"src": "694:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "685:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "479:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "487:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "495:5:1",
"type": ""
}
],
"src": "439:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "837:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "847:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "869:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "856:12:1"
},
"nodeType": "YulFunctionCall",
"src": "856:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "847:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "912:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "885:26:1"
},
"nodeType": "YulFunctionCall",
"src": "885:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "885:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "815:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "823:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "831:5:1",
"type": ""
}
],
"src": "785:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1033:731:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1079:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1081:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1081:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1081:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1054:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1063:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1050:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1050:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1075:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1046:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1046:32:1"
},
"nodeType": "YulIf",
"src": "1043:119:1"
},
{
"nodeType": "YulBlock",
"src": "1172:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1187:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1218:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1229:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1214:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1214:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1201:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1201:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1191:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1279:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1281:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1281:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1281:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1251:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1259:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1248:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1248:30:1"
},
"nodeType": "YulIf",
"src": "1245:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1376:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1421:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1432:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1417:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1417:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1441:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1386:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1386:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1376:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1469:288:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1484:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1515:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1526:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1511:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1511:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1498:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1498:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1488:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1577:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1579:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1579:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1579:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1549:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1557:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1546:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1546:30:1"
},
"nodeType": "YulIf",
"src": "1543:117:1"
},
{
"nodeType": "YulAssignment",
"src": "1674:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1719:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1730:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1715:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1715:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1739:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1684:30:1"
},
"nodeType": "YulFunctionCall",
"src": "1684:63:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1674:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "995:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1006:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1018:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1026:6:1",
"type": ""
}
],
"src": "930:834:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1836:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1882:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1884:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1884:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1884:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1857:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1866:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1853:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1853:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1878:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1849:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1849:32:1"
},
"nodeType": "YulIf",
"src": "1846:119:1"
},
{
"nodeType": "YulBlock",
"src": "1975:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1990:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2004:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1994:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2019:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2054:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2065:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2050:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2050:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2074:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2029:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2029:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2019:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1806:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1817:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1829:6:1",
"type": ""
}
],
"src": "1770:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2164:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2181:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2201:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "2186:14:1"
},
"nodeType": "YulFunctionCall",
"src": "2186:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2174:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2174:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "2174:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2152:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2159:3:1",
"type": ""
}
],
"src": "2105:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2312:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2322:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2369:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2336:32:1"
},
"nodeType": "YulFunctionCall",
"src": "2336:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2326:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2384:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2450:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2455:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2391:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2391:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2384:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2497:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2504:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2493:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2493:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2511:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2516:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2471:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2471:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "2471:52:1"
},
{
"nodeType": "YulAssignment",
"src": "2532:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2543:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2570:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2548:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2548:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2539:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2539:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2532:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2293:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2300:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2308:3:1",
"type": ""
}
],
"src": "2220:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2655:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2672:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2695:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2677:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2677:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2665:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2665:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "2665:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2643:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2650:3:1",
"type": ""
}
],
"src": "2590:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2812:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2822:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2834:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2845:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2830:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2830:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2822:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2902:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2915:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2926:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2911:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2911:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2858:43:1"
},
"nodeType": "YulFunctionCall",
"src": "2858:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "2858:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2784:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2796:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2807:4:1",
"type": ""
}
],
"src": "2714:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3062:200:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3072:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3084:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3095:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3080:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3080:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3072:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3152:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3165:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3176:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3161:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3161:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3108:43:1"
},
"nodeType": "YulFunctionCall",
"src": "3108:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "3108:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3227:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3240:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3251:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3236:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3236:18:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3189:37:1"
},
"nodeType": "YulFunctionCall",
"src": "3189:66:1"
},
"nodeType": "YulExpressionStatement",
"src": "3189:66:1"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_bool__to_t_uint256_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3026:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3038:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3046:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3057:4:1",
"type": ""
}
],
"src": "2942:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3512:590:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3522:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3534:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3545:3:1",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3530:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3530:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3522:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3603:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3616:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3627:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3612:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3612:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "3559:43:1"
},
"nodeType": "YulFunctionCall",
"src": "3559:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "3559:71:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3651:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3662:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3647:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3647:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3671:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3677:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3667:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3667:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3640:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3640:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "3640:48:1"
},
{
"nodeType": "YulAssignment",
"src": "3697:86:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3769:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3778:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3705:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3705:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3697:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3804:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3815:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3800:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3800:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3824:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3830:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3820:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3820:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3793:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3793:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "3793:48:1"
},
{
"nodeType": "YulAssignment",
"src": "3850:86:1",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3922:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3931:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3858:63:1"
},
"nodeType": "YulFunctionCall",
"src": "3858:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3850:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "3984:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3997:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4008:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3993:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3993:18:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "3946:37:1"
},
"nodeType": "YulFunctionCall",
"src": "3946:66:1"
},
"nodeType": "YulExpressionStatement",
"src": "3946:66:1"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nodeType": "YulIdentifier",
"src": "4066:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4079:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4090:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4075:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4075:19:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "4022:43:1"
},
"nodeType": "YulFunctionCall",
"src": "4022:73:1"
},
"nodeType": "YulExpressionStatement",
"src": "4022:73:1"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr_t_string_memory_ptr_t_bool_t_uint256__to_t_uint256_t_string_memory_ptr_t_string_memory_ptr_t_bool_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3452:9:1",
"type": ""
},
{
"name": "value4",
"nodeType": "YulTypedName",
"src": "3464:6:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3472:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3480:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3488:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3496:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3507:4:1",
"type": ""
}
],
"src": "3268:834:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4149:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4159:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "4169:18:1"
},
"nodeType": "YulFunctionCall",
"src": "4169:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4159:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4218:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4226:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "4198:19:1"
},
"nodeType": "YulFunctionCall",
"src": "4198:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "4198:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4133:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4142:6:1",
"type": ""
}
],
"src": "4108:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4283:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4293:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4309:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4303:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4303:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4293:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4276:6:1",
"type": ""
}
],
"src": "4243:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4391:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4496:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4498:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4498:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4498:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4468:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4476:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4465:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4465:30:1"
},
"nodeType": "YulIf",
"src": "4462:56:1"
},
{
"nodeType": "YulAssignment",
"src": "4528:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4558:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4536:21:1"
},
"nodeType": "YulFunctionCall",
"src": "4536:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4528:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4602:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4614:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4620:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4610:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4610:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "4602:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4375:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "4386:4:1",
"type": ""
}
],
"src": "4324:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4697:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4708:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4724:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4718:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4718:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4708:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4680:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4690:6:1",
"type": ""
}
],
"src": "4638:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4839:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4856:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4861:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4849:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4849:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "4849:19:1"
},
{
"nodeType": "YulAssignment",
"src": "4877:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4896:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4901:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4892:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4892:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4877:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4811:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4816:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4827:11:1",
"type": ""
}
],
"src": "4743:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4960:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4970:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4995:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4988:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4988:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4981:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4981:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "4970:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4942:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "4952:7:1",
"type": ""
}
],
"src": "4918:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5059:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5069:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5080:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5069:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5041:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5051:7:1",
"type": ""
}
],
"src": "5014:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5148:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5171:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5176:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5181:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "5158:12:1"
},
"nodeType": "YulFunctionCall",
"src": "5158:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "5158:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5229:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5234:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5225:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5225:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5243:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5218:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5218:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "5218:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5130:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5135:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5140:6:1",
"type": ""
}
],
"src": "5097:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5306:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5316:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5325:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5320:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5385:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5410:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5415:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5406:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5406:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5429:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5434:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5425:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5425:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5419:5:1"
},
"nodeType": "YulFunctionCall",
"src": "5419:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5399:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5399:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "5399:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5346:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5349:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5343:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5343:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5357:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5359:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5368:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5371:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5364:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5364:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5359:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5339:3:1",
"statements": []
},
"src": "5335:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5482:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5532:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5537:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5528:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5528:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5546:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5521:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5521:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "5521:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5463:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5466:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5460:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5460:13:1"
},
"nodeType": "YulIf",
"src": "5457:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5288:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5293:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5298:6:1",
"type": ""
}
],
"src": "5257:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5621:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5631:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5645:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5651:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5641:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5641:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5631:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5662:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5692:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5698:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5688:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5688:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5666:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5739:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5753:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5767:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5775:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5763:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5763:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5753:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5719:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5712:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5712:26:1"
},
"nodeType": "YulIf",
"src": "5709:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5842:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "5856:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5856:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5856:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5806:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5829:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5837:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5826:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5826:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5803:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5803:38:1"
},
"nodeType": "YulIf",
"src": "5800:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5605:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5614:6:1",
"type": ""
}
],
"src": "5570:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5939:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5949:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5971:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "6001:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5979:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5979:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5967:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5967:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "5953:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6118:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "6120:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6120:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6120:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6061:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6073:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6058:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6058:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6097:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6109:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6094:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6094:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "6055:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6055:62:1"
},
"nodeType": "YulIf",
"src": "6052:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6156:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "6160:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6149:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6149:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "6149:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5925:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "5933:4:1",
"type": ""
}
],
"src": "5896:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6226:190:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6236:33:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6263:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6245:17:1"
},
"nodeType": "YulFunctionCall",
"src": "6245:24:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6236:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6359:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6361:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6361:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6361:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6284:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6291:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6281:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6281:77:1"
},
"nodeType": "YulIf",
"src": "6278:103:1"
},
{
"nodeType": "YulAssignment",
"src": "6390:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6401:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6408:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6397:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6397:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6390:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6212:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "6222:3:1",
"type": ""
}
],
"src": "6183:233:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6450:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6467:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6470:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6460:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6460:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6460:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6564:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6567:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6557:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6557:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6557:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6588:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6591:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6581:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6581:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6581:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6422:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6636:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6653:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6656:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6646:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6646:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6646:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6750:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6753:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6743:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6743:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6743:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6774:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6777:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6767:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6767:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6767:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6608:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6822:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6839:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6842:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6832:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6832:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6832:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6936:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6939:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6929:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6929:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6929:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6960:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6963:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6953:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6953:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6953:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "6794:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7069:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7086:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7089:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7079:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7079:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7079:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "6980:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7192:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7209:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7212:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7202:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7202:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7202:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "7103:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7315:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7332:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7335:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7325:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7325:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7325:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "7226:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7438:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7455:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7458:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7448:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7448:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7448:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "7349:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7520:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7530:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7548:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7555:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7544:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7544:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7564:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7560:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7560:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7540:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7540:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7530:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7503:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7513:6:1",
"type": ""
}
],
"src": "7472:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7623:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7680:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7689:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7692:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7682:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7682:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "7682:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7646:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7671:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7653:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7653:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7643:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7643:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7636:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7636:43:1"
},
"nodeType": "YulIf",
"src": "7633:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7616:5:1",
"type": ""
}
],
"src": "7580:122:1"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\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_string_memory_ptrt_string_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\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 abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\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 abi_encode_tuple_t_uint256_t_bool__to_t_uint256_t_bool__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_bool_to_t_bool_fromStack(value1, add(headStart, 32))\n\n }\n\n function abi_encode_tuple_t_uint256_t_string_memory_ptr_t_string_memory_ptr_t_bool_t_uint256__to_t_uint256_t_string_memory_ptr_t_string_memory_ptr_t_bool_t_uint256__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n mstore(add(headStart, 64), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value2, tail)\n\n abi_encode_t_bool_to_t_bool_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value4, add(headStart, 128))\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\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 cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061004c5760003560e01c8063292a458514610051578063586717301461006d5780638d9776721461008b578063d81ef739146100bf575b600080fd5b61006b600480360381019061006691906106ba565b6100db565b005b6100756101e9565b60405161008291906107b6565b60405180910390f35b6100a560048036038101906100a09190610732565b6101ef565b6040516100b69594939291906107fa565b60405180910390f35b6100d960048036038101906100d49190610732565b610342565b005b6000808154809291906100ed90610988565b91905055506040518060a001604052806000548152602001838152602001828152602001600015158152602001428152506001600080548152602001908152602001600020600082015181600001556020820151816001019080519060200190610158929190610592565b506040820151816002019080519060200190610175929190610592565b5060608201518160030160006101000a81548160ff021916908315150217905550608082015181600401559050507f6549102bed7d1bb5ec529ee14e2ca60ffc1f47f66d4cc6ca713220613cc64c2560005483836000426040516101dd9594939291906107fa565b60405180910390a15050565b60005481565b600160205280600052604060002060009150905080600001549080600101805461021890610925565b80601f016020809104026020016040519081016040528092919081815260200182805461024490610925565b80156102915780601f1061026657610100808354040283529160200191610291565b820191906000526020600020905b81548152906001019060200180831161027457829003601f168201915b5050505050908060020180546102a690610925565b80601f01602080910402602001604051908101604052809291908181526020018280546102d290610925565b801561031f5780601f106102f45761010080835404028352916020019161031f565b820191906000526020600020905b81548152906001019060200180831161030257829003601f168201915b5050505050908060030160009054906101000a900460ff16908060040154905085565b6000600160008381526020019081526020016000206040518060a00160405290816000820154815260200160018201805461037c90610925565b80601f01602080910402602001604051908101604052809291908181526020018280546103a890610925565b80156103f55780601f106103ca576101008083540402835291602001916103f5565b820191906000526020600020905b8154815290600101906020018083116103d857829003601f168201915b5050505050815260200160028201805461040e90610925565b80601f016020809104026020016040519081016040528092919081815260200182805461043a90610925565b80156104875780601f1061045c57610100808354040283529160200191610487565b820191906000526020600020905b81548152906001019060200180831161046a57829003601f168201915b505050505081526020016003820160009054906101000a900460ff1615151515815260200160048201548152505090508060600151158160600190151590811515815250508060016000848152602001908152602001600020600082015181600001556020820151816001019080519060200190610506929190610592565b506040820151816002019080519060200190610523929190610592565b5060608201518160030160006101000a81548160ff021916908315150217905550608082015181600401559050507f389dee00d487dd41dd5bf0f43eeaa5b663b3af022d52368df89d388150295f458282606001516040516105869291906107d1565b60405180910390a15050565b82805461059e90610925565b90600052602060002090601f0160209004810192826105c05760008555610607565b82601f106105d957805160ff1916838001178555610607565b82800160010185558215610607579182015b828111156106065782518255916020019190600101906105eb565b5b5090506106149190610618565b5090565b5b80821115610631576000816000905550600101610619565b5090565b600061064861064384610880565b61085b565b90508281526020810184848401111561066457610663610a63565b5b61066f8482856108e3565b509392505050565b600082601f83011261068c5761068b610a5e565b5b813561069c848260208601610635565b91505092915050565b6000813590506106b481610a83565b92915050565b600080604083850312156106d1576106d0610a6d565b5b600083013567ffffffffffffffff8111156106ef576106ee610a68565b5b6106fb85828601610677565b925050602083013567ffffffffffffffff81111561071c5761071b610a68565b5b61072885828601610677565b9150509250929050565b60006020828403121561074857610747610a6d565b5b6000610756848285016106a5565b91505092915050565b610768816108cd565b82525050565b6000610779826108b1565b61078381856108bc565b93506107938185602086016108f2565b61079c81610a72565b840191505092915050565b6107b0816108d9565b82525050565b60006020820190506107cb60008301846107a7565b92915050565b60006040820190506107e660008301856107a7565b6107f3602083018461075f565b9392505050565b600060a08201905061080f60008301886107a7565b8181036020830152610821818761076e565b90508181036040830152610835818661076e565b9050610844606083018561075f565b61085160808301846107a7565b9695505050505050565b6000610865610876565b90506108718282610957565b919050565b6000604051905090565b600067ffffffffffffffff82111561089b5761089a610a2f565b5b6108a482610a72565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b60008115159050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156109105780820151818401526020810190506108f5565b8381111561091f576000848401525b50505050565b6000600282049050600182168061093d57607f821691505b6020821081141561095157610950610a00565b5b50919050565b61096082610a72565b810181811067ffffffffffffffff8211171561097f5761097e610a2f565b5b80604052505050565b6000610993826108d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156109c6576109c56109d1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b610a8c816108d9565b8114610a9757600080fd5b5056fea2646970667358221220ae987bd5ac0b74f12b0406b69ed56a950d84cced063896cf9a23af69cb9a36e164736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x292A4585 EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x58671730 EQ PUSH2 0x6D JUMPI DUP1 PUSH4 0x8D977672 EQ PUSH2 0x8B JUMPI DUP1 PUSH4 0xD81EF739 EQ PUSH2 0xBF JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x6BA JUMP JUMPDEST PUSH2 0xDB JUMP JUMPDEST STOP JUMPDEST PUSH2 0x75 PUSH2 0x1E9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x82 SWAP2 SWAP1 PUSH2 0x7B6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xA5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA0 SWAP2 SWAP1 PUSH2 0x732 JUMP JUMPDEST PUSH2 0x1EF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB6 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x7FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xD4 SWAP2 SWAP1 PUSH2 0x732 JUMP JUMPDEST PUSH2 0x342 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0xED SWAP1 PUSH2 0x988 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 SLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD TIMESTAMP DUP2 MSTORE POP PUSH1 0x1 PUSH1 0x0 DUP1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x158 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x175 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE SWAP1 POP POP PUSH32 0x6549102BED7D1BB5EC529EE14E2CA60FFC1F47F66D4CC6CA713220613CC64C25 PUSH1 0x0 SLOAD DUP4 DUP4 PUSH1 0x0 TIMESTAMP PUSH1 0x40 MLOAD PUSH2 0x1DD SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x7FA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST PUSH1 0x0 SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x218 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x244 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x291 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x266 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x291 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x274 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD DUP1 SLOAD PUSH2 0x2A6 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2D2 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x31F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2F4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x31F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x302 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 DUP1 PUSH1 0x4 ADD SLOAD SWAP1 POP DUP6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD DUP1 SLOAD PUSH2 0x37C SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x3A8 SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3F5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3CA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3F5 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3D8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD DUP1 SLOAD PUSH2 0x40E SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x43A SWAP1 PUSH2 0x925 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x487 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x45C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x487 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x46A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP DUP1 PUSH1 0x60 ADD MLOAD ISZERO DUP2 PUSH1 0x60 ADD SWAP1 ISZERO ISZERO SWAP1 DUP2 ISZERO ISZERO DUP2 MSTORE POP POP DUP1 PUSH1 0x1 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x506 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x523 SWAP3 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE SWAP1 POP POP PUSH32 0x389DEE00D487DD41DD5BF0F43EEAA5B663B3AF022D52368DF89D388150295F45 DUP3 DUP3 PUSH1 0x60 ADD MLOAD PUSH1 0x40 MLOAD PUSH2 0x586 SWAP3 SWAP2 SWAP1 PUSH2 0x7D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x59E SWAP1 PUSH2 0x925 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x5C0 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x607 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x5D9 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x607 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x607 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x606 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x5EB JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x614 SWAP2 SWAP1 PUSH2 0x618 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x631 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x619 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x648 PUSH2 0x643 DUP5 PUSH2 0x880 JUMP JUMPDEST PUSH2 0x85B JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x664 JUMPI PUSH2 0x663 PUSH2 0xA63 JUMP JUMPDEST JUMPDEST PUSH2 0x66F DUP5 DUP3 DUP6 PUSH2 0x8E3 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x68C JUMPI PUSH2 0x68B PUSH2 0xA5E JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x69C DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x635 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x6B4 DUP2 PUSH2 0xA83 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6D1 JUMPI PUSH2 0x6D0 PUSH2 0xA6D JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x6EF JUMPI PUSH2 0x6EE PUSH2 0xA68 JUMP JUMPDEST JUMPDEST PUSH2 0x6FB DUP6 DUP3 DUP7 ADD PUSH2 0x677 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x71C JUMPI PUSH2 0x71B PUSH2 0xA68 JUMP JUMPDEST JUMPDEST PUSH2 0x728 DUP6 DUP3 DUP7 ADD PUSH2 0x677 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x748 JUMPI PUSH2 0x747 PUSH2 0xA6D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x756 DUP5 DUP3 DUP6 ADD PUSH2 0x6A5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x768 DUP2 PUSH2 0x8CD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x779 DUP3 PUSH2 0x8B1 JUMP JUMPDEST PUSH2 0x783 DUP2 DUP6 PUSH2 0x8BC JUMP JUMPDEST SWAP4 POP PUSH2 0x793 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x8F2 JUMP JUMPDEST PUSH2 0x79C DUP2 PUSH2 0xA72 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x7B0 DUP2 PUSH2 0x8D9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x7CB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x7A7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x7E6 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x7A7 JUMP JUMPDEST PUSH2 0x7F3 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x75F JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x80F PUSH1 0x0 DUP4 ADD DUP9 PUSH2 0x7A7 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x821 DUP2 DUP8 PUSH2 0x76E JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x835 DUP2 DUP7 PUSH2 0x76E JUMP JUMPDEST SWAP1 POP PUSH2 0x844 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x75F JUMP JUMPDEST PUSH2 0x851 PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x7A7 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x865 PUSH2 0x876 JUMP JUMPDEST SWAP1 POP PUSH2 0x871 DUP3 DUP3 PUSH2 0x957 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x89B JUMPI PUSH2 0x89A PUSH2 0xA2F JUMP JUMPDEST JUMPDEST PUSH2 0x8A4 DUP3 PUSH2 0xA72 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x910 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x8F5 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x91F JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x93D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x951 JUMPI PUSH2 0x950 PUSH2 0xA00 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x960 DUP3 PUSH2 0xA72 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x97F JUMPI PUSH2 0x97E PUSH2 0xA2F JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x993 DUP3 PUSH2 0x8D9 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x9C6 JUMPI PUSH2 0x9C5 PUSH2 0x9D1 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA8C DUP2 PUSH2 0x8D9 JUMP JUMPDEST DUP2 EQ PUSH2 0xA97 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAE SWAP9 PUSH28 0xD5AC0B74F12B0406B69ED56A950D84CCED063896CF9A23AF69CB9A36 0xE1 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "69:1097:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;659:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;97:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;594:37;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;973:191;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;659:286;746:11;;:13;;;;;;;;;:::i;:::-;;;;;;790:63;;;;;;;;795:11;;790:63;;;;808:6;790:63;;;;816:12;790:63;;;;830:5;790:63;;;;;;837:15;790:63;;;769:5;:18;775:11;;769:18;;;;;;;;;;;:84;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;868:70;880:11;;893:6;901:12;915:5;922:15;868:70;;;;;;;;;;:::i;:::-;;;;;;;;659:286;;:::o;97:30::-;;;;:::o;594:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;973:191::-;1022:17;1042:5;:10;1048:3;1042:10;;;;;;;;;;;1022:30;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1075:5;:10;;;1074:11;1061:5;:10;;:24;;;;;;;;;;;1107:5;1094;:10;1100:3;1094:10;;;;;;;;;;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1126:31;1141:3;1146:5;:10;;;1126:31;;;;;;;:::i;:::-;;;;;;;;1013:151;973:191;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:412:1:-;85:5;110:66;126:49;168:6;126:49;:::i;:::-;110:66;:::i;:::-;101:75;;199:6;192:5;185:21;237:4;230:5;226:16;275:3;266:6;261:3;257:16;254:25;251:112;;;282:79;;:::i;:::-;251:112;372:41;406:6;401:3;396;372:41;:::i;:::-;91:328;7:412;;;;;:::o;439:340::-;495:5;544:3;537:4;529:6;525:17;521:27;511:122;;552:79;;:::i;:::-;511:122;669:6;656:20;694:79;769:3;761:6;754:4;746:6;742:17;694:79;:::i;:::-;685:88;;501:278;439:340;;;;:::o;785:139::-;831:5;869:6;856:20;847:29;;885:33;912:5;885:33;:::i;:::-;785:139;;;;:::o;930:834::-;1018:6;1026;1075:2;1063:9;1054:7;1050:23;1046:32;1043:119;;;1081:79;;:::i;:::-;1043:119;1229:1;1218:9;1214:17;1201:31;1259:18;1251:6;1248:30;1245:117;;;1281:79;;:::i;:::-;1245:117;1386:63;1441:7;1432:6;1421:9;1417:22;1386:63;:::i;:::-;1376:73;;1172:287;1526:2;1515:9;1511:18;1498:32;1557:18;1549:6;1546:30;1543:117;;;1579:79;;:::i;:::-;1543:117;1684:63;1739:7;1730:6;1719:9;1715:22;1684:63;:::i;:::-;1674:73;;1469:288;930:834;;;;;:::o;1770:329::-;1829:6;1878:2;1866:9;1857:7;1853:23;1849:32;1846:119;;;1884:79;;:::i;:::-;1846:119;2004:1;2029:53;2074:7;2065:6;2054:9;2050:22;2029:53;:::i;:::-;2019:63;;1975:117;1770:329;;;;:::o;2105:109::-;2186:21;2201:5;2186:21;:::i;:::-;2181:3;2174:34;2105:109;;:::o;2220:364::-;2308:3;2336:39;2369:5;2336:39;:::i;:::-;2391:71;2455:6;2450:3;2391:71;:::i;:::-;2384:78;;2471:52;2516:6;2511:3;2504:4;2497:5;2493:16;2471:52;:::i;:::-;2548:29;2570:6;2548:29;:::i;:::-;2543:3;2539:39;2532:46;;2312:272;2220:364;;;;:::o;2590:118::-;2677:24;2695:5;2677:24;:::i;:::-;2672:3;2665:37;2590:118;;:::o;2714:222::-;2807:4;2845:2;2834:9;2830:18;2822:26;;2858:71;2926:1;2915:9;2911:17;2902:6;2858:71;:::i;:::-;2714:222;;;;:::o;2942:320::-;3057:4;3095:2;3084:9;3080:18;3072:26;;3108:71;3176:1;3165:9;3161:17;3152:6;3108:71;:::i;:::-;3189:66;3251:2;3240:9;3236:18;3227:6;3189:66;:::i;:::-;2942:320;;;;;:::o;3268:834::-;3507:4;3545:3;3534:9;3530:19;3522:27;;3559:71;3627:1;3616:9;3612:17;3603:6;3559:71;:::i;:::-;3677:9;3671:4;3667:20;3662:2;3651:9;3647:18;3640:48;3705:78;3778:4;3769:6;3705:78;:::i;:::-;3697:86;;3830:9;3824:4;3820:20;3815:2;3804:9;3800:18;3793:48;3858:78;3931:4;3922:6;3858:78;:::i;:::-;3850:86;;3946:66;4008:2;3997:9;3993:18;3984:6;3946:66;:::i;:::-;4022:73;4090:3;4079:9;4075:19;4066:6;4022:73;:::i;:::-;3268:834;;;;;;;;:::o;4108:129::-;4142:6;4169:20;;:::i;:::-;4159:30;;4198:33;4226:4;4218:6;4198:33;:::i;:::-;4108:129;;;:::o;4243:75::-;4276:6;4309:2;4303:9;4293:19;;4243:75;:::o;4324:308::-;4386:4;4476:18;4468:6;4465:30;4462:56;;;4498:18;;:::i;:::-;4462:56;4536:29;4558:6;4536:29;:::i;:::-;4528:37;;4620:4;4614;4610:15;4602:23;;4324:308;;;:::o;4638:99::-;4690:6;4724:5;4718:12;4708:22;;4638:99;;;:::o;4743:169::-;4827:11;4861:6;4856:3;4849:19;4901:4;4896:3;4892:14;4877:29;;4743:169;;;;:::o;4918:90::-;4952:7;4995:5;4988:13;4981:21;4970:32;;4918:90;;;:::o;5014:77::-;5051:7;5080:5;5069:16;;5014:77;;;:::o;5097:154::-;5181:6;5176:3;5171;5158:30;5243:1;5234:6;5229:3;5225:16;5218:27;5097:154;;;:::o;5257:307::-;5325:1;5335:113;5349:6;5346:1;5343:13;5335:113;;;5434:1;5429:3;5425:11;5419:18;5415:1;5410:3;5406:11;5399:39;5371:2;5368:1;5364:10;5359:15;;5335:113;;;5466:6;5463:1;5460:13;5457:101;;;5546:1;5537:6;5532:3;5528:16;5521:27;5457:101;5306:258;5257:307;;;:::o;5570:320::-;5614:6;5651:1;5645:4;5641:12;5631:22;;5698:1;5692:4;5688:12;5719:18;5709:81;;5775:4;5767:6;5763:17;5753:27;;5709:81;5837:2;5829:6;5826:14;5806:18;5803:38;5800:84;;;5856:18;;:::i;:::-;5800:84;5621:269;5570:320;;;:::o;5896:281::-;5979:27;6001:4;5979:27;:::i;:::-;5971:6;5967:40;6109:6;6097:10;6094:22;6073:18;6061:10;6058:34;6055:62;6052:88;;;6120:18;;:::i;:::-;6052:88;6160:10;6156:2;6149:22;5939:238;5896:281;;:::o;6183:233::-;6222:3;6245:24;6263:5;6245:24;:::i;:::-;6236:33;;6291:66;6284:5;6281:77;6278:103;;;6361:18;;:::i;:::-;6278:103;6408:1;6401:5;6397:13;6390:20;;6183:233;;;:::o;6422:180::-;6470:77;6467:1;6460:88;6567:4;6564:1;6557:15;6591:4;6588:1;6581:15;6608:180;6656:77;6653:1;6646:88;6753:4;6750:1;6743:15;6777:4;6774:1;6767:15;6794:180;6842:77;6839:1;6832:88;6939:4;6936:1;6929:15;6963:4;6960:1;6953:15;6980:117;7089:1;7086;7079:12;7103:117;7212:1;7209;7202:12;7226:117;7335:1;7332;7325:12;7349:117;7458:1;7455;7448:12;7472:102;7513:6;7564:2;7560:7;7555:2;7548:5;7544:14;7540:28;7530:38;;7472:102;;;:::o;7580:122::-;7653:24;7671:5;7653:24;:::i;:::-;7646:5;7643:35;7633:63;;7692:1;7689;7682:12;7633:63;7580:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "553600",
"executionCost": "5593",
"totalCost": "559193"
},
"external": {
"createTask(string,string)": "infinite",
"taskCounter()": "2429",
"tasks(uint256)": "infinite",
"toggleDone(uint256)": "infinite"
}
},
"methodIdentifiers": {
"createTask(string,string)": "292a4585",
"taskCounter()": "58671730",
"tasks(uint256)": "8d977672",
"toggleDone(uint256)": "d81ef739"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "string",
"name": "title",
"type": "string"
},
{
"indexed": false,
"internalType": "string",
"name": "description",
"type": "string"
},
{
"indexed": false,
"internalType": "bool",
"name": "done",
"type": "bool"
},
{
"indexed": false,
"internalType": "uint256",
"name": "createdAt",
"type": "uint256"
}
],
"name": "TaskCreated",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "bool",
"name": "done",
"type": "bool"
}
],
"name": "TaskToggleDone",
"type": "event"
},
{
"inputs": [
{
"internalType": "string",
"name": "_title",
"type": "string"
},
{
"internalType": "string",
"name": "_description",
"type": "string"
}
],
"name": "createTask",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "taskCounter",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "tasks",
"outputs": [
{
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"internalType": "string",
"name": "title",
"type": "string"
},
{
"internalType": "string",
"name": "description",
"type": "string"
},
{
"internalType": "bool",
"name": "done",
"type": "bool"
},
{
"internalType": "uint256",
"name": "createAt",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_id",
"type": "uint256"
}
],
"name": "toggleDone",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "string",
"name": "title",
"type": "string"
},
{
"indexed": false,
"internalType": "string",
"name": "description",
"type": "string"
},
{
"indexed": false,
"internalType": "bool",
"name": "done",
"type": "bool"
},
{
"indexed": false,
"internalType": "uint256",
"name": "createdAt",
"type": "uint256"
}
],
"name": "TaskCreated",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "bool",
"name": "done",
"type": "bool"
}
],
"name": "TaskToggleDone",
"type": "event"
},
{
"inputs": [
{
"internalType": "string",
"name": "_title",
"type": "string"
},
{
"internalType": "string",
"name": "_description",
"type": "string"
}
],
"name": "createTask",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "taskCounter",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "tasks",
"outputs": [
{
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"internalType": "string",
"name": "title",
"type": "string"
},
{
"internalType": "string",
"name": "description",
"type": "string"
},
{
"internalType": "bool",
"name": "done",
"type": "bool"
},
{
"internalType": "uint256",
"name": "createAt",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_id",
"type": "uint256"
}
],
"name": "toggleDone",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contract-6bd9b0eaa7.sol": "ToDoContract"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contract-6bd9b0eaa7.sol": {
"keccak256": "0xdad3842ca316af709a9af725e316586d2c001eddd641cfe28eb19b529b838683",
"license": "MIT",
"urls": [
"bzz-raw://ef8fd766d1e9166c92b3ac9732c8445f257911b14b7f9633f751c64ac98c4199",
"dweb:/ipfs/Qmcwq4qL1TfzYa7RpqRJJcZmyJEEYnCLSraRgtvK9MKZBN"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
// Contrato
contract ToDoContract {
uint256 public taskCounter = 0;
constructor () {}
// Evento TaskCreated
event TaskCreated(
uint id,
string title,
string description,
bool done,
uint createdAt
);
// Evento ToggleDone
event TaskToggleDone (
uint id,
bool done
);
// Task struct
struct Task {
uint256 id;
string title;
string description;
bool done;
uint256 createAt;
}
// Array
mapping(uint256 => Task) public tasks;
// Create a Task
function createTask(string memory _title, string memory _description) public {
taskCounter++;
tasks[taskCounter] = Task(taskCounter, _title, _description, false, block.timestamp);
emit TaskCreated(taskCounter, _title, _description, false, block.timestamp);
}
// Task completed
function toggleDone(uint256 _id) public {
Task memory _task = tasks[_id];
_task.done = !_task.done;
tasks[_id] = _task;
emit TaskToggleDone(_id, _task.done);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment