Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Furqan558/f29286244c73585259c7b766efa50b2d to your computer and use it in GitHub Desktop.
Save Furqan558/f29286244c73585259c7b766efa50b2d 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.8+commit.dddeac2f.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
{
"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": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610802806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780638bab8dd5146100b25780639e7a13ad146100e2575b600080fd5b610064610113565b6040516100719190610368565b60405180910390f35b610094600480360381019061008f91906103c3565b61011c565b005b6100b060048036038101906100ab9190610536565b610132565b005b6100cc60048036038101906100c79190610592565b6101c2565b6040516100d99190610368565b60405180910390f35b6100fc60048036038101906100f791906103c3565b6101f0565b60405161010a929190610663565b60405180910390f35b60008054905090565b60058161012991906106c2565b60008190555050565b600160405180604001604052808381526020018481525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010190805190602001906101989291906102ac565b505050806002836040516101ac9190610754565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b6001818154811061020057600080fd5b90600052602060002090600202016000915090508060000154908060010180546102299061079a565b80601f01602080910402602001604051908101604052809291908181526020018280546102559061079a565b80156102a25780601f10610277576101008083540402835291602001916102a2565b820191906000526020600020905b81548152906001019060200180831161028557829003601f168201915b5050505050905082565b8280546102b89061079a565b90600052602060002090601f0160209004810192826102da5760008555610321565b82601f106102f357805160ff1916838001178555610321565b82800160010185558215610321579182015b82811115610320578251825591602001919060010190610305565b5b50905061032e9190610332565b5090565b5b8082111561034b576000816000905550600101610333565b5090565b6000819050919050565b6103628161034f565b82525050565b600060208201905061037d6000830184610359565b92915050565b6000604051905090565b600080fd5b600080fd5b6103a08161034f565b81146103ab57600080fd5b50565b6000813590506103bd81610397565b92915050565b6000602082840312156103d9576103d861038d565b5b60006103e7848285016103ae565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610443826103fa565b810181811067ffffffffffffffff821117156104625761046161040b565b5b80604052505050565b6000610475610383565b9050610481828261043a565b919050565b600067ffffffffffffffff8211156104a1576104a061040b565b5b6104aa826103fa565b9050602081019050919050565b82818337600083830152505050565b60006104d96104d484610486565b61046b565b9050828152602081018484840111156104f5576104f46103f5565b5b6105008482856104b7565b509392505050565b600082601f83011261051d5761051c6103f0565b5b813561052d8482602086016104c6565b91505092915050565b6000806040838503121561054d5761054c61038d565b5b600083013567ffffffffffffffff81111561056b5761056a610392565b5b61057785828601610508565b9250506020610588858286016103ae565b9150509250929050565b6000602082840312156105a8576105a761038d565b5b600082013567ffffffffffffffff8111156105c6576105c5610392565b5b6105d284828501610508565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156106155780820151818401526020810190506105fa565b83811115610624576000848401525b50505050565b6000610635826105db565b61063f81856105e6565b935061064f8185602086016105f7565b610658816103fa565b840191505092915050565b60006040820190506106786000830185610359565b818103602083015261068a818461062a565b90509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006106cd8261034f565b91506106d88361034f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561070d5761070c610693565b5b828201905092915050565b600081905092915050565b600061072e826105db565b6107388185610718565b93506107488185602086016105f7565b80840191505092915050565b60006107608284610723565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806107b257607f821691505b602082108114156107c6576107c561076b565b5b5091905056fea2646970667358221220f33ba1372621c445a30e6680a9059e5994fd440c72f341b8a46b6f47ba3c7e2764736f6c63430008080033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x802 DUP1 PUSH2 0x20 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 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xE2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x368 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x3C3 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x536 JUMP JUMPDEST PUSH2 0x132 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST PUSH2 0x1C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD9 SWAP2 SWAP1 PUSH2 0x368 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF7 SWAP2 SWAP1 PUSH2 0x3C3 JUMP JUMPDEST PUSH2 0x1F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP3 SWAP2 SWAP1 PUSH2 0x663 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x5 DUP2 PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x6C2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP 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 0x198 SWAP3 SWAP2 SWAP1 PUSH2 0x2AC JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1AC SWAP2 SWAP1 PUSH2 0x754 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x200 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x229 SWAP1 PUSH2 0x79A 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 0x255 SWAP1 PUSH2 0x79A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2A2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x277 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2A2 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 0x285 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2B8 SWAP1 PUSH2 0x79A JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2DA JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x321 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2F3 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x321 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x321 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x320 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x305 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x32E SWAP2 SWAP1 PUSH2 0x332 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x34B JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x333 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x362 DUP2 PUSH2 0x34F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x37D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x359 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3A0 DUP2 PUSH2 0x34F JUMP JUMPDEST DUP2 EQ PUSH2 0x3AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3BD DUP2 PUSH2 0x397 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3D9 JUMPI PUSH2 0x3D8 PUSH2 0x38D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3E7 DUP5 DUP3 DUP6 ADD PUSH2 0x3AE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x443 DUP3 PUSH2 0x3FA JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x462 JUMPI PUSH2 0x461 PUSH2 0x40B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x475 PUSH2 0x383 JUMP JUMPDEST SWAP1 POP PUSH2 0x481 DUP3 DUP3 PUSH2 0x43A JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x4A1 JUMPI PUSH2 0x4A0 PUSH2 0x40B JUMP JUMPDEST JUMPDEST PUSH2 0x4AA DUP3 PUSH2 0x3FA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4D9 PUSH2 0x4D4 DUP5 PUSH2 0x486 JUMP JUMPDEST PUSH2 0x46B JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4F5 JUMPI PUSH2 0x4F4 PUSH2 0x3F5 JUMP JUMPDEST JUMPDEST PUSH2 0x500 DUP5 DUP3 DUP6 PUSH2 0x4B7 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x51D JUMPI PUSH2 0x51C PUSH2 0x3F0 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x52D DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4C6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x54D JUMPI PUSH2 0x54C PUSH2 0x38D JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x56B JUMPI PUSH2 0x56A PUSH2 0x392 JUMP JUMPDEST JUMPDEST PUSH2 0x577 DUP6 DUP3 DUP7 ADD PUSH2 0x508 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x588 DUP6 DUP3 DUP7 ADD PUSH2 0x3AE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5A8 JUMPI PUSH2 0x5A7 PUSH2 0x38D JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5C6 JUMPI PUSH2 0x5C5 PUSH2 0x392 JUMP JUMPDEST JUMPDEST PUSH2 0x5D2 DUP5 DUP3 DUP6 ADD PUSH2 0x508 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x615 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x5FA JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x624 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x635 DUP3 PUSH2 0x5DB JUMP JUMPDEST PUSH2 0x63F DUP2 DUP6 PUSH2 0x5E6 JUMP JUMPDEST SWAP4 POP PUSH2 0x64F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5F7 JUMP JUMPDEST PUSH2 0x658 DUP2 PUSH2 0x3FA JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x678 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x359 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x68A DUP2 DUP5 PUSH2 0x62A JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x6CD DUP3 PUSH2 0x34F JUMP JUMPDEST SWAP2 POP PUSH2 0x6D8 DUP4 PUSH2 0x34F JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x70D JUMPI PUSH2 0x70C PUSH2 0x693 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x72E DUP3 PUSH2 0x5DB JUMP JUMPDEST PUSH2 0x738 DUP2 DUP6 PUSH2 0x718 JUMP JUMPDEST SWAP4 POP PUSH2 0x748 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5F7 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x760 DUP3 DUP5 PUSH2 0x723 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x7B2 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x7C6 JUMPI PUSH2 0x7C5 PUSH2 0x76B JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RETURN EXTCODESIZE LOG1 CALLDATACOPY 0x26 0x21 0xC4 GASLIMIT LOG3 0xE PUSH7 0x80A9059E5994FD DIFFICULTY 0xC PUSH19 0xF341B8A46B6F47BA3C7E2764736F6C63430008 ADDMOD STOP CALLER ",
"sourceMap": "95:160:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addPerson_76": {
"entryPoint": 306,
"id": 76,
"parameterSlots": 2,
"returnSlots": 0
},
"@nameToFavoriteNumber_35": {
"entryPoint": 450,
"id": 35,
"parameterSlots": 0,
"returnSlots": 0
},
"@people_31": {
"entryPoint": 496,
"id": 31,
"parameterSlots": 0,
"returnSlots": 0
},
"@retrieve_53": {
"entryPoint": 275,
"id": 53,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_17": {
"entryPoint": 284,
"id": 17,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1222,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1288,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 942,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 1426,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 1334,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 963,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1578,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1827,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 857,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 1876,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 872,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1635,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1131,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 899,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1158,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1499,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1510,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1816,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1730,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 847,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 1207,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1527,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1946,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1082,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x11": {
"entryPoint": 1683,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1899,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1035,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1008,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1013,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 914,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 909,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1018,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 919,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7982:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:3"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:3",
"type": ""
}
],
"src": "7:77:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:3"
},
"nodeType": "YulFunctionCall",
"src": "177:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:3"
},
"nodeType": "YulFunctionCall",
"src": "165:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:3"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:3",
"type": ""
}
],
"src": "90:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:3"
},
"nodeType": "YulFunctionCall",
"src": "330:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:3"
},
"nodeType": "YulFunctionCall",
"src": "411:17:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:3"
},
"nodeType": "YulFunctionCall",
"src": "358:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:3"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:3",
"type": ""
}
],
"src": "214:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "482:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "492:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "508:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "502:5:3"
},
"nodeType": "YulFunctionCall",
"src": "502:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "492:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "475:6:3",
"type": ""
}
],
"src": "442:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "612:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "629:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "632:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "622:6:3"
},
"nodeType": "YulFunctionCall",
"src": "622:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "622:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "523:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "745:6:3"
},
"nodeType": "YulFunctionCall",
"src": "745:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "745:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "646:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "812:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "878:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "881:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "871:6:3"
},
"nodeType": "YulFunctionCall",
"src": "871:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "871:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "835:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "860:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "842:17:3"
},
"nodeType": "YulFunctionCall",
"src": "842:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "832:2:3"
},
"nodeType": "YulFunctionCall",
"src": "832:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "825:6:3"
},
"nodeType": "YulFunctionCall",
"src": "825:43:3"
},
"nodeType": "YulIf",
"src": "822:63:3"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "805:5:3",
"type": ""
}
],
"src": "769:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "949:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "959:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "981:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "968:12:3"
},
"nodeType": "YulFunctionCall",
"src": "968:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "959:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1024:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "997:26:3"
},
"nodeType": "YulFunctionCall",
"src": "997:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "997:33:3"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "927:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "935:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "943:5:3",
"type": ""
}
],
"src": "897:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1108:263:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1154:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1156:77:3"
},
"nodeType": "YulFunctionCall",
"src": "1156:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "1156:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1129:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1138:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1125:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1125:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1150:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1121:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1121:32:3"
},
"nodeType": "YulIf",
"src": "1118:119:3"
},
{
"nodeType": "YulBlock",
"src": "1247:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1262:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1276:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1266:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1291:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1326:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1337:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1322:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1322:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1346:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1301:20:3"
},
"nodeType": "YulFunctionCall",
"src": "1301:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1291:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1078:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1089:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1101:6:3",
"type": ""
}
],
"src": "1042:329:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1466:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1483:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1486:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1476:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1476:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "1476:12:3"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "1377:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1589:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1606:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1609:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1599:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1599:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "1599:12:3"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "1500:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1671:54:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1681:38:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1699:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1706:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1695:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1695:14:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1715:2:3",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1711:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1711:7:3"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1691:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1691:28:3"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1681:6:3"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1654:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1664:6:3",
"type": ""
}
],
"src": "1623:102:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1759:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1776:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1779:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1769:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1769:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "1769:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1873:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1876:4:3",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1866:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1866:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "1866:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1897:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1900:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1890:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1890:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "1890:15:3"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "1731:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1960:238:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1970:58:3",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1992:6:3"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2022:4:3"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2000:21:3"
},
"nodeType": "YulFunctionCall",
"src": "2000:27:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1988:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1988:40:3"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "1974:10:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2139:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2141:16:3"
},
"nodeType": "YulFunctionCall",
"src": "2141:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "2141:18:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2082:10:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2094:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2079:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2079:34:3"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2118:10:3"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2130:6:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2115:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2115:22:3"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "2076:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2076:62:3"
},
"nodeType": "YulIf",
"src": "2073:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2177:2:3",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2181:10:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2170:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2170:22:3"
},
"nodeType": "YulExpressionStatement",
"src": "2170:22:3"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1946:6:3",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1954:4:3",
"type": ""
}
],
"src": "1917:281:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2245:88:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2255:30:3",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "2265:18:3"
},
"nodeType": "YulFunctionCall",
"src": "2265:20:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2255:6:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2314:6:3"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2322:4:3"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "2294:19:3"
},
"nodeType": "YulFunctionCall",
"src": "2294:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "2294:33:3"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2229:4:3",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2238:6:3",
"type": ""
}
],
"src": "2204:129:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2406:241:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2511:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2513:16:3"
},
"nodeType": "YulFunctionCall",
"src": "2513:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "2513:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2483:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2491:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2480:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2480:30:3"
},
"nodeType": "YulIf",
"src": "2477:56:3"
},
{
"nodeType": "YulAssignment",
"src": "2543:37:3",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2573:6:3"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2551:21:3"
},
"nodeType": "YulFunctionCall",
"src": "2551:29:3"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2543:4:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2617:23:3",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2629:4:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2635:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2625:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2625:15:3"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2617:4:3"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2390:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2401:4:3",
"type": ""
}
],
"src": "2339:308:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2704:103:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2727:3:3"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2732:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2737:6:3"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "2714:12:3"
},
"nodeType": "YulFunctionCall",
"src": "2714:30:3"
},
"nodeType": "YulExpressionStatement",
"src": "2714:30:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2785:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2790:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2781:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2781:16:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2799:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2774:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2774:27:3"
},
"nodeType": "YulExpressionStatement",
"src": "2774:27:3"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2686:3:3",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2691:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2696:6:3",
"type": ""
}
],
"src": "2653:154:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2897:328:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2907:75:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2974:6:3"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2932:41:3"
},
"nodeType": "YulFunctionCall",
"src": "2932:49:3"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2916:15:3"
},
"nodeType": "YulFunctionCall",
"src": "2916:66:3"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2907:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2998:5:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3005:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2991:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2991:21:3"
},
"nodeType": "YulExpressionStatement",
"src": "2991:21:3"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3021:27:3",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3036:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3043:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3032:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3032:16:3"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3025:3:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3086:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "3088:77:3"
},
"nodeType": "YulFunctionCall",
"src": "3088:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "3088:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3067:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3072:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3063:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3063:16:3"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3081:3:3"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3060:2:3"
},
"nodeType": "YulFunctionCall",
"src": "3060:25:3"
},
"nodeType": "YulIf",
"src": "3057:112:3"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3202:3:3"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3207:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3212:6:3"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "3178:23:3"
},
"nodeType": "YulFunctionCall",
"src": "3178:41:3"
},
"nodeType": "YulExpressionStatement",
"src": "3178:41:3"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2870:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2875:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2883:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2891:5:3",
"type": ""
}
],
"src": "2813:412:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3307:278:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3356:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "3358:77:3"
},
"nodeType": "YulFunctionCall",
"src": "3358:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "3358:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3335:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3343:4:3",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3331:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3331:17:3"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3350:3:3"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3327:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3327:27:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3320:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3320:35:3"
},
"nodeType": "YulIf",
"src": "3317:122:3"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3448:34:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3475:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3462:12:3"
},
"nodeType": "YulFunctionCall",
"src": "3462:20:3"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3452:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3491:88:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3552:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3560:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3548:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3548:17:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3567:6:3"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3575:3:3"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3500:47:3"
},
"nodeType": "YulFunctionCall",
"src": "3500:79:3"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3491:5:3"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3285:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3293:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "3301:5:3",
"type": ""
}
],
"src": "3245:340:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3684:561:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3730:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3732:77:3"
},
"nodeType": "YulFunctionCall",
"src": "3732:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "3732:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3705:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3714:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3701:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3701:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3726:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3697:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3697:32:3"
},
"nodeType": "YulIf",
"src": "3694:119:3"
},
{
"nodeType": "YulBlock",
"src": "3823:287:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3838:45:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3869:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3880:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3865:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3865:17:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3852:12:3"
},
"nodeType": "YulFunctionCall",
"src": "3852:31:3"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3842:6:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3930:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3932:77:3"
},
"nodeType": "YulFunctionCall",
"src": "3932:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "3932:79:3"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3902:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3910:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3899:2:3"
},
"nodeType": "YulFunctionCall",
"src": "3899:30:3"
},
"nodeType": "YulIf",
"src": "3896:117:3"
},
{
"nodeType": "YulAssignment",
"src": "4027:73:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4072:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4083:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4068:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4068:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4092:7:3"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4037:30:3"
},
"nodeType": "YulFunctionCall",
"src": "4037:63:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4027:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4120:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4135:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4149:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4139:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4165:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4200:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4211:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4196:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4196:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4220:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4175:20:3"
},
"nodeType": "YulFunctionCall",
"src": "4175:53:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4165:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3646:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3657:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3669:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3677:6:3",
"type": ""
}
],
"src": "3591:654:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4327:433:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4373:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4375:77:3"
},
"nodeType": "YulFunctionCall",
"src": "4375:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "4375:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4348:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4357:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4344:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4344:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4369:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4340:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4340:32:3"
},
"nodeType": "YulIf",
"src": "4337:119:3"
},
{
"nodeType": "YulBlock",
"src": "4466:287:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4481:45:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4512:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4523:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4508:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4508:17:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4495:12:3"
},
"nodeType": "YulFunctionCall",
"src": "4495:31:3"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4485:6:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4573:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4575:77:3"
},
"nodeType": "YulFunctionCall",
"src": "4575:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "4575:79:3"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4545:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4553:18:3",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4542:2:3"
},
"nodeType": "YulFunctionCall",
"src": "4542:30:3"
},
"nodeType": "YulIf",
"src": "4539:117:3"
},
{
"nodeType": "YulAssignment",
"src": "4670:73:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4715:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4726:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4711:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4711:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4735:7:3"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4680:30:3"
},
"nodeType": "YulFunctionCall",
"src": "4680:63:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4670:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4297:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4308:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4320:6:3",
"type": ""
}
],
"src": "4251:509:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4825:40:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4836:22:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4852:5:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4846:5:3"
},
"nodeType": "YulFunctionCall",
"src": "4846:12:3"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4836:6:3"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4808:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4818:6:3",
"type": ""
}
],
"src": "4766:99:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4967:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4984:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4989:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4977:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4977:19:3"
},
"nodeType": "YulExpressionStatement",
"src": "4977:19:3"
},
{
"nodeType": "YulAssignment",
"src": "5005:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5024:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5029:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5020:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5020:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5005:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4939:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4944:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4955:11:3",
"type": ""
}
],
"src": "4871:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5095:258:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5105:10:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5114:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5109:1:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5174:63:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5199:3:3"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5204:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5195:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5195:11:3"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5218:3:3"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5223:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5214:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5214:11:3"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5208:5:3"
},
"nodeType": "YulFunctionCall",
"src": "5208:18:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5188:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5188:39:3"
},
"nodeType": "YulExpressionStatement",
"src": "5188:39:3"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5135:1:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5138:6:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5132:2:3"
},
"nodeType": "YulFunctionCall",
"src": "5132:13:3"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5146:19:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5148:15:3",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5157:1:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5160:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5153:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5153:10:3"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5148:1:3"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5128:3:3",
"statements": []
},
"src": "5124:113:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5271:76:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5321:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5326:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5317:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5317:16:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5335:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5310:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5310:27:3"
},
"nodeType": "YulExpressionStatement",
"src": "5310:27:3"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5252:1:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5255:6:3"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5249:2:3"
},
"nodeType": "YulFunctionCall",
"src": "5249:13:3"
},
"nodeType": "YulIf",
"src": "5246:101:3"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5077:3:3",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5082:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5087:6:3",
"type": ""
}
],
"src": "5046:307:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5451:272:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5461:53:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5508:5:3"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5475:32:3"
},
"nodeType": "YulFunctionCall",
"src": "5475:39:3"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5465:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5523:78:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5589:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5594:6:3"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5530:58:3"
},
"nodeType": "YulFunctionCall",
"src": "5530:71:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5523:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5636:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5643:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5632:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5632:16:3"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5650:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5655:6:3"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5610:21:3"
},
"nodeType": "YulFunctionCall",
"src": "5610:52:3"
},
"nodeType": "YulExpressionStatement",
"src": "5610:52:3"
},
{
"nodeType": "YulAssignment",
"src": "5671:46:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5682:3:3"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5709:6:3"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5687:21:3"
},
"nodeType": "YulFunctionCall",
"src": "5687:29:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5678:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5678:39:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5671:3:3"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5432:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5439:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5447:3:3",
"type": ""
}
],
"src": "5359:364:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5875:277:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5885:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5897:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5908:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5893:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5893:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5885:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5965:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5978:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5989:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5974:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5974:17:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5921:43:3"
},
"nodeType": "YulFunctionCall",
"src": "5921:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "5921:71:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6013:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6024:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6009:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6009:18:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6033:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6039:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6029:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6029:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6002:6:3"
},
"nodeType": "YulFunctionCall",
"src": "6002:48:3"
},
"nodeType": "YulExpressionStatement",
"src": "6002:48:3"
},
{
"nodeType": "YulAssignment",
"src": "6059:86:3",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6131:6:3"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6140:4:3"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6067:63:3"
},
"nodeType": "YulFunctionCall",
"src": "6067:78:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6059:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5839:9:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5851:6:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5859:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5870:4:3",
"type": ""
}
],
"src": "5729:423:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6186:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6203:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6206:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6196:6:3"
},
"nodeType": "YulFunctionCall",
"src": "6196:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "6196:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6300:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6303:4:3",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6293:6:3"
},
"nodeType": "YulFunctionCall",
"src": "6293:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "6293:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6324:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6327:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6317:6:3"
},
"nodeType": "YulFunctionCall",
"src": "6317:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "6317:15:3"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6158:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6388:261:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6398:25:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6421:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6403:17:3"
},
"nodeType": "YulFunctionCall",
"src": "6403:20:3"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6398:1:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6432:25:3",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6455:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6437:17:3"
},
"nodeType": "YulFunctionCall",
"src": "6437:20:3"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6432:1:3"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6595:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6597:16:3"
},
"nodeType": "YulFunctionCall",
"src": "6597:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "6597:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6516:1:3"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6523:66:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6591:1:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6519:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6519:74:3"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6513:2:3"
},
"nodeType": "YulFunctionCall",
"src": "6513:81:3"
},
"nodeType": "YulIf",
"src": "6510:107:3"
},
{
"nodeType": "YulAssignment",
"src": "6627:16:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6638:1:3"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6641:1:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6634:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6634:9:3"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "6627:3:3"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "6375:1:3",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "6378:1:3",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "6384:3:3",
"type": ""
}
],
"src": "6344:305:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6769:34:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6779:18:3",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6794:3:3"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "6779:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6741:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6746:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "6757:11:3",
"type": ""
}
],
"src": "6655:148:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6919:267:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6929:53:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6976:5:3"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6943:32:3"
},
"nodeType": "YulFunctionCall",
"src": "6943:39:3"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6933:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6991:96:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7075:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7080:6:3"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "6998:76:3"
},
"nodeType": "YulFunctionCall",
"src": "6998:89:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6991:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7122:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7129:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7118:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7118:16:3"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7136:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7141:6:3"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "7096:21:3"
},
"nodeType": "YulFunctionCall",
"src": "7096:52:3"
},
"nodeType": "YulExpressionStatement",
"src": "7096:52:3"
},
{
"nodeType": "YulAssignment",
"src": "7157:23:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7168:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7173:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7164:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7164:16:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7157:3:3"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6900:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6907:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6915:3:3",
"type": ""
}
],
"src": "6809:377:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7328:139:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7339:102:3",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7428:6:3"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7437:3:3"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "7346:81:3"
},
"nodeType": "YulFunctionCall",
"src": "7346:95:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7339:3:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7451:10:3",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7458:3:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7451:3:3"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7307:3:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7313:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7324:3:3",
"type": ""
}
],
"src": "7192:275:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7501:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7518:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7521:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7511:6:3"
},
"nodeType": "YulFunctionCall",
"src": "7511:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "7511:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7615:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7618:4:3",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7608:6:3"
},
"nodeType": "YulFunctionCall",
"src": "7608:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "7608:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7639:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7642:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7632:6:3"
},
"nodeType": "YulFunctionCall",
"src": "7632:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "7632:15:3"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "7473:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7710:269:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7720:22:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7734:4:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7740:1:3",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "7730:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7730:12:3"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7720:6:3"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7751:38:3",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7781:4:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7787:1:3",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7777:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7777:12:3"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "7755:18:3",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7828:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7842:27:3",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7856:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7864:4:3",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7852:3:3"
},
"nodeType": "YulFunctionCall",
"src": "7852:17:3"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7842:6:3"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "7808:18:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7801:6:3"
},
"nodeType": "YulFunctionCall",
"src": "7801:26:3"
},
"nodeType": "YulIf",
"src": "7798:81:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7931:42:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "7945:16:3"
},
"nodeType": "YulFunctionCall",
"src": "7945:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "7945:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "7895:18:3"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7918:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7926:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7915:2:3"
},
"nodeType": "YulFunctionCall",
"src": "7915:14:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7892:2:3"
},
"nodeType": "YulFunctionCall",
"src": "7892:38:3"
},
"nodeType": "YulIf",
"src": "7889:84:3"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "7694:4:3",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7703:6:3",
"type": ""
}
],
"src": "7659:320:3"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\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 panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\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 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 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_tuple_t_string_memory_ptrt_uint256(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 := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { 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 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 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 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_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__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 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 }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\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}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780638bab8dd5146100b25780639e7a13ad146100e2575b600080fd5b610064610113565b6040516100719190610368565b60405180910390f35b610094600480360381019061008f91906103c3565b61011c565b005b6100b060048036038101906100ab9190610536565b610132565b005b6100cc60048036038101906100c79190610592565b6101c2565b6040516100d99190610368565b60405180910390f35b6100fc60048036038101906100f791906103c3565b6101f0565b60405161010a929190610663565b60405180910390f35b60008054905090565b60058161012991906106c2565b60008190555050565b600160405180604001604052808381526020018481525090806001815401808255809150506001900390600052602060002090600202016000909190919091506000820151816000015560208201518160010190805190602001906101989291906102ac565b505050806002836040516101ac9190610754565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b6001818154811061020057600080fd5b90600052602060002090600202016000915090508060000154908060010180546102299061079a565b80601f01602080910402602001604051908101604052809291908181526020018280546102559061079a565b80156102a25780601f10610277576101008083540402835291602001916102a2565b820191906000526020600020905b81548152906001019060200180831161028557829003601f168201915b5050505050905082565b8280546102b89061079a565b90600052602060002090601f0160209004810192826102da5760008555610321565b82601f106102f357805160ff1916838001178555610321565b82800160010185558215610321579182015b82811115610320578251825591602001919060010190610305565b5b50905061032e9190610332565b5090565b5b8082111561034b576000816000905550600101610333565b5090565b6000819050919050565b6103628161034f565b82525050565b600060208201905061037d6000830184610359565b92915050565b6000604051905090565b600080fd5b600080fd5b6103a08161034f565b81146103ab57600080fd5b50565b6000813590506103bd81610397565b92915050565b6000602082840312156103d9576103d861038d565b5b60006103e7848285016103ae565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610443826103fa565b810181811067ffffffffffffffff821117156104625761046161040b565b5b80604052505050565b6000610475610383565b9050610481828261043a565b919050565b600067ffffffffffffffff8211156104a1576104a061040b565b5b6104aa826103fa565b9050602081019050919050565b82818337600083830152505050565b60006104d96104d484610486565b61046b565b9050828152602081018484840111156104f5576104f46103f5565b5b6105008482856104b7565b509392505050565b600082601f83011261051d5761051c6103f0565b5b813561052d8482602086016104c6565b91505092915050565b6000806040838503121561054d5761054c61038d565b5b600083013567ffffffffffffffff81111561056b5761056a610392565b5b61057785828601610508565b9250506020610588858286016103ae565b9150509250929050565b6000602082840312156105a8576105a761038d565b5b600082013567ffffffffffffffff8111156105c6576105c5610392565b5b6105d284828501610508565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156106155780820151818401526020810190506105fa565b83811115610624576000848401525b50505050565b6000610635826105db565b61063f81856105e6565b935061064f8185602086016105f7565b610658816103fa565b840191505092915050565b60006040820190506106786000830185610359565b818103602083015261068a818461062a565b90509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006106cd8261034f565b91506106d88361034f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561070d5761070c610693565b5b828201905092915050565b600081905092915050565b600061072e826105db565b6107388185610718565b93506107488185602086016105f7565b80840191505092915050565b60006107608284610723565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806107b257607f821691505b602082108114156107c6576107c561076b565b5b5091905056fea2646970667358221220f33ba1372621c445a30e6680a9059e5994fd440c72f341b8a46b6f47ba3c7e2764736f6c63430008080033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xE2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x368 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x3C3 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x536 JUMP JUMPDEST PUSH2 0x132 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x592 JUMP JUMPDEST PUSH2 0x1C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD9 SWAP2 SWAP1 PUSH2 0x368 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF7 SWAP2 SWAP1 PUSH2 0x3C3 JUMP JUMPDEST PUSH2 0x1F0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP3 SWAP2 SWAP1 PUSH2 0x663 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x5 DUP2 PUSH2 0x129 SWAP2 SWAP1 PUSH2 0x6C2 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP 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 0x198 SWAP3 SWAP2 SWAP1 PUSH2 0x2AC JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1AC SWAP2 SWAP1 PUSH2 0x754 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x200 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x229 SWAP1 PUSH2 0x79A 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 0x255 SWAP1 PUSH2 0x79A JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2A2 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x277 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2A2 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 0x285 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2B8 SWAP1 PUSH2 0x79A JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2DA JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x321 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2F3 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x321 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x321 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x320 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x305 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x32E SWAP2 SWAP1 PUSH2 0x332 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x34B JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x333 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x362 DUP2 PUSH2 0x34F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x37D PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x359 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3A0 DUP2 PUSH2 0x34F JUMP JUMPDEST DUP2 EQ PUSH2 0x3AB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3BD DUP2 PUSH2 0x397 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3D9 JUMPI PUSH2 0x3D8 PUSH2 0x38D JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3E7 DUP5 DUP3 DUP6 ADD PUSH2 0x3AE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x443 DUP3 PUSH2 0x3FA JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x462 JUMPI PUSH2 0x461 PUSH2 0x40B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x475 PUSH2 0x383 JUMP JUMPDEST SWAP1 POP PUSH2 0x481 DUP3 DUP3 PUSH2 0x43A JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x4A1 JUMPI PUSH2 0x4A0 PUSH2 0x40B JUMP JUMPDEST JUMPDEST PUSH2 0x4AA DUP3 PUSH2 0x3FA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4D9 PUSH2 0x4D4 DUP5 PUSH2 0x486 JUMP JUMPDEST PUSH2 0x46B JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4F5 JUMPI PUSH2 0x4F4 PUSH2 0x3F5 JUMP JUMPDEST JUMPDEST PUSH2 0x500 DUP5 DUP3 DUP6 PUSH2 0x4B7 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x51D JUMPI PUSH2 0x51C PUSH2 0x3F0 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x52D DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4C6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x54D JUMPI PUSH2 0x54C PUSH2 0x38D JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x56B JUMPI PUSH2 0x56A PUSH2 0x392 JUMP JUMPDEST JUMPDEST PUSH2 0x577 DUP6 DUP3 DUP7 ADD PUSH2 0x508 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x588 DUP6 DUP3 DUP7 ADD PUSH2 0x3AE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5A8 JUMPI PUSH2 0x5A7 PUSH2 0x38D JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5C6 JUMPI PUSH2 0x5C5 PUSH2 0x392 JUMP JUMPDEST JUMPDEST PUSH2 0x5D2 DUP5 DUP3 DUP6 ADD PUSH2 0x508 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x615 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x5FA JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x624 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x635 DUP3 PUSH2 0x5DB JUMP JUMPDEST PUSH2 0x63F DUP2 DUP6 PUSH2 0x5E6 JUMP JUMPDEST SWAP4 POP PUSH2 0x64F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5F7 JUMP JUMPDEST PUSH2 0x658 DUP2 PUSH2 0x3FA JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x678 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x359 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x68A DUP2 DUP5 PUSH2 0x62A JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x6CD DUP3 PUSH2 0x34F JUMP JUMPDEST SWAP2 POP PUSH2 0x6D8 DUP4 PUSH2 0x34F JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x70D JUMPI PUSH2 0x70C PUSH2 0x693 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x72E DUP3 PUSH2 0x5DB JUMP JUMPDEST PUSH2 0x738 DUP2 DUP6 PUSH2 0x718 JUMP JUMPDEST SWAP4 POP PUSH2 0x748 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5F7 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x760 DUP3 DUP5 PUSH2 0x723 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x7B2 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x7C6 JUMPI PUSH2 0x7C5 PUSH2 0x76B JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 RETURN EXTCODESIZE LOG1 CALLDATACOPY 0x26 0x21 0xC4 GASLIMIT LOG3 0xE PUSH7 0x80A9059E5994FD DIFFICULTY 0xC PUSH19 0xF341B8A46B6F47BA3C7E2764736F6C63430008 ADDMOD STOP CALLER ",
"sourceMap": "95:160:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;536:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;141:111:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;633:190:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;355:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;324:22;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;536:89;577:7;603:14;;596:21;;536:89;:::o;141:111:0:-;243:1;225:15;:19;;;;:::i;:::-;208:14;:36;;;;141:111;:::o;633:190:1:-;716:6;728:30;;;;;;;;735:15;728:30;;;;752:5;728:30;;;716:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;800:15;770:20;791:5;770:27;;;;;;:::i;:::-;;;;;;;;;;;;;:45;;;;633:190;;:::o;355:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;324:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:77:3:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o;1377:117::-;1486:1;1483;1476:12;1500:117;1609:1;1606;1599:12;1623:102;1664:6;1715:2;1711:7;1706:2;1699:5;1695:14;1691:28;1681:38;;1623:102;;;:::o;1731:180::-;1779:77;1776:1;1769:88;1876:4;1873:1;1866:15;1900:4;1897:1;1890:15;1917:281;2000:27;2022:4;2000:27;:::i;:::-;1992:6;1988:40;2130:6;2118:10;2115:22;2094:18;2082:10;2079:34;2076:62;2073:88;;;2141:18;;:::i;:::-;2073:88;2181:10;2177:2;2170:22;1960:238;1917:281;;:::o;2204:129::-;2238:6;2265:20;;:::i;:::-;2255:30;;2294:33;2322:4;2314:6;2294:33;:::i;:::-;2204:129;;;:::o;2339:308::-;2401:4;2491:18;2483:6;2480:30;2477:56;;;2513:18;;:::i;:::-;2477:56;2551:29;2573:6;2551:29;:::i;:::-;2543:37;;2635:4;2629;2625:15;2617:23;;2339:308;;;:::o;2653:154::-;2737:6;2732:3;2727;2714:30;2799:1;2790:6;2785:3;2781:16;2774:27;2653:154;;;:::o;2813:412::-;2891:5;2916:66;2932:49;2974:6;2932:49;:::i;:::-;2916:66;:::i;:::-;2907:75;;3005:6;2998:5;2991:21;3043:4;3036:5;3032:16;3081:3;3072:6;3067:3;3063:16;3060:25;3057:112;;;3088:79;;:::i;:::-;3057:112;3178:41;3212:6;3207:3;3202;3178:41;:::i;:::-;2897:328;2813:412;;;;;:::o;3245:340::-;3301:5;3350:3;3343:4;3335:6;3331:17;3327:27;3317:122;;3358:79;;:::i;:::-;3317:122;3475:6;3462:20;3500:79;3575:3;3567:6;3560:4;3552:6;3548:17;3500:79;:::i;:::-;3491:88;;3307:278;3245:340;;;;:::o;3591:654::-;3669:6;3677;3726:2;3714:9;3705:7;3701:23;3697:32;3694:119;;;3732:79;;:::i;:::-;3694:119;3880:1;3869:9;3865:17;3852:31;3910:18;3902:6;3899:30;3896:117;;;3932:79;;:::i;:::-;3896:117;4037:63;4092:7;4083:6;4072:9;4068:22;4037:63;:::i;:::-;4027:73;;3823:287;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3591:654;;;;;:::o;4251:509::-;4320:6;4369:2;4357:9;4348:7;4344:23;4340:32;4337:119;;;4375:79;;:::i;:::-;4337:119;4523:1;4512:9;4508:17;4495:31;4553:18;4545:6;4542:30;4539:117;;;4575:79;;:::i;:::-;4539:117;4680:63;4735:7;4726:6;4715:9;4711:22;4680:63;:::i;:::-;4670:73;;4466:287;4251:509;;;;:::o;4766:99::-;4818:6;4852:5;4846:12;4836:22;;4766:99;;;:::o;4871:169::-;4955:11;4989:6;4984:3;4977:19;5029:4;5024:3;5020:14;5005:29;;4871:169;;;;:::o;5046:307::-;5114:1;5124:113;5138:6;5135:1;5132:13;5124:113;;;5223:1;5218:3;5214:11;5208:18;5204:1;5199:3;5195:11;5188:39;5160:2;5157:1;5153:10;5148:15;;5124:113;;;5255:6;5252:1;5249:13;5246:101;;;5335:1;5326:6;5321:3;5317:16;5310:27;5246:101;5095:258;5046:307;;;:::o;5359:364::-;5447:3;5475:39;5508:5;5475:39;:::i;:::-;5530:71;5594:6;5589:3;5530:71;:::i;:::-;5523:78;;5610:52;5655:6;5650:3;5643:4;5636:5;5632:16;5610:52;:::i;:::-;5687:29;5709:6;5687:29;:::i;:::-;5682:3;5678:39;5671:46;;5451:272;5359:364;;;;:::o;5729:423::-;5870:4;5908:2;5897:9;5893:18;5885:26;;5921:71;5989:1;5978:9;5974:17;5965:6;5921:71;:::i;:::-;6039:9;6033:4;6029:20;6024:2;6013:9;6009:18;6002:48;6067:78;6140:4;6131:6;6067:78;:::i;:::-;6059:86;;5729:423;;;;;:::o;6158:180::-;6206:77;6203:1;6196:88;6303:4;6300:1;6293:15;6327:4;6324:1;6317:15;6344:305;6384:3;6403:20;6421:1;6403:20;:::i;:::-;6398:25;;6437:20;6455:1;6437:20;:::i;:::-;6432:25;;6591:1;6523:66;6519:74;6516:1;6513:81;6510:107;;;6597:18;;:::i;:::-;6510:107;6641:1;6638;6634:9;6627:16;;6344:305;;;;:::o;6655:148::-;6757:11;6794:3;6779:18;;6655:148;;;;:::o;6809:377::-;6915:3;6943:39;6976:5;6943:39;:::i;:::-;6998:89;7080:6;7075:3;6998:89;:::i;:::-;6991:96;;7096:52;7141:6;7136:3;7129:4;7122:5;7118:16;7096:52;:::i;:::-;7173:6;7168:3;7164:16;7157:23;;6919:267;6809:377;;;;:::o;7192:275::-;7324:3;7346:95;7437:3;7428:6;7346:95;:::i;:::-;7339:102;;7458:3;7451:10;;7192:275;;;;:::o;7473:180::-;7521:77;7518:1;7511:88;7618:4;7615:1;7608:15;7642:4;7639:1;7632:15;7659:320;7703:6;7740:1;7734:4;7730:12;7720:22;;7787:1;7781:4;7777:12;7808:18;7798:81;;7864:4;7856:6;7852:17;7842:27;;7798:81;7926:2;7918:6;7915:14;7895:18;7892:38;7889:84;;;7945:18;;:::i;:::-;7889:84;7710:269;7659:320;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "410000",
"executionCost": "449",
"totalCost": "410449"
},
"external": {
"addPerson(string,uint256)": "infinite",
"nameToFavoriteNumber(string)": "infinite",
"people(uint256)": "infinite",
"retrieve()": "2415",
"store(uint256)": "infinite"
}
},
"methodIdentifiers": {
"addPerson(string,uint256)": "6f760f41",
"nameToFavoriteNumber(string)": "8bab8dd5",
"people(uint256)": "9e7a13ad",
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavoriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favoriteNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.8+commit.dddeac2f"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavoriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favoriteNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/ExtraStorage.sol": "ExtraStorage"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/ExtraStorage.sol": {
"keccak256": "0xfdcca37cbdfe3f05195bd48a36d80dc2bab0e6252403eabcc675f116d48e8f1b",
"license": "MIT",
"urls": [
"bzz-raw://fbd92a01c9085f6d54f6e322a32ad1ecd697b2367dbc9f7c1073e846ee0b6687",
"dweb:/ipfs/QmRQB8XadTmYuSBmLvTRPEVmW9mZBzJiX7jKSjuSWdLdmX"
]
},
"contracts/SimpleStorage.sol": {
"keccak256": "0x252670fcfcb3d71d30688df0855c5d9825df2a0ce00fe29d42e980558707461a",
"license": "MIT",
"urls": [
"bzz-raw://597292fdf6d968dc4981c5ab1373d0b9c438f7515d4078b85a569aa6fa98ce9f",
"dweb:/ipfs/QmZB1bmFzPNGtqPeaVHA8BjdWtQR7yP1FUejgGuR5ZUxXN"
]
},
"contracts/StorageFactory.sol": {
"keccak256": "0x1c558aee55966c6786315b735ff53ddd49d7653a64973eeb6eee89191118d800",
"license": "MIT",
"urls": [
"bzz-raw://cd6a3cecb27fa6bcdd70950c4f2ab16732f19a756d66af1cea6cc1601ff386ca",
"dweb:/ipfs/QmdDrBjR3NY1aoaNqeNhx2izfAyn1jxAjJa4znDLWGgF9o"
]
}
},
"version": 1
}
{
"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": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610771806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780638bab8dd5146100b25780639e7a13ad146100e2575b600080fd5b610064610113565b604051610071919061035c565b60405180910390f35b610094600480360381019061008f91906103b7565b61011c565b005b6100b060048036038101906100ab919061052a565b610126565b005b6100cc60048036038101906100c79190610586565b6101b6565b6040516100d9919061035c565b60405180910390f35b6100fc60048036038101906100f791906103b7565b6101e4565b60405161010a929190610657565b60405180910390f35b60008054905090565b8060008190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908051906020019061018c9291906102a0565b505050806002836040516101a091906106c3565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b600181815481106101f457600080fd5b906000526020600020906002020160009150905080600001549080600101805461021d90610709565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610709565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905082565b8280546102ac90610709565b90600052602060002090601f0160209004810192826102ce5760008555610315565b82601f106102e757805160ff1916838001178555610315565b82800160010185558215610315579182015b828111156103145782518255916020019190600101906102f9565b5b5090506103229190610326565b5090565b5b8082111561033f576000816000905550600101610327565b5090565b6000819050919050565b61035681610343565b82525050565b6000602082019050610371600083018461034d565b92915050565b6000604051905090565b600080fd5b600080fd5b61039481610343565b811461039f57600080fd5b50565b6000813590506103b18161038b565b92915050565b6000602082840312156103cd576103cc610381565b5b60006103db848285016103a2565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610437826103ee565b810181811067ffffffffffffffff82111715610456576104556103ff565b5b80604052505050565b6000610469610377565b9050610475828261042e565b919050565b600067ffffffffffffffff821115610495576104946103ff565b5b61049e826103ee565b9050602081019050919050565b82818337600083830152505050565b60006104cd6104c88461047a565b61045f565b9050828152602081018484840111156104e9576104e86103e9565b5b6104f48482856104ab565b509392505050565b600082601f830112610511576105106103e4565b5b81356105218482602086016104ba565b91505092915050565b6000806040838503121561054157610540610381565b5b600083013567ffffffffffffffff81111561055f5761055e610386565b5b61056b858286016104fc565b925050602061057c858286016103a2565b9150509250929050565b60006020828403121561059c5761059b610381565b5b600082013567ffffffffffffffff8111156105ba576105b9610386565b5b6105c6848285016104fc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156106095780820151818401526020810190506105ee565b83811115610618576000848401525b50505050565b6000610629826105cf565b61063381856105da565b93506106438185602086016105eb565b61064c816103ee565b840191505092915050565b600060408201905061066c600083018561034d565b818103602083015261067e818461061e565b90509392505050565b600081905092915050565b600061069d826105cf565b6106a78185610687565b93506106b78185602086016105eb565b80840191505092915050565b60006106cf8284610692565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061072157607f821691505b60208210811415610735576107346106da565b5b5091905056fea2646970667358221220ab521784a4f9bf43cb1e5a77826817af2f14efb5ca97b06018744945a735466064736f6c63430008080033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x771 DUP1 PUSH2 0x20 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 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xE2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x52A JUMP JUMPDEST PUSH2 0x126 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x586 JUMP JUMPDEST PUSH2 0x1B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD9 SWAP2 SWAP1 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF7 SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST PUSH2 0x1E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP3 SWAP2 SWAP1 PUSH2 0x657 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP 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 0x18C SWAP3 SWAP2 SWAP1 PUSH2 0x2A0 JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1A0 SWAP2 SWAP1 PUSH2 0x6C3 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x21D SWAP1 PUSH2 0x709 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 0x249 SWAP1 PUSH2 0x709 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x296 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x26B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x296 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 0x279 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2AC SWAP1 PUSH2 0x709 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2CE JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x315 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2E7 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x315 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x315 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x314 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2F9 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x322 SWAP2 SWAP1 PUSH2 0x326 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x33F JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x327 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x356 DUP2 PUSH2 0x343 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x371 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x34D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x394 DUP2 PUSH2 0x343 JUMP JUMPDEST DUP2 EQ PUSH2 0x39F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B1 DUP2 PUSH2 0x38B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3CD JUMPI PUSH2 0x3CC PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3DB DUP5 DUP3 DUP6 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x437 DUP3 PUSH2 0x3EE JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x456 JUMPI PUSH2 0x455 PUSH2 0x3FF JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x469 PUSH2 0x377 JUMP JUMPDEST SWAP1 POP PUSH2 0x475 DUP3 DUP3 PUSH2 0x42E JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x495 JUMPI PUSH2 0x494 PUSH2 0x3FF JUMP JUMPDEST JUMPDEST PUSH2 0x49E DUP3 PUSH2 0x3EE JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4CD PUSH2 0x4C8 DUP5 PUSH2 0x47A JUMP JUMPDEST PUSH2 0x45F JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4E9 JUMPI PUSH2 0x4E8 PUSH2 0x3E9 JUMP JUMPDEST JUMPDEST PUSH2 0x4F4 DUP5 DUP3 DUP6 PUSH2 0x4AB JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x511 JUMPI PUSH2 0x510 PUSH2 0x3E4 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x521 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4BA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x541 JUMPI PUSH2 0x540 PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x55F JUMPI PUSH2 0x55E PUSH2 0x386 JUMP JUMPDEST JUMPDEST PUSH2 0x56B DUP6 DUP3 DUP7 ADD PUSH2 0x4FC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x57C DUP6 DUP3 DUP7 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x59C JUMPI PUSH2 0x59B PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5BA JUMPI PUSH2 0x5B9 PUSH2 0x386 JUMP JUMPDEST JUMPDEST PUSH2 0x5C6 DUP5 DUP3 DUP6 ADD PUSH2 0x4FC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x609 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x5EE JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x618 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x629 DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x633 DUP2 DUP6 PUSH2 0x5DA JUMP JUMPDEST SWAP4 POP PUSH2 0x643 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5EB JUMP JUMPDEST PUSH2 0x64C DUP2 PUSH2 0x3EE JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x66C PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x34D JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x67E DUP2 DUP5 PUSH2 0x61E JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x69D DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x6A7 DUP2 DUP6 PUSH2 0x687 JUMP JUMPDEST SWAP4 POP PUSH2 0x6B7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5EB JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6CF DUP3 DUP5 PUSH2 0x692 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x721 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x735 JUMPI PUSH2 0x734 PUSH2 0x6DA JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAB MSTORE OR DUP5 LOG4 0xF9 0xBF NUMBER 0xCB 0x1E GAS PUSH24 0x826817AF2F14EFB5CA97B06018744945A735466064736F6C PUSH4 0x43000808 STOP CALLER ",
"sourceMap": "145:674:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addPerson_57": {
"entryPoint": 294,
"id": 57,
"parameterSlots": 2,
"returnSlots": 0
},
"@nameToFavoriteNumber_16": {
"entryPoint": 438,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
},
"@people_12": {
"entryPoint": 484,
"id": 12,
"parameterSlots": 0,
"returnSlots": 0
},
"@retrieve_34": {
"entryPoint": 275,
"id": 34,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_26": {
"entryPoint": 284,
"id": 26,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1210,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1276,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 930,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 1414,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 1322,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 951,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1566,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1682,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 845,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 1731,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 860,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1623,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1119,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 887,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1146,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1487,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1498,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1671,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 835,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 1195,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1515,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1801,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1070,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1754,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1023,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 996,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1001,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 902,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 897,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1006,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 907,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7485:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:1",
"type": ""
}
],
"src": "7:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:1"
},
"nodeType": "YulFunctionCall",
"src": "177:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:1"
},
"nodeType": "YulFunctionCall",
"src": "165:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:1",
"type": ""
}
],
"src": "90:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:1"
},
"nodeType": "YulFunctionCall",
"src": "330:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nodeType": "YulFunctionCall",
"src": "411:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:1"
},
"nodeType": "YulFunctionCall",
"src": "358:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:1",
"type": ""
}
],
"src": "214:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "482:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "492:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "508:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "502:5:1"
},
"nodeType": "YulFunctionCall",
"src": "502:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "492:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "475:6:1",
"type": ""
}
],
"src": "442:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "612:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "629:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "632:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "622:6:1"
},
"nodeType": "YulFunctionCall",
"src": "622:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "622:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "523:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "745:6:1"
},
"nodeType": "YulFunctionCall",
"src": "745:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "745:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "646:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "812:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "878:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "881:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "871:6:1"
},
"nodeType": "YulFunctionCall",
"src": "871:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "871:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "835:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "860:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "842:17:1"
},
"nodeType": "YulFunctionCall",
"src": "842:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "832:2:1"
},
"nodeType": "YulFunctionCall",
"src": "832:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "825:6:1"
},
"nodeType": "YulFunctionCall",
"src": "825:43:1"
},
"nodeType": "YulIf",
"src": "822:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "805:5:1",
"type": ""
}
],
"src": "769:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "949:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "959:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "981:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "968:12:1"
},
"nodeType": "YulFunctionCall",
"src": "968:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "959:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1024:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "997:26:1"
},
"nodeType": "YulFunctionCall",
"src": "997:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "997:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "927:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "935:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "943:5:1",
"type": ""
}
],
"src": "897:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1108:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1154:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1156:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1156:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1156:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1129:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1138:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1125:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1125:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1121:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1121:32:1"
},
"nodeType": "YulIf",
"src": "1118:119:1"
},
{
"nodeType": "YulBlock",
"src": "1247:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1262:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1276:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1266:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1291:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1326:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1322:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1322:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1346:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1301:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1301:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1291:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1078:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1089:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1101:6:1",
"type": ""
}
],
"src": "1042:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1466:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1483:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1486:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1476:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1476:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1476:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "1377:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1589:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1606:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1609:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1599:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1599:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1599:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "1500:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1671:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1681:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1699:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1706:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1695:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1695:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1715:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1711:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1711:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1691:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1691:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1681:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1654:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1664:6:1",
"type": ""
}
],
"src": "1623:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1759:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1776:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1779:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1769:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1769:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "1769:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1873:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1876:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1866:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1866:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1866:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1897:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1900:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1890:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1890:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1890:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "1731:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1960:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1970:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1992:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2022:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2000:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2000:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1988:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1988:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "1974:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2139:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2141:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2141:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2141:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2082:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2094:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2079:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2079:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2118:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2130:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2115:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2115:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "2076:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2076:62:1"
},
"nodeType": "YulIf",
"src": "2073:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2177:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2181:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2170:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2170:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "2170:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1946:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1954:4:1",
"type": ""
}
],
"src": "1917:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2245:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2255:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "2265:18:1"
},
"nodeType": "YulFunctionCall",
"src": "2265:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2255:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2314:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2322:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "2294:19:1"
},
"nodeType": "YulFunctionCall",
"src": "2294:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "2294:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2229:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2238:6:1",
"type": ""
}
],
"src": "2204:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2406:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2511:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2513:16:1"
},
"nodeType": "YulFunctionCall",
"src": "2513:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2513:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2483:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2491:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2480:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2480:30:1"
},
"nodeType": "YulIf",
"src": "2477:56:1"
},
{
"nodeType": "YulAssignment",
"src": "2543:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2573:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2551:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2551:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2543:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2617:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2629:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2635:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2625:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2625:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2617:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2390:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2401:4:1",
"type": ""
}
],
"src": "2339:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2704:103:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2727:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2732:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2737:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "2714:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2714:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "2714:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2785:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2790:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2781:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2781:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2799:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2774:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2774:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "2774:27:1"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2686:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2691:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2696:6:1",
"type": ""
}
],
"src": "2653:154:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2897:328:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2907:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2974:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2932:41:1"
},
"nodeType": "YulFunctionCall",
"src": "2932:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2916:15:1"
},
"nodeType": "YulFunctionCall",
"src": "2916:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2907:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2998:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3005:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2991:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2991:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "2991:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3021:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3036:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3043:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3032:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3032:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3025:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3086:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "3088:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3088:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3088:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3067:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3072:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3063:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3063:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3081:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3060:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3060:25:1"
},
"nodeType": "YulIf",
"src": "3057:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3202:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3207:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3212:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "3178:23:1"
},
"nodeType": "YulFunctionCall",
"src": "3178:41:1"
},
"nodeType": "YulExpressionStatement",
"src": "3178:41:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2870:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2875:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2883:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2891:5:1",
"type": ""
}
],
"src": "2813:412:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3307:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3356:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "3358:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3358:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3358:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3335:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3343:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3331:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3331:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3350:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3327:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3327:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3320:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3320:35:1"
},
"nodeType": "YulIf",
"src": "3317:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3448:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3475:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3462:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3462:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3452:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3491:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3552:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3560:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3548:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3548:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3567:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3575:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3500:47:1"
},
"nodeType": "YulFunctionCall",
"src": "3500:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3491:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3285:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3293:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "3301:5:1",
"type": ""
}
],
"src": "3245:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3684:561:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3730:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3732:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3732:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3732:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3705:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3714:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3701:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3701:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3726:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3697:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3697:32:1"
},
"nodeType": "YulIf",
"src": "3694:119:1"
},
{
"nodeType": "YulBlock",
"src": "3823:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3838:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3869:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3880:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3865:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3865:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3852:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3852:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3842:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3930:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3932:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3932:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3932:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3902:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3910:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3899:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3899:30:1"
},
"nodeType": "YulIf",
"src": "3896:117:1"
},
{
"nodeType": "YulAssignment",
"src": "4027:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4072:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4083:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4068:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4068:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4092:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4037:30:1"
},
"nodeType": "YulFunctionCall",
"src": "4037:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4027:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4120:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4135:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4149:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4139:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4165:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4200:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4211:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4196:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4196:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4220:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4175:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4175:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4165:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3646:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3657:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3669:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3677:6:1",
"type": ""
}
],
"src": "3591:654:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4327:433:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4373:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4375:77:1"
},
"nodeType": "YulFunctionCall",
"src": "4375:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "4375:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4348:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4357:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4344:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4344:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4369:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4340:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4340:32:1"
},
"nodeType": "YulIf",
"src": "4337:119:1"
},
{
"nodeType": "YulBlock",
"src": "4466:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4481:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4512:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4523:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4508:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4508:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4495:12:1"
},
"nodeType": "YulFunctionCall",
"src": "4495:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4485:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4573:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4575:77:1"
},
"nodeType": "YulFunctionCall",
"src": "4575:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "4575:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4545:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4553:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4542:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4542:30:1"
},
"nodeType": "YulIf",
"src": "4539:117:1"
},
{
"nodeType": "YulAssignment",
"src": "4670:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4715:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4726:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4711:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4711:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4735:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4680:30:1"
},
"nodeType": "YulFunctionCall",
"src": "4680:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4670:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4297:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4308:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4320:6:1",
"type": ""
}
],
"src": "4251:509:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4825:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4836:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4852:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4846:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4846:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4836:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4808:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4818:6:1",
"type": ""
}
],
"src": "4766:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4967:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4984:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4989:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4977:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4977:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "4977:19:1"
},
{
"nodeType": "YulAssignment",
"src": "5005:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5024:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5029:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5020:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5020:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5005:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4939:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4944:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4955:11:1",
"type": ""
}
],
"src": "4871:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5095:258:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5105:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5114:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5109:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5174:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5199:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5204:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5195:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5195:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5218:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5223:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5214:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5214:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5208:5:1"
},
"nodeType": "YulFunctionCall",
"src": "5208:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5188:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5188:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "5188:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5135:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5138:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5132:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5132:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5146:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5148:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5157:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5160:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5153:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5153:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5148:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5128:3:1",
"statements": []
},
"src": "5124:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5271:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5321:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5326:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5317:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5317:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5335:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5310:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "5310:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5252:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5255:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5249:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5249:13:1"
},
"nodeType": "YulIf",
"src": "5246:101:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5077:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5082:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5087:6:1",
"type": ""
}
],
"src": "5046:307:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5451:272:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5461:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5508:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5475:32:1"
},
"nodeType": "YulFunctionCall",
"src": "5475:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5465:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5523:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5589:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5594:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5530:58:1"
},
"nodeType": "YulFunctionCall",
"src": "5530:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5523:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5636:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5643:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5632:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5632:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5650:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5655:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5610:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5610:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "5610:52:1"
},
{
"nodeType": "YulAssignment",
"src": "5671:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5682:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5709:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5687:21:1"
},
"nodeType": "YulFunctionCall",
"src": "5687:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5678:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5678:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5671:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5432:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5439:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5447:3:1",
"type": ""
}
],
"src": "5359:364:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5875:277:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5885:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5897:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5908:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5893:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5893:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5885:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5965:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5978:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5989:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5974:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5974:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5921:43:1"
},
"nodeType": "YulFunctionCall",
"src": "5921:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "5921:71:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6013:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6024:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6009:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6009:18:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6033:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6039:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6029:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6029:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6002:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6002:48:1"
},
"nodeType": "YulExpressionStatement",
"src": "6002:48:1"
},
{
"nodeType": "YulAssignment",
"src": "6059:86:1",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6131:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6140:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6067:63:1"
},
"nodeType": "YulFunctionCall",
"src": "6067:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6059:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5839:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5851:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5859:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5870:4:1",
"type": ""
}
],
"src": "5729:423:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6272:34:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6282:18:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6297:3:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "6282:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6244:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6249:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "6260:11:1",
"type": ""
}
],
"src": "6158:148:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6422:267:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6432:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6479:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6446:32:1"
},
"nodeType": "YulFunctionCall",
"src": "6446:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6436:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6494:96:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6578:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6583:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "6501:76:1"
},
"nodeType": "YulFunctionCall",
"src": "6501:89:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6494:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6625:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6632:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6621:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6621:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6639:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6644:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6599:21:1"
},
"nodeType": "YulFunctionCall",
"src": "6599:52:1"
},
"nodeType": "YulExpressionStatement",
"src": "6599:52:1"
},
{
"nodeType": "YulAssignment",
"src": "6660:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6671:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6676:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6667:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6667:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6660:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6403:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6410:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6418:3:1",
"type": ""
}
],
"src": "6312:377:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6831:139:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6842:102:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6931:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6940:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "6849:81:1"
},
"nodeType": "YulFunctionCall",
"src": "6849:95:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6842:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6954:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6961:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6954:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6810:3:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6816:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6827:3:1",
"type": ""
}
],
"src": "6695:275:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7004:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7021:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7024:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7014:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7014:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "7014:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7118:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7121:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7111:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7111:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "7111:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7142:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7145:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7135:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7135:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "7135:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6976:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7213:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7223:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7237:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7243:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "7233:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7233:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7223:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7254:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7284:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7290:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7280:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7280:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "7258:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7331:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7345:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7359:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7367:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7355:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7355:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7345:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "7311:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7304:6:1"
},
"nodeType": "YulFunctionCall",
"src": "7304:26:1"
},
"nodeType": "YulIf",
"src": "7301:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7434:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "7448:16:1"
},
"nodeType": "YulFunctionCall",
"src": "7448:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "7448:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "7398:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7421:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7429:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7418:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7418:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7395:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7395:38:1"
},
"nodeType": "YulIf",
"src": "7392:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "7197:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7206:6:1",
"type": ""
}
],
"src": "7162:320:1"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\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 panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\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 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 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_tuple_t_string_memory_ptrt_uint256(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 := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { 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 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 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 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_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__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 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 }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\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}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780638bab8dd5146100b25780639e7a13ad146100e2575b600080fd5b610064610113565b604051610071919061035c565b60405180910390f35b610094600480360381019061008f91906103b7565b61011c565b005b6100b060048036038101906100ab919061052a565b610126565b005b6100cc60048036038101906100c79190610586565b6101b6565b6040516100d9919061035c565b60405180910390f35b6100fc60048036038101906100f791906103b7565b6101e4565b60405161010a929190610657565b60405180910390f35b60008054905090565b8060008190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908051906020019061018c9291906102a0565b505050806002836040516101a091906106c3565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b600181815481106101f457600080fd5b906000526020600020906002020160009150905080600001549080600101805461021d90610709565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610709565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905082565b8280546102ac90610709565b90600052602060002090601f0160209004810192826102ce5760008555610315565b82601f106102e757805160ff1916838001178555610315565b82800160010185558215610315579182015b828111156103145782518255916020019190600101906102f9565b5b5090506103229190610326565b5090565b5b8082111561033f576000816000905550600101610327565b5090565b6000819050919050565b61035681610343565b82525050565b6000602082019050610371600083018461034d565b92915050565b6000604051905090565b600080fd5b600080fd5b61039481610343565b811461039f57600080fd5b50565b6000813590506103b18161038b565b92915050565b6000602082840312156103cd576103cc610381565b5b60006103db848285016103a2565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610437826103ee565b810181811067ffffffffffffffff82111715610456576104556103ff565b5b80604052505050565b6000610469610377565b9050610475828261042e565b919050565b600067ffffffffffffffff821115610495576104946103ff565b5b61049e826103ee565b9050602081019050919050565b82818337600083830152505050565b60006104cd6104c88461047a565b61045f565b9050828152602081018484840111156104e9576104e86103e9565b5b6104f48482856104ab565b509392505050565b600082601f830112610511576105106103e4565b5b81356105218482602086016104ba565b91505092915050565b6000806040838503121561054157610540610381565b5b600083013567ffffffffffffffff81111561055f5761055e610386565b5b61056b858286016104fc565b925050602061057c858286016103a2565b9150509250929050565b60006020828403121561059c5761059b610381565b5b600082013567ffffffffffffffff8111156105ba576105b9610386565b5b6105c6848285016104fc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156106095780820151818401526020810190506105ee565b83811115610618576000848401525b50505050565b6000610629826105cf565b61063381856105da565b93506106438185602086016105eb565b61064c816103ee565b840191505092915050565b600060408201905061066c600083018561034d565b818103602083015261067e818461061e565b90509392505050565b600081905092915050565b600061069d826105cf565b6106a78185610687565b93506106b78185602086016105eb565b80840191505092915050565b60006106cf8284610692565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061072157607f821691505b60208210811415610735576107346106da565b5b5091905056fea2646970667358221220ab521784a4f9bf43cb1e5a77826817af2f14efb5ca97b06018744945a735466064736f6c63430008080033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xE2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x52A JUMP JUMPDEST PUSH2 0x126 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x586 JUMP JUMPDEST PUSH2 0x1B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD9 SWAP2 SWAP1 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF7 SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST PUSH2 0x1E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP3 SWAP2 SWAP1 PUSH2 0x657 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP 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 0x18C SWAP3 SWAP2 SWAP1 PUSH2 0x2A0 JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1A0 SWAP2 SWAP1 PUSH2 0x6C3 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x21D SWAP1 PUSH2 0x709 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 0x249 SWAP1 PUSH2 0x709 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x296 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x26B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x296 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 0x279 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2AC SWAP1 PUSH2 0x709 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2CE JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x315 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2E7 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x315 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x315 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x314 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2F9 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x322 SWAP2 SWAP1 PUSH2 0x326 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x33F JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x327 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x356 DUP2 PUSH2 0x343 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x371 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x34D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x394 DUP2 PUSH2 0x343 JUMP JUMPDEST DUP2 EQ PUSH2 0x39F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B1 DUP2 PUSH2 0x38B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3CD JUMPI PUSH2 0x3CC PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3DB DUP5 DUP3 DUP6 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x437 DUP3 PUSH2 0x3EE JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x456 JUMPI PUSH2 0x455 PUSH2 0x3FF JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x469 PUSH2 0x377 JUMP JUMPDEST SWAP1 POP PUSH2 0x475 DUP3 DUP3 PUSH2 0x42E JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x495 JUMPI PUSH2 0x494 PUSH2 0x3FF JUMP JUMPDEST JUMPDEST PUSH2 0x49E DUP3 PUSH2 0x3EE JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4CD PUSH2 0x4C8 DUP5 PUSH2 0x47A JUMP JUMPDEST PUSH2 0x45F JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4E9 JUMPI PUSH2 0x4E8 PUSH2 0x3E9 JUMP JUMPDEST JUMPDEST PUSH2 0x4F4 DUP5 DUP3 DUP6 PUSH2 0x4AB JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x511 JUMPI PUSH2 0x510 PUSH2 0x3E4 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x521 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4BA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x541 JUMPI PUSH2 0x540 PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x55F JUMPI PUSH2 0x55E PUSH2 0x386 JUMP JUMPDEST JUMPDEST PUSH2 0x56B DUP6 DUP3 DUP7 ADD PUSH2 0x4FC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x57C DUP6 DUP3 DUP7 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x59C JUMPI PUSH2 0x59B PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5BA JUMPI PUSH2 0x5B9 PUSH2 0x386 JUMP JUMPDEST JUMPDEST PUSH2 0x5C6 DUP5 DUP3 DUP6 ADD PUSH2 0x4FC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x609 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x5EE JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x618 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x629 DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x633 DUP2 DUP6 PUSH2 0x5DA JUMP JUMPDEST SWAP4 POP PUSH2 0x643 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5EB JUMP JUMPDEST PUSH2 0x64C DUP2 PUSH2 0x3EE JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x66C PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x34D JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x67E DUP2 DUP5 PUSH2 0x61E JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x69D DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x6A7 DUP2 DUP6 PUSH2 0x687 JUMP JUMPDEST SWAP4 POP PUSH2 0x6B7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5EB JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6CF DUP3 DUP5 PUSH2 0x692 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x721 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x735 JUMPI PUSH2 0x734 PUSH2 0x6DA JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xAB MSTORE OR DUP5 LOG4 0xF9 0xBF NUMBER 0xCB 0x1E GAS PUSH24 0x826817AF2F14EFB5CA97B06018744945A735466064736F6C PUSH4 0x43000808 STOP CALLER ",
"sourceMap": "145:674:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;529:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;419:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;626:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;356:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;325:22;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;529:89;570:7;596:14;;589:21;;529:89;:::o;419:98::-;494:15;477:14;:32;;;;419:98;:::o;626:190::-;709:6;721:30;;;;;;;;728:15;721:30;;;;745:5;721:30;;;709:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;793:15;763:20;784:5;763:27;;;;;;:::i;:::-;;;;;;;;;;;;;:45;;;;626:190;;:::o;356:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;325:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o;1377:117::-;1486:1;1483;1476:12;1500:117;1609:1;1606;1599:12;1623:102;1664:6;1715:2;1711:7;1706:2;1699:5;1695:14;1691:28;1681:38;;1623:102;;;:::o;1731:180::-;1779:77;1776:1;1769:88;1876:4;1873:1;1866:15;1900:4;1897:1;1890:15;1917:281;2000:27;2022:4;2000:27;:::i;:::-;1992:6;1988:40;2130:6;2118:10;2115:22;2094:18;2082:10;2079:34;2076:62;2073:88;;;2141:18;;:::i;:::-;2073:88;2181:10;2177:2;2170:22;1960:238;1917:281;;:::o;2204:129::-;2238:6;2265:20;;:::i;:::-;2255:30;;2294:33;2322:4;2314:6;2294:33;:::i;:::-;2204:129;;;:::o;2339:308::-;2401:4;2491:18;2483:6;2480:30;2477:56;;;2513:18;;:::i;:::-;2477:56;2551:29;2573:6;2551:29;:::i;:::-;2543:37;;2635:4;2629;2625:15;2617:23;;2339:308;;;:::o;2653:154::-;2737:6;2732:3;2727;2714:30;2799:1;2790:6;2785:3;2781:16;2774:27;2653:154;;;:::o;2813:412::-;2891:5;2916:66;2932:49;2974:6;2932:49;:::i;:::-;2916:66;:::i;:::-;2907:75;;3005:6;2998:5;2991:21;3043:4;3036:5;3032:16;3081:3;3072:6;3067:3;3063:16;3060:25;3057:112;;;3088:79;;:::i;:::-;3057:112;3178:41;3212:6;3207:3;3202;3178:41;:::i;:::-;2897:328;2813:412;;;;;:::o;3245:340::-;3301:5;3350:3;3343:4;3335:6;3331:17;3327:27;3317:122;;3358:79;;:::i;:::-;3317:122;3475:6;3462:20;3500:79;3575:3;3567:6;3560:4;3552:6;3548:17;3500:79;:::i;:::-;3491:88;;3307:278;3245:340;;;;:::o;3591:654::-;3669:6;3677;3726:2;3714:9;3705:7;3701:23;3697:32;3694:119;;;3732:79;;:::i;:::-;3694:119;3880:1;3869:9;3865:17;3852:31;3910:18;3902:6;3899:30;3896:117;;;3932:79;;:::i;:::-;3896:117;4037:63;4092:7;4083:6;4072:9;4068:22;4037:63;:::i;:::-;4027:73;;3823:287;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3591:654;;;;;:::o;4251:509::-;4320:6;4369:2;4357:9;4348:7;4344:23;4340:32;4337:119;;;4375:79;;:::i;:::-;4337:119;4523:1;4512:9;4508:17;4495:31;4553:18;4545:6;4542:30;4539:117;;;4575:79;;:::i;:::-;4539:117;4680:63;4735:7;4726:6;4715:9;4711:22;4680:63;:::i;:::-;4670:73;;4466:287;4251:509;;;;:::o;4766:99::-;4818:6;4852:5;4846:12;4836:22;;4766:99;;;:::o;4871:169::-;4955:11;4989:6;4984:3;4977:19;5029:4;5024:3;5020:14;5005:29;;4871:169;;;;:::o;5046:307::-;5114:1;5124:113;5138:6;5135:1;5132:13;5124:113;;;5223:1;5218:3;5214:11;5208:18;5204:1;5199:3;5195:11;5188:39;5160:2;5157:1;5153:10;5148:15;;5124:113;;;5255:6;5252:1;5249:13;5246:101;;;5335:1;5326:6;5321:3;5317:16;5310:27;5246:101;5095:258;5046:307;;;:::o;5359:364::-;5447:3;5475:39;5508:5;5475:39;:::i;:::-;5530:71;5594:6;5589:3;5530:71;:::i;:::-;5523:78;;5610:52;5655:6;5650:3;5643:4;5636:5;5632:16;5610:52;:::i;:::-;5687:29;5709:6;5687:29;:::i;:::-;5682:3;5678:39;5671:46;;5451:272;5359:364;;;;:::o;5729:423::-;5870:4;5908:2;5897:9;5893:18;5885:26;;5921:71;5989:1;5978:9;5974:17;5965:6;5921:71;:::i;:::-;6039:9;6033:4;6029:20;6024:2;6013:9;6009:18;6002:48;6067:78;6140:4;6131:6;6067:78;:::i;:::-;6059:86;;5729:423;;;;;:::o;6158:148::-;6260:11;6297:3;6282:18;;6158:148;;;;:::o;6312:377::-;6418:3;6446:39;6479:5;6446:39;:::i;:::-;6501:89;6583:6;6578:3;6501:89;:::i;:::-;6494:96;;6599:52;6644:6;6639:3;6632:4;6625:5;6621:16;6599:52;:::i;:::-;6676:6;6671:3;6667:16;6660:23;;6422:267;6312:377;;;;:::o;6695:275::-;6827:3;6849:95;6940:3;6931:6;6849:95;:::i;:::-;6842:102;;6961:3;6954:10;;6695:275;;;;:::o;6976:180::-;7024:77;7021:1;7014:88;7121:4;7118:1;7111:15;7145:4;7142:1;7135:15;7162:320;7206:6;7243:1;7237:4;7233:12;7223:22;;7290:1;7284:4;7280:12;7311:18;7301:81;;7367:4;7359:6;7355:17;7345:27;;7301:81;7429:2;7421:6;7418:14;7398:18;7395:38;7392:84;;;7448:18;;:::i;:::-;7392:84;7213:269;7162:320;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "381000",
"executionCost": "418",
"totalCost": "381418"
},
"external": {
"addPerson(string,uint256)": "infinite",
"nameToFavoriteNumber(string)": "infinite",
"people(uint256)": "infinite",
"retrieve()": "2415",
"store(uint256)": "22520"
}
},
"methodIdentifiers": {
"addPerson(string,uint256)": "6f760f41",
"nameToFavoriteNumber(string)": "8bab8dd5",
"people(uint256)": "9e7a13ad",
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavoriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favoriteNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.8+commit.dddeac2f"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavoriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favoriteNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/StorageFactory.sol": "SimpleStorage"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/StorageFactory.sol": {
"keccak256": "0x7d9b42661a91a5291f84a8c6c606be4763ab674b4995e4276caa98ca8f9ea93d",
"license": "MIT",
"urls": [
"bzz-raw://9b7d62586141dedd2966d06e29e4b762cb1d7ccfc548b3866fb2b9f133ab3ab5",
"dweb:/ipfs/QmWvfiY8p15k2qsqVWDXFNW7yXV4EJjjYYt3GUibpJMfV3"
]
}
},
"version": 1
}
{
"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": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610cd0806100206000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80631563700f1461005157806364591bf11461006d5780639fa05b281461009d578063c5f19c20146100a7575b600080fd5b61006b60048036038101906100669190610367565b6100d7565b005b610087600480360381019061008291906103a7565b610189565b6040516100949190610453565b60405180910390f35b6100a56101c8565b005b6100c160048036038101906100bc91906103a7565b61025b565b6040516100ce919061047d565b60405180910390f35b60008083815481106100ec576100eb610498565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16636057361d836040518263ffffffff1660e01b8152600401610152919061047d565b600060405180830381600087803b15801561016c57600080fd5b505af1158015610180573d6000803e3d6000fd5b50505050505050565b6000818154811061019957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006040516101d69061031f565b604051809103906000f0801580156101f2573d6000803e3d6000fd5b5090506000819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008082815481106102705761026f610498565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e64cec16040518163ffffffff1660e01b815260040160206040518083038186803b1580156102e057600080fd5b505afa1580156102f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061031891906104dc565b9050919050565b6107918061050a83390190565b600080fd5b6000819050919050565b61034481610331565b811461034f57600080fd5b50565b6000813590506103618161033b565b92915050565b6000806040838503121561037e5761037d61032c565b5b600061038c85828601610352565b925050602061039d85828601610352565b9150509250929050565b6000602082840312156103bd576103bc61032c565b5b60006103cb84828501610352565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061041961041461040f846103d4565b6103f4565b6103d4565b9050919050565b600061042b826103fe565b9050919050565b600061043d82610420565b9050919050565b61044d81610432565b82525050565b60006020820190506104686000830184610444565b92915050565b61047781610331565b82525050565b6000602082019050610492600083018461046e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506104d68161033b565b92915050565b6000602082840312156104f2576104f161032c565b5b6000610500848285016104c7565b9150509291505056fe608060405234801561001057600080fd5b50610771806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780638bab8dd5146100b25780639e7a13ad146100e2575b600080fd5b610064610113565b604051610071919061035c565b60405180910390f35b610094600480360381019061008f91906103b7565b61011c565b005b6100b060048036038101906100ab919061052a565b610126565b005b6100cc60048036038101906100c79190610586565b6101b6565b6040516100d9919061035c565b60405180910390f35b6100fc60048036038101906100f791906103b7565b6101e4565b60405161010a929190610657565b60405180910390f35b60008054905090565b8060008190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908051906020019061018c9291906102a0565b505050806002836040516101a091906106c3565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b600181815481106101f457600080fd5b906000526020600020906002020160009150905080600001549080600101805461021d90610709565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610709565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905082565b8280546102ac90610709565b90600052602060002090601f0160209004810192826102ce5760008555610315565b82601f106102e757805160ff1916838001178555610315565b82800160010185558215610315579182015b828111156103145782518255916020019190600101906102f9565b5b5090506103229190610326565b5090565b5b8082111561033f576000816000905550600101610327565b5090565b6000819050919050565b61035681610343565b82525050565b6000602082019050610371600083018461034d565b92915050565b6000604051905090565b600080fd5b600080fd5b61039481610343565b811461039f57600080fd5b50565b6000813590506103b18161038b565b92915050565b6000602082840312156103cd576103cc610381565b5b60006103db848285016103a2565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610437826103ee565b810181811067ffffffffffffffff82111715610456576104556103ff565b5b80604052505050565b6000610469610377565b9050610475828261042e565b919050565b600067ffffffffffffffff821115610495576104946103ff565b5b61049e826103ee565b9050602081019050919050565b82818337600083830152505050565b60006104cd6104c88461047a565b61045f565b9050828152602081018484840111156104e9576104e86103e9565b5b6104f48482856104ab565b509392505050565b600082601f830112610511576105106103e4565b5b81356105218482602086016104ba565b91505092915050565b6000806040838503121561054157610540610381565b5b600083013567ffffffffffffffff81111561055f5761055e610386565b5b61056b858286016104fc565b925050602061057c858286016103a2565b9150509250929050565b60006020828403121561059c5761059b610381565b5b600082013567ffffffffffffffff8111156105ba576105b9610386565b5b6105c6848285016104fc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156106095780820151818401526020810190506105ee565b83811115610618576000848401525b50505050565b6000610629826105cf565b61063381856105da565b93506106438185602086016105eb565b61064c816103ee565b840191505092915050565b600060408201905061066c600083018561034d565b818103602083015261067e818461061e565b90509392505050565b600081905092915050565b600061069d826105cf565b6106a78185610687565b93506106b78185602086016105eb565b80840191505092915050565b60006106cf8284610692565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061072157607f821691505b60208210811415610735576107346106da565b5b5091905056fea264697066735822122063b91a96d575756da6f03f70c81ccb185cfb141ab2cf7073c7d6277c927dd3ec64736f6c63430008080033a26469706673582212201566c5d78bc68c501649fcf3f5109727c5cad31386cfddbc12c1f5bd57987a9164736f6c63430008080033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xCD0 DUP1 PUSH2 0x20 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 0x1563700F EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x64591BF1 EQ PUSH2 0x6D JUMPI DUP1 PUSH4 0x9FA05B28 EQ PUSH2 0x9D JUMPI DUP1 PUSH4 0xC5F19C20 EQ PUSH2 0xA7 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x367 JUMP JUMPDEST PUSH2 0xD7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x87 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x82 SWAP2 SWAP1 PUSH2 0x3A7 JUMP JUMPDEST PUSH2 0x189 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x94 SWAP2 SWAP1 PUSH2 0x453 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xA5 PUSH2 0x1C8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xBC SWAP2 SWAP1 PUSH2 0x3A7 JUMP JUMPDEST PUSH2 0x25B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCE SWAP2 SWAP1 PUSH2 0x47D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0xEC JUMPI PUSH2 0xEB PUSH2 0x498 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6057361D DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x47D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x180 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x199 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x1D6 SWAP1 PUSH2 0x31F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH2 0x1F2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x270 JUMPI PUSH2 0x26F PUSH2 0x498 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x2E64CEC1 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2F4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x318 SWAP2 SWAP1 PUSH2 0x4DC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x791 DUP1 PUSH2 0x50A DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x344 DUP2 PUSH2 0x331 JUMP JUMPDEST DUP2 EQ PUSH2 0x34F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x361 DUP2 PUSH2 0x33B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x37E JUMPI PUSH2 0x37D PUSH2 0x32C JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x38C DUP6 DUP3 DUP7 ADD PUSH2 0x352 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x39D DUP6 DUP3 DUP7 ADD PUSH2 0x352 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3BD JUMPI PUSH2 0x3BC PUSH2 0x32C JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3CB DUP5 DUP3 DUP6 ADD PUSH2 0x352 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x419 PUSH2 0x414 PUSH2 0x40F DUP5 PUSH2 0x3D4 JUMP JUMPDEST PUSH2 0x3F4 JUMP JUMPDEST PUSH2 0x3D4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42B DUP3 PUSH2 0x3FE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43D DUP3 PUSH2 0x420 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x44D DUP2 PUSH2 0x432 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x468 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x444 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x477 DUP2 PUSH2 0x331 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x492 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x46E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x4D6 DUP2 PUSH2 0x33B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F2 JUMPI PUSH2 0x4F1 PUSH2 0x32C JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x500 DUP5 DUP3 DUP6 ADD PUSH2 0x4C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x771 DUP1 PUSH2 0x20 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 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xE2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x52A JUMP JUMPDEST PUSH2 0x126 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x586 JUMP JUMPDEST PUSH2 0x1B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD9 SWAP2 SWAP1 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF7 SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST PUSH2 0x1E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP3 SWAP2 SWAP1 PUSH2 0x657 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP 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 0x18C SWAP3 SWAP2 SWAP1 PUSH2 0x2A0 JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1A0 SWAP2 SWAP1 PUSH2 0x6C3 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x21D SWAP1 PUSH2 0x709 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 0x249 SWAP1 PUSH2 0x709 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x296 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x26B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x296 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 0x279 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2AC SWAP1 PUSH2 0x709 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2CE JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x315 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2E7 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x315 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x315 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x314 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2F9 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x322 SWAP2 SWAP1 PUSH2 0x326 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x33F JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x327 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x356 DUP2 PUSH2 0x343 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x371 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x34D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x394 DUP2 PUSH2 0x343 JUMP JUMPDEST DUP2 EQ PUSH2 0x39F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B1 DUP2 PUSH2 0x38B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3CD JUMPI PUSH2 0x3CC PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3DB DUP5 DUP3 DUP6 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x437 DUP3 PUSH2 0x3EE JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x456 JUMPI PUSH2 0x455 PUSH2 0x3FF JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x469 PUSH2 0x377 JUMP JUMPDEST SWAP1 POP PUSH2 0x475 DUP3 DUP3 PUSH2 0x42E JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x495 JUMPI PUSH2 0x494 PUSH2 0x3FF JUMP JUMPDEST JUMPDEST PUSH2 0x49E DUP3 PUSH2 0x3EE JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4CD PUSH2 0x4C8 DUP5 PUSH2 0x47A JUMP JUMPDEST PUSH2 0x45F JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4E9 JUMPI PUSH2 0x4E8 PUSH2 0x3E9 JUMP JUMPDEST JUMPDEST PUSH2 0x4F4 DUP5 DUP3 DUP6 PUSH2 0x4AB JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x511 JUMPI PUSH2 0x510 PUSH2 0x3E4 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x521 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4BA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x541 JUMPI PUSH2 0x540 PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x55F JUMPI PUSH2 0x55E PUSH2 0x386 JUMP JUMPDEST JUMPDEST PUSH2 0x56B DUP6 DUP3 DUP7 ADD PUSH2 0x4FC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x57C DUP6 DUP3 DUP7 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x59C JUMPI PUSH2 0x59B PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5BA JUMPI PUSH2 0x5B9 PUSH2 0x386 JUMP JUMPDEST JUMPDEST PUSH2 0x5C6 DUP5 DUP3 DUP6 ADD PUSH2 0x4FC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x609 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x5EE JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x618 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x629 DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x633 DUP2 DUP6 PUSH2 0x5DA JUMP JUMPDEST SWAP4 POP PUSH2 0x643 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5EB JUMP JUMPDEST PUSH2 0x64C DUP2 PUSH2 0x3EE JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x66C PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x34D JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x67E DUP2 DUP5 PUSH2 0x61E JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x69D DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x6A7 DUP2 DUP6 PUSH2 0x687 JUMP JUMPDEST SWAP4 POP PUSH2 0x6B7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5EB JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6CF DUP3 DUP5 PUSH2 0x692 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x721 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x735 JUMPI PUSH2 0x734 PUSH2 0x6DA JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH4 0xB91A96D5 PUSH22 0x756DA6F03F70C81CCB185CFB141AB2CF7073C7D6277C SWAP3 PUSH30 0xD3EC64736F6C63430008080033A26469706673582212201566C5D78BC68C POP AND 0x49 0xFC RETURN CREATE2 LT SWAP8 0x27 0xC5 0xCA 0xD3 SGT DUP7 0xCF 0xDD 0xBC SLT 0xC1 CREATE2 0xBD JUMPI SWAP9 PUSH27 0x9164736F6C63430008080033000000000000000000000000000000 ",
"sourceMap": "176:698:1:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@CreateSimpleStorageContract_83": {
"entryPoint": 456,
"id": 83,
"parameterSlots": 0,
"returnSlots": 0
},
"@sfGet_118": {
"entryPoint": 603,
"id": 118,
"parameterSlots": 1,
"returnSlots": 1
},
"@sfStore_104": {
"entryPoint": 215,
"id": 104,
"parameterSlots": 2,
"returnSlots": 0
},
"@simpleStorageArray_65": {
"entryPoint": 393,
"id": 65,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 850,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256_fromMemory": {
"entryPoint": 1223,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 935,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256_fromMemory": {
"entryPoint": 1244,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_uint256": {
"entryPoint": 871,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_contract$_SimpleStorage_$58_to_t_address_fromStack": {
"entryPoint": 1092,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1134,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_contract$_SimpleStorage_$58__to_t_address__fromStack_reversed": {
"entryPoint": 1107,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1149,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 980,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 817,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_contract$_SimpleStorage_$58_to_t_address": {
"entryPoint": 1074,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_address": {
"entryPoint": 1056,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_uint160": {
"entryPoint": 1022,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"identity": {
"entryPoint": 1012,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x32": {
"entryPoint": 1176,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 812,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 827,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3621:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:2",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:2"
},
"nodeType": "YulFunctionCall",
"src": "67:9:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:2"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:2",
"type": ""
}
],
"src": "7:75:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:2"
},
"nodeType": "YulFunctionCall",
"src": "187:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:2"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:2"
},
"nodeType": "YulFunctionCall",
"src": "310:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:2"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:32:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:16:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "400:5:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:2"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:2",
"type": ""
}
],
"src": "334:77:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "460:79:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "517:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "519:6:2"
},
"nodeType": "YulFunctionCall",
"src": "519:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "519:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "508:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "490:17:2"
},
"nodeType": "YulFunctionCall",
"src": "490:24:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "480:2:2"
},
"nodeType": "YulFunctionCall",
"src": "480:35:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "473:6:2"
},
"nodeType": "YulFunctionCall",
"src": "473:43:2"
},
"nodeType": "YulIf",
"src": "470:63:2"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "453:5:2",
"type": ""
}
],
"src": "417:122:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "597:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "607:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "629:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "616:12:2"
},
"nodeType": "YulFunctionCall",
"src": "616:20:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "607:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "672:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "645:26:2"
},
"nodeType": "YulFunctionCall",
"src": "645:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "645:33:2"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "575:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "583:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "591:5:2",
"type": ""
}
],
"src": "545:139:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "773:391:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "819:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "821:77:2"
},
"nodeType": "YulFunctionCall",
"src": "821:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "821:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "794:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "803:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "790:3:2"
},
"nodeType": "YulFunctionCall",
"src": "790:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "815:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "786:3:2"
},
"nodeType": "YulFunctionCall",
"src": "786:32:2"
},
"nodeType": "YulIf",
"src": "783:119:2"
},
{
"nodeType": "YulBlock",
"src": "912:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "941:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "931:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "956:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "991:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1002:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "987:3:2"
},
"nodeType": "YulFunctionCall",
"src": "987:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1011:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "966:20:2"
},
"nodeType": "YulFunctionCall",
"src": "966:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "956:6:2"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1039:118:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1054:16:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1068:2:2",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1058:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1084:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1119:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1130:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1115:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1115:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1139:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1094:20:2"
},
"nodeType": "YulFunctionCall",
"src": "1094:53:2"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1084:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "735:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "746:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "758:6:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "766:6:2",
"type": ""
}
],
"src": "690:474:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1236:263:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1282:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1284:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1284:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1284:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1257:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1266:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1253:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1253:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1278:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1249:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1249:32:2"
},
"nodeType": "YulIf",
"src": "1246:119:2"
},
{
"nodeType": "YulBlock",
"src": "1375:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1390:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1404:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1394:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1419:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1454:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1465:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1450:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1450:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1474:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1429:20:2"
},
"nodeType": "YulFunctionCall",
"src": "1429:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1419:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1206:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1217:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1229:6:2",
"type": ""
}
],
"src": "1170:329:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1550:81:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1560:65:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1575:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1582:42:2",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1571:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1571:54:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1560:7:2"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1532:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1542:7:2",
"type": ""
}
],
"src": "1505:126:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1669:28:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1679:12:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1686:5:2"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1679:3:2"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1655:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1665:3:2",
"type": ""
}
],
"src": "1637:60:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1763:82:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1773:66:2",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1831:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1813:17:2"
},
"nodeType": "YulFunctionCall",
"src": "1813:24:2"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "1804:8:2"
},
"nodeType": "YulFunctionCall",
"src": "1804:34:2"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1786:17:2"
},
"nodeType": "YulFunctionCall",
"src": "1786:53:2"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "1773:9:2"
}
]
}
]
},
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1743:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "1753:9:2",
"type": ""
}
],
"src": "1703:142:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1911:66:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1921:50:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1965:5:2"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulIdentifier",
"src": "1934:30:2"
},
"nodeType": "YulFunctionCall",
"src": "1934:37:2"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "1921:9:2"
}
]
}
]
},
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1891:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "1901:9:2",
"type": ""
}
],
"src": "1851:126:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2063:66:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2073:50:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2117:5:2"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulIdentifier",
"src": "2086:30:2"
},
"nodeType": "YulFunctionCall",
"src": "2086:37:2"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "2073:9:2"
}
]
}
]
},
"name": "convert_t_contract$_SimpleStorage_$58_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2043:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "2053:9:2",
"type": ""
}
],
"src": "1983:146:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2220:86:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2237:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2293:5:2"
}
],
"functionName": {
"name": "convert_t_contract$_SimpleStorage_$58_to_t_address",
"nodeType": "YulIdentifier",
"src": "2242:50:2"
},
"nodeType": "YulFunctionCall",
"src": "2242:57:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2230:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2230:70:2"
},
"nodeType": "YulExpressionStatement",
"src": "2230:70:2"
}
]
},
"name": "abi_encode_t_contract$_SimpleStorage_$58_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2208:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2215:3:2",
"type": ""
}
],
"src": "2135:171:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2430:144:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2440:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2452:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2463:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2448:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2448:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2440:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2540:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2553:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2564:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2549:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2549:17:2"
}
],
"functionName": {
"name": "abi_encode_t_contract$_SimpleStorage_$58_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "2476:63:2"
},
"nodeType": "YulFunctionCall",
"src": "2476:91:2"
},
"nodeType": "YulExpressionStatement",
"src": "2476:91:2"
}
]
},
"name": "abi_encode_tuple_t_contract$_SimpleStorage_$58__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2402:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2414:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2425:4:2",
"type": ""
}
],
"src": "2312:262:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2645:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2662:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2685:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2667:17:2"
},
"nodeType": "YulFunctionCall",
"src": "2667:24:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2655:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2655:37:2"
},
"nodeType": "YulExpressionStatement",
"src": "2655:37:2"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2633:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2640:3:2",
"type": ""
}
],
"src": "2580:118:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2802:124:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2812:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2824:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2835:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2820:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2820:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2812:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2892:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2905:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2916:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2901:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2901:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2848:43:2"
},
"nodeType": "YulFunctionCall",
"src": "2848:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "2848:71:2"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2774:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2786:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2797:4:2",
"type": ""
}
],
"src": "2704:222:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2960:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2977:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2980:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2970:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2970:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "2970:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3074:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3077:4:2",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3067:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3067:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "3067:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3098:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3101:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3091:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3091:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "3091:15:2"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "2932:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3181:80:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3191:22:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3206:6:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3200:5:2"
},
"nodeType": "YulFunctionCall",
"src": "3200:13:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3191:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3249:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3222:26:2"
},
"nodeType": "YulFunctionCall",
"src": "3222:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "3222:33:2"
}
]
},
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3159:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3167:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3175:5:2",
"type": ""
}
],
"src": "3118:143:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3344:274:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3390:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3392:77:2"
},
"nodeType": "YulFunctionCall",
"src": "3392:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "3392:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3365:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3374:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3361:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3361:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3386:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3357:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3357:32:2"
},
"nodeType": "YulIf",
"src": "3354:119:2"
},
{
"nodeType": "YulBlock",
"src": "3483:128:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3498:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3512:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3502:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3527:74:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3573:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3584:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3569:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3569:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3593:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256_fromMemory",
"nodeType": "YulIdentifier",
"src": "3537:31:2"
},
"nodeType": "YulFunctionCall",
"src": "3537:64:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3527:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3314:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3325:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3337:6:2",
"type": ""
}
],
"src": "3267:351:2"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256t_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { 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 let offset := 32\n\n value1 := abi_decode_t_uint256(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 cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint160_to_t_uint160(value) -> converted {\n converted := cleanup_t_uint160(identity(cleanup_t_uint160(value)))\n }\n\n function convert_t_uint160_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_uint160(value)\n }\n\n function convert_t_contract$_SimpleStorage_$58_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_address(value)\n }\n\n function abi_encode_t_contract$_SimpleStorage_$58_to_t_address_fromStack(value, pos) {\n mstore(pos, convert_t_contract$_SimpleStorage_$58_to_t_address(value))\n }\n\n function abi_encode_tuple_t_contract$_SimpleStorage_$58__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_contract$_SimpleStorage_$58_to_t_address_fromStack(value0, add(headStart, 0))\n\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 panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function abi_decode_t_uint256_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256_fromMemory(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_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061004c5760003560e01c80631563700f1461005157806364591bf11461006d5780639fa05b281461009d578063c5f19c20146100a7575b600080fd5b61006b60048036038101906100669190610367565b6100d7565b005b610087600480360381019061008291906103a7565b610189565b6040516100949190610453565b60405180910390f35b6100a56101c8565b005b6100c160048036038101906100bc91906103a7565b61025b565b6040516100ce919061047d565b60405180910390f35b60008083815481106100ec576100eb610498565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff16636057361d836040518263ffffffff1660e01b8152600401610152919061047d565b600060405180830381600087803b15801561016c57600080fd5b505af1158015610180573d6000803e3d6000fd5b50505050505050565b6000818154811061019957600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006040516101d69061031f565b604051809103906000f0801580156101f2573d6000803e3d6000fd5b5090506000819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008082815481106102705761026f610498565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e64cec16040518163ffffffff1660e01b815260040160206040518083038186803b1580156102e057600080fd5b505afa1580156102f4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061031891906104dc565b9050919050565b6107918061050a83390190565b600080fd5b6000819050919050565b61034481610331565b811461034f57600080fd5b50565b6000813590506103618161033b565b92915050565b6000806040838503121561037e5761037d61032c565b5b600061038c85828601610352565b925050602061039d85828601610352565b9150509250929050565b6000602082840312156103bd576103bc61032c565b5b60006103cb84828501610352565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600061041961041461040f846103d4565b6103f4565b6103d4565b9050919050565b600061042b826103fe565b9050919050565b600061043d82610420565b9050919050565b61044d81610432565b82525050565b60006020820190506104686000830184610444565b92915050565b61047781610331565b82525050565b6000602082019050610492600083018461046e565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506104d68161033b565b92915050565b6000602082840312156104f2576104f161032c565b5b6000610500848285016104c7565b9150509291505056fe608060405234801561001057600080fd5b50610771806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780638bab8dd5146100b25780639e7a13ad146100e2575b600080fd5b610064610113565b604051610071919061035c565b60405180910390f35b610094600480360381019061008f91906103b7565b61011c565b005b6100b060048036038101906100ab919061052a565b610126565b005b6100cc60048036038101906100c79190610586565b6101b6565b6040516100d9919061035c565b60405180910390f35b6100fc60048036038101906100f791906103b7565b6101e4565b60405161010a929190610657565b60405180910390f35b60008054905090565b8060008190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908051906020019061018c9291906102a0565b505050806002836040516101a091906106c3565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b600181815481106101f457600080fd5b906000526020600020906002020160009150905080600001549080600101805461021d90610709565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610709565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905082565b8280546102ac90610709565b90600052602060002090601f0160209004810192826102ce5760008555610315565b82601f106102e757805160ff1916838001178555610315565b82800160010185558215610315579182015b828111156103145782518255916020019190600101906102f9565b5b5090506103229190610326565b5090565b5b8082111561033f576000816000905550600101610327565b5090565b6000819050919050565b61035681610343565b82525050565b6000602082019050610371600083018461034d565b92915050565b6000604051905090565b600080fd5b600080fd5b61039481610343565b811461039f57600080fd5b50565b6000813590506103b18161038b565b92915050565b6000602082840312156103cd576103cc610381565b5b60006103db848285016103a2565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610437826103ee565b810181811067ffffffffffffffff82111715610456576104556103ff565b5b80604052505050565b6000610469610377565b9050610475828261042e565b919050565b600067ffffffffffffffff821115610495576104946103ff565b5b61049e826103ee565b9050602081019050919050565b82818337600083830152505050565b60006104cd6104c88461047a565b61045f565b9050828152602081018484840111156104e9576104e86103e9565b5b6104f48482856104ab565b509392505050565b600082601f830112610511576105106103e4565b5b81356105218482602086016104ba565b91505092915050565b6000806040838503121561054157610540610381565b5b600083013567ffffffffffffffff81111561055f5761055e610386565b5b61056b858286016104fc565b925050602061057c858286016103a2565b9150509250929050565b60006020828403121561059c5761059b610381565b5b600082013567ffffffffffffffff8111156105ba576105b9610386565b5b6105c6848285016104fc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156106095780820151818401526020810190506105ee565b83811115610618576000848401525b50505050565b6000610629826105cf565b61063381856105da565b93506106438185602086016105eb565b61064c816103ee565b840191505092915050565b600060408201905061066c600083018561034d565b818103602083015261067e818461061e565b90509392505050565b600081905092915050565b600061069d826105cf565b6106a78185610687565b93506106b78185602086016105eb565b80840191505092915050565b60006106cf8284610692565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061072157607f821691505b60208210811415610735576107346106da565b5b5091905056fea264697066735822122063b91a96d575756da6f03f70c81ccb185cfb141ab2cf7073c7d6277c927dd3ec64736f6c63430008080033a26469706673582212201566c5d78bc68c501649fcf3f5109727c5cad31386cfddbc12c1f5bd57987a9164736f6c63430008080033",
"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 0x1563700F EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x64591BF1 EQ PUSH2 0x6D JUMPI DUP1 PUSH4 0x9FA05B28 EQ PUSH2 0x9D JUMPI DUP1 PUSH4 0xC5F19C20 EQ PUSH2 0xA7 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x6B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x367 JUMP JUMPDEST PUSH2 0xD7 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x87 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x82 SWAP2 SWAP1 PUSH2 0x3A7 JUMP JUMPDEST PUSH2 0x189 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x94 SWAP2 SWAP1 PUSH2 0x453 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xA5 PUSH2 0x1C8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xBC SWAP2 SWAP1 PUSH2 0x3A7 JUMP JUMPDEST PUSH2 0x25B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCE SWAP2 SWAP1 PUSH2 0x47D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0xEC JUMPI PUSH2 0xEB PUSH2 0x498 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x6057361D DUP4 PUSH1 0x40 MLOAD DUP3 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x47D JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x16C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL ISZERO DUP1 ISZERO PUSH2 0x180 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x199 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD PUSH2 0x1D6 SWAP1 PUSH2 0x31F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH2 0x1F2 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x270 JUMPI PUSH2 0x26F PUSH2 0x498 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x2E64CEC1 PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x2E0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x2F4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x318 SWAP2 SWAP1 PUSH2 0x4DC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x791 DUP1 PUSH2 0x50A DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x344 DUP2 PUSH2 0x331 JUMP JUMPDEST DUP2 EQ PUSH2 0x34F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x361 DUP2 PUSH2 0x33B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x37E JUMPI PUSH2 0x37D PUSH2 0x32C JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x38C DUP6 DUP3 DUP7 ADD PUSH2 0x352 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x39D DUP6 DUP3 DUP7 ADD PUSH2 0x352 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3BD JUMPI PUSH2 0x3BC PUSH2 0x32C JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3CB DUP5 DUP3 DUP6 ADD PUSH2 0x352 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x419 PUSH2 0x414 PUSH2 0x40F DUP5 PUSH2 0x3D4 JUMP JUMPDEST PUSH2 0x3F4 JUMP JUMPDEST PUSH2 0x3D4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42B DUP3 PUSH2 0x3FE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43D DUP3 PUSH2 0x420 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x44D DUP2 PUSH2 0x432 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x468 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x444 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x477 DUP2 PUSH2 0x331 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x492 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x46E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x4D6 DUP2 PUSH2 0x33B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4F2 JUMPI PUSH2 0x4F1 PUSH2 0x32C JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x500 DUP5 DUP3 DUP6 ADD PUSH2 0x4C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x771 DUP1 PUSH2 0x20 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 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xE2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x52A JUMP JUMPDEST PUSH2 0x126 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x586 JUMP JUMPDEST PUSH2 0x1B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD9 SWAP2 SWAP1 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF7 SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST PUSH2 0x1E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP3 SWAP2 SWAP1 PUSH2 0x657 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP 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 0x18C SWAP3 SWAP2 SWAP1 PUSH2 0x2A0 JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1A0 SWAP2 SWAP1 PUSH2 0x6C3 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x21D SWAP1 PUSH2 0x709 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 0x249 SWAP1 PUSH2 0x709 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x296 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x26B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x296 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 0x279 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2AC SWAP1 PUSH2 0x709 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2CE JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x315 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2E7 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x315 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x315 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x314 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2F9 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x322 SWAP2 SWAP1 PUSH2 0x326 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x33F JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x327 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x356 DUP2 PUSH2 0x343 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x371 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x34D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x394 DUP2 PUSH2 0x343 JUMP JUMPDEST DUP2 EQ PUSH2 0x39F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B1 DUP2 PUSH2 0x38B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3CD JUMPI PUSH2 0x3CC PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3DB DUP5 DUP3 DUP6 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x437 DUP3 PUSH2 0x3EE JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x456 JUMPI PUSH2 0x455 PUSH2 0x3FF JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x469 PUSH2 0x377 JUMP JUMPDEST SWAP1 POP PUSH2 0x475 DUP3 DUP3 PUSH2 0x42E JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x495 JUMPI PUSH2 0x494 PUSH2 0x3FF JUMP JUMPDEST JUMPDEST PUSH2 0x49E DUP3 PUSH2 0x3EE JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4CD PUSH2 0x4C8 DUP5 PUSH2 0x47A JUMP JUMPDEST PUSH2 0x45F JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4E9 JUMPI PUSH2 0x4E8 PUSH2 0x3E9 JUMP JUMPDEST JUMPDEST PUSH2 0x4F4 DUP5 DUP3 DUP6 PUSH2 0x4AB JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x511 JUMPI PUSH2 0x510 PUSH2 0x3E4 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x521 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4BA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x541 JUMPI PUSH2 0x540 PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x55F JUMPI PUSH2 0x55E PUSH2 0x386 JUMP JUMPDEST JUMPDEST PUSH2 0x56B DUP6 DUP3 DUP7 ADD PUSH2 0x4FC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x57C DUP6 DUP3 DUP7 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x59C JUMPI PUSH2 0x59B PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5BA JUMPI PUSH2 0x5B9 PUSH2 0x386 JUMP JUMPDEST JUMPDEST PUSH2 0x5C6 DUP5 DUP3 DUP6 ADD PUSH2 0x4FC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x609 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x5EE JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x618 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x629 DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x633 DUP2 DUP6 PUSH2 0x5DA JUMP JUMPDEST SWAP4 POP PUSH2 0x643 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5EB JUMP JUMPDEST PUSH2 0x64C DUP2 PUSH2 0x3EE JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x66C PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x34D JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x67E DUP2 DUP5 PUSH2 0x61E JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x69D DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x6A7 DUP2 DUP6 PUSH2 0x687 JUMP JUMPDEST SWAP4 POP PUSH2 0x6B7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5EB JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6CF DUP3 DUP5 PUSH2 0x692 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x721 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x735 JUMPI PUSH2 0x734 PUSH2 0x6DA JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH4 0xB91A96D5 PUSH22 0x756DA6F03F70C81CCB185CFB141AB2CF7073C7D6277C SWAP3 PUSH30 0xD3EC64736F6C63430008080033A26469706673582212201566C5D78BC68C POP AND 0x49 0xFC RETURN CREATE2 LT SWAP8 0x27 0xC5 0xCA 0xD3 SGT DUP7 0xCF 0xDD 0xBC SLT 0xC1 CREATE2 0xBD JUMPI SWAP9 PUSH27 0x9164736F6C63430008080033000000000000000000000000000000 ",
"sourceMap": "176:698:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;426:288;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;207:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;255:163;;;:::i;:::-;;722:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;426:288;585:27;615:18;634:19;615:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;585:69;;665:13;:19;;;685:20;665:41;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;509:205;426:288;;:::o;207:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;255:163::-;312:27;342:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;312:49;;372:18;396:13;372:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;301:117;255:163::o;722:149::-;787:7;813:18;832:19;813:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:48;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;806:57;;722:149;;;:::o;-1:-1:-1:-;;;;;;;;:::o;88:117:2:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:329::-;1229:6;1278:2;1266:9;1257:7;1253:23;1249:32;1246:119;;;1284:79;;:::i;:::-;1246:119;1404:1;1429:53;1474:7;1465:6;1454:9;1450:22;1429:53;:::i;:::-;1419:63;;1375:117;1170:329;;;;:::o;1505:126::-;1542:7;1582:42;1575:5;1571:54;1560:65;;1505:126;;;:::o;1637:60::-;1665:3;1686:5;1679:12;;1637:60;;;:::o;1703:142::-;1753:9;1786:53;1804:34;1813:24;1831:5;1813:24;:::i;:::-;1804:34;:::i;:::-;1786:53;:::i;:::-;1773:66;;1703:142;;;:::o;1851:126::-;1901:9;1934:37;1965:5;1934:37;:::i;:::-;1921:50;;1851:126;;;:::o;1983:146::-;2053:9;2086:37;2117:5;2086:37;:::i;:::-;2073:50;;1983:146;;;:::o;2135:171::-;2242:57;2293:5;2242:57;:::i;:::-;2237:3;2230:70;2135:171;;:::o;2312:262::-;2425:4;2463:2;2452:9;2448:18;2440:26;;2476:91;2564:1;2553:9;2549:17;2540:6;2476:91;:::i;:::-;2312:262;;;;:::o;2580:118::-;2667:24;2685:5;2667:24;:::i;:::-;2662:3;2655:37;2580:118;;:::o;2704:222::-;2797:4;2835:2;2824:9;2820:18;2812:26;;2848:71;2916:1;2905:9;2901:17;2892:6;2848:71;:::i;:::-;2704:222;;;;:::o;2932:180::-;2980:77;2977:1;2970:88;3077:4;3074:1;3067:15;3101:4;3098:1;3091:15;3118:143;3175:5;3206:6;3200:13;3191:22;;3222:33;3249:5;3222:33;:::i;:::-;3118:143;;;;:::o;3267:351::-;3337:6;3386:2;3374:9;3365:7;3361:23;3357:32;3354:119;;;3392:79;;:::i;:::-;3354:119;3512:1;3537:64;3593:7;3584:6;3573:9;3569:22;3537:64;:::i;:::-;3527:74;;3483:128;3267:351;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "656000",
"executionCost": "689",
"totalCost": "656689"
},
"external": {
"CreateSimpleStorageContract()": "infinite",
"sfGet(uint256)": "infinite",
"sfStore(uint256,uint256)": "infinite",
"simpleStorageArray(uint256)": "infinite"
}
},
"methodIdentifiers": {
"CreateSimpleStorageContract()": "9fa05b28",
"sfGet(uint256)": "c5f19c20",
"sfStore(uint256,uint256)": "1563700f",
"simpleStorageArray(uint256)": "64591bf1"
}
},
"abi": [
{
"inputs": [],
"name": "CreateSimpleStorageContract",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
}
],
"name": "sfGet",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_simpleStorageNumber",
"type": "uint256"
}
],
"name": "sfStore",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "simpleStorageArray",
"outputs": [
{
"internalType": "contract SimpleStorage",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.8+commit.dddeac2f"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "CreateSimpleStorageContract",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
}
],
"name": "sfGet",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_simpleStorageNumber",
"type": "uint256"
}
],
"name": "sfStore",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "simpleStorageArray",
"outputs": [
{
"internalType": "contract SimpleStorage",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/StorageFactory.sol": "StorageFactory"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/SimpleStorage.sol": {
"keccak256": "0x5b3631d52ec9577d9c75ab6ae1e0e58903b77a81c34fee8d66dea64858dc8e43",
"license": "MIT",
"urls": [
"bzz-raw://be32918a12b0c0428ae0c166a0f80fbfbbcaffd7fc8e3c86530159b5f2b14951",
"dweb:/ipfs/QmaiVf9diJArc5NmBpvhjouVu5VKNmPrP1RgvdyQ1gEhHx"
]
},
"contracts/StorageFactory.sol": {
"keccak256": "0x1c558aee55966c6786315b735ff53ddd49d7653a64973eeb6eee89191118d800",
"license": "MIT",
"urls": [
"bzz-raw://cd6a3cecb27fa6bcdd70950c4f2ab16732f19a756d66af1cea6cc1601ff386ca",
"dweb:/ipfs/QmdDrBjR3NY1aoaNqeNhx2izfAyn1jxAjJa4znDLWGgF9o"
]
}
},
"version": 1
}
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./StorageFactory.sol";
contract ExtraStorage is SimpleStorage {
function store(uint256 _favoriteNumber) public override {
favoriteNumber = _favoriteNumber + 5;
}
}
// I'm a comment!
// SPDX-License-Identifier: MIT
pragma solidity 0.8.8;
// pragma solidity ^0.8.0;
// pragma solidity >=0.8.0 <0.9.0;
contract SimpleStorage {
uint256 favoriteNumber;
struct People {
uint256 favoriteNumber;
string name;
}
// uint256[] public anArray;
People[] public people;
mapping(string => uint256) public nameToFavoriteNumber;
function store(uint256 _favoriteNumber) public virtual {
favoriteNumber = _favoriteNumber;
}
function retrieve() public view returns (uint256){
return favoriteNumber;
}
function addPerson(string memory _name, uint256 _favoriteNumber) public {
people.push(People(_favoriteNumber, _name));
nameToFavoriteNumber[_name] = _favoriteNumber;
}
}
// I'm a comment!
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// pragma solidity ^0.8.0;
// pragma solidity >=0.8.0 <0.9.0;
import "./SimpleStorage.sol";
contract StorageFactory {
SimpleStorage[] public simpleStorageArray;
function CreateSimpleStorageContract() public {
SimpleStorage simpleStorage = new SimpleStorage();
simpleStorageArray.push(simpleStorage);
}
function sfStore(uint256 _simpleStorageIndex, uint256 _simpleStorageNumber) public {
//Address
//ABI - Application Binary Interface
SimpleStorage simpleStorage = simpleStorageArray[_simpleStorageIndex];
simpleStorage.store(_simpleStorageNumber);
}
function sfGet(uint256 _simpleStorageIndex) public view returns (uint256){
return simpleStorageArray[_simpleStorageIndex].retrieve();
}
}
This file has been truncated, but you can view the full file.
{
"id": "0aed97fe1bc3e90fd6de885783627990",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.8",
"solcLongVersion": "0.8.8+commit.dddeac2f",
"input": {
"language": "Solidity",
"sources": {
"contracts/StorageFactory.sol": {
"content": "// I'm a comment!\r\n// SPDX-License-Identifier: MIT\r\n\r\npragma solidity ^0.8.0;\r\n// pragma solidity ^0.8.0;\r\n// pragma solidity >=0.8.0 <0.9.0;\r\nimport \"./SimpleStorage.sol\";\r\n\r\ncontract StorageFactory {\r\n SimpleStorage[] public simpleStorageArray;\r\n function CreateSimpleStorageContract() public {\r\n SimpleStorage simpleStorage = new SimpleStorage();\r\n simpleStorageArray.push(simpleStorage);\r\n }\r\n\r\n function sfStore(uint256 _simpleStorageIndex, uint256 _simpleStorageNumber) public {\r\n //Address\r\n //ABI - Application Binary Interface\r\n SimpleStorage simpleStorage = simpleStorageArray[_simpleStorageIndex];\r\n simpleStorage.store(_simpleStorageNumber);\r\n }\r\n\r\n function sfGet(uint256 _simpleStorageIndex) public view returns (uint256){\r\n SimpleStorage simpleStorage = simpleStorageArray[_simpleStorageIndex];\r\n return simpleStorage.retrieve();\r\n }\r\n}"
},
"contracts/SimpleStorage.sol": {
"content": "// I'm a comment!\r\n// SPDX-License-Identifier: MIT\r\n\r\npragma solidity 0.8.8;\r\n// pragma solidity ^0.8.0;\r\n// pragma solidity >=0.8.0 <0.9.0;\r\n\r\ncontract SimpleStorage {\r\n\r\n uint256 favoriteNumber;\r\n\r\n struct People {\r\n uint256 favoriteNumber;\r\n string name;\r\n }\r\n // uint256[] public anArray;\r\n People[] public people;\r\n\r\n mapping(string => uint256) public nameToFavoriteNumber;\r\n\r\n function store(uint256 _favoriteNumber) public {\r\n favoriteNumber = _favoriteNumber;\r\n }\r\n \r\n function retrieve() public view returns (uint256){\r\n return favoriteNumber;\r\n }\r\n\r\n function addPerson(string memory _name, uint256 _favoriteNumber) public {\r\n people.push(People(_favoriteNumber, _name));\r\n nameToFavoriteNumber[_name] = _favoriteNumber;\r\n }\r\n}\r\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": {
"contracts/SimpleStorage.sol": {
"SimpleStorage": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "_name",
"type": "string"
},
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "addPerson",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"name": "nameToFavoriteNumber",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "people",
"outputs": [
{
"internalType": "uint256",
"name": "favoriteNumber",
"type": "uint256"
},
{
"internalType": "string",
"name": "name",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_favoriteNumber",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/SimpleStorage.sol\":144:818 contract SimpleStorage {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/SimpleStorage.sol\":144:818 contract SimpleStorage {... */\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 0x2e64cec1\n eq\n tag_3\n jumpi\n dup1\n 0x6057361d\n eq\n tag_4\n jumpi\n dup1\n 0x6f760f41\n eq\n tag_5\n jumpi\n dup1\n 0x8bab8dd5\n eq\n tag_6\n jumpi\n dup1\n 0x9e7a13ad\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/SimpleStorage.sol\":528:617 function retrieve() public view returns (uint256){... */\n tag_3:\n tag_8\n tag_9\n jump\t// in\n tag_8:\n mload(0x40)\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":418:516 function store(uint256 _favoriteNumber) public {... */\n tag_4:\n tag_12\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n tag_15\n jump\t// in\n tag_12:\n stop\n /* \"contracts/SimpleStorage.sol\":625:815 function addPerson(string memory _name, uint256 _favoriteNumber) public {... */\n tag_5:\n tag_16\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\n tag_17:\n tag_19\n jump\t// in\n tag_16:\n stop\n /* \"contracts/SimpleStorage.sol\":355:409 mapping(string => uint256) public nameToFavoriteNumber */\n tag_6:\n tag_20\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_21\n swap2\n swap1\n tag_22\n jump\t// in\n tag_21:\n tag_23\n jump\t// in\n tag_20:\n mload(0x40)\n tag_24\n swap2\n swap1\n tag_11\n jump\t// in\n tag_24:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":324:346 People[] public people */\n tag_7:\n tag_25\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_26\n swap2\n swap1\n tag_14\n jump\t// in\n tag_26:\n tag_27\n jump\t// in\n tag_25:\n mload(0x40)\n tag_28\n swap3\n swap2\n swap1\n tag_29\n jump\t// in\n tag_28:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":528:617 function retrieve() public view returns (uint256){... */\n tag_9:\n /* \"contracts/SimpleStorage.sol\":569:576 uint256 */\n 0x00\n /* \"contracts/SimpleStorage.sol\":595:609 favoriteNumber */\n dup1\n sload\n /* \"contracts/SimpleStorage.sol\":588:609 return favoriteNumber */\n swap1\n pop\n /* \"contracts/SimpleStorage.sol\":528:617 function retrieve() public view returns (uint256){... */\n swap1\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":418:516 function store(uint256 _favoriteNumber) public {... */\n tag_15:\n /* \"contracts/SimpleStorage.sol\":493:508 _favoriteNumber */\n dup1\n /* \"contracts/SimpleStorage.sol\":476:490 favoriteNumber */\n 0x00\n /* \"contracts/SimpleStorage.sol\":476:508 favoriteNumber = _favoriteNumber */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/SimpleStorage.sol\":418:516 function store(uint256 _favoriteNumber) public {... */\n pop\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":625:815 function addPerson(string memory _name, uint256 _favoriteNumber) public {... */\n tag_19:\n /* \"contracts/SimpleStorage.sol\":708:714 people */\n 0x01\n /* \"contracts/SimpleStorage.sol\":720:750 People(_favoriteNumber, _name) */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n /* \"contracts/SimpleStorage.sol\":727:742 _favoriteNumber */\n dup4\n /* \"contracts/SimpleStorage.sol\":720:750 People(_favoriteNumber, _name) */\n dup2\n mstore\n 0x20\n add\n /* \"contracts/SimpleStorage.sol\":744:749 _name */\n dup5\n /* \"contracts/SimpleStorage.sol\":720:750 People(_favoriteNumber, _name) */\n dup2\n mstore\n pop\n /* \"contracts/SimpleStorage.sol\":708:751 people.push(People(_favoriteNumber, _name)) */\n swap1\n dup1\n 0x01\n dup2\n sload\n add\n dup1\n dup3\n sstore\n dup1\n swap2\n pop\n pop\n 0x01\n swap1\n sub\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\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_34\n swap3\n swap2\n swap1\n tag_35\n jump\t// in\n tag_34:\n pop\n pop\n pop\n /* \"contracts/SimpleStorage.sol\":792:807 _favoriteNumber */\n dup1\n /* \"contracts/SimpleStorage.sol\":762:782 nameToFavoriteNumber */\n 0x02\n /* \"contracts/SimpleStorage.sol\":783:788 _name */\n dup4\n /* \"contracts/SimpleStorage.sol\":762:789 nameToFavoriteNumber[_name] */\n mload(0x40)\n tag_36\n swap2\n swap1\n tag_37\n jump\t// in\n tag_36:\n swap1\n dup2\n mstore\n 0x20\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n keccak256\n /* \"contracts/SimpleStorage.sol\":762:807 nameToFavoriteNumber[_name] = _favoriteNumber */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/SimpleStorage.sol\":625:815 function addPerson(string memory _name, uint256 _favoriteNumber) public {... */\n pop\n pop\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":355:409 mapping(string => uint256) public nameToFavoriteNumber */\n tag_23:\n 0x02\n dup2\n dup1\n mload\n 0x20\n dup2\n add\n dup3\n add\n dup1\n mload\n dup5\n dup3\n mstore\n 0x20\n dup4\n add\n 0x20\n dup6\n add\n keccak256\n dup2\n dup4\n mstore\n dup1\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n 0x00\n swap2\n pop\n swap1\n pop\n sload\n dup2\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":324:346 People[] public people */\n tag_27:\n 0x01\n dup2\n dup2\n sload\n dup2\n lt\n tag_38\n jumpi\n 0x00\n dup1\n revert\n tag_38:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\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_40\n swap1\n tag_41\n jump\t// in\n tag_40:\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_42\n swap1\n tag_41\n jump\t// in\n tag_42:\n dup1\n iszero\n tag_43\n jumpi\n dup1\n 0x1f\n lt\n tag_44\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_43)\n tag_44:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_45:\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_45\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_43:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n dup3\n jump\t// out\n tag_35:\n dup3\n dup1\n sload\n tag_46\n swap1\n tag_41\n jump\t// in\n tag_46:\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_48\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_47)\n tag_48:\n dup3\n 0x1f\n lt\n tag_49\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_47)\n tag_49:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_47\n jumpi\n swap2\n dup3\n add\n tag_50:\n dup3\n dup2\n gt\n iszero\n tag_51\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_50)\n tag_51:\n tag_47:\n pop\n swap1\n pop\n tag_52\n swap2\n swap1\n tag_53\n jump\t// in\n tag_52:\n pop\n swap1\n jump\t// out\n tag_53:\n tag_54:\n dup1\n dup3\n gt\n iszero\n tag_55\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_54)\n tag_55:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:84 */\n tag_56:\n /* \"#utility.yul\":44:51 */\n 0x00\n /* \"#utility.yul\":73:78 */\n dup2\n /* \"#utility.yul\":62:78 */\n swap1\n pop\n /* \"#utility.yul\":7:84 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":90:208 */\n tag_57:\n /* \"#utility.yul\":177:201 */\n tag_83\n /* \"#utility.yul\":195:200 */\n dup2\n /* \"#utility.yul\":177:201 */\n tag_56\n jump\t// in\n tag_83:\n /* \"#utility.yul\":172:175 */\n dup3\n /* \"#utility.yul\":165:202 */\n mstore\n /* \"#utility.yul\":90:208 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":214:436 */\n tag_11:\n /* \"#utility.yul\":307:311 */\n 0x00\n /* \"#utility.yul\":345:347 */\n 0x20\n /* \"#utility.yul\":334:343 */\n dup3\n /* \"#utility.yul\":330:348 */\n add\n /* \"#utility.yul\":322:348 */\n swap1\n pop\n /* \"#utility.yul\":358:429 */\n tag_85\n /* \"#utility.yul\":426:427 */\n 0x00\n /* \"#utility.yul\":415:424 */\n dup4\n /* \"#utility.yul\":411:428 */\n add\n /* \"#utility.yul\":402:408 */\n dup5\n /* \"#utility.yul\":358:429 */\n tag_57\n jump\t// in\n tag_85:\n /* \"#utility.yul\":214:436 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":442:517 */\n tag_58:\n /* \"#utility.yul\":475:481 */\n 0x00\n /* \"#utility.yul\":508:510 */\n 0x40\n /* \"#utility.yul\":502:511 */\n mload\n /* \"#utility.yul\":492:511 */\n swap1\n pop\n /* \"#utility.yul\":442:517 */\n swap1\n jump\t// out\n /* \"#utility.yul\":523:640 */\n tag_59:\n /* \"#utility.yul\":632:633 */\n 0x00\n /* \"#utility.yul\":629:630 */\n dup1\n /* \"#utility.yul\":622:634 */\n revert\n /* \"#utility.yul\":646:763 */\n tag_60:\n /* \"#utility.yul\":755:756 */\n 0x00\n /* \"#utility.yul\":752:753 */\n dup1\n /* \"#utility.yul\":745:757 */\n revert\n /* \"#utility.yul\":769:891 */\n tag_61:\n /* \"#utility.yul\":842:866 */\n tag_90\n /* \"#utility.yul\":860:865 */\n dup2\n /* \"#utility.yul\":842:866 */\n tag_56\n jump\t// in\n tag_90:\n /* \"#utility.yul\":835:840 */\n dup2\n /* \"#utility.yul\":832:867 */\n eq\n /* \"#utility.yul\":822:885 */\n tag_91\n jumpi\n /* \"#utility.yul\":881:882 */\n 0x00\n /* \"#utility.yul\":878:879 */\n dup1\n /* \"#utility.yul\":871:883 */\n revert\n /* \"#utility.yul\":822:885 */\n tag_91:\n /* \"#utility.yul\":769:891 */\n pop\n jump\t// out\n /* \"#utility.yul\":897:1036 */\n tag_62:\n /* \"#utility.yul\":943:948 */\n 0x00\n /* \"#utility.yul\":981:987 */\n dup2\n /* \"#utility.yul\":968:988 */\n calldataload\n /* \"#utility.yul\":959:988 */\n swap1\n pop\n /* \"#utility.yul\":997:1030 */\n tag_93\n /* \"#utility.yul\":1024:1029 */\n dup2\n /* \"#utility.yul\":997:1030 */\n tag_61\n jump\t// in\n tag_93:\n /* \"#utility.yul\":897:1036 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1042:1371 */\n tag_14:\n /* \"#utility.yul\":1101:1107 */\n 0x00\n /* \"#utility.yul\":1150:1152 */\n 0x20\n /* \"#utility.yul\":1138:1147 */\n dup3\n /* \"#utility.yul\":1129:1136 */\n dup5\n /* \"#utility.yul\":1125:1148 */\n sub\n /* \"#utility.yul\":1121:1153 */\n slt\n /* \"#utility.yul\":1118:1237 */\n iszero\n tag_95\n jumpi\n /* \"#utility.yul\":1156:1235 */\n tag_96\n tag_59\n jump\t// in\n tag_96:\n /* \"#utility.yul\":1118:1237 */\n tag_95:\n /* \"#utility.yul\":1276:1277 */\n 0x00\n /* \"#utility.yul\":1301:1354 */\n tag_97\n /* \"#utility.yul\":1346:1353 */\n dup5\n /* \"#utility.yul\":1337:1343 */\n dup3\n /* \"#utility.yul\":1326:1335 */\n dup6\n /* \"#utility.yul\":1322:1344 */\n add\n /* \"#utility.yul\":1301:1354 */\n tag_62\n jump\t// in\n tag_97:\n /* \"#utility.yul\":1291:1354 */\n swap2\n pop\n /* \"#utility.yul\":1247:1364 */\n pop\n /* \"#utility.yul\":1042:1371 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1377:1494 */\n tag_63:\n /* \"#utility.yul\":1486:1487 */\n 0x00\n /* \"#utility.yul\":1483:1484 */\n dup1\n /* \"#utility.yul\":1476:1488 */\n revert\n /* \"#utility.yul\":1500:1617 */\n tag_64:\n /* \"#utility.yul\":1609:1610 */\n 0x00\n /* \"#utility.yul\":1606:1607 */\n dup1\n /* \"#utility.yul\":1599:1611 */\n revert\n /* \"#utility.yul\":1623:1725 */\n tag_65:\n /* \"#utility.yul\":1664:1670 */\n 0x00\n /* \"#utility.yul\":1715:1717 */\n 0x1f\n /* \"#utility.yul\":1711:1718 */\n not\n /* \"#utility.yul\":1706:1708 */\n 0x1f\n /* \"#utility.yul\":1699:1704 */\n dup4\n /* \"#utility.yul\":1695:1709 */\n add\n /* \"#utility.yul\":1691:1719 */\n and\n /* \"#utility.yul\":1681:1719 */\n swap1\n pop\n /* \"#utility.yul\":1623:1725 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1731:1911 */\n tag_66:\n /* \"#utility.yul\":1779:1856 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1776:1777 */\n 0x00\n /* \"#utility.yul\":1769:1857 */\n mstore\n /* \"#utility.yul\":1876:1880 */\n 0x41\n /* \"#utility.yul\":1873:1874 */\n 0x04\n /* \"#utility.yul\":1866:1881 */\n mstore\n /* \"#utility.yul\":1900:1904 */\n 0x24\n /* \"#utility.yul\":1897:1898 */\n 0x00\n /* \"#utility.yul\":1890:1905 */\n revert\n /* \"#utility.yul\":1917:2198 */\n tag_67:\n /* \"#utility.yul\":2000:2027 */\n tag_103\n /* \"#utility.yul\":2022:2026 */\n dup3\n /* \"#utility.yul\":2000:2027 */\n tag_65\n jump\t// in\n tag_103:\n /* \"#utility.yul\":1992:1998 */\n dup2\n /* \"#utility.yul\":1988:2028 */\n add\n /* \"#utility.yul\":2130:2136 */\n dup2\n /* \"#utility.yul\":2118:2128 */\n dup2\n /* \"#utility.yul\":2115:2137 */\n lt\n /* \"#utility.yul\":2094:2112 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2082:2092 */\n dup3\n /* \"#utility.yul\":2079:2113 */\n gt\n /* \"#utility.yul\":2076:2138 */\n or\n /* \"#utility.yul\":2073:2161 */\n iszero\n tag_104\n jumpi\n /* \"#utility.yul\":2141:2159 */\n tag_105\n tag_66\n jump\t// in\n tag_105:\n /* \"#utility.yul\":2073:2161 */\n tag_104:\n /* \"#utility.yul\":2181:2191 */\n dup1\n /* \"#utility.yul\":2177:2179 */\n 0x40\n /* \"#utility.yul\":2170:2192 */\n mstore\n /* \"#utility.yul\":1960:2198 */\n pop\n /* \"#utility.yul\":1917:2198 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2204:2333 */\n tag_68:\n /* \"#utility.yul\":2238:2244 */\n 0x00\n /* \"#utility.yul\":2265:2285 */\n tag_107\n tag_58\n jump\t// in\n tag_107:\n /* \"#utility.yul\":2255:2285 */\n swap1\n pop\n /* \"#utility.yul\":2294:2327 */\n tag_108\n /* \"#utility.yul\":2322:2326 */\n dup3\n /* \"#utility.yul\":2314:2320 */\n dup3\n /* \"#utility.yul\":2294:2327 */\n tag_67\n jump\t// in\n tag_108:\n /* \"#utility.yul\":2204:2333 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2339:2647 */\n tag_69:\n /* \"#utility.yul\":2401:2405 */\n 0x00\n /* \"#utility.yul\":2491:2509 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2483:2489 */\n dup3\n /* \"#utility.yul\":2480:2510 */\n gt\n /* \"#utility.yul\":2477:2533 */\n iszero\n tag_110\n jumpi\n /* \"#utility.yul\":2513:2531 */\n tag_111\n tag_66\n jump\t// in\n tag_111:\n /* \"#utility.yul\":2477:2533 */\n tag_110:\n /* \"#utility.yul\":2551:2580 */\n tag_112\n /* \"#utility.yul\":2573:2579 */\n dup3\n /* \"#utility.yul\":2551:2580 */\n tag_65\n jump\t// in\n tag_112:\n /* \"#utility.yul\":2543:2580 */\n swap1\n pop\n /* \"#utility.yul\":2635:2639 */\n 0x20\n /* \"#utility.yul\":2629:2633 */\n dup2\n /* \"#utility.yul\":2625:2640 */\n add\n /* \"#utility.yul\":2617:2640 */\n swap1\n pop\n /* \"#utility.yul\":2339:2647 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2653:2807 */\n tag_70:\n /* \"#utility.yul\":2737:2743 */\n dup3\n /* \"#utility.yul\":2732:2735 */\n dup2\n /* \"#utility.yul\":2727:2730 */\n dup4\n /* \"#utility.yul\":2714:2744 */\n calldatacopy\n /* \"#utility.yul\":2799:2800 */\n 0x00\n /* \"#utility.yul\":2790:2796 */\n dup4\n /* \"#utility.yul\":2785:2788 */\n dup4\n /* \"#utility.yul\":2781:2797 */\n add\n /* \"#utility.yul\":2774:2801 */\n mstore\n /* \"#utility.yul\":2653:2807 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2813:3225 */\n tag_71:\n /* \"#utility.yul\":2891:2896 */\n 0x00\n /* \"#utility.yul\":2916:2982 */\n tag_115\n /* \"#utility.yul\":2932:2981 */\n tag_116\n /* \"#utility.yul\":2974:2980 */\n dup5\n /* \"#utility.yul\":2932:2981 */\n tag_69\n jump\t// in\n tag_116:\n /* \"#utility.yul\":2916:2982 */\n tag_68\n jump\t// in\n tag_115:\n /* \"#utility.yul\":2907:2982 */\n swap1\n pop\n /* \"#utility.yul\":3005:3011 */\n dup3\n /* \"#utility.yul\":2998:3003 */\n dup2\n /* \"#utility.yul\":2991:3012 */\n mstore\n /* \"#utility.yul\":3043:3047 */\n 0x20\n /* \"#utility.yul\":3036:3041 */\n dup2\n /* \"#utility.yul\":3032:3048 */\n add\n /* \"#utility.yul\":3081:3084 */\n dup5\n /* \"#utility.yul\":3072:3078 */\n dup5\n /* \"#utility.yul\":3067:3070 */\n dup5\n /* \"#utility.yul\":3063:3079 */\n add\n /* \"#utility.yul\":3060:3085 */\n gt\n /* \"#utility.yul\":3057:3169 */\n iszero\n tag_117\n jumpi\n /* \"#utility.yul\":3088:3167 */\n tag_118\n tag_64\n jump\t// in\n tag_118:\n /* \"#utility.yul\":3057:3169 */\n tag_117:\n /* \"#utility.yul\":3178:3219 */\n tag_119\n /* \"#utility.yul\":3212:3218 */\n dup5\n /* \"#utility.yul\":3207:3210 */\n dup3\n /* \"#utility.yul\":3202:3205 */\n dup6\n /* \"#utility.yul\":3178:3219 */\n tag_70\n jump\t// in\n tag_119:\n /* \"#utility.yul\":2897:3225 */\n pop\n /* \"#utility.yul\":2813:3225 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3245:3585 */\n tag_72:\n /* \"#utility.yul\":3301:3306 */\n 0x00\n /* \"#utility.yul\":3350:3353 */\n dup3\n /* \"#utility.yul\":3343:3347 */\n 0x1f\n /* \"#utility.yul\":3335:3341 */\n dup4\n /* \"#utility.yul\":3331:3348 */\n add\n /* \"#utility.yul\":3327:3354 */\n slt\n /* \"#utility.yul\":3317:3439 */\n tag_121\n jumpi\n /* \"#utility.yul\":3358:3437 */\n tag_122\n tag_63\n jump\t// in\n tag_122:\n /* \"#utility.yul\":3317:3439 */\n tag_121:\n /* \"#utility.yul\":3475:3481 */\n dup2\n /* \"#utility.yul\":3462:3482 */\n calldataload\n /* \"#utility.yul\":3500:3579 */\n tag_123\n /* \"#utility.yul\":3575:3578 */\n dup5\n /* \"#utility.yul\":3567:3573 */\n dup3\n /* \"#utility.yul\":3560:3564 */\n 0x20\n /* \"#utility.yul\":3552:3558 */\n dup7\n /* \"#utility.yul\":3548:3565 */\n add\n /* \"#utility.yul\":3500:3579 */\n tag_71\n jump\t// in\n tag_123:\n /* \"#utility.yul\":3491:3579 */\n swap2\n pop\n /* \"#utility.yul\":3307:3585 */\n pop\n /* \"#utility.yul\":3245:3585 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3591:4245 */\n tag_18:\n /* \"#utility.yul\":3669:3675 */\n 0x00\n /* \"#utility.yul\":3677:3683 */\n dup1\n /* \"#utility.yul\":3726:3728 */\n 0x40\n /* \"#utility.yul\":3714:3723 */\n dup4\n /* \"#utility.yul\":3705:3712 */\n dup6\n /* \"#utility.yul\":3701:3724 */\n sub\n /* \"#utility.yul\":3697:3729 */\n slt\n /* \"#utility.yul\":3694:3813 */\n iszero\n tag_125\n jumpi\n /* \"#utility.yul\":3732:3811 */\n tag_126\n tag_59\n jump\t// in\n tag_126:\n /* \"#utility.yul\":3694:3813 */\n tag_125:\n /* \"#utility.yul\":3880:3881 */\n 0x00\n /* \"#utility.yul\":3869:3878 */\n dup4\n /* \"#utility.yul\":3865:3882 */\n add\n /* \"#utility.yul\":3852:3883 */\n calldataload\n /* \"#utility.yul\":3910:3928 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3902:3908 */\n dup2\n /* \"#utility.yul\":3899:3929 */\n gt\n /* \"#utility.yul\":3896:4013 */\n iszero\n tag_127\n jumpi\n /* \"#utility.yul\":3932:4011 */\n tag_128\n tag_60\n jump\t// in\n tag_128:\n /* \"#utility.yul\":3896:4013 */\n tag_127:\n /* \"#utility.yul\":4037:4100 */\n tag_129\n /* \"#utility.yul\":4092:4099 */\n dup6\n /* \"#utility.yul\":4083:4089 */\n dup3\n /* \"#utility.yul\":4072:4081 */\n dup7\n /* \"#utility.yul\":4068:4090 */\n add\n /* \"#utility.yul\":4037:4100 */\n tag_72\n jump\t// in\n tag_129:\n /* \"#utility.yul\":4027:4100 */\n swap3\n pop\n /* \"#utility.yul\":3823:4110 */\n pop\n /* \"#utility.yul\":4149:4151 */\n 0x20\n /* \"#utility.yul\":4175:4228 */\n tag_130\n /* \"#utility.yul\":4220:4227 */\n dup6\n /* \"#utility.yul\":4211:4217 */\n dup3\n /* \"#utility.yul\":4200:4209 */\n dup7\n /* \"#utility.yul\":4196:4218 */\n add\n /* \"#utility.yul\":4175:4228 */\n tag_62\n jump\t// in\n tag_130:\n /* \"#utility.yul\":4165:4228 */\n swap2\n pop\n /* \"#utility.yul\":4120:4238 */\n pop\n /* \"#utility.yul\":3591:4245 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4251:4760 */\n tag_22:\n /* \"#utility.yul\":4320:4326 */\n 0x00\n /* \"#utility.yul\":4369:4371 */\n 0x20\n /* \"#utility.yul\":4357:4366 */\n dup3\n /* \"#utility.yul\":4348:4355 */\n dup5\n /* \"#utility.yul\":4344:4367 */\n sub\n /* \"#utility.yul\":4340:4372 */\n slt\n /* \"#utility.yul\":4337:4456 */\n iszero\n tag_132\n jumpi\n /* \"#utility.yul\":4375:4454 */\n tag_133\n tag_59\n jump\t// in\n tag_133:\n /* \"#utility.yul\":4337:4456 */\n tag_132:\n /* \"#utility.yul\":4523:4524 */\n 0x00\n /* \"#utility.yul\":4512:4521 */\n dup3\n /* \"#utility.yul\":4508:4525 */\n add\n /* \"#utility.yul\":4495:4526 */\n calldataload\n /* \"#utility.yul\":4553:4571 */\n 0xffffffffffffffff\n /* \"#utility.yul\":4545:4551 */\n dup2\n /* \"#utility.yul\":4542:4572 */\n gt\n /* \"#utility.yul\":4539:4656 */\n iszero\n tag_134\n jumpi\n /* \"#utility.yul\":4575:4654 */\n tag_135\n tag_60\n jump\t// in\n tag_135:\n /* \"#utility.yul\":4539:4656 */\n tag_134:\n /* \"#utility.yul\":4680:4743 */\n tag_136\n /* \"#utility.yul\":4735:4742 */\n dup5\n /* \"#utility.yul\":4726:4732 */\n dup3\n /* \"#utility.yul\":4715:4724 */\n dup6\n /* \"#utility.yul\":4711:4733 */\n add\n /* \"#utility.yul\":4680:4743 */\n tag_72\n jump\t// in\n tag_136:\n /* \"#utility.yul\":4670:4743 */\n swap2\n pop\n /* \"#utility.yul\":4466:4753 */\n pop\n /* \"#utility.yul\":4251:4760 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4766:4865 */\n tag_73:\n /* \"#utility.yul\":4818:4824 */\n 0x00\n /* \"#utility.yul\":4852:4857 */\n dup2\n /* \"#utility.yul\":4846:4858 */\n mload\n /* \"#utility.yul\":4836:4858 */\n swap1\n pop\n /* \"#utility.yul\":4766:4865 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4871:5040 */\n tag_74:\n /* \"#utility.yul\":4955:4966 */\n 0x00\n /* \"#utility.yul\":4989:4995 */\n dup3\n /* \"#utility.yul\":4984:4987 */\n dup3\n /* \"#utility.yul\":4977:4996 */\n mstore\n /* \"#utility.yul\":5029:5033 */\n 0x20\n /* \"#utility.yul\":5024:5027 */\n dup3\n /* \"#utility.yul\":5020:5034 */\n add\n /* \"#utility.yul\":5005:5034 */\n swap1\n pop\n /* \"#utility.yul\":4871:5040 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5046:5353 */\n tag_75:\n /* \"#utility.yul\":5114:5115 */\n 0x00\n /* \"#utility.yul\":5124:5237 */\n tag_140:\n /* \"#utility.yul\":5138:5144 */\n dup4\n /* \"#utility.yul\":5135:5136 */\n dup2\n /* \"#utility.yul\":5132:5145 */\n lt\n /* \"#utility.yul\":5124:5237 */\n iszero\n tag_142\n jumpi\n /* \"#utility.yul\":5223:5224 */\n dup1\n /* \"#utility.yul\":5218:5221 */\n dup3\n /* \"#utility.yul\":5214:5225 */\n add\n /* \"#utility.yul\":5208:5226 */\n mload\n /* \"#utility.yul\":5204:5205 */\n dup2\n /* \"#utility.yul\":5199:5202 */\n dup5\n /* \"#utility.yul\":5195:5206 */\n add\n /* \"#utility.yul\":5188:5227 */\n mstore\n /* \"#utility.yul\":5160:5162 */\n 0x20\n /* \"#utility.yul\":5157:5158 */\n dup2\n /* \"#utility.yul\":5153:5163 */\n add\n /* \"#utility.yul\":5148:5163 */\n swap1\n pop\n /* \"#utility.yul\":5124:5237 */\n jump(tag_140)\n tag_142:\n /* \"#utility.yul\":5255:5261 */\n dup4\n /* \"#utility.yul\":5252:5253 */\n dup2\n /* \"#utility.yul\":5249:5262 */\n gt\n /* \"#utility.yul\":5246:5347 */\n iszero\n tag_143\n jumpi\n /* \"#utility.yul\":5335:5336 */\n 0x00\n /* \"#utility.yul\":5326:5332 */\n dup5\n /* \"#utility.yul\":5321:5324 */\n dup5\n /* \"#utility.yul\":5317:5333 */\n add\n /* \"#utility.yul\":5310:5337 */\n mstore\n /* \"#utility.yul\":5246:5347 */\n tag_143:\n /* \"#utility.yul\":5095:5353 */\n pop\n /* \"#utility.yul\":5046:5353 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5359:5723 */\n tag_76:\n /* \"#utility.yul\":5447:5450 */\n 0x00\n /* \"#utility.yul\":5475:5514 */\n tag_145\n /* \"#utility.yul\":5508:5513 */\n dup3\n /* \"#utility.yul\":5475:5514 */\n tag_73\n jump\t// in\n tag_145:\n /* \"#utility.yul\":5530:5601 */\n tag_146\n /* \"#utility.yul\":5594:5600 */\n dup2\n /* \"#utility.yul\":5589:5592 */\n dup6\n /* \"#utility.yul\":5530:5601 */\n tag_74\n jump\t// in\n tag_146:\n /* \"#utility.yul\":5523:5601 */\n swap4\n pop\n /* \"#utility.yul\":5610:5662 */\n tag_147\n /* \"#utility.yul\":5655:5661 */\n dup2\n /* \"#utility.yul\":5650:5653 */\n dup6\n /* \"#utility.yul\":5643:5647 */\n 0x20\n /* \"#utility.yul\":5636:5641 */\n dup7\n /* \"#utility.yul\":5632:5648 */\n add\n /* \"#utility.yul\":5610:5662 */\n tag_75\n jump\t// in\n tag_147:\n /* \"#utility.yul\":5687:5716 */\n tag_148\n /* \"#utility.yul\":5709:5715 */\n dup2\n /* \"#utility.yul\":5687:5716 */\n tag_65\n jump\t// in\n tag_148:\n /* \"#utility.yul\":5682:5685 */\n dup5\n /* \"#utility.yul\":5678:5717 */\n add\n /* \"#utility.yul\":5671:5717 */\n swap2\n pop\n /* \"#utility.yul\":5451:5723 */\n pop\n /* \"#utility.yul\":5359:5723 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5729:6152 */\n tag_29:\n /* \"#utility.yul\":5870:5874 */\n 0x00\n /* \"#utility.yul\":5908:5910 */\n 0x40\n /* \"#utility.yul\":5897:5906 */\n dup3\n /* \"#utility.yul\":5893:5911 */\n add\n /* \"#utility.yul\":5885:5911 */\n swap1\n pop\n /* \"#utility.yul\":5921:5992 */\n tag_150\n /* \"#utility.yul\":5989:5990 */\n 0x00\n /* \"#utility.yul\":5978:5987 */\n dup4\n /* \"#utility.yul\":5974:5991 */\n add\n /* \"#utility.yul\":5965:5971 */\n dup6\n /* \"#utility.yul\":5921:5992 */\n tag_57\n jump\t// in\n tag_150:\n /* \"#utility.yul\":6039:6048 */\n dup2\n /* \"#utility.yul\":6033:6037 */\n dup2\n /* \"#utility.yul\":6029:6049 */\n sub\n /* \"#utility.yul\":6024:6026 */\n 0x20\n /* \"#utility.yul\":6013:6022 */\n dup4\n /* \"#utility.yul\":6009:6027 */\n add\n /* \"#utility.yul\":6002:6050 */\n mstore\n /* \"#utility.yul\":6067:6145 */\n tag_151\n /* \"#utility.yul\":6140:6144 */\n dup2\n /* \"#utility.yul\":6131:6137 */\n dup5\n /* \"#utility.yul\":6067:6145 */\n tag_76\n jump\t// in\n tag_151:\n /* \"#utility.yul\":6059:6145 */\n swap1\n pop\n /* \"#utility.yul\":5729:6152 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6158:6306 */\n tag_77:\n /* \"#utility.yul\":6260:6271 */\n 0x00\n /* \"#utility.yul\":6297:6300 */\n dup2\n /* \"#utility.yul\":6282:6300 */\n swap1\n pop\n /* \"#utility.yul\":6158:6306 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6312:6689 */\n tag_78:\n /* \"#utility.yul\":6418:6421 */\n 0x00\n /* \"#utility.yul\":6446:6485 */\n tag_154\n /* \"#utility.yul\":6479:6484 */\n dup3\n /* \"#utility.yul\":6446:6485 */\n tag_73\n jump\t// in\n tag_154:\n /* \"#utility.yul\":6501:6590 */\n tag_155\n /* \"#utility.yul\":6583:6589 */\n dup2\n /* \"#utility.yul\":6578:6581 */\n dup6\n /* \"#utility.yul\":6501:6590 */\n tag_77\n jump\t// in\n tag_155:\n /* \"#utility.yul\":6494:6590 */\n swap4\n pop\n /* \"#utility.yul\":6599:6651 */\n tag_156\n /* \"#utility.yul\":6644:6650 */\n dup2\n /* \"#utility.yul\":6639:6642 */\n dup6\n /* \"#utility.yul\":6632:6636 */\n 0x20\n /* \"#utility.yul\":6625:6630 */\n dup7\n /* \"#utility.yul\":6621:6637 */\n add\n /* \"#utility.yul\":6599:6651 */\n tag_75\n jump\t// in\n tag_156:\n /* \"#utility.yul\":6676:6682 */\n dup1\n /* \"#utility.yul\":6671:6674 */\n dup5\n /* \"#utility.yul\":6667:6683 */\n add\n /* \"#utility.yul\":6660:6683 */\n swap2\n pop\n /* \"#utility.yul\":6422:6689 */\n pop\n /* \"#utility.yul\":6312:6689 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6695:6970 */\n tag_37:\n /* \"#utility.yul\":6827:6830 */\n 0x00\n /* \"#utility.yul\":6849:6944 */\n tag_158\n /* \"#utility.yul\":6940:6943 */\n dup3\n /* \"#utility.yul\":6931:6937 */\n dup5\n /* \"#utility.yul\":6849:6944 */\n tag_78\n jump\t// in\n tag_158:\n /* \"#utility.yul\":6842:6944 */\n swap2\n pop\n /* \"#utility.yul\":6961:6964 */\n dup2\n /* \"#utility.yul\":6954:6964 */\n swap1\n pop\n /* \"#utility.yul\":6695:6970 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6976:7156 */\n tag_79:\n /* \"#utility.yul\":7024:7101 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":7021:7022 */\n 0x00\n /* \"#utility.yul\":7014:7102 */\n mstore\n /* \"#utility.yul\":7121:7125 */\n 0x22\n /* \"#utility.yul\":7118:7119 */\n 0x04\n /* \"#utility.yul\":7111:7126 */\n mstore\n /* \"#utility.yul\":7145:7149 */\n 0x24\n /* \"#utility.yul\":7142:7143 */\n 0x00\n /* \"#utility.yul\":7135:7150 */\n revert\n /* \"#utility.yul\":7162:7482 */\n tag_41:\n /* \"#utility.yul\":7206:7212 */\n 0x00\n /* \"#utility.yul\":7243:7244 */\n 0x02\n /* \"#utility.yul\":7237:7241 */\n dup3\n /* \"#utility.yul\":7233:7245 */\n div\n /* \"#utility.yul\":7223:7245 */\n swap1\n pop\n /* \"#utility.yul\":7290:7291 */\n 0x01\n /* \"#utility.yul\":7284:7288 */\n dup3\n /* \"#utility.yul\":7280:7292 */\n and\n /* \"#utility.yul\":7311:7329 */\n dup1\n /* \"#utility.yul\":7301:7382 */\n tag_161\n jumpi\n /* \"#utility.yul\":7367:7371 */\n 0x7f\n /* \"#utility.yul\":7359:7365 */\n dup3\n /* \"#utility.yul\":7355:7372 */\n and\n /* \"#utility.yul\":7345:7372 */\n swap2\n pop\n /* \"#utility.yul\":7301:7382 */\n tag_161:\n /* \"#utility.yul\":7429:7431 */\n 0x20\n /* \"#utility.yul\":7421:7427 */\n dup3\n /* \"#utility.yul\":7418:7432 */\n lt\n /* \"#utility.yul\":7398:7416 */\n dup2\n /* \"#utility.yul\":7395:7433 */\n eq\n /* \"#utility.yul\":7392:7476 */\n iszero\n tag_162\n jumpi\n /* \"#utility.yul\":7448:7466 */\n tag_163\n tag_79\n jump\t// in\n tag_163:\n /* \"#utility.yul\":7392:7476 */\n tag_162:\n /* \"#utility.yul\":7213:7482 */\n pop\n /* \"#utility.yul\":7162:7482 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122063b91a96d575756da6f03f70c81ccb185cfb141ab2cf7073c7d6277c927dd3ec64736f6c63430008080033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610771806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780638bab8dd5146100b25780639e7a13ad146100e2575b600080fd5b610064610113565b604051610071919061035c565b60405180910390f35b610094600480360381019061008f91906103b7565b61011c565b005b6100b060048036038101906100ab919061052a565b610126565b005b6100cc60048036038101906100c79190610586565b6101b6565b6040516100d9919061035c565b60405180910390f35b6100fc60048036038101906100f791906103b7565b6101e4565b60405161010a929190610657565b60405180910390f35b60008054905090565b8060008190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908051906020019061018c9291906102a0565b505050806002836040516101a091906106c3565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b600181815481106101f457600080fd5b906000526020600020906002020160009150905080600001549080600101805461021d90610709565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610709565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905082565b8280546102ac90610709565b90600052602060002090601f0160209004810192826102ce5760008555610315565b82601f106102e757805160ff1916838001178555610315565b82800160010185558215610315579182015b828111156103145782518255916020019190600101906102f9565b5b5090506103229190610326565b5090565b5b8082111561033f576000816000905550600101610327565b5090565b6000819050919050565b61035681610343565b82525050565b6000602082019050610371600083018461034d565b92915050565b6000604051905090565b600080fd5b600080fd5b61039481610343565b811461039f57600080fd5b50565b6000813590506103b18161038b565b92915050565b6000602082840312156103cd576103cc610381565b5b60006103db848285016103a2565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610437826103ee565b810181811067ffffffffffffffff82111715610456576104556103ff565b5b80604052505050565b6000610469610377565b9050610475828261042e565b919050565b600067ffffffffffffffff821115610495576104946103ff565b5b61049e826103ee565b9050602081019050919050565b82818337600083830152505050565b60006104cd6104c88461047a565b61045f565b9050828152602081018484840111156104e9576104e86103e9565b5b6104f48482856104ab565b509392505050565b600082601f830112610511576105106103e4565b5b81356105218482602086016104ba565b91505092915050565b6000806040838503121561054157610540610381565b5b600083013567ffffffffffffffff81111561055f5761055e610386565b5b61056b858286016104fc565b925050602061057c858286016103a2565b9150509250929050565b60006020828403121561059c5761059b610381565b5b600082013567ffffffffffffffff8111156105ba576105b9610386565b5b6105c6848285016104fc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156106095780820151818401526020810190506105ee565b83811115610618576000848401525b50505050565b6000610629826105cf565b61063381856105da565b93506106438185602086016105eb565b61064c816103ee565b840191505092915050565b600060408201905061066c600083018561034d565b818103602083015261067e818461061e565b90509392505050565b600081905092915050565b600061069d826105cf565b6106a78185610687565b93506106b78185602086016105eb565b80840191505092915050565b60006106cf8284610692565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061072157607f821691505b60208210811415610735576107346106da565b5b5091905056fea264697066735822122063b91a96d575756da6f03f70c81ccb185cfb141ab2cf7073c7d6277c927dd3ec64736f6c63430008080033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x771 DUP1 PUSH2 0x20 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 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xE2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x52A JUMP JUMPDEST PUSH2 0x126 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x586 JUMP JUMPDEST PUSH2 0x1B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD9 SWAP2 SWAP1 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF7 SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST PUSH2 0x1E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP3 SWAP2 SWAP1 PUSH2 0x657 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP 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 0x18C SWAP3 SWAP2 SWAP1 PUSH2 0x2A0 JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1A0 SWAP2 SWAP1 PUSH2 0x6C3 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x21D SWAP1 PUSH2 0x709 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 0x249 SWAP1 PUSH2 0x709 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x296 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x26B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x296 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 0x279 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2AC SWAP1 PUSH2 0x709 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2CE JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x315 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2E7 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x315 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x315 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x314 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2F9 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x322 SWAP2 SWAP1 PUSH2 0x326 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x33F JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x327 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x356 DUP2 PUSH2 0x343 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x371 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x34D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x394 DUP2 PUSH2 0x343 JUMP JUMPDEST DUP2 EQ PUSH2 0x39F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B1 DUP2 PUSH2 0x38B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3CD JUMPI PUSH2 0x3CC PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3DB DUP5 DUP3 DUP6 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x437 DUP3 PUSH2 0x3EE JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x456 JUMPI PUSH2 0x455 PUSH2 0x3FF JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x469 PUSH2 0x377 JUMP JUMPDEST SWAP1 POP PUSH2 0x475 DUP3 DUP3 PUSH2 0x42E JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x495 JUMPI PUSH2 0x494 PUSH2 0x3FF JUMP JUMPDEST JUMPDEST PUSH2 0x49E DUP3 PUSH2 0x3EE JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4CD PUSH2 0x4C8 DUP5 PUSH2 0x47A JUMP JUMPDEST PUSH2 0x45F JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4E9 JUMPI PUSH2 0x4E8 PUSH2 0x3E9 JUMP JUMPDEST JUMPDEST PUSH2 0x4F4 DUP5 DUP3 DUP6 PUSH2 0x4AB JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x511 JUMPI PUSH2 0x510 PUSH2 0x3E4 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x521 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4BA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x541 JUMPI PUSH2 0x540 PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x55F JUMPI PUSH2 0x55E PUSH2 0x386 JUMP JUMPDEST JUMPDEST PUSH2 0x56B DUP6 DUP3 DUP7 ADD PUSH2 0x4FC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x57C DUP6 DUP3 DUP7 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x59C JUMPI PUSH2 0x59B PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5BA JUMPI PUSH2 0x5B9 PUSH2 0x386 JUMP JUMPDEST JUMPDEST PUSH2 0x5C6 DUP5 DUP3 DUP6 ADD PUSH2 0x4FC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x609 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x5EE JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x618 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x629 DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x633 DUP2 DUP6 PUSH2 0x5DA JUMP JUMPDEST SWAP4 POP PUSH2 0x643 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5EB JUMP JUMPDEST PUSH2 0x64C DUP2 PUSH2 0x3EE JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x66C PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x34D JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x67E DUP2 DUP5 PUSH2 0x61E JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x69D DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x6A7 DUP2 DUP6 PUSH2 0x687 JUMP JUMPDEST SWAP4 POP PUSH2 0x6B7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5EB JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6CF DUP3 DUP5 PUSH2 0x692 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x721 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x735 JUMPI PUSH2 0x734 PUSH2 0x6DA JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH4 0xB91A96D5 PUSH22 0x756DA6F03F70C81CCB185CFB141AB2CF7073C7D6277C SWAP3 PUSH30 0xD3EC64736F6C634300080800330000000000000000000000000000000000 ",
"sourceMap": "144:674:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addPerson_57": {
"entryPoint": 294,
"id": 57,
"parameterSlots": 2,
"returnSlots": 0
},
"@nameToFavoriteNumber_16": {
"entryPoint": 438,
"id": 16,
"parameterSlots": 0,
"returnSlots": 0
},
"@people_12": {
"entryPoint": 484,
"id": 12,
"parameterSlots": 0,
"returnSlots": 0
},
"@retrieve_34": {
"entryPoint": 275,
"id": 34,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_26": {
"entryPoint": 284,
"id": 26,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1210,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1276,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 930,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 1414,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_uint256": {
"entryPoint": 1322,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 951,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1566,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1682,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 845,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 1731,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 860,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1623,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1119,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 887,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1146,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1487,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1498,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 1671,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 835,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 1195,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 1515,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1801,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1070,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1754,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1023,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 996,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1001,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 902,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 897,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1006,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_uint256": {
"entryPoint": 907,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7485:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "52:32:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "62:16:2",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:2"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "62:7:2"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "34:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "44:7:2",
"type": ""
}
],
"src": "7:77:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "155:53:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "172:3:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "195:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "177:17:2"
},
"nodeType": "YulFunctionCall",
"src": "177:24:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "165:6:2"
},
"nodeType": "YulFunctionCall",
"src": "165:37:2"
},
"nodeType": "YulExpressionStatement",
"src": "165:37:2"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "143:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "150:3:2",
"type": ""
}
],
"src": "90:118:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "312:124:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "322:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "334:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "345:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "330:3:2"
},
"nodeType": "YulFunctionCall",
"src": "330:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "322:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "402:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "415:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "426:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "411:3:2"
},
"nodeType": "YulFunctionCall",
"src": "411:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "358:43:2"
},
"nodeType": "YulFunctionCall",
"src": "358:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "358:71:2"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "284:9:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "296:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "307:4:2",
"type": ""
}
],
"src": "214:222:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "482:35:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "492:19:2",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "508:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "502:5:2"
},
"nodeType": "YulFunctionCall",
"src": "502:9:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "492:6:2"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "475:6:2",
"type": ""
}
],
"src": "442:75:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "612:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "629:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "632:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "622:6:2"
},
"nodeType": "YulFunctionCall",
"src": "622:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "622:12:2"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "523:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "735:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "752:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "755:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "745:6:2"
},
"nodeType": "YulFunctionCall",
"src": "745:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "745:12:2"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "646:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "812:79:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:16:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "878:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "881:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "871:6:2"
},
"nodeType": "YulFunctionCall",
"src": "871:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "871:12:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "835:5:2"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "860:5:2"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "842:17:2"
},
"nodeType": "YulFunctionCall",
"src": "842:24:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "832:2:2"
},
"nodeType": "YulFunctionCall",
"src": "832:35:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "825:6:2"
},
"nodeType": "YulFunctionCall",
"src": "825:43:2"
},
"nodeType": "YulIf",
"src": "822:63:2"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "805:5:2",
"type": ""
}
],
"src": "769:122:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "949:87:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "959:29:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "981:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "968:12:2"
},
"nodeType": "YulFunctionCall",
"src": "968:20:2"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "959:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1024:5:2"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "997:26:2"
},
"nodeType": "YulFunctionCall",
"src": "997:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "997:33:2"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "927:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "935:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "943:5:2",
"type": ""
}
],
"src": "897:139:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1108:263:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1154:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1156:77:2"
},
"nodeType": "YulFunctionCall",
"src": "1156:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "1156:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1129:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1138:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1125:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1125:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1150:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1121:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1121:32:2"
},
"nodeType": "YulIf",
"src": "1118:119:2"
},
{
"nodeType": "YulBlock",
"src": "1247:117:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1262:15:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1276:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1266:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1291:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1326:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1337:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1322:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1322:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1346:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1301:20:2"
},
"nodeType": "YulFunctionCall",
"src": "1301:53:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1291:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1078:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1089:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1101:6:2",
"type": ""
}
],
"src": "1042:329:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1466:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1483:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1486:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1476:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1476:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "1476:12:2"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "1377:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1589:28:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1606:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1609:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1599:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1599:12:2"
},
"nodeType": "YulExpressionStatement",
"src": "1599:12:2"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "1500:117:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1671:54:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1681:38:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1699:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1706:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1695:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1695:14:2"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1715:2:2",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1711:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1711:7:2"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1691:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1691:28:2"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1681:6:2"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1654:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1664:6:2",
"type": ""
}
],
"src": "1623:102:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1759:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1776:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1779:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1769:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1769:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "1769:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1873:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1876:4:2",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1866:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1866:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "1866:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1897:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1900:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1890:6:2"
},
"nodeType": "YulFunctionCall",
"src": "1890:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "1890:15:2"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "1731:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1960:238:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1970:58:2",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1992:6:2"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2022:4:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2000:21:2"
},
"nodeType": "YulFunctionCall",
"src": "2000:27:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1988:3:2"
},
"nodeType": "YulFunctionCall",
"src": "1988:40:2"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "1974:10:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2139:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2141:16:2"
},
"nodeType": "YulFunctionCall",
"src": "2141:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "2141:18:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2082:10:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2094:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2079:2:2"
},
"nodeType": "YulFunctionCall",
"src": "2079:34:2"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2118:10:2"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2130:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2115:2:2"
},
"nodeType": "YulFunctionCall",
"src": "2115:22:2"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "2076:2:2"
},
"nodeType": "YulFunctionCall",
"src": "2076:62:2"
},
"nodeType": "YulIf",
"src": "2073:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2177:2:2",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "2181:10:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2170:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2170:22:2"
},
"nodeType": "YulExpressionStatement",
"src": "2170:22:2"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1946:6:2",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1954:4:2",
"type": ""
}
],
"src": "1917:281:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2245:88:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2255:30:2",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "2265:18:2"
},
"nodeType": "YulFunctionCall",
"src": "2265:20:2"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2255:6:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2314:6:2"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2322:4:2"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "2294:19:2"
},
"nodeType": "YulFunctionCall",
"src": "2294:33:2"
},
"nodeType": "YulExpressionStatement",
"src": "2294:33:2"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2229:4:2",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2238:6:2",
"type": ""
}
],
"src": "2204:129:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2406:241:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2511:22:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2513:16:2"
},
"nodeType": "YulFunctionCall",
"src": "2513:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "2513:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2483:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2491:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2480:2:2"
},
"nodeType": "YulFunctionCall",
"src": "2480:30:2"
},
"nodeType": "YulIf",
"src": "2477:56:2"
},
{
"nodeType": "YulAssignment",
"src": "2543:37:2",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2573:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2551:21:2"
},
"nodeType": "YulFunctionCall",
"src": "2551:29:2"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2543:4:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2617:23:2",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2629:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2635:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2625:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2625:15:2"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2617:4:2"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2390:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2401:4:2",
"type": ""
}
],
"src": "2339:308:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2704:103:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2727:3:2"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2732:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2737:6:2"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "2714:12:2"
},
"nodeType": "YulFunctionCall",
"src": "2714:30:2"
},
"nodeType": "YulExpressionStatement",
"src": "2714:30:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2785:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2790:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2781:3:2"
},
"nodeType": "YulFunctionCall",
"src": "2781:16:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2799:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2774:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2774:27:2"
},
"nodeType": "YulExpressionStatement",
"src": "2774:27:2"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2686:3:2",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2691:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2696:6:2",
"type": ""
}
],
"src": "2653:154:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2897:328:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2907:75:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2974:6:2"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2932:41:2"
},
"nodeType": "YulFunctionCall",
"src": "2932:49:2"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2916:15:2"
},
"nodeType": "YulFunctionCall",
"src": "2916:66:2"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2907:5:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2998:5:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3005:6:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2991:6:2"
},
"nodeType": "YulFunctionCall",
"src": "2991:21:2"
},
"nodeType": "YulExpressionStatement",
"src": "2991:21:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3021:27:2",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3036:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3043:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3032:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3032:16:2"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3025:3:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3086:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "3088:77:2"
},
"nodeType": "YulFunctionCall",
"src": "3088:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "3088:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3067:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3072:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3063:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3063:16:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3081:3:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3060:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3060:25:2"
},
"nodeType": "YulIf",
"src": "3057:112:2"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3202:3:2"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3207:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3212:6:2"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "3178:23:2"
},
"nodeType": "YulFunctionCall",
"src": "3178:41:2"
},
"nodeType": "YulExpressionStatement",
"src": "3178:41:2"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2870:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2875:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2883:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2891:5:2",
"type": ""
}
],
"src": "2813:412:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3307:278:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3356:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "3358:77:2"
},
"nodeType": "YulFunctionCall",
"src": "3358:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "3358:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3335:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3343:4:2",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3331:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3331:17:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3350:3:2"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3327:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3327:27:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3320:6:2"
},
"nodeType": "YulFunctionCall",
"src": "3320:35:2"
},
"nodeType": "YulIf",
"src": "3317:122:2"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3448:34:2",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3475:6:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3462:12:2"
},
"nodeType": "YulFunctionCall",
"src": "3462:20:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3452:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3491:88:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3552:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3560:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3548:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3548:17:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3567:6:2"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3575:3:2"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3500:47:2"
},
"nodeType": "YulFunctionCall",
"src": "3500:79:2"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "3491:5:2"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3285:6:2",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3293:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "3301:5:2",
"type": ""
}
],
"src": "3245:340:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3684:561:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3730:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3732:77:2"
},
"nodeType": "YulFunctionCall",
"src": "3732:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "3732:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3705:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3714:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3701:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3701:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3726:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3697:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3697:32:2"
},
"nodeType": "YulIf",
"src": "3694:119:2"
},
{
"nodeType": "YulBlock",
"src": "3823:287:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3838:45:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3869:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3880:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3865:3:2"
},
"nodeType": "YulFunctionCall",
"src": "3865:17:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3852:12:2"
},
"nodeType": "YulFunctionCall",
"src": "3852:31:2"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3842:6:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3930:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3932:77:2"
},
"nodeType": "YulFunctionCall",
"src": "3932:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "3932:79:2"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3902:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3910:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3899:2:2"
},
"nodeType": "YulFunctionCall",
"src": "3899:30:2"
},
"nodeType": "YulIf",
"src": "3896:117:2"
},
{
"nodeType": "YulAssignment",
"src": "4027:73:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4072:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4083:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4068:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4068:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4092:7:2"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4037:30:2"
},
"nodeType": "YulFunctionCall",
"src": "4037:63:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4027:6:2"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4120:118:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4135:16:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4149:2:2",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4139:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4165:63:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4200:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4211:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4196:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4196:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4220:7:2"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4175:20:2"
},
"nodeType": "YulFunctionCall",
"src": "4175:53:2"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4165:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3646:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3657:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3669:6:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3677:6:2",
"type": ""
}
],
"src": "3591:654:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4327:433:2",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4373:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4375:77:2"
},
"nodeType": "YulFunctionCall",
"src": "4375:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "4375:79:2"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4348:7:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4357:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4344:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4344:23:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4369:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4340:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4340:32:2"
},
"nodeType": "YulIf",
"src": "4337:119:2"
},
{
"nodeType": "YulBlock",
"src": "4466:287:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4481:45:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4512:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4523:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4508:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4508:17:2"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4495:12:2"
},
"nodeType": "YulFunctionCall",
"src": "4495:31:2"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4485:6:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4573:83:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4575:77:2"
},
"nodeType": "YulFunctionCall",
"src": "4575:79:2"
},
"nodeType": "YulExpressionStatement",
"src": "4575:79:2"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4545:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4553:18:2",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4542:2:2"
},
"nodeType": "YulFunctionCall",
"src": "4542:30:2"
},
"nodeType": "YulIf",
"src": "4539:117:2"
},
{
"nodeType": "YulAssignment",
"src": "4670:73:2",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4715:9:2"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4726:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4711:3:2"
},
"nodeType": "YulFunctionCall",
"src": "4711:22:2"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4735:7:2"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4680:30:2"
},
"nodeType": "YulFunctionCall",
"src": "4680:63:2"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4670:6:2"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4297:9:2",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4308:7:2",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4320:6:2",
"type": ""
}
],
"src": "4251:509:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4825:40:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4836:22:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4852:5:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4846:5:2"
},
"nodeType": "YulFunctionCall",
"src": "4846:12:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4836:6:2"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4808:5:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4818:6:2",
"type": ""
}
],
"src": "4766:99:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4967:73:2",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4984:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4989:6:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4977:6:2"
},
"nodeType": "YulFunctionCall",
"src": "4977:19:2"
},
"nodeType": "YulExpressionStatement",
"src": "4977:19:2"
},
{
"nodeType": "YulAssignment",
"src": "5005:29:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5024:3:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5029:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5020:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5020:14:2"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "5005:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4939:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4944:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4955:11:2",
"type": ""
}
],
"src": "4871:169:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5095:258:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5105:10:2",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5114:1:2",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5109:1:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5174:63:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5199:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5204:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5195:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5195:11:2"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5218:3:2"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5223:1:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5214:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5214:11:2"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5208:5:2"
},
"nodeType": "YulFunctionCall",
"src": "5208:18:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5188:6:2"
},
"nodeType": "YulFunctionCall",
"src": "5188:39:2"
},
"nodeType": "YulExpressionStatement",
"src": "5188:39:2"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5135:1:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5138:6:2"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5132:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5132:13:2"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5146:19:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5148:15:2",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5157:1:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5160:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5153:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5153:10:2"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5148:1:2"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5128:3:2",
"statements": []
},
"src": "5124:113:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5271:76:2",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5321:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5326:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5317:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5317:16:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5335:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5310:6:2"
},
"nodeType": "YulFunctionCall",
"src": "5310:27:2"
},
"nodeType": "YulExpressionStatement",
"src": "5310:27:2"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5252:1:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5255:6:2"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5249:2:2"
},
"nodeType": "YulFunctionCall",
"src": "5249:13:2"
},
"nodeType": "YulIf",
"src": "5246:101:2"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5077:3:2",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5082:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5087:6:2",
"type": ""
}
],
"src": "5046:307:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5451:272:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5461:53:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5508:5:2"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5475:32:2"
},
"nodeType": "YulFunctionCall",
"src": "5475:39:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5465:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5523:78:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5589:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5594:6:2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5530:58:2"
},
"nodeType": "YulFunctionCall",
"src": "5530:71:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5523:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5636:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5643:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5632:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5632:16:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5650:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5655:6:2"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "5610:21:2"
},
"nodeType": "YulFunctionCall",
"src": "5610:52:2"
},
"nodeType": "YulExpressionStatement",
"src": "5610:52:2"
},
{
"nodeType": "YulAssignment",
"src": "5671:46:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5682:3:2"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5709:6:2"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "5687:21:2"
},
"nodeType": "YulFunctionCall",
"src": "5687:29:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5678:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5678:39:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5671:3:2"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5432:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5439:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5447:3:2",
"type": ""
}
],
"src": "5359:364:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5875:277:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5885:26:2",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5897:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5908:2:2",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5893:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5893:18:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5885:4:2"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5965:6:2"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5978:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5989:1:2",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5974:3:2"
},
"nodeType": "YulFunctionCall",
"src": "5974:17:2"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5921:43:2"
},
"nodeType": "YulFunctionCall",
"src": "5921:71:2"
},
"nodeType": "YulExpressionStatement",
"src": "5921:71:2"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6013:9:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6024:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6009:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6009:18:2"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6033:4:2"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6039:9:2"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6029:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6029:20:2"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6002:6:2"
},
"nodeType": "YulFunctionCall",
"src": "6002:48:2"
},
"nodeType": "YulExpressionStatement",
"src": "6002:48:2"
},
{
"nodeType": "YulAssignment",
"src": "6059:86:2",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6131:6:2"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6140:4:2"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6067:63:2"
},
"nodeType": "YulFunctionCall",
"src": "6067:78:2"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6059:4:2"
}
]
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5839:9:2",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5851:6:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5859:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5870:4:2",
"type": ""
}
],
"src": "5729:423:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6272:34:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6282:18:2",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6297:3:2"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "6282:11:2"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6244:3:2",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6249:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "6260:11:2",
"type": ""
}
],
"src": "6158:148:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6422:267:2",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6432:53:2",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6479:5:2"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6446:32:2"
},
"nodeType": "YulFunctionCall",
"src": "6446:39:2"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6436:6:2",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6494:96:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6578:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6583:6:2"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "6501:76:2"
},
"nodeType": "YulFunctionCall",
"src": "6501:89:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6494:3:2"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6625:5:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6632:4:2",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6621:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6621:16:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6639:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6644:6:2"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6599:21:2"
},
"nodeType": "YulFunctionCall",
"src": "6599:52:2"
},
"nodeType": "YulExpressionStatement",
"src": "6599:52:2"
},
{
"nodeType": "YulAssignment",
"src": "6660:23:2",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6671:3:2"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6676:6:2"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6667:3:2"
},
"nodeType": "YulFunctionCall",
"src": "6667:16:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6660:3:2"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6403:5:2",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6410:3:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6418:3:2",
"type": ""
}
],
"src": "6312:377:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6831:139:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6842:102:2",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6931:6:2"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6940:3:2"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "6849:81:2"
},
"nodeType": "YulFunctionCall",
"src": "6849:95:2"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6842:3:2"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6954:10:2",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6961:3:2"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6954:3:2"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6810:3:2",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6816:6:2",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6827:3:2",
"type": ""
}
],
"src": "6695:275:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7004:152:2",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7021:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7024:77:2",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7014:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7014:88:2"
},
"nodeType": "YulExpressionStatement",
"src": "7014:88:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7118:1:2",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7121:4:2",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7111:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7111:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "7111:15:2"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7142:1:2",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7145:4:2",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7135:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7135:15:2"
},
"nodeType": "YulExpressionStatement",
"src": "7135:15:2"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6976:180:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7213:269:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7223:22:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7237:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7243:1:2",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "7233:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7233:12:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7223:6:2"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7254:38:2",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7284:4:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7290:1:2",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7280:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7280:12:2"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "7258:18:2",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7331:51:2",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7345:27:2",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7359:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7367:4:2",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7355:3:2"
},
"nodeType": "YulFunctionCall",
"src": "7355:17:2"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7345:6:2"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "7311:18:2"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7304:6:2"
},
"nodeType": "YulFunctionCall",
"src": "7304:26:2"
},
"nodeType": "YulIf",
"src": "7301:81:2"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7434:42:2",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "7448:16:2"
},
"nodeType": "YulFunctionCall",
"src": "7448:18:2"
},
"nodeType": "YulExpressionStatement",
"src": "7448:18:2"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "7398:18:2"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7421:6:2"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7429:2:2",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7418:2:2"
},
"nodeType": "YulFunctionCall",
"src": "7418:14:2"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7395:2:2"
},
"nodeType": "YulFunctionCall",
"src": "7395:38:2"
},
"nodeType": "YulIf",
"src": "7392:84:2"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "7197:4:2",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7206:6:2",
"type": ""
}
],
"src": "7162:320:2"
}
]
},
"contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\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 panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\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 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 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_tuple_t_string_memory_ptrt_uint256(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 := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { 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 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 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 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_tuple_t_uint256_t_string_memory_ptr__to_t_uint256_t_string_memory_ptr__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 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 }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\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}\n",
"id": 2,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100575760003560e01c80632e64cec11461005c5780636057361d1461007a5780636f760f41146100965780638bab8dd5146100b25780639e7a13ad146100e2575b600080fd5b610064610113565b604051610071919061035c565b60405180910390f35b610094600480360381019061008f91906103b7565b61011c565b005b6100b060048036038101906100ab919061052a565b610126565b005b6100cc60048036038101906100c79190610586565b6101b6565b6040516100d9919061035c565b60405180910390f35b6100fc60048036038101906100f791906103b7565b6101e4565b60405161010a929190610657565b60405180910390f35b60008054905090565b8060008190555050565b6001604051806040016040528083815260200184815250908060018154018082558091505060019003906000526020600020906002020160009091909190915060008201518160000155602082015181600101908051906020019061018c9291906102a0565b505050806002836040516101a091906106c3565b9081526020016040518091039020819055505050565b6002818051602081018201805184825260208301602085012081835280955050505050506000915090505481565b600181815481106101f457600080fd5b906000526020600020906002020160009150905080600001549080600101805461021d90610709565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610709565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905082565b8280546102ac90610709565b90600052602060002090601f0160209004810192826102ce5760008555610315565b82601f106102e757805160ff1916838001178555610315565b82800160010185558215610315579182015b828111156103145782518255916020019190600101906102f9565b5b5090506103229190610326565b5090565b5b8082111561033f576000816000905550600101610327565b5090565b6000819050919050565b61035681610343565b82525050565b6000602082019050610371600083018461034d565b92915050565b6000604051905090565b600080fd5b600080fd5b61039481610343565b811461039f57600080fd5b50565b6000813590506103b18161038b565b92915050565b6000602082840312156103cd576103cc610381565b5b60006103db848285016103a2565b91505092915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610437826103ee565b810181811067ffffffffffffffff82111715610456576104556103ff565b5b80604052505050565b6000610469610377565b9050610475828261042e565b919050565b600067ffffffffffffffff821115610495576104946103ff565b5b61049e826103ee565b9050602081019050919050565b82818337600083830152505050565b60006104cd6104c88461047a565b61045f565b9050828152602081018484840111156104e9576104e86103e9565b5b6104f48482856104ab565b509392505050565b600082601f830112610511576105106103e4565b5b81356105218482602086016104ba565b91505092915050565b6000806040838503121561054157610540610381565b5b600083013567ffffffffffffffff81111561055f5761055e610386565b5b61056b858286016104fc565b925050602061057c858286016103a2565b9150509250929050565b60006020828403121561059c5761059b610381565b5b600082013567ffffffffffffffff8111156105ba576105b9610386565b5b6105c6848285016104fc565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156106095780820151818401526020810190506105ee565b83811115610618576000848401525b50505050565b6000610629826105cf565b61063381856105da565b93506106438185602086016105eb565b61064c816103ee565b840191505092915050565b600060408201905061066c600083018561034d565b818103602083015261067e818461061e565b90509392505050565b600081905092915050565b600061069d826105cf565b6106a78185610687565b93506106b78185602086016105eb565b80840191505092915050565b60006106cf8284610692565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061072157607f821691505b60208210811415610735576107346106da565b5b5091905056fea264697066735822122063b91a96d575756da6f03f70c81ccb185cfb141ab2cf7073c7d6277c927dd3ec64736f6c63430008080033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x7A JUMPI DUP1 PUSH4 0x6F760F41 EQ PUSH2 0x96 JUMPI DUP1 PUSH4 0x8BAB8DD5 EQ PUSH2 0xB2 JUMPI DUP1 PUSH4 0x9E7A13AD EQ PUSH2 0xE2 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0x113 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x71 SWAP2 SWAP1 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x94 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8F SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST PUSH2 0x11C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x52A JUMP JUMPDEST PUSH2 0x126 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xCC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x586 JUMP JUMPDEST PUSH2 0x1B6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD9 SWAP2 SWAP1 PUSH2 0x35C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xFC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xF7 SWAP2 SWAP1 PUSH2 0x3B7 JUMP JUMPDEST PUSH2 0x1E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10A SWAP3 SWAP2 SWAP1 PUSH2 0x657 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP4 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP 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 0x18C SWAP3 SWAP2 SWAP1 PUSH2 0x2A0 JUMP JUMPDEST POP POP POP DUP1 PUSH1 0x2 DUP4 PUSH1 0x40 MLOAD PUSH2 0x1A0 SWAP2 SWAP1 PUSH2 0x6C3 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP1 MLOAD PUSH1 0x20 DUP2 ADD DUP3 ADD DUP1 MLOAD DUP5 DUP3 MSTORE PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP6 ADD KECCAK256 DUP2 DUP4 MSTORE DUP1 SWAP6 POP POP POP POP POP POP PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x1 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x1F4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x0 SWAP2 POP SWAP1 POP DUP1 PUSH1 0x0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x21D SWAP1 PUSH2 0x709 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 0x249 SWAP1 PUSH2 0x709 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x296 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x26B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x296 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 0x279 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP DUP3 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2AC SWAP1 PUSH2 0x709 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2CE JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x315 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2E7 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x315 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x315 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x314 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2F9 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x322 SWAP2 SWAP1 PUSH2 0x326 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x33F JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x327 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x356 DUP2 PUSH2 0x343 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x371 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x34D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x394 DUP2 PUSH2 0x343 JUMP JUMPDEST DUP2 EQ PUSH2 0x39F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B1 DUP2 PUSH2 0x38B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3CD JUMPI PUSH2 0x3CC PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3DB DUP5 DUP3 DUP6 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP 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 PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x437 DUP3 PUSH2 0x3EE JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x456 JUMPI PUSH2 0x455 PUSH2 0x3FF JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x469 PUSH2 0x377 JUMP JUMPDEST SWAP1 POP PUSH2 0x475 DUP3 DUP3 PUSH2 0x42E JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x495 JUMPI PUSH2 0x494 PUSH2 0x3FF JUMP JUMPDEST JUMPDEST PUSH2 0x49E DUP3 PUSH2 0x3EE JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4CD PUSH2 0x4C8 DUP5 PUSH2 0x47A JUMP JUMPDEST PUSH2 0x45F JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x4E9 JUMPI PUSH2 0x4E8 PUSH2 0x3E9 JUMP JUMPDEST JUMPDEST PUSH2 0x4F4 DUP5 DUP3 DUP6 PUSH2 0x4AB JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x511 JUMPI PUSH2 0x510 PUSH2 0x3E4 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x521 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x4BA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x541 JUMPI PUSH2 0x540 PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x55F JUMPI PUSH2 0x55E PUSH2 0x386 JUMP JUMPDEST JUMPDEST PUSH2 0x56B DUP6 DUP3 DUP7 ADD PUSH2 0x4FC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x57C DUP6 DUP3 DUP7 ADD PUSH2 0x3A2 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x59C JUMPI PUSH2 0x59B PUSH2 0x381 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x5BA JUMPI PUSH2 0x5B9 PUSH2 0x386 JUMP JUMPDEST JUMPDEST PUSH2 0x5C6 DUP5 DUP3 DUP6 ADD PUSH2 0x4FC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x609 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x5EE JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x618 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x629 DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x633 DUP2 DUP6 PUSH2 0x5DA JUMP JUMPDEST SWAP4 POP PUSH2 0x643 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5EB JUMP JUMPDEST PUSH2 0x64C DUP2 PUSH2 0x3EE JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x66C PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x34D JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x67E DUP2 DUP5 PUSH2 0x61E JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x69D DUP3 PUSH2 0x5CF JUMP JUMPDEST PUSH2 0x6A7 DUP2 DUP6 PUSH2 0x687 JUMP JUMPDEST SWAP4 POP PUSH2 0x6B7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x5EB JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6CF DUP3 DUP5 PUSH2 0x692 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x721 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x735 JUMPI PUSH2 0x734 PUSH2 0x6DA JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH4 0xB91A96D5 PUSH22 0x756DA6F03F70C81CCB185CFB141AB2CF7073C7D6277C SWAP3 PUSH30 0xD3EC64736F6C634300080800330000000000000000000000000000000000 ",
"sourceMap": "144:674:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;528:89;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;418:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;625:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;355:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;324:22;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;528:89;569:7;595:14;;588:21;;528:89;:::o;418:98::-;493:15;476:14;:32;;;;418:98;:::o;625:190::-;708:6;720:30;;;;;;;;727:15;720:30;;;;744:5;720:30;;;708:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;792:15;762:20;783:5;762:27;;;;;;:::i;:::-;;;;;;;;;;;;;:45;;;;625:190;;:::o;355:54::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;324:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:77:2:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o;1377:117::-;1486:1;1483;1476:12;1500:117;1609:1;1606;1599:12;1623:102;1664:6;1715:2;1711:7;1706:2;1699:5;1695:14;1691:28;1681:38;;1623:102;;;:::o;1731:180::-;1779:77;1776:1;1769:88;1876:4;1873:1;1866:15;1900:4;1897:1;1890:15;1917:281;2000:27;2022:4;2000:27;:::i;:::-;1992:6;1988:40;2130:6;2118:10;2115:22;2094:18;2082:10;2079:34;2076:62;2073:88;;;2141:18;;:::i;:::-;2073:88;2181:10;2177:2;2170:22;1960:238;1917:281;;:::o;2204:129::-;2238:6;2265:20;;:::i;:::-;2255:30;;2294:33;2322:4;2314:6;2294:33;:::i;:::-;2204:129;;;:::o;2339:308::-;2401:4;2491:18;2483:6;2480:30;2477:56;;;2513:18;;:::i;:::-;2477:56;2551:29;2573:6;2551:29;:::i;:::-;2543:37;;2635:4;2629;2625:15;2617:23;;2339:308;;;:::o;2653:154::-;2737:6;2732:3;2727;2714:30;2799:1;2790:6;2785:3;2781:16;2774:27;2653:154;;;:::o;2813:412::-;2891:5;2916:66;2932:49;2974:6;2932:49;:::i;:::-;2916:66;:::i;:::-;2907:75;;3005:6;2998:5;2991:21;3043:4;3036:5;3032:16;3081:3;3072:6;3067:3;3063:16;3060:25;3057:112;;;3088:79;;:::i;:::-;3057:112;3178:41;3212:6;3207:3;3202;3178:41;:::i;:::-;2897:328;2813:412;;;;;:::o;3245:340::-;3301:5;3350:3;3343:4;3335:6;3331:17;3327:27;3317:122;;3358:79;;:::i;:::-;3317:122;3475:6;3462:20;3500:79;3575:3;3567:6;3560:4;3552:6;3548:17;3500:79;:::i;:::-;3491:88;;3307:278;3245:340;;;;:::o;3591:654::-;3669:6;3677;3726:2;3714:9;3705:7;3701:23;3697:32;3694:119;;;3732:79;;:::i;:::-;3694:119;3880:1;3869:9;3865:17;3852:31;3910:18;3902:6;3899:30;3896:117;;;3932:79;;:::i;:::-;3896:117;4037:63;4092:7;4083:6;4072:9;4068:22;4037:63;:::i;:::-;4027:73;;3823:287;4149:2;4175:53;4220:7;4211:6;4200:9;4196:22;4175:53;:::i;:::-;4165:63;;4120:118;3591:654;;;;;:::o;4251:509::-;4320:6;4369:2;4357:9;4348:7;4344:23;4340:32;4337:119;;;4375:79;;:::i;:::-;4337:119;4523:1;4512:9;4508:17;4495:31;4553:18;4545:6;4542:30;4539:117;;;4575:79;;:::i;:::-;4539:117;4680:63;4735:7;4726:6;4715:9;4711:22;4680:63;:::i;:::-;4670:73;;4466:287;4251:509;;;;:::o;4766:99::-;4818:6;4852:5;4846:12;4836:22;;4766:99;;;:::o;4871:169::-;4955:11;4989:6;4984:3;4977:19;5029:4;5024:3;5020:14;5005:29;;4871:169;;;;:::o;5046:307::-;5114:1;5124:113;5138:6;5135:1;5132:13;5124:113;;;5223:1;5218:3;5214:11;5208:18;5204:1;5199:3;5195:11;5188:39;5160:2;5157:1;5153:10;5148:15;;5124:113;;;5255:6;5252:1;5249:13;5246:101;;;5335:1;5326:6;5321:3;5317:16;5310:27;5246:101;5095:258;5046:307;;;:::o;5359:364::-;5447:3;5475:39;5508:5;5475:39;:::i;:::-;5530:71;5594:6;5589:3;5530:71;:::i;:::-;5523:78;;5610:52;5655:6;5650:3;5643:4;5636:5;5632:16;5610:52;:::i;:::-;5687:29;5709:6;5687:29;:::i;:::-;5682:3;5678:39;5671:46;;5451:272;5359:364;;;;:::o;5729:423::-;5870:4;5908:2;5897:9;5893:18;5885:26;;5921:71;5989:1;5978:9;5974:17;5965:6;5921:71;:::i;:::-;6039:9;6033:4;6029:20;6024:2;6013:9;6009:18;6002:48;6067:78;6140:4;6131:6;6067:78;:::i;:::-;6059:86;;5729:423;;;;;:::o;6158:148::-;6260:11;6297:3;6282:18;;6158:148;;;;:::o;6312:377::-;6418:3;6446:39;6479:5;6446:39;:::i;:::-;6501:89;6583:6;6578:3;6501:89;:::i;:::-;6494:96;;6599:52;6644:6;6639:3;6632:4;6625:5;6621:16;6599:52;:::i;:::-;6676:6;6671:3;6667:16;6660:23;;6422:267;6312:377;;;;:::o;6695:275::-;6827:3;6849:95;6940:3;6931:6;6849:95;:::i;:::-;6842:102;;6961:3;6954:10;;6695:275;;;;:::o;6976:180::-;7024:77;7021:1;7014:88;7121:4;7118:1;7111:15;7145:4;7142:1;7135:15;7162:320;7206:6;7243:1;7237:4;7233:12;7223:22;;7290:1;7284:4;7280:12;7311:18;7301:81;;7367:4;7359:6;7355:17;7345:27;;7301:81;7429:2;7421:6;7418:14;7398:18;7395:38;7392:84;;;7448:18;;:::i;:::-;7392:84;7213:269;7162:320;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "381000",
"executionCost": "418",
"totalCost": "381418"
},
"external": {
"addPerson(string,uint256)": "infinite",
"nameToFavoriteNumber(string)": "infinite",
"people(uint256)": "infinite",
"retrieve()": "2415",
"store(uint256)": "22520"
}
},
"legacyAssembly": {
".code": [
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 144,
"end": 818,
"name": "MSTORE",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "DUP1",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "ISZERO",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 144,
"end": 818,
"name": "JUMPI",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 144,
"end": 818,
"name": "DUP1",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "REVERT",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 144,
"end": 818,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "POP",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 144,
"end": 818,
"name": "DUP1",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 144,
"end": 818,
"name": "CODECOPY",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 144,
"end": 818,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a264697066735822122063b91a96d575756da6f03f70c81ccb185cfb141ab2cf7073c7d6277c927dd3ec64736f6c63430008080033",
".code": [
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 144,
"end": 818,
"name": "MSTORE",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "DUP1",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "ISZERO",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 144,
"end": 818,
"name": "JUMPI",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 144,
"end": 818,
"name": "DUP1",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "REVERT",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 144,
"end": 818,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "POP",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 144,
"end": 818,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "LT",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 144,
"end": 818,
"name": "JUMPI",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 144,
"end": 818,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 144,
"end": 818,
"name": "SHR",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "DUP1",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "2E64CEC1"
},
{
"begin": 144,
"end": 818,
"name": "EQ",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 144,
"end": 818,
"name": "JUMPI",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "DUP1",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "6057361D"
},
{
"begin": 144,
"end": 818,
"name": "EQ",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 144,
"end": 818,
"name": "JUMPI",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "DUP1",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "6F760F41"
},
{
"begin": 144,
"end": 818,
"name": "EQ",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 144,
"end": 818,
"name": "JUMPI",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "DUP1",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "8BAB8DD5"
},
{
"begin": 144,
"end": 818,
"name": "EQ",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 144,
"end": 818,
"name": "JUMPI",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "DUP1",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "9E7A13AD"
},
{
"begin": 144,
"end": 818,
"name": "EQ",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 144,
"end": 818,
"name": "JUMPI",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 144,
"end": 818,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 144,
"end": 818,
"name": "DUP1",
"source": 0
},
{
"begin": 144,
"end": 818,
"name": "REVERT",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 528,
"end": 617,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 528,
"end": 617,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 528,
"end": 617,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 528,
"end": 617,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 528,
"end": 617,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 528,
"end": 617,
"name": "MLOAD",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 528,
"end": 617,
"name": "SWAP2",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "SWAP1",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 528,
"end": 617,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 528,
"end": 617,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 528,
"end": 617,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 528,
"end": 617,
"name": "MLOAD",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "DUP1",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "SWAP2",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "SUB",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "SWAP1",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "RETURN",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 418,
"end": 516,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 418,
"end": 516,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 418,
"end": 516,
"name": "DUP1",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "SUB",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "DUP2",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "ADD",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "SWAP1",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 418,
"end": 516,
"name": "SWAP2",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "SWAP1",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 418,
"end": 516,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 418,
"end": 516,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 418,
"end": 516,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 418,
"end": 516,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 418,
"end": 516,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 418,
"end": 516,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "STOP",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 625,
"end": 815,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 625,
"end": 815,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 625,
"end": 815,
"name": "DUP1",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "SUB",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "DUP2",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "ADD",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "SWAP1",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 625,
"end": 815,
"name": "SWAP2",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "SWAP1",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 625,
"end": 815,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 625,
"end": 815,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 625,
"end": 815,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 625,
"end": 815,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 625,
"end": 815,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 625,
"end": 815,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "STOP",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 355,
"end": 409,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 355,
"end": 409,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 355,
"end": 409,
"name": "DUP1",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "SUB",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "DUP2",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "ADD",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "SWAP1",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 355,
"end": 409,
"name": "SWAP2",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "SWAP1",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 355,
"end": 409,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 355,
"end": 409,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 355,
"end": 409,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 355,
"end": 409,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 355,
"end": 409,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 355,
"end": 409,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 355,
"end": 409,
"name": "MLOAD",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 355,
"end": 409,
"name": "SWAP2",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "SWAP1",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 355,
"end": 409,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 355,
"end": 409,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 355,
"end": 409,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 355,
"end": 409,
"name": "MLOAD",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "DUP1",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "SWAP2",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "SUB",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "SWAP1",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "RETURN",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 324,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SUB",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 324,
"end": 346,
"name": "SWAP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 324,
"end": 346,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 324,
"end": 346,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 324,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 324,
"end": 346,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 324,
"end": 346,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 324,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 324,
"end": 346,
"name": "MLOAD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 324,
"end": 346,
"name": "SWAP3",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 324,
"end": 346,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 324,
"end": 346,
"name": "tag",
"source": 0,
"value": "28"
},
{
"begin": 324,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 324,
"end": 346,
"name": "MLOAD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SUB",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "RETURN",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 528,
"end": 617,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 569,
"end": 576,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 595,
"end": 609,
"name": "DUP1",
"source": 0
},
{
"begin": 595,
"end": 609,
"name": "SLOAD",
"source": 0
},
{
"begin": 588,
"end": 609,
"name": "SWAP1",
"source": 0
},
{
"begin": 588,
"end": 609,
"name": "POP",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "SWAP1",
"source": 0
},
{
"begin": 528,
"end": 617,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 418,
"end": 516,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 418,
"end": 516,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 493,
"end": 508,
"name": "DUP1",
"source": 0
},
{
"begin": 476,
"end": 490,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 476,
"end": 508,
"name": "DUP2",
"source": 0
},
{
"begin": 476,
"end": 508,
"name": "SWAP1",
"source": 0
},
{
"begin": 476,
"end": 508,
"name": "SSTORE",
"source": 0
},
{
"begin": 476,
"end": 508,
"name": "POP",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "POP",
"source": 0
},
{
"begin": 418,
"end": 516,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 625,
"end": 815,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 625,
"end": 815,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 708,
"end": 714,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 720,
"end": 750,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 720,
"end": 750,
"name": "MLOAD",
"source": 0
},
{
"begin": 720,
"end": 750,
"name": "DUP1",
"source": 0
},
{
"begin": 720,
"end": 750,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 720,
"end": 750,
"name": "ADD",
"source": 0
},
{
"begin": 720,
"end": 750,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 720,
"end": 750,
"name": "MSTORE",
"source": 0
},
{
"begin": 720,
"end": 750,
"name": "DUP1",
"source": 0
},
{
"begin": 727,
"end": 742,
"name": "DUP4",
"source": 0
},
{
"begin": 720,
"end": 750,
"name": "DUP2",
"source": 0
},
{
"begin": 720,
"end": 750,
"name": "MSTORE",
"source": 0
},
{
"begin": 720,
"end": 750,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 720,
"end": 750,
"name": "ADD",
"source": 0
},
{
"begin": 744,
"end": 749,
"name": "DUP5",
"source": 0
},
{
"begin": 720,
"end": 750,
"name": "DUP2",
"source": 0
},
{
"begin": 720,
"end": 750,
"name": "MSTORE",
"source": 0
},
{
"begin": 720,
"end": 750,
"name": "POP",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "DUP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 708,
"end": 751,
"name": "DUP2",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SLOAD",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "ADD",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "DUP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "DUP3",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SSTORE",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "DUP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP2",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "POP",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "POP",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 708,
"end": 751,
"name": "SWAP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SUB",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 708,
"end": 751,
"name": "MSTORE",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 708,
"end": 751,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 708,
"end": 751,
"name": "KECCAK256",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 708,
"end": 751,
"name": "MUL",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "ADD",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 708,
"end": 751,
"name": "SWAP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP2",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP2",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP2",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "POP",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 708,
"end": 751,
"name": "DUP3",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "ADD",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "MLOAD",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "DUP2",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 708,
"end": 751,
"name": "ADD",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SSTORE",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 708,
"end": 751,
"name": "DUP3",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "ADD",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "MLOAD",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "DUP2",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 708,
"end": 751,
"name": "ADD",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "DUP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "MLOAD",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 708,
"end": 751,
"name": "ADD",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 708,
"end": 751,
"name": "SWAP3",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP2",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "SWAP1",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 708,
"end": 751,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 708,
"end": 751,
"name": "tag",
"source": 0,
"value": "34"
},
{
"begin": 708,
"end": 751,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "POP",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "POP",
"source": 0
},
{
"begin": 708,
"end": 751,
"name": "POP",
"source": 0
},
{
"begin": 792,
"end": 807,
"name": "DUP1",
"source": 0
},
{
"begin": 762,
"end": 782,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 783,
"end": 788,
"name": "DUP4",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 762,
"end": 789,
"name": "MLOAD",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 762,
"end": 789,
"name": "SWAP2",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "SWAP1",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 762,
"end": 789,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 762,
"end": 789,
"name": "tag",
"source": 0,
"value": "36"
},
{
"begin": 762,
"end": 789,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "SWAP1",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "DUP2",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "MSTORE",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 762,
"end": 789,
"name": "ADD",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 762,
"end": 789,
"name": "MLOAD",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "DUP1",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "SWAP2",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "SUB",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "SWAP1",
"source": 0
},
{
"begin": 762,
"end": 789,
"name": "KECCAK256",
"source": 0
},
{
"begin": 762,
"end": 807,
"name": "DUP2",
"source": 0
},
{
"begin": 762,
"end": 807,
"name": "SWAP1",
"source": 0
},
{
"begin": 762,
"end": 807,
"name": "SSTORE",
"source": 0
},
{
"begin": 762,
"end": 807,
"name": "POP",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "POP",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "POP",
"source": 0
},
{
"begin": 625,
"end": 815,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 355,
"end": 409,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 355,
"end": 409,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 355,
"end": 409,
"name": "DUP2",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "DUP1",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "MLOAD",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 355,
"end": 409,
"name": "DUP2",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "ADD",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "DUP3",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "ADD",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "DUP1",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "MLOAD",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "DUP5",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "DUP3",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "MSTORE",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 355,
"end": 409,
"name": "DUP4",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "ADD",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 355,
"end": 409,
"name": "DUP6",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "ADD",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "KECCAK256",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "DUP2",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "DUP4",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "MSTORE",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "DUP1",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "SWAP6",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "POP",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "POP",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "POP",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "POP",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "POP",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "POP",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 355,
"end": 409,
"name": "SWAP2",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "POP",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "SWAP1",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "POP",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "SLOAD",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "DUP2",
"source": 0
},
{
"begin": 355,
"end": 409,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 324,
"end": 346,
"name": "tag",
"source": 0,
"value": "27"
},
{
"begin": 324,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 324,
"end": 346,
"name": "DUP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SLOAD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "LT",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 324,
"end": 346,
"name": "JUMPI",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "REVERT",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "tag",
"source": 0,
"value": "38"
},
{
"begin": 324,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 324,
"end": 346,
"name": "MSTORE",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 324,
"end": 346,
"name": "KECCAK256",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 324,
"end": 346,
"name": "MUL",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 324,
"end": 346,
"name": "SWAP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "POP",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "POP",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 324,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SLOAD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 324,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SLOAD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 324,
"end": 346,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 324,
"end": 346,
"name": "tag",
"source": 0,
"value": "40"
},
{
"begin": 324,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 324,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DIV",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "MUL",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 324,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 324,
"end": 346,
"name": "MLOAD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 324,
"end": 346,
"name": "MSTORE",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP3",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "MSTORE",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 324,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP3",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SLOAD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "42"
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 324,
"end": 346,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 324,
"end": 346,
"name": "tag",
"source": 0,
"value": "42"
},
{
"begin": 324,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "ISZERO",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 324,
"end": 346,
"name": "JUMPI",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 324,
"end": 346,
"name": "LT",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "44"
},
{
"begin": 324,
"end": 346,
"name": "JUMPI",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP4",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SLOAD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DIV",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "MUL",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP4",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "MSTORE",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 324,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 324,
"end": 346,
"name": "JUMP",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "tag",
"source": 0,
"value": "44"
},
{
"begin": 324,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP3",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 324,
"end": 346,
"name": "MSTORE",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 324,
"end": 346,
"name": "KECCAK256",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "tag",
"source": 0,
"value": "45"
},
{
"begin": 324,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SLOAD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "MSTORE",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 324,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 324,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP4",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "GT",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "45"
},
{
"begin": 324,
"end": 346,
"name": "JUMPI",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP3",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SUB",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 324,
"end": 346,
"name": "AND",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP3",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP2",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "tag",
"source": 0,
"value": "43"
},
{
"begin": 324,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "POP",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "POP",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "POP",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "POP",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "POP",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "POP",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "DUP3",
"source": 0
},
{
"begin": 324,
"end": 346,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "35"
},
{
"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": "46"
},
{
"begin": -1,
"end": -1,
"name": "SWAP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH [tag]",
"source": -1,
"value": "41"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[in]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "46"
},
{
"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": "48"
},
{
"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": "47"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "48"
},
{
"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": "49"
},
{
"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": "47"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "49"
},
{
"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": "47"
},
{
"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": "50"
},
{
"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": "51"
},
{
"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": "50"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "51"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "47"
},
{
"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": "52"
},
{
"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": "53"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1,
"value": "[in]"
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "52"
},
{
"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": "53"
},
{
"begin": -1,
"end": -1,
"name": "JUMPDEST",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "54"
},
{
"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": "55"
},
{
"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": "54"
},
{
"begin": -1,
"end": -1,
"name": "JUMP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "tag",
"source": -1,
"value": "55"
},
{
"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": 84,
"name": "tag",
"source": 2,
"value": "56"
},
{
"begin": 7,
"end": 84,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 44,
"end": 51,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 73,
"end": 78,
"name": "DUP2",
"source": 2
},
{
"begin": 62,
"end": 78,
"name": "SWAP1",
"source": 2
},
{
"begin": 62,
"end": 78,
"name": "POP",
"source": 2
},
{
"begin": 7,
"end": 84,
"name": "SWAP2",
"source": 2
},
{
"begin": 7,
"end": 84,
"name": "SWAP1",
"source": 2
},
{
"begin": 7,
"end": 84,
"name": "POP",
"source": 2
},
{
"begin": 7,
"end": 84,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 90,
"end": 208,
"name": "tag",
"source": 2,
"value": "57"
},
{
"begin": 90,
"end": 208,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 177,
"end": 201,
"name": "PUSH [tag]",
"source": 2,
"value": "83"
},
{
"begin": 195,
"end": 200,
"name": "DUP2",
"source": 2
},
{
"begin": 177,
"end": 201,
"name": "PUSH [tag]",
"source": 2,
"value": "56"
},
{
"begin": 177,
"end": 201,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 177,
"end": 201,
"name": "tag",
"source": 2,
"value": "83"
},
{
"begin": 177,
"end": 201,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 172,
"end": 175,
"name": "DUP3",
"source": 2
},
{
"begin": 165,
"end": 202,
"name": "MSTORE",
"source": 2
},
{
"begin": 90,
"end": 208,
"name": "POP",
"source": 2
},
{
"begin": 90,
"end": 208,
"name": "POP",
"source": 2
},
{
"begin": 90,
"end": 208,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 214,
"end": 436,
"name": "tag",
"source": 2,
"value": "11"
},
{
"begin": 214,
"end": 436,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 307,
"end": 311,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 345,
"end": 347,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 334,
"end": 343,
"name": "DUP3",
"source": 2
},
{
"begin": 330,
"end": 348,
"name": "ADD",
"source": 2
},
{
"begin": 322,
"end": 348,
"name": "SWAP1",
"source": 2
},
{
"begin": 322,
"end": 348,
"name": "POP",
"source": 2
},
{
"begin": 358,
"end": 429,
"name": "PUSH [tag]",
"source": 2,
"value": "85"
},
{
"begin": 426,
"end": 427,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 415,
"end": 424,
"name": "DUP4",
"source": 2
},
{
"begin": 411,
"end": 428,
"name": "ADD",
"source": 2
},
{
"begin": 402,
"end": 408,
"name": "DUP5",
"source": 2
},
{
"begin": 358,
"end": 429,
"name": "PUSH [tag]",
"source": 2,
"value": "57"
},
{
"begin": 358,
"end": 429,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 358,
"end": 429,
"name": "tag",
"source": 2,
"value": "85"
},
{
"begin": 358,
"end": 429,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 214,
"end": 436,
"name": "SWAP3",
"source": 2
},
{
"begin": 214,
"end": 436,
"name": "SWAP2",
"source": 2
},
{
"begin": 214,
"end": 436,
"name": "POP",
"source": 2
},
{
"begin": 214,
"end": 436,
"name": "POP",
"source": 2
},
{
"begin": 214,
"end": 436,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 442,
"end": 517,
"name": "tag",
"source": 2,
"value": "58"
},
{
"begin": 442,
"end": 517,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 475,
"end": 481,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 508,
"end": 510,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 502,
"end": 511,
"name": "MLOAD",
"source": 2
},
{
"begin": 492,
"end": 511,
"name": "SWAP1",
"source": 2
},
{
"begin": 492,
"end": 511,
"name": "POP",
"source": 2
},
{
"begin": 442,
"end": 517,
"name": "SWAP1",
"source": 2
},
{
"begin": 442,
"end": 517,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 523,
"end": 640,
"name": "tag",
"source": 2,
"value": "59"
},
{
"begin": 523,
"end": 640,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 632,
"end": 633,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 629,
"end": 630,
"name": "DUP1",
"source": 2
},
{
"begin": 622,
"end": 634,
"name": "REVERT",
"source": 2
},
{
"begin": 646,
"end": 763,
"name": "tag",
"source": 2,
"value": "60"
},
{
"begin": 646,
"end": 763,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 755,
"end": 756,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 752,
"end": 753,
"name": "DUP1",
"source": 2
},
{
"begin": 745,
"end": 757,
"name": "REVERT",
"source": 2
},
{
"begin": 769,
"end": 891,
"name": "tag",
"source": 2,
"value": "61"
},
{
"begin": 769,
"end": 891,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 842,
"end": 866,
"name": "PUSH [tag]",
"source": 2,
"value": "90"
},
{
"begin": 860,
"end": 865,
"name": "DUP2",
"source": 2
},
{
"begin": 842,
"end": 866,
"name": "PUSH [tag]",
"source": 2,
"value": "56"
},
{
"begin": 842,
"end": 866,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 842,
"end": 866,
"name": "tag",
"source": 2,
"value": "90"
},
{
"begin": 842,
"end": 866,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 835,
"end": 840,
"name": "DUP2",
"source": 2
},
{
"begin": 832,
"end": 867,
"name": "EQ",
"source": 2
},
{
"begin": 822,
"end": 885,
"name": "PUSH [tag]",
"source": 2,
"value": "91"
},
{
"begin": 822,
"end": 885,
"name": "JUMPI",
"source": 2
},
{
"begin": 881,
"end": 882,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 878,
"end": 879,
"name": "DUP1",
"source": 2
},
{
"begin": 871,
"end": 883,
"name": "REVERT",
"source": 2
},
{
"begin": 822,
"end": 885,
"name": "tag",
"source": 2,
"value": "91"
},
{
"begin": 822,
"end": 885,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 769,
"end": 891,
"name": "POP",
"source": 2
},
{
"begin": 769,
"end": 891,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 897,
"end": 1036,
"name": "tag",
"source": 2,
"value": "62"
},
{
"begin": 897,
"end": 1036,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 943,
"end": 948,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 981,
"end": 987,
"name": "DUP2",
"source": 2
},
{
"begin": 968,
"end": 988,
"name": "CALLDATALOAD",
"source": 2
},
{
"begin": 959,
"end": 988,
"name": "SWAP1",
"source": 2
},
{
"begin": 959,
"end": 988,
"name": "POP",
"source": 2
},
{
"begin": 997,
"end": 1030,
"name": "PUSH [tag]",
"source": 2,
"value": "93"
},
{
"begin": 1024,
"end": 1029,
"name": "DUP2",
"source": 2
},
{
"begin": 997,
"end": 1030,
"name": "PUSH [tag]",
"source": 2,
"value": "61"
},
{
"begin": 997,
"end": 1030,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 997,
"end": 1030,
"name": "tag",
"source": 2,
"value": "93"
},
{
"begin": 997,
"end": 1030,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 897,
"end": 1036,
"name": "SWAP3",
"source": 2
},
{
"begin": 897,
"end": 1036,
"name": "SWAP2",
"source": 2
},
{
"begin": 897,
"end": 1036,
"name": "POP",
"source": 2
},
{
"begin": 897,
"end": 1036,
"name": "POP",
"source": 2
},
{
"begin": 897,
"end": 1036,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 1042,
"end": 1371,
"name": "tag",
"source": 2,
"value": "14"
},
{
"begin": 1042,
"end": 1371,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1101,
"end": 1107,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1150,
"end": 1152,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 1138,
"end": 1147,
"name": "DUP3",
"source": 2
},
{
"begin": 1129,
"end": 1136,
"name": "DUP5",
"source": 2
},
{
"begin": 1125,
"end": 1148,
"name": "SUB",
"source": 2
},
{
"begin": 1121,
"end": 1153,
"name": "SLT",
"source": 2
},
{
"begin": 1118,
"end": 1237,
"name": "ISZERO",
"source": 2
},
{
"begin": 1118,
"end": 1237,
"name": "PUSH [tag]",
"source": 2,
"value": "95"
},
{
"begin": 1118,
"end": 1237,
"name": "JUMPI",
"source": 2
},
{
"begin": 1156,
"end": 1235,
"name": "PUSH [tag]",
"source": 2,
"value": "96"
},
{
"begin": 1156,
"end": 1235,
"name": "PUSH [tag]",
"source": 2,
"value": "59"
},
{
"begin": 1156,
"end": 1235,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 1156,
"end": 1235,
"name": "tag",
"source": 2,
"value": "96"
},
{
"begin": 1156,
"end": 1235,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1118,
"end": 1237,
"name": "tag",
"source": 2,
"value": "95"
},
{
"begin": 1118,
"end": 1237,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1276,
"end": 1277,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1301,
"end": 1354,
"name": "PUSH [tag]",
"source": 2,
"value": "97"
},
{
"begin": 1346,
"end": 1353,
"name": "DUP5",
"source": 2
},
{
"begin": 1337,
"end": 1343,
"name": "DUP3",
"source": 2
},
{
"begin": 1326,
"end": 1335,
"name": "DUP6",
"source": 2
},
{
"begin": 1322,
"end": 1344,
"name": "ADD",
"source": 2
},
{
"begin": 1301,
"end": 1354,
"name": "PUSH [tag]",
"source": 2,
"value": "62"
},
{
"begin": 1301,
"end": 1354,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 1301,
"end": 1354,
"name": "tag",
"source": 2,
"value": "97"
},
{
"begin": 1301,
"end": 1354,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1291,
"end": 1354,
"name": "SWAP2",
"source": 2
},
{
"begin": 1291,
"end": 1354,
"name": "POP",
"source": 2
},
{
"begin": 1247,
"end": 1364,
"name": "POP",
"source": 2
},
{
"begin": 1042,
"end": 1371,
"name": "SWAP3",
"source": 2
},
{
"begin": 1042,
"end": 1371,
"name": "SWAP2",
"source": 2
},
{
"begin": 1042,
"end": 1371,
"name": "POP",
"source": 2
},
{
"begin": 1042,
"end": 1371,
"name": "POP",
"source": 2
},
{
"begin": 1042,
"end": 1371,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 1377,
"end": 1494,
"name": "tag",
"source": 2,
"value": "63"
},
{
"begin": 1377,
"end": 1494,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1486,
"end": 1487,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1483,
"end": 1484,
"name": "DUP1",
"source": 2
},
{
"begin": 1476,
"end": 1488,
"name": "REVERT",
"source": 2
},
{
"begin": 1500,
"end": 1617,
"name": "tag",
"source": 2,
"value": "64"
},
{
"begin": 1500,
"end": 1617,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1609,
"end": 1610,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1606,
"end": 1607,
"name": "DUP1",
"source": 2
},
{
"begin": 1599,
"end": 1611,
"name": "REVERT",
"source": 2
},
{
"begin": 1623,
"end": 1725,
"name": "tag",
"source": 2,
"value": "65"
},
{
"begin": 1623,
"end": 1725,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1664,
"end": 1670,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1715,
"end": 1717,
"name": "PUSH",
"source": 2,
"value": "1F"
},
{
"begin": 1711,
"end": 1718,
"name": "NOT",
"source": 2
},
{
"begin": 1706,
"end": 1708,
"name": "PUSH",
"source": 2,
"value": "1F"
},
{
"begin": 1699,
"end": 1704,
"name": "DUP4",
"source": 2
},
{
"begin": 1695,
"end": 1709,
"name": "ADD",
"source": 2
},
{
"begin": 1691,
"end": 1719,
"name": "AND",
"source": 2
},
{
"begin": 1681,
"end": 1719,
"name": "SWAP1",
"source": 2
},
{
"begin": 1681,
"end": 1719,
"name": "POP",
"source": 2
},
{
"begin": 1623,
"end": 1725,
"name": "SWAP2",
"source": 2
},
{
"begin": 1623,
"end": 1725,
"name": "SWAP1",
"source": 2
},
{
"begin": 1623,
"end": 1725,
"name": "POP",
"source": 2
},
{
"begin": 1623,
"end": 1725,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 1731,
"end": 1911,
"name": "tag",
"source": 2,
"value": "66"
},
{
"begin": 1731,
"end": 1911,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1779,
"end": 1856,
"name": "PUSH",
"source": 2,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1776,
"end": 1777,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1769,
"end": 1857,
"name": "MSTORE",
"source": 2
},
{
"begin": 1876,
"end": 1880,
"name": "PUSH",
"source": 2,
"value": "41"
},
{
"begin": 1873,
"end": 1874,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 1866,
"end": 1881,
"name": "MSTORE",
"source": 2
},
{
"begin": 1900,
"end": 1904,
"name": "PUSH",
"source": 2,
"value": "24"
},
{
"begin": 1897,
"end": 1898,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1890,
"end": 1905,
"name": "REVERT",
"source": 2
},
{
"begin": 1917,
"end": 2198,
"name": "tag",
"source": 2,
"value": "67"
},
{
"begin": 1917,
"end": 2198,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2000,
"end": 2027,
"name": "PUSH [tag]",
"source": 2,
"value": "103"
},
{
"begin": 2022,
"end": 2026,
"name": "DUP3",
"source": 2
},
{
"begin": 2000,
"end": 2027,
"name": "PUSH [tag]",
"source": 2,
"value": "65"
},
{
"begin": 2000,
"end": 2027,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2000,
"end": 2027,
"name": "tag",
"source": 2,
"value": "103"
},
{
"begin": 2000,
"end": 2027,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1992,
"end": 1998,
"name": "DUP2",
"source": 2
},
{
"begin": 1988,
"end": 2028,
"name": "ADD",
"source": 2
},
{
"begin": 2130,
"end": 2136,
"name": "DUP2",
"source": 2
},
{
"begin": 2118,
"end": 2128,
"name": "DUP2",
"source": 2
},
{
"begin": 2115,
"end": 2137,
"name": "LT",
"source": 2
},
{
"begin": 2094,
"end": 2112,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 2082,
"end": 2092,
"name": "DUP3",
"source": 2
},
{
"begin": 2079,
"end": 2113,
"name": "GT",
"source": 2
},
{
"begin": 2076,
"end": 2138,
"name": "OR",
"source": 2
},
{
"begin": 2073,
"end": 2161,
"name": "ISZERO",
"source": 2
},
{
"begin": 2073,
"end": 2161,
"name": "PUSH [tag]",
"source": 2,
"value": "104"
},
{
"begin": 2073,
"end": 2161,
"name": "JUMPI",
"source": 2
},
{
"begin": 2141,
"end": 2159,
"name": "PUSH [tag]",
"source": 2,
"value": "105"
},
{
"begin": 2141,
"end": 2159,
"name": "PUSH [tag]",
"source": 2,
"value": "66"
},
{
"begin": 2141,
"end": 2159,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2141,
"end": 2159,
"name": "tag",
"source": 2,
"value": "105"
},
{
"begin": 2141,
"end": 2159,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2073,
"end": 2161,
"name": "tag",
"source": 2,
"value": "104"
},
{
"begin": 2073,
"end": 2161,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2181,
"end": 2191,
"name": "DUP1",
"source": 2
},
{
"begin": 2177,
"end": 2179,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 2170,
"end": 2192,
"name": "MSTORE",
"source": 2
},
{
"begin": 1960,
"end": 2198,
"name": "POP",
"source": 2
},
{
"begin": 1917,
"end": 2198,
"name": "POP",
"source": 2
},
{
"begin": 1917,
"end": 2198,
"name": "POP",
"source": 2
},
{
"begin": 1917,
"end": 2198,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 2204,
"end": 2333,
"name": "tag",
"source": 2,
"value": "68"
},
{
"begin": 2204,
"end": 2333,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2238,
"end": 2244,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 2265,
"end": 2285,
"name": "PUSH [tag]",
"source": 2,
"value": "107"
},
{
"begin": 2265,
"end": 2285,
"name": "PUSH [tag]",
"source": 2,
"value": "58"
},
{
"begin": 2265,
"end": 2285,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2265,
"end": 2285,
"name": "tag",
"source": 2,
"value": "107"
},
{
"begin": 2265,
"end": 2285,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2255,
"end": 2285,
"name": "SWAP1",
"source": 2
},
{
"begin": 2255,
"end": 2285,
"name": "POP",
"source": 2
},
{
"begin": 2294,
"end": 2327,
"name": "PUSH [tag]",
"source": 2,
"value": "108"
},
{
"begin": 2322,
"end": 2326,
"name": "DUP3",
"source": 2
},
{
"begin": 2314,
"end": 2320,
"name": "DUP3",
"source": 2
},
{
"begin": 2294,
"end": 2327,
"name": "PUSH [tag]",
"source": 2,
"value": "67"
},
{
"begin": 2294,
"end": 2327,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2294,
"end": 2327,
"name": "tag",
"source": 2,
"value": "108"
},
{
"begin": 2294,
"end": 2327,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2204,
"end": 2333,
"name": "SWAP2",
"source": 2
},
{
"begin": 2204,
"end": 2333,
"name": "SWAP1",
"source": 2
},
{
"begin": 2204,
"end": 2333,
"name": "POP",
"source": 2
},
{
"begin": 2204,
"end": 2333,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 2339,
"end": 2647,
"name": "tag",
"source": 2,
"value": "69"
},
{
"begin": 2339,
"end": 2647,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2401,
"end": 2405,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 2491,
"end": 2509,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 2483,
"end": 2489,
"name": "DUP3",
"source": 2
},
{
"begin": 2480,
"end": 2510,
"name": "GT",
"source": 2
},
{
"begin": 2477,
"end": 2533,
"name": "ISZERO",
"source": 2
},
{
"begin": 2477,
"end": 2533,
"name": "PUSH [tag]",
"source": 2,
"value": "110"
},
{
"begin": 2477,
"end": 2533,
"name": "JUMPI",
"source": 2
},
{
"begin": 2513,
"end": 2531,
"name": "PUSH [tag]",
"source": 2,
"value": "111"
},
{
"begin": 2513,
"end": 2531,
"name": "PUSH [tag]",
"source": 2,
"value": "66"
},
{
"begin": 2513,
"end": 2531,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2513,
"end": 2531,
"name": "tag",
"source": 2,
"value": "111"
},
{
"begin": 2513,
"end": 2531,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2477,
"end": 2533,
"name": "tag",
"source": 2,
"value": "110"
},
{
"begin": 2477,
"end": 2533,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2551,
"end": 2580,
"name": "PUSH [tag]",
"source": 2,
"value": "112"
},
{
"begin": 2573,
"end": 2579,
"name": "DUP3",
"source": 2
},
{
"begin": 2551,
"end": 2580,
"name": "PUSH [tag]",
"source": 2,
"value": "65"
},
{
"begin": 2551,
"end": 2580,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2551,
"end": 2580,
"name": "tag",
"source": 2,
"value": "112"
},
{
"begin": 2551,
"end": 2580,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2543,
"end": 2580,
"name": "SWAP1",
"source": 2
},
{
"begin": 2543,
"end": 2580,
"name": "POP",
"source": 2
},
{
"begin": 2635,
"end": 2639,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 2629,
"end": 2633,
"name": "DUP2",
"source": 2
},
{
"begin": 2625,
"end": 2640,
"name": "ADD",
"source": 2
},
{
"begin": 2617,
"end": 2640,
"name": "SWAP1",
"source": 2
},
{
"begin": 2617,
"end": 2640,
"name": "POP",
"source": 2
},
{
"begin": 2339,
"end": 2647,
"name": "SWAP2",
"source": 2
},
{
"begin": 2339,
"end": 2647,
"name": "SWAP1",
"source": 2
},
{
"begin": 2339,
"end": 2647,
"name": "POP",
"source": 2
},
{
"begin": 2339,
"end": 2647,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 2653,
"end": 2807,
"name": "tag",
"source": 2,
"value": "70"
},
{
"begin": 2653,
"end": 2807,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2737,
"end": 2743,
"name": "DUP3",
"source": 2
},
{
"begin": 2732,
"end": 2735,
"name": "DUP2",
"source": 2
},
{
"begin": 2727,
"end": 2730,
"name": "DUP4",
"source": 2
},
{
"begin": 2714,
"end": 2744,
"name": "CALLDATACOPY",
"source": 2
},
{
"begin": 2799,
"end": 2800,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 2790,
"end": 2796,
"name": "DUP4",
"source": 2
},
{
"begin": 2785,
"end": 2788,
"name": "DUP4",
"source": 2
},
{
"begin": 2781,
"end": 2797,
"name": "ADD",
"source": 2
},
{
"begin": 2774,
"end": 2801,
"name": "MSTORE",
"source": 2
},
{
"begin": 2653,
"end": 2807,
"name": "POP",
"source": 2
},
{
"begin": 2653,
"end": 2807,
"name": "POP",
"source": 2
},
{
"begin": 2653,
"end": 2807,
"name": "POP",
"source": 2
},
{
"begin": 2653,
"end": 2807,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 2813,
"end": 3225,
"name": "tag",
"source": 2,
"value": "71"
},
{
"begin": 2813,
"end": 3225,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2891,
"end": 2896,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 2916,
"end": 2982,
"name": "PUSH [tag]",
"source": 2,
"value": "115"
},
{
"begin": 2932,
"end": 2981,
"name": "PUSH [tag]",
"source": 2,
"value": "116"
},
{
"begin": 2974,
"end": 2980,
"name": "DUP5",
"source": 2
},
{
"begin": 2932,
"end": 2981,
"name": "PUSH [tag]",
"source": 2,
"value": "69"
},
{
"begin": 2932,
"end": 2981,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2932,
"end": 2981,
"name": "tag",
"source": 2,
"value": "116"
},
{
"begin": 2932,
"end": 2981,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2916,
"end": 2982,
"name": "PUSH [tag]",
"source": 2,
"value": "68"
},
{
"begin": 2916,
"end": 2982,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 2916,
"end": 2982,
"name": "tag",
"source": 2,
"value": "115"
},
{
"begin": 2916,
"end": 2982,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2907,
"end": 2982,
"name": "SWAP1",
"source": 2
},
{
"begin": 2907,
"end": 2982,
"name": "POP",
"source": 2
},
{
"begin": 3005,
"end": 3011,
"name": "DUP3",
"source": 2
},
{
"begin": 2998,
"end": 3003,
"name": "DUP2",
"source": 2
},
{
"begin": 2991,
"end": 3012,
"name": "MSTORE",
"source": 2
},
{
"begin": 3043,
"end": 3047,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 3036,
"end": 3041,
"name": "DUP2",
"source": 2
},
{
"begin": 3032,
"end": 3048,
"name": "ADD",
"source": 2
},
{
"begin": 3081,
"end": 3084,
"name": "DUP5",
"source": 2
},
{
"begin": 3072,
"end": 3078,
"name": "DUP5",
"source": 2
},
{
"begin": 3067,
"end": 3070,
"name": "DUP5",
"source": 2
},
{
"begin": 3063,
"end": 3079,
"name": "ADD",
"source": 2
},
{
"begin": 3060,
"end": 3085,
"name": "GT",
"source": 2
},
{
"begin": 3057,
"end": 3169,
"name": "ISZERO",
"source": 2
},
{
"begin": 3057,
"end": 3169,
"name": "PUSH [tag]",
"source": 2,
"value": "117"
},
{
"begin": 3057,
"end": 3169,
"name": "JUMPI",
"source": 2
},
{
"begin": 3088,
"end": 3167,
"name": "PUSH [tag]",
"source": 2,
"value": "118"
},
{
"begin": 3088,
"end": 3167,
"name": "PUSH [tag]",
"source": 2,
"value": "64"
},
{
"begin": 3088,
"end": 3167,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 3088,
"end": 3167,
"name": "tag",
"source": 2,
"value": "118"
},
{
"begin": 3088,
"end": 3167,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3057,
"end": 3169,
"name": "tag",
"source": 2,
"value": "117"
},
{
"begin": 3057,
"end": 3169,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3178,
"end": 3219,
"name": "PUSH [tag]",
"source": 2,
"value": "119"
},
{
"begin": 3212,
"end": 3218,
"name": "DUP5",
"source": 2
},
{
"begin": 3207,
"end": 3210,
"name": "DUP3",
"source": 2
},
{
"begin": 3202,
"end": 3205,
"name": "DUP6",
"source": 2
},
{
"begin": 3178,
"end": 3219,
"name": "PUSH [tag]",
"source": 2,
"value": "70"
},
{
"begin": 3178,
"end": 3219,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 3178,
"end": 3219,
"name": "tag",
"source": 2,
"value": "119"
},
{
"begin": 3178,
"end": 3219,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2897,
"end": 3225,
"name": "POP",
"source": 2
},
{
"begin": 2813,
"end": 3225,
"name": "SWAP4",
"source": 2
},
{
"begin": 2813,
"end": 3225,
"name": "SWAP3",
"source": 2
},
{
"begin": 2813,
"end": 3225,
"name": "POP",
"source": 2
},
{
"begin": 2813,
"end": 3225,
"name": "POP",
"source": 2
},
{
"begin": 2813,
"end": 3225,
"name": "POP",
"source": 2
},
{
"begin": 2813,
"end": 3225,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 3245,
"end": 3585,
"name": "tag",
"source": 2,
"value": "72"
},
{
"begin": 3245,
"end": 3585,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3301,
"end": 3306,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 3350,
"end": 3353,
"name": "DUP3",
"source": 2
},
{
"begin": 3343,
"end": 3347,
"name": "PUSH",
"source": 2,
"value": "1F"
},
{
"begin": 3335,
"end": 3341,
"name": "DUP4",
"source": 2
},
{
"begin": 3331,
"end": 3348,
"name": "ADD",
"source": 2
},
{
"begin": 3327,
"end": 3354,
"name": "SLT",
"source": 2
},
{
"begin": 3317,
"end": 3439,
"name": "PUSH [tag]",
"source": 2,
"value": "121"
},
{
"begin": 3317,
"end": 3439,
"name": "JUMPI",
"source": 2
},
{
"begin": 3358,
"end": 3437,
"name": "PUSH [tag]",
"source": 2,
"value": "122"
},
{
"begin": 3358,
"end": 3437,
"name": "PUSH [tag]",
"source": 2,
"value": "63"
},
{
"begin": 3358,
"end": 3437,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 3358,
"end": 3437,
"name": "tag",
"source": 2,
"value": "122"
},
{
"begin": 3358,
"end": 3437,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3317,
"end": 3439,
"name": "tag",
"source": 2,
"value": "121"
},
{
"begin": 3317,
"end": 3439,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3475,
"end": 3481,
"name": "DUP2",
"source": 2
},
{
"begin": 3462,
"end": 3482,
"name": "CALLDATALOAD",
"source": 2
},
{
"begin": 3500,
"end": 3579,
"name": "PUSH [tag]",
"source": 2,
"value": "123"
},
{
"begin": 3575,
"end": 3578,
"name": "DUP5",
"source": 2
},
{
"begin": 3567,
"end": 3573,
"name": "DUP3",
"source": 2
},
{
"begin": 3560,
"end": 3564,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 3552,
"end": 3558,
"name": "DUP7",
"source": 2
},
{
"begin": 3548,
"end": 3565,
"name": "ADD",
"source": 2
},
{
"begin": 3500,
"end": 3579,
"name": "PUSH [tag]",
"source": 2,
"value": "71"
},
{
"begin": 3500,
"end": 3579,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 3500,
"end": 3579,
"name": "tag",
"source": 2,
"value": "123"
},
{
"begin": 3500,
"end": 3579,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3491,
"end": 3579,
"name": "SWAP2",
"source": 2
},
{
"begin": 3491,
"end": 3579,
"name": "POP",
"source": 2
},
{
"begin": 3307,
"end": 3585,
"name": "POP",
"source": 2
},
{
"begin": 3245,
"end": 3585,
"name": "SWAP3",
"source": 2
},
{
"begin": 3245,
"end": 3585,
"name": "SWAP2",
"source": 2
},
{
"begin": 3245,
"end": 3585,
"name": "POP",
"source": 2
},
{
"begin": 3245,
"end": 3585,
"name": "POP",
"source": 2
},
{
"begin": 3245,
"end": 3585,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 3591,
"end": 4245,
"name": "tag",
"source": 2,
"value": "18"
},
{
"begin": 3591,
"end": 4245,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3669,
"end": 3675,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 3677,
"end": 3683,
"name": "DUP1",
"source": 2
},
{
"begin": 3726,
"end": 3728,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 3714,
"end": 3723,
"name": "DUP4",
"source": 2
},
{
"begin": 3705,
"end": 3712,
"name": "DUP6",
"source": 2
},
{
"begin": 3701,
"end": 3724,
"name": "SUB",
"source": 2
},
{
"begin": 3697,
"end": 3729,
"name": "SLT",
"source": 2
},
{
"begin": 3694,
"end": 3813,
"name": "ISZERO",
"source": 2
},
{
"begin": 3694,
"end": 3813,
"name": "PUSH [tag]",
"source": 2,
"value": "125"
},
{
"begin": 3694,
"end": 3813,
"name": "JUMPI",
"source": 2
},
{
"begin": 3732,
"end": 3811,
"name": "PUSH [tag]",
"source": 2,
"value": "126"
},
{
"begin": 3732,
"end": 3811,
"name": "PUSH [tag]",
"source": 2,
"value": "59"
},
{
"begin": 3732,
"end": 3811,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 3732,
"end": 3811,
"name": "tag",
"source": 2,
"value": "126"
},
{
"begin": 3732,
"end": 3811,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3694,
"end": 3813,
"name": "tag",
"source": 2,
"value": "125"
},
{
"begin": 3694,
"end": 3813,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3880,
"end": 3881,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 3869,
"end": 3878,
"name": "DUP4",
"source": 2
},
{
"begin": 3865,
"end": 3882,
"name": "ADD",
"source": 2
},
{
"begin": 3852,
"end": 3883,
"name": "CALLDATALOAD",
"source": 2
},
{
"begin": 3910,
"end": 3928,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 3902,
"end": 3908,
"name": "DUP2",
"source": 2
},
{
"begin": 3899,
"end": 3929,
"name": "GT",
"source": 2
},
{
"begin": 3896,
"end": 4013,
"name": "ISZERO",
"source": 2
},
{
"begin": 3896,
"end": 4013,
"name": "PUSH [tag]",
"source": 2,
"value": "127"
},
{
"begin": 3896,
"end": 4013,
"name": "JUMPI",
"source": 2
},
{
"begin": 3932,
"end": 4011,
"name": "PUSH [tag]",
"source": 2,
"value": "128"
},
{
"begin": 3932,
"end": 4011,
"name": "PUSH [tag]",
"source": 2,
"value": "60"
},
{
"begin": 3932,
"end": 4011,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 3932,
"end": 4011,
"name": "tag",
"source": 2,
"value": "128"
},
{
"begin": 3932,
"end": 4011,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3896,
"end": 4013,
"name": "tag",
"source": 2,
"value": "127"
},
{
"begin": 3896,
"end": 4013,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4037,
"end": 4100,
"name": "PUSH [tag]",
"source": 2,
"value": "129"
},
{
"begin": 4092,
"end": 4099,
"name": "DUP6",
"source": 2
},
{
"begin": 4083,
"end": 4089,
"name": "DUP3",
"source": 2
},
{
"begin": 4072,
"end": 4081,
"name": "DUP7",
"source": 2
},
{
"begin": 4068,
"end": 4090,
"name": "ADD",
"source": 2
},
{
"begin": 4037,
"end": 4100,
"name": "PUSH [tag]",
"source": 2,
"value": "72"
},
{
"begin": 4037,
"end": 4100,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 4037,
"end": 4100,
"name": "tag",
"source": 2,
"value": "129"
},
{
"begin": 4037,
"end": 4100,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4027,
"end": 4100,
"name": "SWAP3",
"source": 2
},
{
"begin": 4027,
"end": 4100,
"name": "POP",
"source": 2
},
{
"begin": 3823,
"end": 4110,
"name": "POP",
"source": 2
},
{
"begin": 4149,
"end": 4151,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 4175,
"end": 4228,
"name": "PUSH [tag]",
"source": 2,
"value": "130"
},
{
"begin": 4220,
"end": 4227,
"name": "DUP6",
"source": 2
},
{
"begin": 4211,
"end": 4217,
"name": "DUP3",
"source": 2
},
{
"begin": 4200,
"end": 4209,
"name": "DUP7",
"source": 2
},
{
"begin": 4196,
"end": 4218,
"name": "ADD",
"source": 2
},
{
"begin": 4175,
"end": 4228,
"name": "PUSH [tag]",
"source": 2,
"value": "62"
},
{
"begin": 4175,
"end": 4228,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 4175,
"end": 4228,
"name": "tag",
"source": 2,
"value": "130"
},
{
"begin": 4175,
"end": 4228,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4165,
"end": 4228,
"name": "SWAP2",
"source": 2
},
{
"begin": 4165,
"end": 4228,
"name": "POP",
"source": 2
},
{
"begin": 4120,
"end": 4238,
"name": "POP",
"source": 2
},
{
"begin": 3591,
"end": 4245,
"name": "SWAP3",
"source": 2
},
{
"begin": 3591,
"end": 4245,
"name": "POP",
"source": 2
},
{
"begin": 3591,
"end": 4245,
"name": "SWAP3",
"source": 2
},
{
"begin": 3591,
"end": 4245,
"name": "SWAP1",
"source": 2
},
{
"begin": 3591,
"end": 4245,
"name": "POP",
"source": 2
},
{
"begin": 3591,
"end": 4245,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 4251,
"end": 4760,
"name": "tag",
"source": 2,
"value": "22"
},
{
"begin": 4251,
"end": 4760,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4320,
"end": 4326,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 4369,
"end": 4371,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 4357,
"end": 4366,
"name": "DUP3",
"source": 2
},
{
"begin": 4348,
"end": 4355,
"name": "DUP5",
"source": 2
},
{
"begin": 4344,
"end": 4367,
"name": "SUB",
"source": 2
},
{
"begin": 4340,
"end": 4372,
"name": "SLT",
"source": 2
},
{
"begin": 4337,
"end": 4456,
"name": "ISZERO",
"source": 2
},
{
"begin": 4337,
"end": 4456,
"name": "PUSH [tag]",
"source": 2,
"value": "132"
},
{
"begin": 4337,
"end": 4456,
"name": "JUMPI",
"source": 2
},
{
"begin": 4375,
"end": 4454,
"name": "PUSH [tag]",
"source": 2,
"value": "133"
},
{
"begin": 4375,
"end": 4454,
"name": "PUSH [tag]",
"source": 2,
"value": "59"
},
{
"begin": 4375,
"end": 4454,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 4375,
"end": 4454,
"name": "tag",
"source": 2,
"value": "133"
},
{
"begin": 4375,
"end": 4454,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4337,
"end": 4456,
"name": "tag",
"source": 2,
"value": "132"
},
{
"begin": 4337,
"end": 4456,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4523,
"end": 4524,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 4512,
"end": 4521,
"name": "DUP3",
"source": 2
},
{
"begin": 4508,
"end": 4525,
"name": "ADD",
"source": 2
},
{
"begin": 4495,
"end": 4526,
"name": "CALLDATALOAD",
"source": 2
},
{
"begin": 4553,
"end": 4571,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 4545,
"end": 4551,
"name": "DUP2",
"source": 2
},
{
"begin": 4542,
"end": 4572,
"name": "GT",
"source": 2
},
{
"begin": 4539,
"end": 4656,
"name": "ISZERO",
"source": 2
},
{
"begin": 4539,
"end": 4656,
"name": "PUSH [tag]",
"source": 2,
"value": "134"
},
{
"begin": 4539,
"end": 4656,
"name": "JUMPI",
"source": 2
},
{
"begin": 4575,
"end": 4654,
"name": "PUSH [tag]",
"source": 2,
"value": "135"
},
{
"begin": 4575,
"end": 4654,
"name": "PUSH [tag]",
"source": 2,
"value": "60"
},
{
"begin": 4575,
"end": 4654,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 4575,
"end": 4654,
"name": "tag",
"source": 2,
"value": "135"
},
{
"begin": 4575,
"end": 4654,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4539,
"end": 4656,
"name": "tag",
"source": 2,
"value": "134"
},
{
"begin": 4539,
"end": 4656,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4680,
"end": 4743,
"name": "PUSH [tag]",
"source": 2,
"value": "136"
},
{
"begin": 4735,
"end": 4742,
"name": "DUP5",
"source": 2
},
{
"begin": 4726,
"end": 4732,
"name": "DUP3",
"source": 2
},
{
"begin": 4715,
"end": 4724,
"name": "DUP6",
"source": 2
},
{
"begin": 4711,
"end": 4733,
"name": "ADD",
"source": 2
},
{
"begin": 4680,
"end": 4743,
"name": "PUSH [tag]",
"source": 2,
"value": "72"
},
{
"begin": 4680,
"end": 4743,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 4680,
"end": 4743,
"name": "tag",
"source": 2,
"value": "136"
},
{
"begin": 4680,
"end": 4743,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4670,
"end": 4743,
"name": "SWAP2",
"source": 2
},
{
"begin": 4670,
"end": 4743,
"name": "POP",
"source": 2
},
{
"begin": 4466,
"end": 4753,
"name": "POP",
"source": 2
},
{
"begin": 4251,
"end": 4760,
"name": "SWAP3",
"source": 2
},
{
"begin": 4251,
"end": 4760,
"name": "SWAP2",
"source": 2
},
{
"begin": 4251,
"end": 4760,
"name": "POP",
"source": 2
},
{
"begin": 4251,
"end": 4760,
"name": "POP",
"source": 2
},
{
"begin": 4251,
"end": 4760,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 4766,
"end": 4865,
"name": "tag",
"source": 2,
"value": "73"
},
{
"begin": 4766,
"end": 4865,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4818,
"end": 4824,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 4852,
"end": 4857,
"name": "DUP2",
"source": 2
},
{
"begin": 4846,
"end": 4858,
"name": "MLOAD",
"source": 2
},
{
"begin": 4836,
"end": 4858,
"name": "SWAP1",
"source": 2
},
{
"begin": 4836,
"end": 4858,
"name": "POP",
"source": 2
},
{
"begin": 4766,
"end": 4865,
"name": "SWAP2",
"source": 2
},
{
"begin": 4766,
"end": 4865,
"name": "SWAP1",
"source": 2
},
{
"begin": 4766,
"end": 4865,
"name": "POP",
"source": 2
},
{
"begin": 4766,
"end": 4865,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 4871,
"end": 5040,
"name": "tag",
"source": 2,
"value": "74"
},
{
"begin": 4871,
"end": 5040,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4955,
"end": 4966,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 4989,
"end": 4995,
"name": "DUP3",
"source": 2
},
{
"begin": 4984,
"end": 4987,
"name": "DUP3",
"source": 2
},
{
"begin": 4977,
"end": 4996,
"name": "MSTORE",
"source": 2
},
{
"begin": 5029,
"end": 5033,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 5024,
"end": 5027,
"name": "DUP3",
"source": 2
},
{
"begin": 5020,
"end": 5034,
"name": "ADD",
"source": 2
},
{
"begin": 5005,
"end": 5034,
"name": "SWAP1",
"source": 2
},
{
"begin": 5005,
"end": 5034,
"name": "POP",
"source": 2
},
{
"begin": 4871,
"end": 5040,
"name": "SWAP3",
"source": 2
},
{
"begin": 4871,
"end": 5040,
"name": "SWAP2",
"source": 2
},
{
"begin": 4871,
"end": 5040,
"name": "POP",
"source": 2
},
{
"begin": 4871,
"end": 5040,
"name": "POP",
"source": 2
},
{
"begin": 4871,
"end": 5040,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 5046,
"end": 5353,
"name": "tag",
"source": 2,
"value": "75"
},
{
"begin": 5046,
"end": 5353,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5114,
"end": 5115,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 5124,
"end": 5237,
"name": "tag",
"source": 2,
"value": "140"
},
{
"begin": 5124,
"end": 5237,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5138,
"end": 5144,
"name": "DUP4",
"source": 2
},
{
"begin": 5135,
"end": 5136,
"name": "DUP2",
"source": 2
},
{
"begin": 5132,
"end": 5145,
"name": "LT",
"source": 2
},
{
"begin": 5124,
"end": 5237,
"name": "ISZERO",
"source": 2
},
{
"begin": 5124,
"end": 5237,
"name": "PUSH [tag]",
"source": 2,
"value": "142"
},
{
"begin": 5124,
"end": 5237,
"name": "JUMPI",
"source": 2
},
{
"begin": 5223,
"end": 5224,
"name": "DUP1",
"source": 2
},
{
"begin": 5218,
"end": 5221,
"name": "DUP3",
"source": 2
},
{
"begin": 5214,
"end": 5225,
"name": "ADD",
"source": 2
},
{
"begin": 5208,
"end": 5226,
"name": "MLOAD",
"source": 2
},
{
"begin": 5204,
"end": 5205,
"name": "DUP2",
"source": 2
},
{
"begin": 5199,
"end": 5202,
"name": "DUP5",
"source": 2
},
{
"begin": 5195,
"end": 5206,
"name": "ADD",
"source": 2
},
{
"begin": 5188,
"end": 5227,
"name": "MSTORE",
"source": 2
},
{
"begin": 5160,
"end": 5162,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 5157,
"end": 5158,
"name": "DUP2",
"source": 2
},
{
"begin": 5153,
"end": 5163,
"name": "ADD",
"source": 2
},
{
"begin": 5148,
"end": 5163,
"name": "SWAP1",
"source": 2
},
{
"begin": 5148,
"end": 5163,
"name": "POP",
"source": 2
},
{
"begin": 5124,
"end": 5237,
"name": "PUSH [tag]",
"source": 2,
"value": "140"
},
{
"begin": 5124,
"end": 5237,
"name": "JUMP",
"source": 2
},
{
"begin": 5124,
"end": 5237,
"name": "tag",
"source": 2,
"value": "142"
},
{
"begin": 5124,
"end": 5237,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5255,
"end": 5261,
"name": "DUP4",
"source": 2
},
{
"begin": 5252,
"end": 5253,
"name": "DUP2",
"source": 2
},
{
"begin": 5249,
"end": 5262,
"name": "GT",
"source": 2
},
{
"begin": 5246,
"end": 5347,
"name": "ISZERO",
"source": 2
},
{
"begin": 5246,
"end": 5347,
"name": "PUSH [tag]",
"source": 2,
"value": "143"
},
{
"begin": 5246,
"end": 5347,
"name": "JUMPI",
"source": 2
},
{
"begin": 5335,
"end": 5336,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 5326,
"end": 5332,
"name": "DUP5",
"source": 2
},
{
"begin": 5321,
"end": 5324,
"name": "DUP5",
"source": 2
},
{
"begin": 5317,
"end": 5333,
"name": "ADD",
"source": 2
},
{
"begin": 5310,
"end": 5337,
"name": "MSTORE",
"source": 2
},
{
"begin": 5246,
"end": 5347,
"name": "tag",
"source": 2,
"value": "143"
},
{
"begin": 5246,
"end": 5347,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5095,
"end": 5353,
"name": "POP",
"source": 2
},
{
"begin": 5046,
"end": 5353,
"name": "POP",
"source": 2
},
{
"begin": 5046,
"end": 5353,
"name": "POP",
"source": 2
},
{
"begin": 5046,
"end": 5353,
"name": "POP",
"source": 2
},
{
"begin": 5046,
"end": 5353,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 5359,
"end": 5723,
"name": "tag",
"source": 2,
"value": "76"
},
{
"begin": 5359,
"end": 5723,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5447,
"end": 5450,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 5475,
"end": 5514,
"name": "PUSH [tag]",
"source": 2,
"value": "145"
},
{
"begin": 5508,
"end": 5513,
"name": "DUP3",
"source": 2
},
{
"begin": 5475,
"end": 5514,
"name": "PUSH [tag]",
"source": 2,
"value": "73"
},
{
"begin": 5475,
"end": 5514,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 5475,
"end": 5514,
"name": "tag",
"source": 2,
"value": "145"
},
{
"begin": 5475,
"end": 5514,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5530,
"end": 5601,
"name": "PUSH [tag]",
"source": 2,
"value": "146"
},
{
"begin": 5594,
"end": 5600,
"name": "DUP2",
"source": 2
},
{
"begin": 5589,
"end": 5592,
"name": "DUP6",
"source": 2
},
{
"begin": 5530,
"end": 5601,
"name": "PUSH [tag]",
"source": 2,
"value": "74"
},
{
"begin": 5530,
"end": 5601,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 5530,
"end": 5601,
"name": "tag",
"source": 2,
"value": "146"
},
{
"begin": 5530,
"end": 5601,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5523,
"end": 5601,
"name": "SWAP4",
"source": 2
},
{
"begin": 5523,
"end": 5601,
"name": "POP",
"source": 2
},
{
"begin": 5610,
"end": 5662,
"name": "PUSH [tag]",
"source": 2,
"value": "147"
},
{
"begin": 5655,
"end": 5661,
"name": "DUP2",
"source": 2
},
{
"begin": 5650,
"end": 5653,
"name": "DUP6",
"source": 2
},
{
"begin": 5643,
"end": 5647,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 5636,
"end": 5641,
"name": "DUP7",
"source": 2
},
{
"begin": 5632,
"end": 5648,
"name": "ADD",
"source": 2
},
{
"begin": 5610,
"end": 5662,
"name": "PUSH [tag]",
"source": 2,
"value": "75"
},
{
"begin": 5610,
"end": 5662,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 5610,
"end": 5662,
"name": "tag",
"source": 2,
"value": "147"
},
{
"begin": 5610,
"end": 5662,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5687,
"end": 5716,
"name": "PUSH [tag]",
"source": 2,
"value": "148"
},
{
"begin": 5709,
"end": 5715,
"name": "DUP2",
"source": 2
},
{
"begin": 5687,
"end": 5716,
"name": "PUSH [tag]",
"source": 2,
"value": "65"
},
{
"begin": 5687,
"end": 5716,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 5687,
"end": 5716,
"name": "tag",
"source": 2,
"value": "148"
},
{
"begin": 5687,
"end": 5716,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5682,
"end": 5685,
"name": "DUP5",
"source": 2
},
{
"begin": 5678,
"end": 5717,
"name": "ADD",
"source": 2
},
{
"begin": 5671,
"end": 5717,
"name": "SWAP2",
"source": 2
},
{
"begin": 5671,
"end": 5717,
"name": "POP",
"source": 2
},
{
"begin": 5451,
"end": 5723,
"name": "POP",
"source": 2
},
{
"begin": 5359,
"end": 5723,
"name": "SWAP3",
"source": 2
},
{
"begin": 5359,
"end": 5723,
"name": "SWAP2",
"source": 2
},
{
"begin": 5359,
"end": 5723,
"name": "POP",
"source": 2
},
{
"begin": 5359,
"end": 5723,
"name": "POP",
"source": 2
},
{
"begin": 5359,
"end": 5723,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 5729,
"end": 6152,
"name": "tag",
"source": 2,
"value": "29"
},
{
"begin": 5729,
"end": 6152,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5870,
"end": 5874,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 5908,
"end": 5910,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 5897,
"end": 5906,
"name": "DUP3",
"source": 2
},
{
"begin": 5893,
"end": 5911,
"name": "ADD",
"source": 2
},
{
"begin": 5885,
"end": 5911,
"name": "SWAP1",
"source": 2
},
{
"begin": 5885,
"end": 5911,
"name": "POP",
"source": 2
},
{
"begin": 5921,
"end": 5992,
"name": "PUSH [tag]",
"source": 2,
"value": "150"
},
{
"begin": 5989,
"end": 5990,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 5978,
"end": 5987,
"name": "DUP4",
"source": 2
},
{
"begin": 5974,
"end": 5991,
"name": "ADD",
"source": 2
},
{
"begin": 5965,
"end": 5971,
"name": "DUP6",
"source": 2
},
{
"begin": 5921,
"end": 5992,
"name": "PUSH [tag]",
"source": 2,
"value": "57"
},
{
"begin": 5921,
"end": 5992,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 5921,
"end": 5992,
"name": "tag",
"source": 2,
"value": "150"
},
{
"begin": 5921,
"end": 5992,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6039,
"end": 6048,
"name": "DUP2",
"source": 2
},
{
"begin": 6033,
"end": 6037,
"name": "DUP2",
"source": 2
},
{
"begin": 6029,
"end": 6049,
"name": "SUB",
"source": 2
},
{
"begin": 6024,
"end": 6026,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 6013,
"end": 6022,
"name": "DUP4",
"source": 2
},
{
"begin": 6009,
"end": 6027,
"name": "ADD",
"source": 2
},
{
"begin": 6002,
"end": 6050,
"name": "MSTORE",
"source": 2
},
{
"begin": 6067,
"end": 6145,
"name": "PUSH [tag]",
"source": 2,
"value": "151"
},
{
"begin": 6140,
"end": 6144,
"name": "DUP2",
"source": 2
},
{
"begin": 6131,
"end": 6137,
"name": "DUP5",
"source": 2
},
{
"begin": 6067,
"end": 6145,
"name": "PUSH [tag]",
"source": 2,
"value": "76"
},
{
"begin": 6067,
"end": 6145,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 6067,
"end": 6145,
"name": "tag",
"source": 2,
"value": "151"
},
{
"begin": 6067,
"end": 6145,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6059,
"end": 6145,
"name": "SWAP1",
"source": 2
},
{
"begin": 6059,
"end": 6145,
"name": "POP",
"source": 2
},
{
"begin": 5729,
"end": 6152,
"name": "SWAP4",
"source": 2
},
{
"begin": 5729,
"end": 6152,
"name": "SWAP3",
"source": 2
},
{
"begin": 5729,
"end": 6152,
"name": "POP",
"source": 2
},
{
"begin": 5729,
"end": 6152,
"name": "POP",
"source": 2
},
{
"begin": 5729,
"end": 6152,
"name": "POP",
"source": 2
},
{
"begin": 5729,
"end": 6152,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 6158,
"end": 6306,
"name": "tag",
"source": 2,
"value": "77"
},
{
"begin": 6158,
"end": 6306,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6260,
"end": 6271,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 6297,
"end": 6300,
"name": "DUP2",
"source": 2
},
{
"begin": 6282,
"end": 6300,
"name": "SWAP1",
"source": 2
},
{
"begin": 6282,
"end": 6300,
"name": "POP",
"source": 2
},
{
"begin": 6158,
"end": 6306,
"name": "SWAP3",
"source": 2
},
{
"begin": 6158,
"end": 6306,
"name": "SWAP2",
"source": 2
},
{
"begin": 6158,
"end": 6306,
"name": "POP",
"source": 2
},
{
"begin": 6158,
"end": 6306,
"name": "POP",
"source": 2
},
{
"begin": 6158,
"end": 6306,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 6312,
"end": 6689,
"name": "tag",
"source": 2,
"value": "78"
},
{
"begin": 6312,
"end": 6689,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6418,
"end": 6421,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 6446,
"end": 6485,
"name": "PUSH [tag]",
"source": 2,
"value": "154"
},
{
"begin": 6479,
"end": 6484,
"name": "DUP3",
"source": 2
},
{
"begin": 6446,
"end": 6485,
"name": "PUSH [tag]",
"source": 2,
"value": "73"
},
{
"begin": 6446,
"end": 6485,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 6446,
"end": 6485,
"name": "tag",
"source": 2,
"value": "154"
},
{
"begin": 6446,
"end": 6485,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6501,
"end": 6590,
"name": "PUSH [tag]",
"source": 2,
"value": "155"
},
{
"begin": 6583,
"end": 6589,
"name": "DUP2",
"source": 2
},
{
"begin": 6578,
"end": 6581,
"name": "DUP6",
"source": 2
},
{
"begin": 6501,
"end": 6590,
"name": "PUSH [tag]",
"source": 2,
"value": "77"
},
{
"begin": 6501,
"end": 6590,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 6501,
"end": 6590,
"name": "tag",
"source": 2,
"value": "155"
},
{
"begin": 6501,
"end": 6590,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6494,
"end": 6590,
"name": "SWAP4",
"source": 2
},
{
"begin": 6494,
"end": 6590,
"name": "POP",
"source": 2
},
{
"begin": 6599,
"end": 6651,
"name": "PUSH [tag]",
"source": 2,
"value": "156"
},
{
"begin": 6644,
"end": 6650,
"name": "DUP2",
"source": 2
},
{
"begin": 6639,
"end": 6642,
"name": "DUP6",
"source": 2
},
{
"begin": 6632,
"end": 6636,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 6625,
"end": 6630,
"name": "DUP7",
"source": 2
},
{
"begin": 6621,
"end": 6637,
"name": "ADD",
"source": 2
},
{
"begin": 6599,
"end": 6651,
"name": "PUSH [tag]",
"source": 2,
"value": "75"
},
{
"begin": 6599,
"end": 6651,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 6599,
"end": 6651,
"name": "tag",
"source": 2,
"value": "156"
},
{
"begin": 6599,
"end": 6651,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6676,
"end": 6682,
"name": "DUP1",
"source": 2
},
{
"begin": 6671,
"end": 6674,
"name": "DUP5",
"source": 2
},
{
"begin": 6667,
"end": 6683,
"name": "ADD",
"source": 2
},
{
"begin": 6660,
"end": 6683,
"name": "SWAP2",
"source": 2
},
{
"begin": 6660,
"end": 6683,
"name": "POP",
"source": 2
},
{
"begin": 6422,
"end": 6689,
"name": "POP",
"source": 2
},
{
"begin": 6312,
"end": 6689,
"name": "SWAP3",
"source": 2
},
{
"begin": 6312,
"end": 6689,
"name": "SWAP2",
"source": 2
},
{
"begin": 6312,
"end": 6689,
"name": "POP",
"source": 2
},
{
"begin": 6312,
"end": 6689,
"name": "POP",
"source": 2
},
{
"begin": 6312,
"end": 6689,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 6695,
"end": 6970,
"name": "tag",
"source": 2,
"value": "37"
},
{
"begin": 6695,
"end": 6970,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6827,
"end": 6830,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 6849,
"end": 6944,
"name": "PUSH [tag]",
"source": 2,
"value": "158"
},
{
"begin": 6940,
"end": 6943,
"name": "DUP3",
"source": 2
},
{
"begin": 6931,
"end": 6937,
"name": "DUP5",
"source": 2
},
{
"begin": 6849,
"end": 6944,
"name": "PUSH [tag]",
"source": 2,
"value": "78"
},
{
"begin": 6849,
"end": 6944,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 6849,
"end": 6944,
"name": "tag",
"source": 2,
"value": "158"
},
{
"begin": 6849,
"end": 6944,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6842,
"end": 6944,
"name": "SWAP2",
"source": 2
},
{
"begin": 6842,
"end": 6944,
"name": "POP",
"source": 2
},
{
"begin": 6961,
"end": 6964,
"name": "DUP2",
"source": 2
},
{
"begin": 6954,
"end": 6964,
"name": "SWAP1",
"source": 2
},
{
"begin": 6954,
"end": 6964,
"name": "POP",
"source": 2
},
{
"begin": 6695,
"end": 6970,
"name": "SWAP3",
"source": 2
},
{
"begin": 6695,
"end": 6970,
"name": "SWAP2",
"source": 2
},
{
"begin": 6695,
"end": 6970,
"name": "POP",
"source": 2
},
{
"begin": 6695,
"end": 6970,
"name": "POP",
"source": 2
},
{
"begin": 6695,
"end": 6970,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 6976,
"end": 7156,
"name": "tag",
"source": 2,
"value": "79"
},
{
"begin": 6976,
"end": 7156,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7024,
"end": 7101,
"name": "PUSH",
"source": 2,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 7021,
"end": 7022,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 7014,
"end": 7102,
"name": "MSTORE",
"source": 2
},
{
"begin": 7121,
"end": 7125,
"name": "PUSH",
"source": 2,
"value": "22"
},
{
"begin": 7118,
"end": 7119,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 7111,
"end": 7126,
"name": "MSTORE",
"source": 2
},
{
"begin": 7145,
"end": 7149,
"name": "PUSH",
"source": 2,
"value": "24"
},
{
"begin": 7142,
"end": 7143,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 7135,
"end": 7150,
"name": "REVERT",
"source": 2
},
{
"begin": 7162,
"end": 7482,
"name": "tag",
"source": 2,
"value": "41"
},
{
"begin": 7162,
"end": 7482,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7206,
"end": 7212,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 7243,
"end": 7244,
"name": "PUSH",
"source": 2,
"value": "2"
},
{
"begin": 7237,
"end": 7241,
"name": "DUP3",
"source": 2
},
{
"begin": 7233,
"end": 7245,
"name": "DIV",
"source": 2
},
{
"begin": 7223,
"end": 7245,
"name": "SWAP1",
"source": 2
},
{
"begin": 7223,
"end": 7245,
"name": "POP",
"source": 2
},
{
"begin": 7290,
"end": 7291,
"name": "PUSH",
"source": 2,
"value": "1"
},
{
"begin": 7284,
"end": 7288,
"name": "DUP3",
"source": 2
},
{
"begin": 7280,
"end": 7292,
"name": "AND",
"source": 2
},
{
"begin": 7311,
"end": 7329,
"name": "DUP1",
"source": 2
},
{
"begin": 7301,
"end": 7382,
"name": "PUSH [tag]",
"source": 2,
"value": "161"
},
{
"begin": 7301,
"end": 7382,
"name": "JUMPI",
"source": 2
},
{
"begin": 7367,
"end": 7371,
"name": "PUSH",
"source": 2,
"value": "7F"
},
{
"begin": 7359,
"end": 7365,
"name": "DUP3",
"source": 2
},
{
"begin": 7355,
"end": 7372,
"name": "AND",
"source": 2
},
{
"begin": 7345,
"end": 7372,
"name": "SWAP2",
"source": 2
},
{
"begin": 7345,
"end": 7372,
"name": "POP",
"source": 2
},
{
"begin": 7301,
"end": 7382,
"name": "tag",
"source": 2,
"value": "161"
},
{
"begin": 7301,
"end": 7382,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7429,
"end": 7431,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 7421,
"end": 7427,
"name": "DUP3",
"source": 2
},
{
"begin": 7418,
"end": 7432,
"name": "LT",
"source": 2
},
{
"begin": 7398,
"end": 7416,
"name": "DUP2",
"source": 2
},
{
"begin": 7395,
"end": 7433,
"name": "EQ",
"source": 2
},
{
"begin": 7392,
"end": 7476,
"name": "ISZERO",
"source": 2
},
{
"begin": 7392,
"end": 7476,
"name": "PUSH [tag]",
"source": 2,
"value": "162"
},
{
"begin": 7392,
"end": 7476,
"name": "JUMPI",
"source": 2
},
{
"begin": 7448,
"end": 7466,
"name": "PUSH [tag]",
"source": 2,
"value": "163"
},
{
"begin": 7448,
"end": 7466,
"name": "PUSH [tag]",
"source": 2,
"value": "79"
},
{
"begin": 7448,
"end": 7466,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 7448,
"end": 7466,
"name": "tag",
"source": 2,
"value": "163"
},
{
"begin": 7448,
"end": 7466,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7392,
"end": 7476,
"name": "tag",
"source": 2,
"value": "162"
},
{
"begin": 7392,
"end": 7476,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 7213,
"end": 7482,
"name": "POP",
"source": 2
},
{
"begin": 7162,
"end": 7482,
"name": "SWAP2",
"source": 2
},
{
"begin": 7162,
"end": 7482,
"name": "SWAP1",
"source": 2
},
{
"begin": 7162,
"end": 7482,
"name": "POP",
"source": 2
},
{
"begin": 7162,
"end": 7482,
"name": "JUMP",
"source": 2,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"addPerson(string,uint256)": "6f760f41",
"nameToFavoriteNumber(string)": "8bab8dd5",
"people(uint256)": "9e7a13ad",
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.8+commit.dddeac2f\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"string\",\"name\":\"_name\",\"type\":\"string\"},{\"internalType\":\"uint256\",\"name\":\"_favoriteNumber\",\"type\":\"uint256\"}],\"name\":\"addPerson\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"name\":\"nameToFavoriteNumber\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"people\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"favoriteNumber\",\"type\":\"uint256\"},{\"internalType\":\"string\",\"name\":\"name\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"retrieve\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_favoriteNumber\",\"type\":\"uint256\"}],\"name\":\"store\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/SimpleStorage.sol\":\"SimpleStorage\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/SimpleStorage.sol\":{\"keccak256\":\"0x5b3631d52ec9577d9c75ab6ae1e0e58903b77a81c34fee8d66dea64858dc8e43\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://be32918a12b0c0428ae0c166a0f80fbfbbcaffd7fc8e3c86530159b5f2b14951\",\"dweb:/ipfs/QmaiVf9diJArc5NmBpvhjouVu5VKNmPrP1RgvdyQ1gEhHx\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 3,
"contract": "contracts/SimpleStorage.sol:SimpleStorage",
"label": "favoriteNumber",
"offset": 0,
"slot": "0",
"type": "t_uint256"
},
{
"astId": 12,
"contract": "contracts/SimpleStorage.sol:SimpleStorage",
"label": "people",
"offset": 0,
"slot": "1",
"type": "t_array(t_struct(People)8_storage)dyn_storage"
},
{
"astId": 16,
"contract": "contracts/SimpleStorage.sol:SimpleStorage",
"label": "nameToFavoriteNumber",
"offset": 0,
"slot": "2",
"type": "t_mapping(t_string_memory_ptr,t_uint256)"
}
],
"types": {
"t_array(t_struct(People)8_storage)dyn_storage": {
"base": "t_struct(People)8_storage",
"encoding": "dynamic_array",
"label": "struct SimpleStorage.People[]",
"numberOfBytes": "32"
},
"t_mapping(t_string_memory_ptr,t_uint256)": {
"encoding": "mapping",
"key": "t_string_memory_ptr",
"label": "mapping(string => uint256)",
"numberOfBytes": "32",
"value": "t_uint256"
},
"t_string_memory_ptr": {
"encoding": "bytes",
"label": "string",
"numberOfBytes": "32"
},
"t_string_storage": {
"encoding": "bytes",
"label": "string",
"numberOfBytes": "32"
},
"t_struct(People)8_storage": {
"encoding": "inplace",
"label": "struct SimpleStorage.People",
"members": [
{
"astId": 5,
"contract": "contracts/SimpleStorage.sol:SimpleStorage",
"label": "favoriteNumber",
"offset": 0,
"slot": "0",
"type": "t_uint256"
},
{
"astId": 7,
"contract": "contracts/SimpleStorage.sol:SimpleStorage",
"label": "name",
"offset": 0,
"slot": "1",
"type": "t_string_storage"
}
],
"numberOfBytes": "64"
},
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"contracts/StorageFactory.sol": {
"StorageFactory": {
"abi": [
{
"inputs": [],
"name": "CreateSimpleStorageContract",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
}
],
"name": "sfGet",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_simpleStorageIndex",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "_simpleStorageNumber",
"type": "uint256"
}
],
"name": "sfStore",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "simpleStorageArray",
"outputs": [
{
"internalType": "contract SimpleStorage",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/StorageFactory.sol\":176:928 contract StorageFactory {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/StorageFactory.sol\":176:928 contract StorageFactory {... */\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 0x1563700f\n eq\n tag_3\n jumpi\n dup1\n 0x64591bf1\n eq\n tag_4\n jumpi\n dup1\n 0x9fa05b28\n eq\n tag_5\n jumpi\n dup1\n 0xc5f19c20\n eq\n tag_6\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/StorageFactory.sol\":426:714 function sfStore(uint256 _simpleStorageIndex, uint256 _simpleStorageNumber) 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 /* \"contracts/StorageFactory.sol\":207:248 SimpleStorage[] public simpleStorageArray */\n tag_4:\n tag_11\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_12\n swap2\n swap1\n tag_13\n jump\t// in\n tag_12:\n tag_14\n jump\t// in\n tag_11:\n mload(0x40)\n tag_15\n swap2\n swap1\n tag_16\n jump\t// in\n tag_15:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/StorageFactory.sol\":255:418 function CreateSimpleStorageContract() public {... */\n tag_5:\n tag_17\n tag_18\n jump\t// in\n tag_17:\n stop\n /* \"contracts/StorageFactory.sol\":722:925 function sfGet(uint256 _simpleStorageIndex) public view returns (uint256){... */\n tag_6:\n tag_19\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_20\n swap2\n swap1\n tag_13\n jump\t// in\n tag_20:\n tag_21\n jump\t// in\n tag_19:\n mload(0x40)\n tag_22\n swap2\n swap1\n tag_23\n jump\t// in\n tag_22:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/StorageFactory.sol\":426:714 function sfStore(uint256 _simpleStorageIndex, uint256 _simpleStorageNumber) public {... */\n tag_10:\n /* \"contracts/StorageFactory.sol\":585:612 SimpleStorage simpleStorage */\n 0x00\n /* \"contracts/StorageFactory.sol\":615:633 simpleStorageArray */\n dup1\n /* \"contracts/StorageFactory.sol\":634:653 _simpleStorageIndex */\n dup4\n /* \"contracts/StorageFactory.sol\":615:654 simpleStorageArray[_simpleStorageIndex] */\n dup2\n sload\n dup2\n lt\n tag_25\n jumpi\n tag_26\n tag_27\n jump\t// in\n tag_26:\n tag_25:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/StorageFactory.sol\":585:654 SimpleStorage simpleStorage = simpleStorageArray[_simpleStorageIndex] */\n swap1\n pop\n /* \"contracts/StorageFactory.sol\":665:678 simpleStorage */\n dup1\n /* \"contracts/StorageFactory.sol\":665:684 simpleStorage.store */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x6057361d\n /* \"contracts/StorageFactory.sol\":685:705 _simpleStorageNumber */\n dup4\n /* \"contracts/StorageFactory.sol\":665:706 simpleStorage.store(_simpleStorageNumber) */\n mload(0x40)\n dup3\n 0xffffffff\n and\n 0xe0\n shl\n dup2\n mstore\n 0x04\n add\n tag_29\n swap2\n swap1\n tag_23\n jump\t// in\n tag_29:\n 0x00\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n 0x00\n dup8\n dup1\n extcodesize\n iszero\n dup1\n iszero\n tag_30\n jumpi\n 0x00\n dup1\n revert\n tag_30:\n pop\n gas\n call\n iszero\n dup1\n iszero\n tag_32\n jumpi\n returndatasize\n 0x00\n dup1\n returndatacopy\n revert(0x00, returndatasize)\n tag_32:\n pop\n pop\n pop\n pop\n /* \"contracts/StorageFactory.sol\":509:714 {... */\n pop\n /* \"contracts/StorageFactory.sol\":426:714 function sfStore(uint256 _simpleStorageIndex, uint256 _simpleStorageNumber) public {... */\n pop\n pop\n jump\t// out\n /* \"contracts/StorageFactory.sol\":207:248 SimpleStorage[] public simpleStorageArray */\n tag_14:\n 0x00\n dup2\n dup2\n sload\n dup2\n lt\n tag_33\n jumpi\n 0x00\n dup1\n revert\n tag_33:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap2\n pop\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n jump\t// out\n /* \"contracts/StorageFactory.sol\":255:418 function CreateSimpleStorageContract() public {... */\n tag_18:\n /* \"contracts/StorageFactory.sol\":312:339 SimpleStorage simpleStorage */\n 0x00\n /* \"contracts/StorageFactory.sol\":342:361 new SimpleStorage() */\n mload(0x40)\n tag_36\n swap1\n tag_37\n jump\t// in\n tag_36:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n 0x00\n create\n dup1\n iszero\n dup1\n iszero\n tag_38\n jumpi\n returndatasize\n 0x00\n dup1\n returndatacopy\n revert(0x00, returndatasize)\n tag_38:\n pop\n /* \"contracts/StorageFactory.sol\":312:361 SimpleStorage simpleStorage = new SimpleStorage() */\n swap1\n pop\n /* \"contracts/StorageFactory.sol\":372:390 simpleStorageArray */\n 0x00\n /* \"contracts/StorageFactory.sol\":396:409 simpleStorage */\n dup2\n /* \"contracts/StorageFactory.sol\":372:410 simpleStorageArray.push(simpleStorage) */\n swap1\n dup1\n 0x01\n dup2\n sload\n add\n dup1\n dup3\n sstore\n dup1\n swap2\n pop\n pop\n 0x01\n swap1\n sub\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/StorageFactory.sol\":301:418 {... */\n pop\n /* \"contracts/StorageFactory.sol\":255:418 function CreateSimpleStorageContract() public {... */\n jump\t// out\n /* \"contracts/StorageFactory.sol\":722:925 function sfGet(uint256 _simpleStorageIndex) public view returns (uint256){... */\n tag_21:\n /* \"contracts/StorageFactory.sol\":787:794 uint256 */\n 0x00\n /* \"contracts/StorageFactory.sol\":806:833 SimpleStorage simpleStorage */\n dup1\n /* \"contracts/StorageFactory.sol\":836:854 simpleStorageArray */\n 0x00\n /* \"contracts/StorageFactory.sol\":855:874 _simpleStorageIndex */\n dup4\n /* \"contracts/StorageFactory.sol\":836:875 simpleStorageArray[_simpleStorageIndex] */\n dup2\n sload\n dup2\n lt\n tag_41\n jumpi\n tag_42\n tag_27\n jump\t// in\n tag_42:\n tag_41:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/StorageFactory.sol\":806:875 SimpleStorage simpleStorage = simpleStorageArray[_simpleStorageIndex] */\n swap1\n pop\n /* \"contracts/StorageFactory.sol\":893:906 simpleStorage */\n dup1\n /* \"contracts/StorageFactory.sol\":893:915 simpleStorage.retrieve */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x2e64cec1\n /* \"contracts/StorageFactory.sol\":893:917 simpleStorage.retrieve() */\n mload(0x40)\n dup2\n 0xffffffff\n and\n 0xe0\n shl\n dup2\n mstore\n 0x04\n add\n 0x20\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n dup7\n dup1\n extcodesize\n iszero\n dup1\n iszero\n tag_44\n jumpi\n 0x00\n dup1\n revert\n tag_44:\n pop\n gas\n staticcall\n iszero\n dup1\n iszero\n tag_46\n jumpi\n returndatasize\n 0x00\n dup1\n returndatacopy\n revert(0x00, returndatasize)\n tag_46:\n pop\n pop\n pop\n pop\n mload(0x40)\n returndatasize\n not(0x1f)\n 0x1f\n dup3\n add\n and\n dup3\n add\n dup1\n 0x40\n mstore\n pop\n dup2\n add\n swap1\n tag_47\n swap2\n swap1\n tag_48\n jump\t// in\n tag_47:\n /* \"contracts/StorageFactory.sol\":886:917 return simpleStorage.retrieve() */\n swap2\n pop\n pop\n /* \"contracts/StorageFactory.sol\":722:925 function sfGet(uint256 _simpleStorageIndex) public view returns (uint256){... */\n swap2\n swap1\n pop\n jump\t// out\n tag_37:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n dup4\n codecopy\n add\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_50:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":334:411 */\n tag_52:\n /* \"#utility.yul\":371:378 */\n 0x00\n /* \"#utility.yul\":400:405 */\n dup2\n /* \"#utility.yul\":389:405 */\n swap1\n pop\n /* \"#utility.yul\":334:411 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":417:539 */\n tag_53:\n /* \"#utility.yul\":490:514 */\n tag_69\n /* \"#utility.yul\":508:513 */\n dup2\n /* \"#utility.yul\":490:514 */\n tag_52\n jump\t// in\n tag_69:\n /* \"#utility.yul\":483:488 */\n dup2\n /* \"#utility.yul\":480:515 */\n eq\n /* \"#utility.yul\":470:533 */\n tag_70\n jumpi\n /* \"#utility.yul\":529:530 */\n 0x00\n /* \"#utility.yul\":526:527 */\n dup1\n /* \"#utility.yul\":519:531 */\n revert\n /* \"#utility.yul\":470:533 */\n tag_70:\n /* \"#utility.yul\":417:539 */\n pop\n jump\t// out\n /* \"#utility.yul\":545:684 */\n tag_54:\n /* \"#utility.yul\":591:596 */\n 0x00\n /* \"#utility.yul\":629:635 */\n dup2\n /* \"#utility.yul\":616:636 */\n calldataload\n /* \"#utility.yul\":607:636 */\n swap1\n pop\n /* \"#utility.yul\":645:678 */\n tag_72\n /* \"#utility.yul\":672:677 */\n dup2\n /* \"#utility.yul\":645:678 */\n tag_53\n jump\t// in\n tag_72:\n /* \"#utility.yul\":545:684 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":690:1164 */\n tag_9:\n /* \"#utility.yul\":758:764 */\n 0x00\n /* \"#utility.yul\":766:772 */\n dup1\n /* \"#utility.yul\":815:817 */\n 0x40\n /* \"#utility.yul\":803:812 */\n dup4\n /* \"#utility.yul\":794:801 */\n dup6\n /* \"#utility.yul\":790:813 */\n sub\n /* \"#utility.yul\":786:818 */\n slt\n /* \"#utility.yul\":783:902 */\n iszero\n tag_74\n jumpi\n /* \"#utility.yul\":821:900 */\n tag_75\n tag_50\n jump\t// in\n tag_75:\n /* \"#utility.yul\":783:902 */\n tag_74:\n /* \"#utility.yul\":941:942 */\n 0x00\n /* \"#utility.yul\":966:1019 */\n tag_76\n /* \"#utility.yul\":1011:1018 */\n dup6\n /* \"#utility.yul\":1002:1008 */\n dup3\n /* \"#utility.yul\":991:1000 */\n dup7\n /* \"#utility.yul\":987:1009 */\n add\n /* \"#utility.yul\":966:1019 */\n tag_54\n jump\t// in\n tag_76:\n /* \"#utility.yul\":956:1019 */\n swap3\n pop\n /* \"#utility.yul\":912:1029 */\n pop\n /* \"#utility.yul\":1068:1070 */\n 0x20\n /* \"#utility.yul\":1094:1147 */\n tag_77\n /* \"#utility.yul\":1139:1146 */\n dup6\n /* \"#utility.yul\":1130:1136 */\n dup3\n /* \"#utility.yul\":1119:1128 */\n dup7\n /* \"#utility.yul\":1115:1137 */\n add\n /* \"#utility.yul\":1094:1147 */\n tag_54\n jump\t// in\n tag_77:\n /* \"#utility.yul\":1084:1147 */\n swap2\n pop\n /* \"#utility.yul\":1039:1157 */\n pop\n /* \"#utility.yul\":690:1164 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1170:1499 */\n tag_13:\n /* \"#utility.yul\":1229:1235 */\n 0x00\n /* \"#utility.yul\":1278:1280 */\n 0x20\n /* \"#utility.yul\":1266:1275 */\n dup3\n /* \"#utility.yul\":1257:1264 */\n dup5\n /* \"#utility.yul\":1253:1276 */\n sub\n /* \"#utility.yul\":1249:1281 */\n slt\n /* \"#utility.yul\":1246:1365 */\n iszero\n tag_79\n jumpi\n /* \"#utility.yul\":1284:1363 */\n tag_80\n tag_50\n jump\t// in\n tag_80:\n /* \"#utility.yul\":1246:1365 */\n tag_79:\n /* \"#utility.yul\":1404:1405 */\n 0x00\n /* \"#utility.yul\":1429:1482 */\n tag_81\n /* \"#utility.yul\":1474:1481 */\n dup5\n /* \"#utility.yul\":1465:1471 */\n dup3\n /* \"#utility.yul\":1454:1463 */\n dup6\n /* \"#utility.yul\":1450:1472 */\n add\n /* \"#utility.yul\":1429:1482 */\n tag_54\n jump\t// in\n tag_81:\n /* \"#utility.yul\":1419:1482 */\n swap2\n pop\n /* \"#utility.yul\":1375:1492 */\n pop\n /* \"#utility.yul\":1170:1499 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1505:1631 */\n tag_55:\n /* \"#utility.yul\":1542:1549 */\n 0x00\n /* \"#utility.yul\":1582:1624 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":1575:1580 */\n dup3\n /* \"#utility.yul\":1571:1625 */\n and\n /* \"#utility.yul\":1560:1625 */\n swap1\n pop\n /* \"#utility.yul\":1505:1631 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1637:1697 */\n tag_56:\n /* \"#utility.yul\":1665:1668 */\n 0x00\n /* \"#utility.yul\":1686:1691 */\n dup2\n /* \"#utility.yul\":1679:1691 */\n swap1\n pop\n /* \"#utility.yul\":1637:1697 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1703:1845 */\n tag_57:\n /* \"#utility.yul\":1753:1762 */\n 0x00\n /* \"#utility.yul\":1786:1839 */\n tag_85\n /* \"#utility.yul\":1804:1838 */\n tag_86\n /* \"#utility.yul\":1813:1837 */\n tag_87\n /* \"#utility.yul\":1831:1836 */\n dup5\n /* \"#utility.yul\":1813:1837 */\n tag_55\n jump\t// in\n tag_87:\n /* \"#utility.yul\":1804:1838 */\n tag_56\n jump\t// in\n tag_86:\n /* \"#utility.yul\":1786:1839 */\n tag_55\n jump\t// in\n tag_85:\n /* \"#utility.yul\":1773:1839 */\n swap1\n pop\n /* \"#utility.yul\":1703:1845 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1851:1977 */\n tag_58:\n /* \"#utility.yul\":1901:1910 */\n 0x00\n /* \"#utility.yul\":1934:1971 */\n tag_89\n /* \"#utility.yul\":1965:1970 */\n dup3\n /* \"#utility.yul\":1934:1971 */\n tag_57\n jump\t// in\n tag_89:\n /* \"#utility.yul\":1921:1971 */\n swap1\n pop\n /* \"#utility.yul\":1851:1977 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1983:2129 */\n tag_59:\n /* \"#utility.yul\":2053:2062 */\n 0x00\n /* \"#utility.yul\":2086:2123 */\n tag_91\n /* \"#utility.yul\":2117:2122 */\n dup3\n /* \"#utility.yul\":2086:2123 */\n tag_58\n jump\t// in\n tag_91:\n /* \"#utility.yul\":2073:2123 */\n swap1\n pop\n /* \"#utility.yul\":1983:2129 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2135:2306 */\n tag_60:\n /* \"#utility.yul\":2242:2299 */\n tag_93\n /* \"#utility.yul\":2293:2298 */\n dup2\n /* \"#utility.yul\":2242:2299 */\n tag_59\n jump\t// in\n tag_93:\n /* \"#utility.yul\":2237:2240 */\n dup3\n /* \"#utility.yul\":2230:2300 */\n mstore\n /* \"#utility.yul\":2135:2306 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2312:2574 */\n tag_16:\n /* \"#utility.yul\":2425:2429 */\n 0x00\n /* \"#utility.yul\":2463:2465 */\n 0x20\n /* \"#utility.yul\":2452:2461 */\n dup3\n /* \"#utility.yul\":2448:2466 */\n add\n /* \"#utility.yul\":2440:2466 */\n swap1\n pop\n /* \"#utility.yul\":2476:2567 */\n tag_95\n /* \"#utility.yul\":2564:2565 */\n 0x00\n /* \"#utility.yul\":2553:2562 */\n dup4\n /* \"#utility.yul\":2549:2566 */\n add\n /* \"#utility.yul\":2540:2546 */\n dup5\n /* \"#utility.yul\":2476:2567 */\n tag_60\n jump\t// in\n tag_95:\n /* \"#utility.yul\":2312:2574 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2580:2698 */\n tag_61:\n /* \"#utility.yul\":2667:2691 */\n tag_97\n /* \"#utility.yul\":2685:2690 */\n dup2\n /* \"#utility.yul\":2667:2691 */\n tag_52\n jump\t// in\n tag_97:\n /* \"#utility.yul\":2662:2665 */\n dup3\n /* \"#utility.yul\":2655:2692 */\n mstore\n /* \"#utility.yul\":2580:2698 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2704:2926 */\n tag_23:\n /* \"#utility.yul\":2797:2801 */\n 0x00\n /* \"#utility.yul\":2835:2837 */\n 0x20\n /* \"#utility.yul\":2824:2833 */\n dup3\n /* \"#utility.yul\":2820:2838 */\n add\n /* \"#utility.yul\":2812:2838 */\n swap1\n pop\n /* \"#utility.yul\":2848:2919 */\n tag_99\n /* \"#utility.yul\":2916:2917 */\n 0x00\n /* \"#utility.yul\":2905:2914 */\n dup4\n /* \"#utility.yul\":2901:2918 */\n add\n /* \"#utility.yul\":2892:2898 */\n dup5\n /* \"#utility.yul\":2848:2919 */\n tag_61\n jump\t// in\n tag_99:\n /* \"#utility.yul\":2704:2926 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2932:3112 */\n tag_27:\n /* \"#utility.yul\":2980:3057 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":2977:2978 */\n 0x00\n /* \"#utility.yul\":2970:3058 */\n mstore\n /* \"#utility.yul\":3077:3081 */\n 0x32\n /* \"#utility.yul\":3074:3075 */\n 0x04\n /* \"#utility.yul\":3067:3082 */\n mstore\n /* \"#utility.yul\":3101:3105 */\n 0x24\n /* \"#utility.yul\":3098:3099 */\n 0x00\n /* \"#utility.yul\":3091:3106 */\n revert\n /* \"#utility.yul\":3118:3261 */\n tag_62:\n /* \"#utility.yul\":3175:3180 */\n 0x00\n /* \"#utility.yul\":3206:3212 */\n dup2\n /* \"#utility.yul\":3200:3213 */\n mload\n /* \"#utility.yul\":3191:3213 */\n swap1\n pop\n /* \"#utility.yul\":3222:3255 */\n tag_102\n /* \"#utility.yul\":3249:3254 */\n dup2\n /* \"#utility.yul\":3222:3255 */\n tag_53\n jump\t// in\n tag_102:\n /* \"#utility.yul\":3118:3261 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3267:3618 */\n tag_48:\n /* \"#utility.yul\":3337:3343 */\n 0x00\n /* \"#utility.yul\":3386:3388 */\n 0x20\n /* \"#utility.yul\":3374:3383 */\n dup3\n /* \"#utility.yul\":3365:3372 */\n dup5\n /* \"#utility.yul\":3361:3384 */\n sub\n /* \"#utility.yul\":3357:3389 */\n slt\n /* \"#utility.yul\":3354:3473 */\n iszero\n tag_104\n jumpi\n /* \"#utility.yul\":3392:3471 */\n tag_105\n tag_50\n jump\t// in\n tag_105:\n /* \"#utility.yul\":3354:3473 */\n tag_104:\n /* \"#utility.yul\":3512:3513 */\n 0x00\n /* \"#utility.yul\":3537:3601 */\n tag_106\n /* \"#utility.yul\":3593:3600 */\n dup5\n /* \"#utility.yul\":3584:3590 */\n dup3\n /* \"#utility.yul\":3573:3582 */\n dup6\n /* \"#utility.yul\":3569:3591 */\n add\n /* \"#utility.yul\":3537:3601 */\n tag_62\n jump\t// in\n tag_106:\n /* \"#utility.yul\":3527:3601 */\n swap2\n pop\n /* \"#utility.yul\":3483:3611 */\n pop\n /* \"#utility.yul\":3267:3618 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n stop\n\n sub_0: assembly {\n /* \"contracts/SimpleStorage.sol\":144:818 contract SimpleStorage {... */\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 dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\n stop\n\n sub_0: assembly {\n /* \"contracts/SimpleStorage.sol\":144:818 contract SimpleStorage {... */\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 0x2e64cec1\n eq\n tag_3\n jumpi\n dup1\n 0x6057361d\n eq\n tag_4\n jumpi\n dup1\n 0x6f760f41\n eq\n tag_5\n jumpi\n dup1\n 0x8bab8dd5\n eq\n tag_6\n jumpi\n dup1\n 0x9e7a13ad\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/SimpleStorage.sol\":528:617 function retrieve() public view returns (uint256){... */\n tag_3:\n tag_8\n tag_9\n jump\t// in\n tag_8:\n mload(0x40)\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":418:516 function store(uint256 _favoriteNumber) public {... */\n tag_4:\n tag_12\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n tag_15\n jump\t// in\n tag_12:\n stop\n /* \"contracts/SimpleStorage.sol\":625:815 function addPerson(string memory _name, uint256 _favoriteNumber) public {... */\n tag_5:\n tag_16\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\n tag_17:\n tag_19\n jump\t// in\n tag_16:\n stop\n /* \"contracts/SimpleStorage.sol\":355:409 mapping(string => uint256) public nameToFavoriteNumber */\n tag_6:\n tag_20\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_21\n swap2\n swap1\n tag_22\n jump\t// in\n tag_21:\n tag_23\n jump\t// in\n tag_20:\n mload(0x40)\n tag_24\n swap2\n swap1\n tag_11\n jump\t// in\n tag_24:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":324:346 People[] public people */\n tag_7:\n tag_25\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_26\n swap2\n swap1\n tag_14\n jump\t// in\n tag_26:\n tag_27\n jump\t// in\n tag_25:\n mload(0x40)\n tag_28\n swap3\n swap2\n swap1\n tag_29\n jump\t// in\n tag_28:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/SimpleStorage.sol\":528:617 function retrieve() public view returns (uint256){... */\n tag_9:\n /* \"contracts/SimpleStorage.sol\":569:576 uint256 */\n 0x00\n /* \"contracts/SimpleStorage.sol\":595:609 favoriteNumber */\n dup1\n sload\n /* \"contracts/SimpleStorage.sol\":588:609 return favoriteNumber */\n swap1\n pop\n /* \"contracts/SimpleStorage.sol\":528:617 function retrieve() public view returns (uint256){... */\n swap1\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":418:516 function store(uint256 _favoriteNumber) public {... */\n tag_15:\n /* \"contracts/SimpleStorage.sol\":493:508 _favoriteNumber */\n dup1\n /* \"contracts/SimpleStorage.sol\":476:490 favoriteNumber */\n 0x00\n /* \"contracts/SimpleStorage.sol\":476:508 favoriteNumber = _favoriteNumber */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/SimpleStorage.sol\":418:516 function store(uint256 _favoriteNumber) public {... */\n pop\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":625:815 function addPerson(string memory _name, uint256 _favoriteNumber) public {... */\n tag_19:\n /* \"contracts/SimpleStorage.sol\":708:714 people */\n 0x01\n /* \"contracts/SimpleStorage.sol\":720:750 People(_favoriteNumber, _name) */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n /* \"contracts/SimpleStorage.sol\":727:742 _favoriteNumber */\n dup4\n /* \"contracts/SimpleStorage.sol\":720:750 People(_favoriteNumber, _name) */\n dup2\n mstore\n 0x20\n add\n /* \"contracts/SimpleStorage.sol\":744:749 _name */\n dup5\n /* \"contracts/SimpleStorage.sol\":720:750 People(_favoriteNumber, _name) */\n dup2\n mstore\n pop\n /* \"contracts/SimpleStorage.sol\":708:751 people.push(People(_favoriteNumber, _name)) */\n swap1\n dup1\n 0x01\n dup2\n sload\n add\n dup1\n dup3\n sstore\n dup1\n swap2\n pop\n pop\n 0x01\n swap1\n sub\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\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_34\n swap3\n swap2\n swap1\n tag_35\n jump\t// in\n tag_34:\n pop\n pop\n pop\n /* \"contracts/SimpleStorage.sol\":792:807 _favoriteNumber */\n dup1\n /* \"contracts/SimpleStorage.sol\":762:782 nameToFavoriteNumber */\n 0x02\n /* \"contracts/SimpleStorage.sol\":783:788 _name */\n dup4\n /* \"contracts/SimpleStorage.sol\":762:789 nameToFavoriteNumber[_name] */\n mload(0x40)\n tag_36\n swap2\n swap1\n tag_37\n jump\t// in\n tag_36:\n swap1\n dup2\n mstore\n 0x20\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n keccak256\n /* \"contracts/SimpleStorage.sol\":762:807 nameToFavoriteNumber[_name] = _favoriteNumber */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/SimpleStorage.sol\":625:815 function addPerson(string memory _name, uint256 _favoriteNumber) public {... */\n pop\n pop\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":355:409 mapping(string => uint256) public nameToFavoriteNumber */\n tag_23:\n 0x02\n dup2\n dup1\n mload\n 0x20\n dup2\n add\n dup3\n add\n dup1\n mload\n dup5\n dup3\n mstore\n 0x20\n dup4\n add\n 0x20\n dup6\n add\n keccak256\n dup2\n dup4\n mstore\n dup1\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n 0x00\n swap2\n pop\n swap1\n pop\n sload\n dup2\n jump\t// out\n /* \"contracts/SimpleStorage.sol\":324:346 People[] public people */\n tag_27:\n 0x01\n dup2\n dup2\n sload\n dup2\n lt\n tag_38\n jumpi\n 0x00\n dup1\n revert\n tag_38:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\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_40\n swap1\n tag_41\n jump\t// in\n tag_40:\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_42\n swap1\n tag_41\n jump\t// in\n tag_42:\n dup1\n iszero\n tag_43\n jumpi\n dup1\n 0x1f\n lt\n tag_44\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_43)\n tag_44:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_45:\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_45\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_43:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n dup3\n jump\t// out\n tag_35:\n dup3\n dup1\n sload\n tag_46\n swap1\n tag_41\n jump\t// in\n tag_46:\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_48\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_47)\n tag_48:\n dup3\n 0x1f\n lt\n tag_49\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_47)\n tag_49:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_47\n jumpi\n swap2\n dup3\n add\n tag_50:\n dup3\n dup2\n gt\n iszero\n tag_51\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_50)\n tag_51:\n tag_47:\n pop\n swap1\n pop\n tag_52\n swap2\n swap1\n tag_53\n jump\t// in\n tag_52:\n pop\n swap1\n jump\t// out\n tag_53:\n tag_54:\n dup1\n dup3\n gt\n iszero\n tag_55\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_54)\n tag_55:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:84 */\n tag_56:\n /* \"#utility.yul\":44:51 */\n 0x00\n /* \"#utility.yul\":73:78 */\n dup2\n /* \"#utility.yul\":62:78 */\n swap1\n pop\n /* \"#utility.yul\":7:84 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":90:208 */\n tag_57:\n /* \"#utility.yul\":177:201 */\n tag_83\n /* \"#utility.yul\":195:200 */\n dup2\n /* \"#utility.yul\":177:201 */\n tag_56\n jump\t// in\n tag_83:\n /* \"#utility.yul\":172:175 */\n dup3\n /* \"#utility.yul\":165:202 */\n mstore\n /* \"#utility.yul\":90:208 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":214:436 */\n tag_11:\n /* \"#utility.yul\":307:311 */\n 0x00\n /* \"#utility.yul\":345:347 */\n 0x20\n /* \"#utility.yul\":334:343 */\n dup3\n /* \"#utility.yul\":330:348 */\n add\n /* \"#utility.yul\":322:348 */\n swap1\n pop\n /* \"#utility.yul\":358:429 */\n tag_85\n /* \"#utility.yul\":426:427 */\n 0x00\n /* \"#utility.yul\":415:424 */\n dup4\n /* \"#utility.yul\":411:428 */\n add\n /* \"#utility.yul\":402:408 */\n dup5\n /* \"#utility.yul\":358:429 */\n tag_57\n jump\t// in\n tag_85:\n /* \"#utility.yul\":214:436 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":442:517 */\n tag_58:\n /* \"#utility.yul\":475:481 */\n 0x00\n /* \"#utility.yul\":508:510 */\n 0x40\n /* \"#utility.yul\":502:511 */\n mload\n /* \"#utility.yul\":492:511 */\n swap1\n pop\n /* \"#utility.yul\":442:517 */\n swap1\n jump\t// out\n /* \"#utility.yul\":523:640 */\n tag_59:\n /* \"#utility.yul\":632:633 */\n 0x00\n /* \"#utility.yul\":629:630 */\n dup1\n /* \"#utility.yul\":622:634 */\n revert\n /* \"#utility.yul\":646:763 */\n tag_60:\n /* \"#utility.yul\":755:756 */\n 0x00\n /* \"#utility.yul\":752:753 */\n dup1\n /* \"#utility.yul\":745:757 */\n revert\n /* \"#utility.yul\":769:891 */\n tag_61:\n /* \"#utility.yul\":842:866 */\n tag_90\n /* \"#utility.yul\":860:865 */\n dup2\n /* \"#utility.yul\":842:866 */\n tag_56\n jump\t// in\n tag_90:\n /* \"#utility.yul\":835:840 */\n dup2\n /* \"#utility.yul\":832:867 */\n eq\n /* \"#utility.yul\":822:885 */\n tag_91\n jumpi\n /* \"#utility.yul\":881:882 */\n 0x00\n /* \"#utility.yul\":878:879 */\n dup1\n /* \"#utility.yul\":871:883 */\n revert\n /* \"#utility.yul\":822:885 */\n tag_91:\n /* \"#utility.yul\":769:891 */\n pop\n jump\t// out\n /* \"#utility.yul\":897:1036 */\n tag_62:\n /* \"#utility.yul\":943:948 */\n 0x00\n /* \"#utility.yul\":981:987 */\n dup2\n /* \"#utility.yul\":968:988 */\n calldataload\n /* \"#utility.yul\":959:988 */\n swap1\n pop\n /* \"#utility.yul\":997:1030 */\n tag_93\n /* \"#utility.yul\":1024:1029 */\n dup2\n /* \"#utility.yul\":997:1030 */\n tag_61\n jump\t// in\n tag_93:\n /* \"#utility.yul\":897:1036 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1042:1371 */\n tag_14:\n /* \"#utility.yul\":1101:1107 */\n 0x00\n /* \"#utility.yul\":1150:1152 */\n 0x20\n /* \"#utility.yul\":1138:1147 */\n dup3\n /* \"#utility.yul\":1129:1136 */\n dup5\n /* \"#utility.yul\":1125:1148 */\n sub\n /* \"#utility.yul\":1121:1153 */\n slt\n /* \"#utility.yul\":1118:1237 */\n iszero\n tag_95\n jumpi\n /* \"#utility.yul\":1156:1235 */\n tag_96\n tag_59\n jump\t// in\n tag_96:\n /* \"#utility.yul\":1118:1237 */\n tag_95:\n /* \"#utility.yul\":1276:1277 */\n 0x00\n /* \"#utility.yul\":1301:1354 */\n tag_97\n /* \"#utility.yul\":1346:1353 */\n dup5\n /* \"#utility.yul\":1337:1343 */\n dup3\n /* \"#utility.yul\":1326:1335 */\n dup6\n /* \"#utility.yul\":1322:1344 */\n add\n /* \"#utility.yul\":1301:1354 */\n tag_62\n jump\t// in\n tag_97:\n /* \"#utility.yul\":1291:1354 */\n swap2\n pop\n /* \"#utility.yul\":1247:1364 */\n pop\n /* \"#utility.yul\":1042:1371 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1377:1494 */\n tag_63:\n /* \"#utility.yul\":1486:1487 */\n 0x00\n /* \"#utility.yul\":1483:1484 */\n dup1\n /* \"#utility.yul\":1476:1488 */\n revert\n /* \"#utility.yul\":1500:1617 */\n tag_64:\n /* \"#utility.yul\":1609:1610 */\n 0x00\n /* \"#utility.yul\":1606:1607 */\n dup1\n /* \"#utility.yul\":1599:1611 */\n revert\n /* \"#utility.yul\":1623:1725 */\n tag_65:\n /* \"#utility.yul\":1664:1670 */\n 0x00\n /* \"#utility.yul\":1715:1717 */\n 0x1f\n /* \"#utility.yul\":1711:1718 */\n not\n /* \"#utility.yul\":1706:1708 */\n 0x1f\n /* \"#utility.yul\":1699:1704 */\n dup4\n /* \"#utility.yul\":1695:1709 */\n add\n /* \"#utility.yul\":1691:1719 */\n and\n /* \"#utility.yul\":1681:1719 */\n swap1\n pop\n /* \"#utility.yul\":1623:1725 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1731:1911 */\n tag_66:\n /* \"#utility.yul\":1779:1856 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1776:1777 */\n 0x00\n /* \"#utility.yul\":1769:1857 */\n mstore\n /* \"#utility.yul\":1876:1880 */\n 0x41\n /* \"#utility.yul\":1873:1874 */\n 0x04\n /* \"#utility.yul\":1866:1881 */\n mstore\n /* \"#utility.yul\":1900:1904 */\n 0x24\n /* \"#utility.yul\":1897:1898 */\n 0x00\n /* \"#utility.yul\":1890:1905 */\n revert\n /* \"#utility.yul\":1917:2198 */\n tag_67:\n /* \"#utility.yul\":2000:2027 */\n tag_103\n /* \"#utility.yul\":2022:2026 */\n dup3\n /* \"#utility.yul\":2000:2027 */\n tag_65\n jump\t// in\n tag_103:\n /* \"#utility.yul\":1992:1998 */\n dup2\n /* \"#utility.yul\":1988:2028 */\n add\n /* \"#utility.yul\":2130:2136 */\n dup2\n /* \"#utility.yul\":2118:2128 */\n dup2\n /* \"#utility.yul\":2115:2137 */\n lt\n /* \"#utility.yul\":2094:2112 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2082:2092 */\n dup3\n /* \"#utility.yul\":2079:2113 */\n gt\n /* \"#utility.yul\":2076:2138 */\n or\n /* \"#utility.yul\":2073:2161 */\n iszero\n tag_104\n jumpi\n /* \"#utility.yul\":2141:2159 */\n tag_105\n tag_66\n jump\t// in\n tag_105:\n /* \"#utility.yul\":2073:2161 */\n tag_104:\n /* \"#utility.yul\":2181:2191 */\n dup1\n /* \"#utility.yul\":2177:2179 */\n 0x40\n /* \"#utility.yul\":2170:2192 */\n mstore\n /* \"#utility.yul\":1960:2198 */\n pop\n /* \"#utility.yul\":1917:2198 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2204:2333 */\n tag_68:\n /* \"#utility.yul\":2238:2244 */\n 0x00\n /* \"#utility.yul\":2265:2285 */\n tag_107\n tag_58\n jump\t// in\n tag_107:\n /* \"#utility.yul\":2255:2285 */\n swap1\n pop\n /* \"#utility.yul\":2294:2327 */\n tag_108\n /* \"#utility.yul\":2322:2326 */\n dup3\n /* \"#utility.yul\":2314:2320 */\n dup3\n /* \"#utility.yul\":2294:2327 */\n tag_67\n jump\t// in\n tag_108:\n /* \"#utility.yul\":2204:2333 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2339:2647 */\n tag_69:\n /* \"#utility.yul\":2401:2405 */\n 0x00\n /* \"#utility.yul\":2491:2509 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2483:2489 */\n dup3\n /* \"#utility.yul\":2480:2510 */\n gt\n /* \"#utility.yul\":2477:2533 */\n iszero\n tag_110\n jumpi\n /* \"#utility.yul\":2513:2531 */\n tag_111\n tag_66\n jump\t// in\n tag_111:\n /* \"#utility.yul\":2477:2533 */\n tag_110:\n /* \"#utility.yul\":2551:2580 */\n tag_112\n /* \"#utility.yul\":2573:2579 */\n dup3\n /* \"#utility.yul\":2551:2580 */\n tag_65\n jump\t// in\n tag_112:\n /* \"#utility.yul\":2543:2580 */\n swap1\n pop\n /* \"#utility.yul\":2635:2639 */\n 0x20\n /* \"#utility.yul\":2629:2633 */\n dup2\n /* \"#utility.yul\":2625:2640 */\n add\n /* \"#utility.yul\":2617:2640 */\n swap1\n pop\n /* \"#utility.yul\":2339:2647 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2653:2807 */\n tag_70:\n /* \"#utility.yul\":2737:2743 */\n dup3\n /* \"#utility.yul\":2732:2735 */\n dup2\n /* \"#utility.yul\":2727:2730 */\n dup4\n /* \"#utility.yul\":2714:2744 */\n calldatacopy\n /* \"#utility.yul\":2799:2800 */\n 0x00\n /* \"#utility.yul\":2790:2796 */\n dup4\n /* \"#utility.yul\":2785:2788 */\n dup4\n /* \"#utility.yul\":2781:2797 */\n add\n /* \"#utility.yul\":2774:2801 */\n mstore\n /* \"#utility.yul\":2653:2807 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2813:3225 */\n tag_71:\n /* \"#utility.yul\":2891:2896 */\n 0x00\n /* \"#utility.yul\":2916:2982 */\n tag_115\n /* \"#utility.yul\":2932:2981 */\n tag_116\n /* \"#utility.yul\":2974:2980 */\n dup5\n /* \"#utility.yul\":2932:2981 */\n tag_69\n jump\t// in\n tag_116:\n /* \"#utility.yul\":2916:2982 */\n tag_68\n jump\t// in\n tag_115:\n /* \"#utility.yul\":2907:2982 */\n swap1\n pop\n /* \"#utility.yul\":3005:3011 */\n dup3\n /* \"#utility.yul\":2998:3003 */\n dup2\n /* \"#utility.yul\":2991:3012 */\n mstore\n /* \"#utility.yul\":3043:3047 */\n 0x20\n /* \"#utility.yul\":3036:3041 */\n dup2\n /* \"#utility.yul\":3032:3048 */\n add\n /* \"#utility.yul\":3081:3084 */\n dup5\n /* \"#utility.yul\":3072:3078 */\n dup5\n /* \"#utility.yul\":3067:3070 */\n dup5\n /* \"#utility.yul\":3063:3079 */\n add\n /* \"#utility.yul\":3060:3085 */\n gt\n /* \"#utility.yul\":3057:3169 */\n iszero\n tag_117\n jumpi\n /* \"#utility.yul\":3088:3167 */\n tag_118\n tag_64\n jump\t// in\n tag_118:\n /* \"#utility.yul\":3057:3169 */\n tag_117:\n /* \"#utility.yul\":3178:3219 */\n tag_119\n /* \"#utility.yul\":3212:3218 */\n dup5\n /* \"#utility.yul\":3207:3210 */\n dup3\n /* \"#utility.yul\":3202:3205 */\n dup6\n /* \"#utility.yul\":3178:3219 */\n tag_70\n jump\t// in\n tag_119:\n /* \"#utility.yul\":2897:3225 */\n pop\n /* \"#utility.yul\":2813:3225 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3245:3585 */\n tag_72:\n /* \"#utility.yul\":3301:3306 */\n 0x00\n /* \"#utility.yul\":3350:3353 */\n dup3\n /* \"#utility.yul\":3343:3347 */\n 0x1f\n /* \"#utility.yul\":3335:3341 */\n dup4\n /* \"#utility.yul\":3331:3348 */\n add\n /* \"#utility.yul\":3327:3354 */\n slt\n /* \"#utility.yul\":3317:3439 */\n tag_121\n jumpi\n /* \"#utility.yul\":3358:3437 */\n tag_122\n tag_63\n jump\t// in\n tag_122:\n /* \"#utility.yul\":3317:3439 */\n tag_121:\n /* \"#utility.yul\":3475:3481 */\n dup2\n /* \"#utility.yul\":3462:3482 */\n calldataload\n /* \"#utility.yul\":3500:3579 */\n tag_123\n /* \"#utility.yul\":3575:3578 */\n dup5\n /* \"#utility.yul\":3567:3573 */\n dup3\n /* \"#utility.yul\":3560:3564 */\n 0x20\n /* \"#utility.yul\":3552:3558 */\n dup7\n /* \"#utility.yul\":3548:3565 */\n add\n /* \"#utility.yul\":3500:3579 */\n tag_71\n jump\t// in\n tag_123:\n /* \"#utility.yul\":3491:3579 */\n swap2\n pop\n /* \"#utility.yul\":3307:3585 */\n pop\n /* \"#utility.yul\":3245:3585 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3591:4245 */\n tag_18:\n /* \"#utility.yul\":3669:3675 */\n 0x00\n /* \"#utility.yul\":3677:3683 */\n dup1\n /* \"#utility.yul\":3726:3728 */\n 0x40\n /* \"#utility.yul\":3714:3723 */\n dup4\n /* \"#utility.yul\":3705:3712 */\n dup6\n /* \"#utility.yul\":3701:3724 */\n sub\n /* \"#utility.yul\":3697:3729 */\n slt\n /* \"#utility.yul\":3694:3813 */\n iszero\n tag_125\n jumpi\n /* \"#utility.yul\":3732:3811 */\n tag_126\n tag_59\n jump\t// in\n tag_126:\n /* \"#utility.yul\":3694:3813 */\n tag_125:\n /* \"#utility.yul\":3880:3881 */\n 0x00\n /* \"#utility.yul\":3869:3878 */\n dup4\n /* \"#utility.yul\":3865:3882 */\n add\n /* \"#utility.yul\":3852:3883 */\n calldataload\n /* \"#utility.yul\":3910:3928 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3902:3908 */\n dup2\n /* \"#utility.yul\":3899:3929 */\n gt\n /* \"#utility.yul\":3896:4013 */\n iszero\n tag_127\n jumpi\n /* \"#utility.yul\":3932:4011 */\n tag_128\n tag_60\n jump\t// in\n tag_128:\n /* \"#utility.yul\":3896:4013 */\n tag_127:\n /* \"#utility.yul\":4037:4100 */\n tag_129\n /* \"#utility.yul\":4092:4099 */\n dup6\n /* \"#utility.yul\":4083:4089 */\n dup3\n /* \"#utility.yul\":4072:4081 */\n dup7\n /* \"#utility.yul\":4068:4090 */\n add\n /* \"#utility.yul\":4037:4100 */\n tag_72\n jump\t// in\n tag_129:\n /* \"#utility.yul\":4027:4100 */\n swap3\n pop\n /* \"#utility.yul\":3823:4110 */\n pop\n /* \"#utility.yul\":4149:4151 */\n 0x20\n /* \"#utility.yul\":4175:4228 */\n tag_130\n /* \"#utility.yul\":4220:4227 */\n dup6\n /* \"#utility.yul\":4211:4217 */\n dup3\n /* \"#utility.yul\":4200:4209 */\n dup7\n /* \"#utility.yul\":4196:4218 */\n add\n /* \"#utility.yul\":4175:4228 */\n tag_62\n jump\t// in\n tag_130:\n /* \"#utility.yul\":4165:4228 */\n swap2\n pop\n /* \"#utility.yul\":4120:4238 */\n pop\n /* \"#utility.yul\":3591:4245 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4251:4760 */\n tag_22:\n /* \"#utility.yul\":4320:4326 */\n 0x00\n /* \"#utility.yul\":4369:4371 */\n 0x20\n /* \"#utility.yul\":4357:4366 */\n dup3\n /* \"#utility.yul\":4348:4355 */\n dup5\n /* \"#utility.yul\":4344:4367 */\n sub\n /* \"#utility.yul\":4340:4372 */\n slt\n /* \"#utility.yul\":4337:4456 */\n iszero\n tag_132\n jumpi\n /* \"#utility.yul\":4375:4454 */\n tag_133\n tag_59\n jump\t// in\n tag_133:\n /* \"#utility.yul\":4337:4456 */\n tag_132:\n /* \"#utility.yul\":4523:4524 */\n 0x00\n /* \"#utility.yul\":4512:4521 */\n dup3\n /* \"#utility.yul\":4508:4525 */\n add\n /* \"#utility.yul\":4495:4526 */\n calldataload\n /* \"#utility.yul\":4553:4571 */\n 0xffffffffffffffff\n /* \"#utility.yul\":4545:4551 */\n dup2\n /* \"#utility.yul\":4542:4572 */\n gt\n /* \"#utility.yul\":4539:4656 */\n iszero\n tag_134\n jumpi\n /* \"#utility.yul\":4575:4654 */\n tag_135\n tag_60\n jump\t// in\n tag_135:\n /* \"#utility.yul\":4539:4656 */\n tag_134:\n /* \"#utility.yul\":4680:4743 */\n tag_136\n /* \"#utility.yul\":4735:4742 */\n dup5\n /* \"#utility.yul\":4726:4732 */\n dup3\n /* \"#utility.yul\":4715:4724 */\n dup6\n /* \"#utility.yul\":4711:4733 */\n add\n /* \"#utility.yul\":4680:4743 */\n tag_72\n jump\t// in\n tag_136:\n /* \"#utility.yul\":4670:4743 */\n swap2\n pop\n /* \"#utility.yul\":4466:4753 */\n pop\n /* \"#utility.yul\":4251:4760 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4766:4865 */\n tag_73:\n /* \"#utility.yul\":4818:4824 */\n 0x00\n /* \"#utility.yul\":4852:4857 */\n dup2\n /* \"#utility.yul\":4846:4858 */\n mload\n /* \"#utility.yul\":4836:4858 */\n swap1\n pop\n /* \"#utility.yul\":4766:4865 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4871:5040 */\n tag_74:\n /* \"#utility.yul\":4955:4966 */\n 0x00\n /* \"#utility.yul\":4989:4995 */\n dup3\n /* \"#utility.yul\":4984:4987 */\n dup3\n /* \"#utility.yul\":4977:4996 */\n mstore\n /* \"#utility.yul\":5029:5033 */\n 0x20\n /* \"#utility.yul\":5024:5027 */\n dup3\n /* \"#utility.yul\":5020:5034 */\n add\n /* \"#utility.yul\":5005:5034 */\n swap1\n pop\n /* \"#utility.yul\":4871:5040 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5046:5353 */\n tag_75:\n /* \"#utility.yul\":5114:5115 */\n 0x00\n /* \"#utility.yul\":5124:5237 */\n tag_140:\n /* \"#utility.yul\":5138:5144 */\n dup4\n /* \"#utility.yul\":5135:5136 */\n dup2\n /* \"#utility.yul\":5132:5145 */\n lt\n /* \"#utility.yul\":5124:5237 */\n iszero\n tag_142\n jumpi\n /* \"#utility.yul\":5223:5224 */\n dup1\n /* \"#utility.yul\":5218:5221 */\n dup3\n /* \"#utility.yul\":5214:5225 */\n add\n /* \"#utility.yul\":5208:5226 */\n mload\n /* \"#utility.yul\":5204:5205 */\n dup2\n /* \"#utility.yul\":5199:5202 */\n dup5\n /* \"#utility.yul\":5195:5206 */\n add\n /* \"#utility.yul\":5188:5227 */\n mstore\n /* \"#utility.yul\":5160:5162 */\n 0x20\n /* \"#utility.yul\":5157:5158 */\n dup2\n /* \"#utility.yul\":5153:5163 */\n add\n /* \"#utility.yul\":5148:5163 */\n swap1\n pop\n /* \"#utility.yul\":5124:5237 */\n jump(tag_140)\n tag_142:\n /* \"#utility.yul\":5255:5261 */\n dup4\n /* \"#utility.yul\":5252:5253 */\n dup2\n /* \"#utility.yul\":5249:5262 */\n gt\n /* \"#utility.yul\":5246:5347 */\n iszero\n tag_143\n jumpi\n /* \"#utility.yul\":5335:5336 */\n 0x00\n /* \"#utility.yul\":5326:5332 */\n dup5\n /* \"#utility.yul\":5321:5324 */\n dup5\n /* \"#utility.yul\":5317:5333 */\n add\n /* \"#utility.yul\":5310:5337 */\n mstore\n /* \"#utility.yul\":5246:5347 */\n tag_143:\n /* \"#utility.yul\":5095:5353 */\n pop\n /* \"#utility.yul\":5046:5353 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5359:5723 */\n tag_76:\n /* \"#utility.yul\":5447:5450 */\n 0x00\n /* \"#utility.yul\":5475:5514 */\n tag_145\n /* \"#utility.yul\":5508:5513 */\n dup3\n /* \"#utility.yul\":5475:5514 */\n tag_73\n jump\t// in\n tag_145:\n /* \"#utility.yul\":5530:5601 */\n tag_146\n /* \"#utility.yul\":5594:5600 */\n dup2\n /* \"#utility.yul\":5589:5592 */\n dup6\n /* \"#utility.yul\":5530:5601 */\n tag_74\n jump\t// in\n tag_146:\n /* \"#utility.yul\":5523:5601 */\n swap4\n pop\n /* \"#utility.yul\":5610:5662 */\n tag_147\n /* \"#utility.yul\":5655:5661 */\n dup2\n /* \"#utility.yul\":5650:5653 */\n dup6\n /* \"#utility.yul\":5643:5647 */\n 0x20\n /* \"#utility.yul\":5636:5641 */\n dup7\n /* \"#utility.yul\":5632:5648 */\n add\n /* \"#utility.yul\":5610:5662 */\n tag_75\n jump\t// in\n tag_147:\n /* \"#utility.yul\":5687:5716 */\n tag_148\n /* \"#utility.yul\":5709:5715 */\n dup2\n /* \"#utility.yul\":5687:5716 */\n tag_65\n jump\t// in\n tag_148:\n /* \"#utility.yul\":5682:5685 */\n dup5\n /* \"#utility.yul\":5678:5717 */\n add\n /* \"#utility.yul\":5671:5717 */\n swap2\n pop\n /* \"#utility.yul\":5451:5723 */\n pop\n /* \"#utility.yul\":5359:5723 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5729:6152 */\n tag_29:\n /* \"#utility.yul\":5870:5874 */\n 0x00\n /* \"#utility.yul\":5908:5910 */\n 0x40\n /* \"#utility.yul\":5897:5906 */\n dup3\n /* \"#utility.yul\":5893:5911 */\n add\n /* \"#utility.yul\":5885:5911 */\n swap1\n pop\n /* \"#utility.yul\":5921:5992 */\n tag_150\n /* \"#utility.yul\":5989:5990 */\n 0x00\n /* \"#utility.yul\":5978:5987 */\n dup4\n /* \"#utility.yul\":5974:5991 */\n add\n /* \"#utility.yul\":5965:5971 */\n dup6\n /* \"#utility.yul\":5921:5992 */\n tag_57\n jump\t// in\n tag_150:\n /* \"#utility.yul\":6039:6048 */\n dup2\n
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment