Created
November 2, 2023 15:13
-
-
Save jether2011/653d7b650995cf455e4696d75fb7b221 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.22+commit.4fc1097e.js&optimize=false&runs=200&gist=
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"overrides": [ | |
{ | |
"files": "*.sol", | |
"options": { | |
"printWidth": 80, | |
"tabWidth": 4, | |
"useTabs": false, | |
"singleQuote": false, | |
"bracketSpacing": false | |
} | |
}, | |
{ | |
"files": "*.yml", | |
"options": {} | |
}, | |
{ | |
"files": "*.yaml", | |
"options": {} | |
}, | |
{ | |
"files": "*.toml", | |
"options": {} | |
}, | |
{ | |
"files": "*.json", | |
"options": {} | |
}, | |
{ | |
"files": "*.js", | |
"options": {} | |
}, | |
{ | |
"files": "*.ts", | |
"options": {} | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
REMIX DEFAULT WORKSPACE | |
Remix default workspace is present when: | |
i. Remix loads for the very first time | |
ii. A new workspace is created with 'Default' template | |
iii. There are no files existing in the File Explorer | |
This workspace contains 3 directories: | |
1. 'contracts': Holds three contracts with increasing levels of complexity. | |
2. 'scripts': Contains four typescript files to deploy a contract. It is explained below. | |
3. 'tests': Contains one Solidity test file for 'Ballot' contract & one JS test file for 'Storage' contract. | |
SCRIPTS | |
The 'scripts' folder has four typescript files which help to deploy the 'Storage' contract using 'web3.js' and 'ethers.js' libraries. | |
For the deployment of any other contract, just update the contract's name from 'Storage' to the desired contract and provide constructor arguments accordingly | |
in the file `deploy_with_ethers.ts` or `deploy_with_web3.ts` | |
In the 'tests' folder there is a script containing Mocha-Chai unit tests for 'Storage' contract. | |
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled. | |
Output from script will appear in remix terminal. | |
Please note, require/import is supported in a limited manner for Remix supported modules. | |
For now, modules supported by Remix are ethers, web3, swarmgw, chai, multihashes, remix and hardhat only for hardhat.ethers object/plugin. | |
For unsupported modules, an error like this will be thrown: '<module_name> module require is not supported by Remix IDE' will be shown. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.8.2 <0.9.0; | |
/** | |
* @title Storage | |
* @dev Store & retrieve value in a variable | |
* @custom:dev-run-script ./scripts/deploy_with_ethers.ts | |
*/ | |
contract Storage { | |
uint256 number; | |
/** | |
* @dev Store value in variable | |
* @param num value to store | |
*/ | |
function store(uint256 num) public { | |
number = num; | |
} | |
/** | |
* @dev Return value | |
* @return value of 'number' | |
*/ | |
function retrieve() public view returns (uint256){ | |
return number; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.7.0 <0.9.0; | |
import "hardhat/console.sol"; | |
/** | |
* @title Owner | |
* @dev Set & change owner | |
*/ | |
contract Owner { | |
address private owner; | |
// event for EVM logging | |
event OwnerSet(address indexed oldOwner, address indexed newOwner); | |
// modifier to check if caller is owner | |
modifier isOwner() { | |
// If the first argument of 'require' evaluates to 'false', execution terminates and all | |
// changes to the state and to Ether balances are reverted. | |
// This used to consume all gas in old EVM versions, but not anymore. | |
// It is often a good idea to use 'require' to check if functions are called correctly. | |
// As a second argument, you can also provide an explanation about what went wrong. | |
require(msg.sender == owner, "Caller is not owner"); | |
_; | |
} | |
/** | |
* @dev Set contract deployer as owner | |
*/ | |
constructor() { | |
console.log("Owner contract deployed by:", msg.sender); | |
owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor | |
emit OwnerSet(address(0), owner); | |
} | |
/** | |
* @dev Change owner | |
* @param newOwner address of new owner | |
*/ | |
function changeOwner(address newOwner) public isOwner { | |
emit OwnerSet(owner, newOwner); | |
owner = newOwner; | |
} | |
/** | |
* @dev Return owner address | |
* @return address of owner | |
*/ | |
function getOwner() external view returns (address) { | |
return owner; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.7.0 <0.9.0; | |
/** | |
* @title Ballot | |
* @dev Implements voting process along with vote delegation | |
*/ | |
contract Ballot { | |
struct Voter { | |
uint weight; // weight is accumulated by delegation | |
bool voted; // if true, that person already voted | |
address delegate; // person delegated to | |
uint vote; // index of the voted proposal | |
} | |
struct Proposal { | |
// If you can limit the length to a certain number of bytes, | |
// always use one of bytes1 to bytes32 because they are much cheaper | |
bytes32 name; // short name (up to 32 bytes) | |
uint voteCount; // number of accumulated votes | |
} | |
address public chairperson; | |
mapping(address => Voter) public voters; | |
Proposal[] public proposals; | |
/** | |
* @dev Create a new ballot to choose one of 'proposalNames'. | |
* @param proposalNames names of proposals | |
*/ | |
constructor(bytes32[] memory proposalNames) { | |
chairperson = msg.sender; | |
voters[chairperson].weight = 1; | |
for (uint i = 0; i < proposalNames.length; i++) { | |
// 'Proposal({...})' creates a temporary | |
// Proposal object and 'proposals.push(...)' | |
// appends it to the end of 'proposals'. | |
proposals.push(Proposal({ | |
name: proposalNames[i], | |
voteCount: 0 | |
})); | |
} | |
} | |
/** | |
* @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'. | |
* @param voter address of voter | |
*/ | |
function giveRightToVote(address voter) public { | |
require( | |
msg.sender == chairperson, | |
"Only chairperson can give right to vote." | |
); | |
require( | |
!voters[voter].voted, | |
"The voter already voted." | |
); | |
require(voters[voter].weight == 0); | |
voters[voter].weight = 1; | |
} | |
/** | |
* @dev Delegate your vote to the voter 'to'. | |
* @param to address to which vote is delegated | |
*/ | |
function delegate(address to) public { | |
Voter storage sender = voters[msg.sender]; | |
require(!sender.voted, "You already voted."); | |
require(to != msg.sender, "Self-delegation is disallowed."); | |
while (voters[to].delegate != address(0)) { | |
to = voters[to].delegate; | |
// We found a loop in the delegation, not allowed. | |
require(to != msg.sender, "Found loop in delegation."); | |
} | |
sender.voted = true; | |
sender.delegate = to; | |
Voter storage delegate_ = voters[to]; | |
if (delegate_.voted) { | |
// If the delegate already voted, | |
// directly add to the number of votes | |
proposals[delegate_.vote].voteCount += sender.weight; | |
} else { | |
// If the delegate did not vote yet, | |
// add to her weight. | |
delegate_.weight += sender.weight; | |
} | |
} | |
/** | |
* @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'. | |
* @param proposal index of proposal in the proposals array | |
*/ | |
function vote(uint proposal) public { | |
Voter storage sender = voters[msg.sender]; | |
require(sender.weight != 0, "Has no right to vote"); | |
require(!sender.voted, "Already voted."); | |
sender.voted = true; | |
sender.vote = proposal; | |
// If 'proposal' is out of the range of the array, | |
// this will throw automatically and revert all | |
// changes. | |
proposals[proposal].voteCount += sender.weight; | |
} | |
/** | |
* @dev Computes the winning proposal taking all previous votes into account. | |
* @return winningProposal_ index of winning proposal in the proposals array | |
*/ | |
function winningProposal() public view | |
returns (uint winningProposal_) | |
{ | |
uint winningVoteCount = 0; | |
for (uint p = 0; p < proposals.length; p++) { | |
if (proposals[p].voteCount > winningVoteCount) { | |
winningVoteCount = proposals[p].voteCount; | |
winningProposal_ = p; | |
} | |
} | |
} | |
/** | |
* @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then | |
* @return winnerName_ the name of the winner | |
*/ | |
function winnerName() public view | |
returns (bytes32 winnerName_) | |
{ | |
winnerName_ = proposals[winningProposal()].name; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"deploy": { | |
"VM:-": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"main:1": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"ropsten:3": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"rinkeby:4": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"kovan:42": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"goerli:5": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"Custom": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
} | |
}, | |
"data": { | |
"bytecode": { | |
"functionDebugData": { | |
"@_15": { | |
"entryPoint": null, | |
"id": 15, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
} | |
}, | |
"generatedSources": [], | |
"linkReferences": {}, | |
"object": "6080604052335f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610554806100505f395ff3fe608060405260043610610049575f3560e01c8063273884bd1461004d5780633ccfd60b146100635780638da5cb5b14610079578063a9059cbb146100a3578063d0e30db0146100cb575b5f80fd5b348015610058575f80fd5b506100616100d5565b005b34801561006e575f80fd5b506100776100d7565b005b348015610084575f80fd5b5061008d610234565b60405161009a9190610345565b60405180910390f35b3480156100ae575f80fd5b506100c960048036038101906100c491906103bf565b610257565b005b6100d3610304565b005b565b5f4790503373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161015f90610457565b60405180910390fd5b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516101ad906104a2565b5f6040518083038185875af1925050503d805f81146101e7576040519150601f19603f3d011682016040523d82523d5f602084013e6101ec565b606091505b5050905080610230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161022790610500565b60405180910390fd5b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8273ffffffffffffffffffffffffffffffffffffffff168260405161027c906104a2565b5f6040518083038185875af1925050503d805f81146102b6576040519150601f19603f3d011682016040523d82523d5f602084013e6102bb565b606091505b50509050806102ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102f690610500565b60405180910390fd5b505050565b565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61032f82610306565b9050919050565b61033f81610325565b82525050565b5f6020820190506103585f830184610336565b92915050565b5f80fd5b61036b81610325565b8114610375575f80fd5b50565b5f8135905061038681610362565b92915050565b5f819050919050565b61039e8161038c565b81146103a8575f80fd5b50565b5f813590506103b981610395565b92915050565b5f80604083850312156103d5576103d461035e565b5b5f6103e285828601610378565b92505060206103f3858286016103ab565b9150509250929050565b5f82825260208201905092915050565b7f4f6e6c79206f776e65722063616e20646f2061207769746864726177210000005f82015250565b5f610441601d836103fd565b915061044c8261040d565b602082019050919050565b5f6020820190508181035f83015261046e81610435565b9050919050565b5f81905092915050565b50565b5f61048d5f83610475565b91506104988261047f565b5f82019050919050565b5f6104ac82610482565b9150819050919050565b7f4661696c656420746f2073656e642045746865720000000000000000000000005f82015250565b5f6104ea6014836103fd565b91506104f5826104b6565b602082019050919050565b5f6020820190508181035f830152610517816104de565b905091905056fea264697066735822122082529f2972c799f618704656065a2c9ac60e00bda16b50ba71254d3b383fc96a64736f6c63430008160033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLER PUSH0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x554 DUP1 PUSH2 0x50 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x49 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x273884BD EQ PUSH2 0x4D JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x63 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x79 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0xD0E30DB0 EQ PUSH2 0xCB JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x58 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x61 PUSH2 0xD5 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x77 PUSH2 0xD7 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x84 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x8D PUSH2 0x234 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9A SWAP2 SWAP1 PUSH2 0x345 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAE JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xC9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC4 SWAP2 SWAP1 PUSH2 0x3BF JUMP JUMPDEST PUSH2 0x257 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xD3 PUSH2 0x304 JUMP JUMPDEST STOP JUMPDEST JUMP JUMPDEST PUSH0 SELFBALANCE SWAP1 POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x168 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15F SWAP1 PUSH2 0x457 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x40 MLOAD PUSH2 0x1AD SWAP1 PUSH2 0x4A2 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1E7 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1EC JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x230 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x227 SWAP1 PUSH2 0x500 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH0 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x40 MLOAD PUSH2 0x27C SWAP1 PUSH2 0x4A2 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x2B6 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x2BB JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x2FF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F6 SWAP1 PUSH2 0x500 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x32F DUP3 PUSH2 0x306 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x33F DUP2 PUSH2 0x325 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x358 PUSH0 DUP4 ADD DUP5 PUSH2 0x336 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x36B DUP2 PUSH2 0x325 JUMP JUMPDEST DUP2 EQ PUSH2 0x375 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x386 DUP2 PUSH2 0x362 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x39E DUP2 PUSH2 0x38C JUMP JUMPDEST DUP2 EQ PUSH2 0x3A8 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B9 DUP2 PUSH2 0x395 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3D5 JUMPI PUSH2 0x3D4 PUSH2 0x35E JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3E2 DUP6 DUP3 DUP7 ADD PUSH2 0x378 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3F3 DUP6 DUP3 DUP7 ADD PUSH2 0x3AB JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F6E6C79206F776E65722063616E20646F206120776974686472617721000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x441 PUSH1 0x1D DUP4 PUSH2 0x3FD JUMP JUMPDEST SWAP2 POP PUSH2 0x44C DUP3 PUSH2 0x40D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x46E DUP2 PUSH2 0x435 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x48D PUSH0 DUP4 PUSH2 0x475 JUMP JUMPDEST SWAP2 POP PUSH2 0x498 DUP3 PUSH2 0x47F JUMP JUMPDEST PUSH0 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x4AC DUP3 PUSH2 0x482 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4661696C656420746F2073656E64204574686572000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4EA PUSH1 0x14 DUP4 PUSH2 0x3FD JUMP JUMPDEST SWAP2 POP PUSH2 0x4F5 DUP3 PUSH2 0x4B6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x517 DUP2 PUSH2 0x4DE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP3 MSTORE SWAP16 0x29 PUSH19 0xC799F618704656065A2C9AC60E00BDA16B50BA PUSH18 0x254D3B383FC96A64736F6C63430008160033 ", | |
"sourceMap": "57:1325:0:-:0;;;267:10;251:5;;:27;;;;;;;;;;;;;;;;;;57:1325;;;;;;" | |
}, | |
"deployedBytecode": { | |
"functionDebugData": { | |
"@deposit_19": { | |
"entryPoint": 772, | |
"id": 19, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"@notPayable_23": { | |
"entryPoint": 213, | |
"id": 23, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"@owner_3": { | |
"entryPoint": 564, | |
"id": 3, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"@transfer_79": { | |
"entryPoint": 599, | |
"id": 79, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"@withdraw_57": { | |
"entryPoint": 215, | |
"id": 57, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"abi_decode_t_address_payable": { | |
"entryPoint": 888, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_uint256": { | |
"entryPoint": 939, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_address_payablet_uint256": { | |
"entryPoint": 959, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 2 | |
}, | |
"abi_encode_t_address_payable_to_t_address_payable_fromStack": { | |
"entryPoint": 822, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_t_stringliteral_445140255c9d889994129d349e64078d6f76b4b37ec896948f7e858f9b8a0dcb_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 1246, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 1154, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_c822d50367fc4960da7debfac7c16a2801ab718f269b4db082c5540cb4312eb7_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 1077, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": { | |
"entryPoint": 1186, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed": { | |
"entryPoint": 837, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_445140255c9d889994129d349e64078d6f76b4b37ec896948f7e858f9b8a0dcb__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 1280, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_c822d50367fc4960da7debfac7c16a2801ab718f269b4db082c5540cb4312eb7__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 1111, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"allocate_unbounded": { | |
"entryPoint": null, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 1141, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
"entryPoint": 1021, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_address_payable": { | |
"entryPoint": 805, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_uint160": { | |
"entryPoint": 774, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_uint256": { | |
"entryPoint": 908, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
"entryPoint": null, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
"entryPoint": 862, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_445140255c9d889994129d349e64078d6f76b4b37ec896948f7e858f9b8a0dcb": { | |
"entryPoint": 1206, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470": { | |
"entryPoint": 1151, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_c822d50367fc4960da7debfac7c16a2801ab718f269b4db082c5540cb4312eb7": { | |
"entryPoint": 1037, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"validator_revert_t_address_payable": { | |
"entryPoint": 866, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"validator_revert_t_uint256": { | |
"entryPoint": 917, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
} | |
}, | |
"generatedSources": [ | |
{ | |
"ast": { | |
"nativeSrc": "0:5330:1", | |
"nodeType": "YulBlock", | |
"src": "0:5330:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "52:81:1", | |
"nodeType": "YulBlock", | |
"src": "52:81:1", | |
"statements": [ | |
{ | |
"nativeSrc": "62:65:1", | |
"nodeType": "YulAssignment", | |
"src": "62:65:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "77:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "77:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "84:42:1", | |
"nodeType": "YulLiteral", | |
"src": "84:42:1", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "73:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "73:3:1" | |
}, | |
"nativeSrc": "73:54:1", | |
"nodeType": "YulFunctionCall", | |
"src": "73:54:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "62:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "62:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint160", | |
"nativeSrc": "7:126:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "34:5:1", | |
"nodeType": "YulTypedName", | |
"src": "34:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "44:7:1", | |
"nodeType": "YulTypedName", | |
"src": "44:7:1", | |
"type": "" | |
} | |
], | |
"src": "7:126:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "192:51:1", | |
"nodeType": "YulBlock", | |
"src": "192:51:1", | |
"statements": [ | |
{ | |
"nativeSrc": "202:35:1", | |
"nodeType": "YulAssignment", | |
"src": "202:35:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "231:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "231:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint160", | |
"nativeSrc": "213:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "213:17:1" | |
}, | |
"nativeSrc": "213:24:1", | |
"nodeType": "YulFunctionCall", | |
"src": "213:24:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "202:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "202:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_address_payable", | |
"nativeSrc": "139:104:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "174:5:1", | |
"nodeType": "YulTypedName", | |
"src": "174:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "184:7:1", | |
"nodeType": "YulTypedName", | |
"src": "184:7:1", | |
"type": "" | |
} | |
], | |
"src": "139:104:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "330:61:1", | |
"nodeType": "YulBlock", | |
"src": "330:61:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "347:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "347:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "378:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "378:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address_payable", | |
"nativeSrc": "352:25:1", | |
"nodeType": "YulIdentifier", | |
"src": "352:25:1" | |
}, | |
"nativeSrc": "352:32:1", | |
"nodeType": "YulFunctionCall", | |
"src": "352:32:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "340:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "340:6:1" | |
}, | |
"nativeSrc": "340:45:1", | |
"nodeType": "YulFunctionCall", | |
"src": "340:45:1" | |
}, | |
"nativeSrc": "340:45:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "340:45:1" | |
} | |
] | |
}, | |
"name": "abi_encode_t_address_payable_to_t_address_payable_fromStack", | |
"nativeSrc": "249:142:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "318:5:1", | |
"nodeType": "YulTypedName", | |
"src": "318:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "325:3:1", | |
"nodeType": "YulTypedName", | |
"src": "325:3:1", | |
"type": "" | |
} | |
], | |
"src": "249:142:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "511:140:1", | |
"nodeType": "YulBlock", | |
"src": "511:140:1", | |
"statements": [ | |
{ | |
"nativeSrc": "521:26:1", | |
"nodeType": "YulAssignment", | |
"src": "521:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "533:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "533:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "544:2:1", | |
"nodeType": "YulLiteral", | |
"src": "544:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "529:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "529:3:1" | |
}, | |
"nativeSrc": "529:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "529:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "521:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "521:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "617:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "617:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "630:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "630:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "641:1:1", | |
"nodeType": "YulLiteral", | |
"src": "641:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "626:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "626:3:1" | |
}, | |
"nativeSrc": "626:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "626:17:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_payable_to_t_address_payable_fromStack", | |
"nativeSrc": "557:59:1", | |
"nodeType": "YulIdentifier", | |
"src": "557:59:1" | |
}, | |
"nativeSrc": "557:87:1", | |
"nodeType": "YulFunctionCall", | |
"src": "557:87:1" | |
}, | |
"nativeSrc": "557:87:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "557:87:1" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed", | |
"nativeSrc": "397:254:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "483:9:1", | |
"nodeType": "YulTypedName", | |
"src": "483:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nativeSrc": "495:6:1", | |
"nodeType": "YulTypedName", | |
"src": "495:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "506:4:1", | |
"nodeType": "YulTypedName", | |
"src": "506:4:1", | |
"type": "" | |
} | |
], | |
"src": "397:254:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "697:35:1", | |
"nodeType": "YulBlock", | |
"src": "697:35:1", | |
"statements": [ | |
{ | |
"nativeSrc": "707:19:1", | |
"nodeType": "YulAssignment", | |
"src": "707:19:1", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "723:2:1", | |
"nodeType": "YulLiteral", | |
"src": "723:2:1", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "717:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "717:5:1" | |
}, | |
"nativeSrc": "717:9:1", | |
"nodeType": "YulFunctionCall", | |
"src": "717:9:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "707:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "707:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "allocate_unbounded", | |
"nativeSrc": "657:75:1", | |
"nodeType": "YulFunctionDefinition", | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "690:6:1", | |
"nodeType": "YulTypedName", | |
"src": "690:6:1", | |
"type": "" | |
} | |
], | |
"src": "657:75:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "827:28:1", | |
"nodeType": "YulBlock", | |
"src": "827:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "844:1:1", | |
"nodeType": "YulLiteral", | |
"src": "844:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "847:1:1", | |
"nodeType": "YulLiteral", | |
"src": "847:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "837:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "837:6:1" | |
}, | |
"nativeSrc": "837:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "837:12:1" | |
}, | |
"nativeSrc": "837:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "837:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nativeSrc": "738:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "738:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "950:28:1", | |
"nodeType": "YulBlock", | |
"src": "950:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "967:1:1", | |
"nodeType": "YulLiteral", | |
"src": "967:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "970:1:1", | |
"nodeType": "YulLiteral", | |
"src": "970:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "960:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "960:6:1" | |
}, | |
"nativeSrc": "960:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "960:12:1" | |
}, | |
"nativeSrc": "960:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "960:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nativeSrc": "861:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "861:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1035:87:1", | |
"nodeType": "YulBlock", | |
"src": "1035:87:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "1100:16:1", | |
"nodeType": "YulBlock", | |
"src": "1100:16:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1109:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1109:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1112:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1112:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "1102:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1102:6:1" | |
}, | |
"nativeSrc": "1102:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1102:12:1" | |
}, | |
"nativeSrc": "1102:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1102:12:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "1058:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1058:5:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "1091:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1091:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address_payable", | |
"nativeSrc": "1065:25:1", | |
"nodeType": "YulIdentifier", | |
"src": "1065:25:1" | |
}, | |
"nativeSrc": "1065:32:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1065:32:1" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nativeSrc": "1055:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "1055:2:1" | |
}, | |
"nativeSrc": "1055:43:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1055:43:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nativeSrc": "1048:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1048:6:1" | |
}, | |
"nativeSrc": "1048:51:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1048:51:1" | |
}, | |
"nativeSrc": "1045:71:1", | |
"nodeType": "YulIf", | |
"src": "1045:71:1" | |
} | |
] | |
}, | |
"name": "validator_revert_t_address_payable", | |
"nativeSrc": "984:138:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "1028:5:1", | |
"nodeType": "YulTypedName", | |
"src": "1028:5:1", | |
"type": "" | |
} | |
], | |
"src": "984:138:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1188:95:1", | |
"nodeType": "YulBlock", | |
"src": "1188:95:1", | |
"statements": [ | |
{ | |
"nativeSrc": "1198:29:1", | |
"nodeType": "YulAssignment", | |
"src": "1198:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "1220:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1220:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nativeSrc": "1207:12:1", | |
"nodeType": "YulIdentifier", | |
"src": "1207:12:1" | |
}, | |
"nativeSrc": "1207:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1207:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nativeSrc": "1198:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1198:5:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "1271:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1271:5:1" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_address_payable", | |
"nativeSrc": "1236:34:1", | |
"nodeType": "YulIdentifier", | |
"src": "1236:34:1" | |
}, | |
"nativeSrc": "1236:41:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1236:41:1" | |
}, | |
"nativeSrc": "1236:41:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1236:41:1" | |
} | |
] | |
}, | |
"name": "abi_decode_t_address_payable", | |
"nativeSrc": "1128:155:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "1166:6:1", | |
"nodeType": "YulTypedName", | |
"src": "1166:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "1174:3:1", | |
"nodeType": "YulTypedName", | |
"src": "1174:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nativeSrc": "1182:5:1", | |
"nodeType": "YulTypedName", | |
"src": "1182:5:1", | |
"type": "" | |
} | |
], | |
"src": "1128:155:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1334:32:1", | |
"nodeType": "YulBlock", | |
"src": "1334:32:1", | |
"statements": [ | |
{ | |
"nativeSrc": "1344:16:1", | |
"nodeType": "YulAssignment", | |
"src": "1344:16:1", | |
"value": { | |
"name": "value", | |
"nativeSrc": "1355:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1355:5:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "1344:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "1344:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint256", | |
"nativeSrc": "1289:77:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "1316:5:1", | |
"nodeType": "YulTypedName", | |
"src": "1316:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "1326:7:1", | |
"nodeType": "YulTypedName", | |
"src": "1326:7:1", | |
"type": "" | |
} | |
], | |
"src": "1289:77:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1415:79:1", | |
"nodeType": "YulBlock", | |
"src": "1415:79:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "1472:16:1", | |
"nodeType": "YulBlock", | |
"src": "1472:16:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1481:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1481:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1484:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1484:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "1474:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1474:6:1" | |
}, | |
"nativeSrc": "1474:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1474:12:1" | |
}, | |
"nativeSrc": "1474:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1474:12:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "1438:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1438:5:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "1463:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1463:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nativeSrc": "1445:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "1445:17:1" | |
}, | |
"nativeSrc": "1445:24:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1445:24:1" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nativeSrc": "1435:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "1435:2:1" | |
}, | |
"nativeSrc": "1435:35:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1435:35:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nativeSrc": "1428:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1428:6:1" | |
}, | |
"nativeSrc": "1428:43:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1428:43:1" | |
}, | |
"nativeSrc": "1425:63:1", | |
"nodeType": "YulIf", | |
"src": "1425:63:1" | |
} | |
] | |
}, | |
"name": "validator_revert_t_uint256", | |
"nativeSrc": "1372:122:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "1408:5:1", | |
"nodeType": "YulTypedName", | |
"src": "1408:5:1", | |
"type": "" | |
} | |
], | |
"src": "1372:122:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1552:87:1", | |
"nodeType": "YulBlock", | |
"src": "1552:87:1", | |
"statements": [ | |
{ | |
"nativeSrc": "1562:29:1", | |
"nodeType": "YulAssignment", | |
"src": "1562:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "1584:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1584:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nativeSrc": "1571:12:1", | |
"nodeType": "YulIdentifier", | |
"src": "1571:12:1" | |
}, | |
"nativeSrc": "1571:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1571:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nativeSrc": "1562:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1562:5:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "1627:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1627:5:1" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_uint256", | |
"nativeSrc": "1600:26:1", | |
"nodeType": "YulIdentifier", | |
"src": "1600:26:1" | |
}, | |
"nativeSrc": "1600:33:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1600:33:1" | |
}, | |
"nativeSrc": "1600:33:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1600:33:1" | |
} | |
] | |
}, | |
"name": "abi_decode_t_uint256", | |
"nativeSrc": "1500:139:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "1530:6:1", | |
"nodeType": "YulTypedName", | |
"src": "1530:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "1538:3:1", | |
"nodeType": "YulTypedName", | |
"src": "1538:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nativeSrc": "1546:5:1", | |
"nodeType": "YulTypedName", | |
"src": "1546:5:1", | |
"type": "" | |
} | |
], | |
"src": "1500:139:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1736:399:1", | |
"nodeType": "YulBlock", | |
"src": "1736:399:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "1782:83:1", | |
"nodeType": "YulBlock", | |
"src": "1782:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nativeSrc": "1784:77:1", | |
"nodeType": "YulIdentifier", | |
"src": "1784:77:1" | |
}, | |
"nativeSrc": "1784:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1784:79:1" | |
}, | |
"nativeSrc": "1784:79:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1784:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "1757:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "1757:7:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "1766:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "1766:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "1753:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1753:3:1" | |
}, | |
"nativeSrc": "1753:23:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1753:23:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1778:2:1", | |
"nodeType": "YulLiteral", | |
"src": "1778:2:1", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nativeSrc": "1749:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1749:3:1" | |
}, | |
"nativeSrc": "1749:32:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1749:32:1" | |
}, | |
"nativeSrc": "1746:119:1", | |
"nodeType": "YulIf", | |
"src": "1746:119:1" | |
}, | |
{ | |
"nativeSrc": "1875:125:1", | |
"nodeType": "YulBlock", | |
"src": "1875:125:1", | |
"statements": [ | |
{ | |
"nativeSrc": "1890:15:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "1890:15:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "1904:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1904:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "1894:6:1", | |
"nodeType": "YulTypedName", | |
"src": "1894:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "1919:71:1", | |
"nodeType": "YulAssignment", | |
"src": "1919:71:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "1962:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "1962:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "1973:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1973:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "1958:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1958:3:1" | |
}, | |
"nativeSrc": "1958:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1958:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "1982:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "1982:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address_payable", | |
"nativeSrc": "1929:28:1", | |
"nodeType": "YulIdentifier", | |
"src": "1929:28:1" | |
}, | |
"nativeSrc": "1929:61:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1929:61:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "1919:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1919:6:1" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "2010:118:1", | |
"nodeType": "YulBlock", | |
"src": "2010:118:1", | |
"statements": [ | |
{ | |
"nativeSrc": "2025:16:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "2025:16:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "2039:2:1", | |
"nodeType": "YulLiteral", | |
"src": "2039:2:1", | |
"type": "", | |
"value": "32" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "2029:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2029:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "2055:63:1", | |
"nodeType": "YulAssignment", | |
"src": "2055:63:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "2090:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "2090:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "2101:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2101:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2086:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2086:3:1" | |
}, | |
"nativeSrc": "2086:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2086:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "2110:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "2110:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nativeSrc": "2065:20:1", | |
"nodeType": "YulIdentifier", | |
"src": "2065:20:1" | |
}, | |
"nativeSrc": "2065:53:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2065:53:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nativeSrc": "2055:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2055:6:1" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_address_payablet_uint256", | |
"nativeSrc": "1645:490:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "1698:9:1", | |
"nodeType": "YulTypedName", | |
"src": "1698:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "1709:7:1", | |
"nodeType": "YulTypedName", | |
"src": "1709:7:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "1721:6:1", | |
"nodeType": "YulTypedName", | |
"src": "1721:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nativeSrc": "1729:6:1", | |
"nodeType": "YulTypedName", | |
"src": "1729:6:1", | |
"type": "" | |
} | |
], | |
"src": "1645:490:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2237:73:1", | |
"nodeType": "YulBlock", | |
"src": "2237:73:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "2254:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2254:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "2259:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2259:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "2247:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2247:6:1" | |
}, | |
"nativeSrc": "2247:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2247:19:1" | |
}, | |
"nativeSrc": "2247:19:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2247:19:1" | |
}, | |
{ | |
"nativeSrc": "2275:29:1", | |
"nodeType": "YulAssignment", | |
"src": "2275:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "2294:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2294:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2299:4:1", | |
"nodeType": "YulLiteral", | |
"src": "2299:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2290:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2290:3:1" | |
}, | |
"nativeSrc": "2290:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2290:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "2275:11:1", | |
"nodeType": "YulIdentifier", | |
"src": "2275:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nativeSrc": "2141:169:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "2209:3:1", | |
"nodeType": "YulTypedName", | |
"src": "2209:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "2214:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2214:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "2225:11:1", | |
"nodeType": "YulTypedName", | |
"src": "2225:11:1", | |
"type": "" | |
} | |
], | |
"src": "2141:169:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2422:73:1", | |
"nodeType": "YulBlock", | |
"src": "2422:73:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2444:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2444:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2452:1:1", | |
"nodeType": "YulLiteral", | |
"src": "2452:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2440:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2440:3:1" | |
}, | |
"nativeSrc": "2440:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2440:14:1" | |
}, | |
{ | |
"hexValue": "4f6e6c79206f776e65722063616e20646f206120776974686472617721", | |
"kind": "string", | |
"nativeSrc": "2456:31:1", | |
"nodeType": "YulLiteral", | |
"src": "2456:31:1", | |
"type": "", | |
"value": "Only owner can do a withdraw!" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "2433:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2433:6:1" | |
}, | |
"nativeSrc": "2433:55:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2433:55:1" | |
}, | |
"nativeSrc": "2433:55:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2433:55:1" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_c822d50367fc4960da7debfac7c16a2801ab718f269b4db082c5540cb4312eb7", | |
"nativeSrc": "2316:179:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2414:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2414:6:1", | |
"type": "" | |
} | |
], | |
"src": "2316:179:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2647:220:1", | |
"nodeType": "YulBlock", | |
"src": "2647:220:1", | |
"statements": [ | |
{ | |
"nativeSrc": "2657:74:1", | |
"nodeType": "YulAssignment", | |
"src": "2657:74:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "2723:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2723:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2728:2:1", | |
"nodeType": "YulLiteral", | |
"src": "2728:2:1", | |
"type": "", | |
"value": "29" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nativeSrc": "2664:58:1", | |
"nodeType": "YulIdentifier", | |
"src": "2664:58:1" | |
}, | |
"nativeSrc": "2664:67:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2664:67:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "2657:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2657:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "2829:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2829:3:1" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_c822d50367fc4960da7debfac7c16a2801ab718f269b4db082c5540cb4312eb7", | |
"nativeSrc": "2740:88:1", | |
"nodeType": "YulIdentifier", | |
"src": "2740:88:1" | |
}, | |
"nativeSrc": "2740:93:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2740:93:1" | |
}, | |
"nativeSrc": "2740:93:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2740:93:1" | |
}, | |
{ | |
"nativeSrc": "2842:19:1", | |
"nodeType": "YulAssignment", | |
"src": "2842:19:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "2853:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2853:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2858:2:1", | |
"nodeType": "YulLiteral", | |
"src": "2858:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2849:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2849:3:1" | |
}, | |
"nativeSrc": "2849:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2849:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nativeSrc": "2842:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2842:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_c822d50367fc4960da7debfac7c16a2801ab718f269b4db082c5540cb4312eb7_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "2501:366:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "2635:3:1", | |
"nodeType": "YulTypedName", | |
"src": "2635:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nativeSrc": "2643:3:1", | |
"nodeType": "YulTypedName", | |
"src": "2643:3:1", | |
"type": "" | |
} | |
], | |
"src": "2501:366:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3044:248:1", | |
"nodeType": "YulBlock", | |
"src": "3044:248:1", | |
"statements": [ | |
{ | |
"nativeSrc": "3054:26:1", | |
"nodeType": "YulAssignment", | |
"src": "3054:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "3066:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "3066:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "3077:2:1", | |
"nodeType": "YulLiteral", | |
"src": "3077:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "3062:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3062:3:1" | |
}, | |
"nativeSrc": "3062:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3062:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "3054:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "3054:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "3101:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "3101:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "3112:1:1", | |
"nodeType": "YulLiteral", | |
"src": "3112:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "3097:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3097:3:1" | |
}, | |
"nativeSrc": "3097:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3097:17:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "3120:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "3120:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "3126:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "3126:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "3116:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3116:3:1" | |
}, | |
"nativeSrc": "3116:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3116:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "3090:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3090:6:1" | |
}, | |
"nativeSrc": "3090:47:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3090:47:1" | |
}, | |
"nativeSrc": "3090:47:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "3090:47:1" | |
}, | |
{ | |
"nativeSrc": "3146:139:1", | |
"nodeType": "YulAssignment", | |
"src": "3146:139:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "3280:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "3280:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_c822d50367fc4960da7debfac7c16a2801ab718f269b4db082c5540cb4312eb7_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "3154:124:1", | |
"nodeType": "YulIdentifier", | |
"src": "3154:124:1" | |
}, | |
"nativeSrc": "3154:131:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3154:131:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "3146:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "3146:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_c822d50367fc4960da7debfac7c16a2801ab718f269b4db082c5540cb4312eb7__to_t_string_memory_ptr__fromStack_reversed", | |
"nativeSrc": "2873:419:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "3024:9:1", | |
"nodeType": "YulTypedName", | |
"src": "3024:9:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "3039:4:1", | |
"nodeType": "YulTypedName", | |
"src": "3039:4:1", | |
"type": "" | |
} | |
], | |
"src": "2873:419:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3411:34:1", | |
"nodeType": "YulBlock", | |
"src": "3411:34:1", | |
"statements": [ | |
{ | |
"nativeSrc": "3421:18:1", | |
"nodeType": "YulAssignment", | |
"src": "3421:18:1", | |
"value": { | |
"name": "pos", | |
"nativeSrc": "3436:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3436:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "3421:11:1", | |
"nodeType": "YulIdentifier", | |
"src": "3421:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack", | |
"nativeSrc": "3298:147:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "3383:3:1", | |
"nodeType": "YulTypedName", | |
"src": "3383:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "3388:6:1", | |
"nodeType": "YulTypedName", | |
"src": "3388:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "3399:11:1", | |
"nodeType": "YulTypedName", | |
"src": "3399:11:1", | |
"type": "" | |
} | |
], | |
"src": "3298:147:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3557:8:1", | |
"nodeType": "YulBlock", | |
"src": "3557:8:1", | |
"statements": [] | |
}, | |
"name": "store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
"nativeSrc": "3451:114:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "3549:6:1", | |
"nodeType": "YulTypedName", | |
"src": "3549:6:1", | |
"type": "" | |
} | |
], | |
"src": "3451:114:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3734:235:1", | |
"nodeType": "YulBlock", | |
"src": "3734:235:1", | |
"statements": [ | |
{ | |
"nativeSrc": "3744:90:1", | |
"nodeType": "YulAssignment", | |
"src": "3744:90:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "3827:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3827:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "3832:1:1", | |
"nodeType": "YulLiteral", | |
"src": "3832:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack", | |
"nativeSrc": "3751:75:1", | |
"nodeType": "YulIdentifier", | |
"src": "3751:75:1" | |
}, | |
"nativeSrc": "3751:83:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3751:83:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "3744:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3744:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "3932:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3932:3:1" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470", | |
"nativeSrc": "3843:88:1", | |
"nodeType": "YulIdentifier", | |
"src": "3843:88:1" | |
}, | |
"nativeSrc": "3843:93:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3843:93:1" | |
}, | |
"nativeSrc": "3843:93:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "3843:93:1" | |
}, | |
{ | |
"nativeSrc": "3945:18:1", | |
"nodeType": "YulAssignment", | |
"src": "3945:18:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "3956:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3956:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "3961:1:1", | |
"nodeType": "YulLiteral", | |
"src": "3961:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "3952:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3952:3:1" | |
}, | |
"nativeSrc": "3952:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3952:11:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nativeSrc": "3945:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3945:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack", | |
"nativeSrc": "3571:398:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "3722:3:1", | |
"nodeType": "YulTypedName", | |
"src": "3722:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nativeSrc": "3730:3:1", | |
"nodeType": "YulTypedName", | |
"src": "3730:3:1", | |
"type": "" | |
} | |
], | |
"src": "3571:398:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4163:191:1", | |
"nodeType": "YulBlock", | |
"src": "4163:191:1", | |
"statements": [ | |
{ | |
"nativeSrc": "4174:154:1", | |
"nodeType": "YulAssignment", | |
"src": "4174:154:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4324:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4324:3:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack", | |
"nativeSrc": "4181:141:1", | |
"nodeType": "YulIdentifier", | |
"src": "4181:141:1" | |
}, | |
"nativeSrc": "4181:147:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4181:147:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4174:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4174:3:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "4338:10:1", | |
"nodeType": "YulAssignment", | |
"src": "4338:10:1", | |
"value": { | |
"name": "pos", | |
"nativeSrc": "4345:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4345:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nativeSrc": "4338:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4338:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed", | |
"nativeSrc": "3975:379:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4150:3:1", | |
"nodeType": "YulTypedName", | |
"src": "4150:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nativeSrc": "4159:3:1", | |
"nodeType": "YulTypedName", | |
"src": "4159:3:1", | |
"type": "" | |
} | |
], | |
"src": "3975:379:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4466:64:1", | |
"nodeType": "YulBlock", | |
"src": "4466:64:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "4488:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4488:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4496:1:1", | |
"nodeType": "YulLiteral", | |
"src": "4496:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "4484:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4484:3:1" | |
}, | |
"nativeSrc": "4484:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4484:14:1" | |
}, | |
{ | |
"hexValue": "4661696c656420746f2073656e64204574686572", | |
"kind": "string", | |
"nativeSrc": "4500:22:1", | |
"nodeType": "YulLiteral", | |
"src": "4500:22:1", | |
"type": "", | |
"value": "Failed to send Ether" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "4477:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4477:6:1" | |
}, | |
"nativeSrc": "4477:46:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4477:46:1" | |
}, | |
"nativeSrc": "4477:46:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "4477:46:1" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_445140255c9d889994129d349e64078d6f76b4b37ec896948f7e858f9b8a0dcb", | |
"nativeSrc": "4360:170:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "4458:6:1", | |
"nodeType": "YulTypedName", | |
"src": "4458:6:1", | |
"type": "" | |
} | |
], | |
"src": "4360:170:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4682:220:1", | |
"nodeType": "YulBlock", | |
"src": "4682:220:1", | |
"statements": [ | |
{ | |
"nativeSrc": "4692:74:1", | |
"nodeType": "YulAssignment", | |
"src": "4692:74:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4758:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4758:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4763:2:1", | |
"nodeType": "YulLiteral", | |
"src": "4763:2:1", | |
"type": "", | |
"value": "20" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nativeSrc": "4699:58:1", | |
"nodeType": "YulIdentifier", | |
"src": "4699:58:1" | |
}, | |
"nativeSrc": "4699:67:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4699:67:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4692:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4692:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4864:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4864:3:1" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_445140255c9d889994129d349e64078d6f76b4b37ec896948f7e858f9b8a0dcb", | |
"nativeSrc": "4775:88:1", | |
"nodeType": "YulIdentifier", | |
"src": "4775:88:1" | |
}, | |
"nativeSrc": "4775:93:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4775:93:1" | |
}, | |
"nativeSrc": "4775:93:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "4775:93:1" | |
}, | |
{ | |
"nativeSrc": "4877:19:1", | |
"nodeType": "YulAssignment", | |
"src": "4877:19:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4888:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4888:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4893:2:1", | |
"nodeType": "YulLiteral", | |
"src": "4893:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "4884:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4884:3:1" | |
}, | |
"nativeSrc": "4884:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4884:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nativeSrc": "4877:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4877:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_445140255c9d889994129d349e64078d6f76b4b37ec896948f7e858f9b8a0dcb_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "4536:366:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4670:3:1", | |
"nodeType": "YulTypedName", | |
"src": "4670:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nativeSrc": "4678:3:1", | |
"nodeType": "YulTypedName", | |
"src": "4678:3:1", | |
"type": "" | |
} | |
], | |
"src": "4536:366:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5079:248:1", | |
"nodeType": "YulBlock", | |
"src": "5079:248:1", | |
"statements": [ | |
{ | |
"nativeSrc": "5089:26:1", | |
"nodeType": "YulAssignment", | |
"src": "5089:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "5101:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "5101:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "5112:2:1", | |
"nodeType": "YulLiteral", | |
"src": "5112:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "5097:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5097:3:1" | |
}, | |
"nativeSrc": "5097:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5097:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "5089:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "5089:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "5136:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "5136:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "5147:1:1", | |
"nodeType": "YulLiteral", | |
"src": "5147:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "5132:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5132:3:1" | |
}, | |
"nativeSrc": "5132:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5132:17:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "5155:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "5155:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "5161:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "5161:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "5151:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5151:3:1" | |
}, | |
"nativeSrc": "5151:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5151:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "5125:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "5125:6:1" | |
}, | |
"nativeSrc": "5125:47:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5125:47:1" | |
}, | |
"nativeSrc": "5125:47:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "5125:47:1" | |
}, | |
{ | |
"nativeSrc": "5181:139:1", | |
"nodeType": "YulAssignment", | |
"src": "5181:139:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "5315:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "5315:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_445140255c9d889994129d349e64078d6f76b4b37ec896948f7e858f9b8a0dcb_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "5189:124:1", | |
"nodeType": "YulIdentifier", | |
"src": "5189:124:1" | |
}, | |
"nativeSrc": "5189:131:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5189:131:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "5181:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "5181:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_445140255c9d889994129d349e64078d6f76b4b37ec896948f7e858f9b8a0dcb__to_t_string_memory_ptr__fromStack_reversed", | |
"nativeSrc": "4908:419:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "5059:9:1", | |
"nodeType": "YulTypedName", | |
"src": "5059:9:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "5074:4:1", | |
"nodeType": "YulTypedName", | |
"src": "5074:4:1", | |
"type": "" | |
} | |
], | |
"src": "4908:419:1" | |
} | |
] | |
}, | |
"contents": "{\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address_payable(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_payable_to_t_address_payable_fromStack(value, pos) {\n mstore(pos, cleanup_t_address_payable(value))\n }\n\n function abi_encode_tuple_t_address_payable__to_t_address_payable__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_payable_to_t_address_payable_fromStack(value0, add(headStart, 0))\n\n }\n\n function 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_address_payable(value) {\n if iszero(eq(value, cleanup_t_address_payable(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address_payable(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address_payable(value)\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_address_payablet_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_address_payable(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 array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_c822d50367fc4960da7debfac7c16a2801ab718f269b4db082c5540cb4312eb7(memPtr) {\n\n mstore(add(memPtr, 0), \"Only owner can do a withdraw!\")\n\n }\n\n function abi_encode_t_stringliteral_c822d50367fc4960da7debfac7c16a2801ab718f269b4db082c5540cb4312eb7_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 29)\n store_literal_in_memory_c822d50367fc4960da7debfac7c16a2801ab718f269b4db082c5540cb4312eb7(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_c822d50367fc4960da7debfac7c16a2801ab718f269b4db082c5540cb4312eb7__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c822d50367fc4960da7debfac7c16a2801ab718f269b4db082c5540cb4312eb7_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470(memPtr) {\n\n }\n\n function abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack(pos, 0)\n store_literal_in_memory_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470(pos)\n end := add(pos, 0)\n }\n\n function abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos ) -> end {\n\n pos := abi_encode_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack( pos)\n\n end := pos\n }\n\n function store_literal_in_memory_445140255c9d889994129d349e64078d6f76b4b37ec896948f7e858f9b8a0dcb(memPtr) {\n\n mstore(add(memPtr, 0), \"Failed to send Ether\")\n\n }\n\n function abi_encode_t_stringliteral_445140255c9d889994129d349e64078d6f76b4b37ec896948f7e858f9b8a0dcb_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_445140255c9d889994129d349e64078d6f76b4b37ec896948f7e858f9b8a0dcb(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_445140255c9d889994129d349e64078d6f76b4b37ec896948f7e858f9b8a0dcb__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_445140255c9d889994129d349e64078d6f76b4b37ec896948f7e858f9b8a0dcb_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n", | |
"id": 1, | |
"language": "Yul", | |
"name": "#utility.yul" | |
} | |
], | |
"immutableReferences": {}, | |
"linkReferences": {}, | |
"object": "608060405260043610610049575f3560e01c8063273884bd1461004d5780633ccfd60b146100635780638da5cb5b14610079578063a9059cbb146100a3578063d0e30db0146100cb575b5f80fd5b348015610058575f80fd5b506100616100d5565b005b34801561006e575f80fd5b506100776100d7565b005b348015610084575f80fd5b5061008d610234565b60405161009a9190610345565b60405180910390f35b3480156100ae575f80fd5b506100c960048036038101906100c491906103bf565b610257565b005b6100d3610304565b005b565b5f4790503373ffffffffffffffffffffffffffffffffffffffff165f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161015f90610457565b60405180910390fd5b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516101ad906104a2565b5f6040518083038185875af1925050503d805f81146101e7576040519150601f19603f3d011682016040523d82523d5f602084013e6101ec565b606091505b5050905080610230576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161022790610500565b60405180910390fd5b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8273ffffffffffffffffffffffffffffffffffffffff168260405161027c906104a2565b5f6040518083038185875af1925050503d805f81146102b6576040519150601f19603f3d011682016040523d82523d5f602084013e6102bb565b606091505b50509050806102ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102f690610500565b60405180910390fd5b505050565b565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61032f82610306565b9050919050565b61033f81610325565b82525050565b5f6020820190506103585f830184610336565b92915050565b5f80fd5b61036b81610325565b8114610375575f80fd5b50565b5f8135905061038681610362565b92915050565b5f819050919050565b61039e8161038c565b81146103a8575f80fd5b50565b5f813590506103b981610395565b92915050565b5f80604083850312156103d5576103d461035e565b5b5f6103e285828601610378565b92505060206103f3858286016103ab565b9150509250929050565b5f82825260208201905092915050565b7f4f6e6c79206f776e65722063616e20646f2061207769746864726177210000005f82015250565b5f610441601d836103fd565b915061044c8261040d565b602082019050919050565b5f6020820190508181035f83015261046e81610435565b9050919050565b5f81905092915050565b50565b5f61048d5f83610475565b91506104988261047f565b5f82019050919050565b5f6104ac82610482565b9150819050919050565b7f4661696c656420746f2073656e642045746865720000000000000000000000005f82015250565b5f6104ea6014836103fd565b91506104f5826104b6565b602082019050919050565b5f6020820190508181035f830152610517816104de565b905091905056fea264697066735822122082529f2972c799f618704656065a2c9ac60e00bda16b50ba71254d3b383fc96a64736f6c63430008160033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x49 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x273884BD EQ PUSH2 0x4D JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x63 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x79 JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0xA3 JUMPI DUP1 PUSH4 0xD0E30DB0 EQ PUSH2 0xCB JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x58 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x61 PUSH2 0xD5 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x77 PUSH2 0xD7 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x84 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x8D PUSH2 0x234 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9A SWAP2 SWAP1 PUSH2 0x345 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAE JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xC9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xC4 SWAP2 SWAP1 PUSH2 0x3BF JUMP JUMPDEST PUSH2 0x257 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xD3 PUSH2 0x304 JUMP JUMPDEST STOP JUMPDEST JUMP JUMPDEST PUSH0 SELFBALANCE SWAP1 POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x168 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15F SWAP1 PUSH2 0x457 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x40 MLOAD PUSH2 0x1AD SWAP1 PUSH2 0x4A2 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x1E7 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1EC JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x230 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x227 SWAP1 PUSH2 0x500 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH0 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x40 MLOAD PUSH2 0x27C SWAP1 PUSH2 0x4A2 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0x2B6 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x2BB JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x2FF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F6 SWAP1 PUSH2 0x500 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x32F DUP3 PUSH2 0x306 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x33F DUP2 PUSH2 0x325 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x358 PUSH0 DUP4 ADD DUP5 PUSH2 0x336 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x36B DUP2 PUSH2 0x325 JUMP JUMPDEST DUP2 EQ PUSH2 0x375 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x386 DUP2 PUSH2 0x362 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x39E DUP2 PUSH2 0x38C JUMP JUMPDEST DUP2 EQ PUSH2 0x3A8 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B9 DUP2 PUSH2 0x395 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x3D5 JUMPI PUSH2 0x3D4 PUSH2 0x35E JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x3E2 DUP6 DUP3 DUP7 ADD PUSH2 0x378 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x3F3 DUP6 DUP3 DUP7 ADD PUSH2 0x3AB JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F6E6C79206F776E65722063616E20646F206120776974686472617721000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x441 PUSH1 0x1D DUP4 PUSH2 0x3FD JUMP JUMPDEST SWAP2 POP PUSH2 0x44C DUP3 PUSH2 0x40D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x46E DUP2 PUSH2 0x435 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0x48D PUSH0 DUP4 PUSH2 0x475 JUMP JUMPDEST SWAP2 POP PUSH2 0x498 DUP3 PUSH2 0x47F JUMP JUMPDEST PUSH0 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x4AC DUP3 PUSH2 0x482 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4661696C656420746F2073656E64204574686572000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x4EA PUSH1 0x14 DUP4 PUSH2 0x3FD JUMP JUMPDEST SWAP2 POP PUSH2 0x4F5 DUP3 PUSH2 0x4B6 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x517 DUP2 PUSH2 0x4DE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP3 MSTORE SWAP16 0x29 PUSH19 0xC799F618704656065A2C9AC60E00BDA16B50BA PUSH18 0x254D3B383FC96A64736F6C63430008160033 ", | |
"sourceMap": "57:1325:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;627:31;;;;;;;;;;;;;:::i;:::-;;722:354;;;;;;;;;;;;;:::i;:::-;;139:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1157:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;460:36;;;:::i;:::-;;627:31;:::o;722:354::-;818:11;832:21;818:35;;881:10;872:19;;:5;;;;;;;;;;:19;;;864:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;972:12;990:5;;;;;;;;;;;:10;;1008:6;990:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;971:48;;;1037:7;1029:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;749:327;;722:354::o;139:28::-;;;;;;;;;;;;:::o;1157:223::-;1277:12;1295:3;:8;;1311:7;1295:28;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1276:47;;;1341:7;1333:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;1217:163;1157:223;;:::o;460:36::-;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:104::-;184:7;213:24;231:5;213:24;:::i;:::-;202:35;;139:104;;;:::o;249:142::-;352:32;378:5;352:32;:::i;:::-;347:3;340:45;249:142;;:::o;397:254::-;506:4;544:2;533:9;529:18;521:26;;557:87;641:1;630:9;626:17;617:6;557:87;:::i;:::-;397:254;;;;:::o;738:117::-;847:1;844;837:12;984:138;1065:32;1091:5;1065:32;:::i;:::-;1058:5;1055:43;1045:71;;1112:1;1109;1102:12;1045:71;984:138;:::o;1128:155::-;1182:5;1220:6;1207:20;1198:29;;1236:41;1271:5;1236:41;:::i;:::-;1128:155;;;;:::o;1289:77::-;1326:7;1355:5;1344:16;;1289:77;;;:::o;1372:122::-;1445:24;1463:5;1445:24;:::i;:::-;1438:5;1435:35;1425:63;;1484:1;1481;1474:12;1425:63;1372:122;:::o;1500:139::-;1546:5;1584:6;1571:20;1562:29;;1600:33;1627:5;1600:33;:::i;:::-;1500:139;;;;:::o;1645:490::-;1721:6;1729;1778:2;1766:9;1757:7;1753:23;1749:32;1746:119;;;1784:79;;:::i;:::-;1746:119;1904:1;1929:61;1982:7;1973:6;1962:9;1958:22;1929:61;:::i;:::-;1919:71;;1875:125;2039:2;2065:53;2110:7;2101:6;2090:9;2086:22;2065:53;:::i;:::-;2055:63;;2010:118;1645:490;;;;;:::o;2141:169::-;2225:11;2259:6;2254:3;2247:19;2299:4;2294:3;2290:14;2275:29;;2141:169;;;;:::o;2316:179::-;2456:31;2452:1;2444:6;2440:14;2433:55;2316:179;:::o;2501:366::-;2643:3;2664:67;2728:2;2723:3;2664:67;:::i;:::-;2657:74;;2740:93;2829:3;2740:93;:::i;:::-;2858:2;2853:3;2849:12;2842:19;;2501:366;;;:::o;2873:419::-;3039:4;3077:2;3066:9;3062:18;3054:26;;3126:9;3120:4;3116:20;3112:1;3101:9;3097:17;3090:47;3154:131;3280:4;3154:131;:::i;:::-;3146:139;;2873:419;;;:::o;3298:147::-;3399:11;3436:3;3421:18;;3298:147;;;;:::o;3451:114::-;;:::o;3571:398::-;3730:3;3751:83;3832:1;3827:3;3751:83;:::i;:::-;3744:90;;3843:93;3932:3;3843:93;:::i;:::-;3961:1;3956:3;3952:11;3945:18;;3571:398;;;:::o;3975:379::-;4159:3;4181:147;4324:3;4181:147;:::i;:::-;4174:154;;4345:3;4338:10;;3975:379;;;:::o;4360:170::-;4500:22;4496:1;4488:6;4484:14;4477:46;4360:170;:::o;4536:366::-;4678:3;4699:67;4763:2;4758:3;4699:67;:::i;:::-;4692:74;;4775:93;4864:3;4775:93;:::i;:::-;4893:2;4888:3;4884:12;4877:19;;4536:366;;;:::o;4908:419::-;5074:4;5112:2;5101:9;5097:18;5089:26;;5161:9;5155:4;5151:20;5147:1;5136:9;5132:17;5125:47;5189:131;5315:4;5189:131;:::i;:::-;5181:139;;4908:419;;;:::o" | |
}, | |
"gasEstimates": { | |
"creation": { | |
"codeDepositCost": "272800", | |
"executionCost": "24551", | |
"totalCost": "297351" | |
}, | |
"external": { | |
"deposit()": "185", | |
"notPayable()": "121", | |
"owner()": "2527", | |
"transfer(address,uint256)": "infinite", | |
"withdraw()": "infinite" | |
} | |
}, | |
"methodIdentifiers": { | |
"deposit()": "d0e30db0", | |
"notPayable()": "273884bd", | |
"owner()": "8da5cb5b", | |
"transfer(address,uint256)": "a9059cbb", | |
"withdraw()": "3ccfd60b" | |
} | |
}, | |
"abi": [ | |
{ | |
"inputs": [], | |
"stateMutability": "payable", | |
"type": "constructor" | |
}, | |
{ | |
"inputs": [], | |
"name": "deposit", | |
"outputs": [], | |
"stateMutability": "payable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "notPayable", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "owner", | |
"outputs": [ | |
{ | |
"internalType": "address payable", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address payable", | |
"name": "_to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "_amount", | |
"type": "uint256" | |
} | |
], | |
"name": "transfer", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "withdraw", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"compiler": { | |
"version": "0.8.22+commit.4fc1097e" | |
}, | |
"language": "Solidity", | |
"output": { | |
"abi": [ | |
{ | |
"inputs": [], | |
"stateMutability": "payable", | |
"type": "constructor" | |
}, | |
{ | |
"inputs": [], | |
"name": "deposit", | |
"outputs": [], | |
"stateMutability": "payable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "notPayable", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "owner", | |
"outputs": [ | |
{ | |
"internalType": "address payable", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address payable", | |
"name": "_to", | |
"type": "address" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "_amount", | |
"type": "uint256" | |
} | |
], | |
"name": "transfer", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "withdraw", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
} | |
], | |
"devdoc": { | |
"kind": "dev", | |
"methods": {}, | |
"version": 1 | |
}, | |
"userdoc": { | |
"kind": "user", | |
"methods": {}, | |
"version": 1 | |
} | |
}, | |
"settings": { | |
"compilationTarget": { | |
"contracts/Payable.sol": "Payable" | |
}, | |
"evmVersion": "shanghai", | |
"libraries": {}, | |
"metadata": { | |
"bytecodeHash": "ipfs" | |
}, | |
"optimizer": { | |
"enabled": false, | |
"runs": 200 | |
}, | |
"remappings": [] | |
}, | |
"sources": { | |
"contracts/Payable.sol": { | |
"keccak256": "0x73ee9470b6df1a467776c5cdae459c45ecd928102c3e592c728e8d181557d80d", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://8eacd28c8e30d8f1aa49d3785f241ccd65a993ad444c41d66d16f7c38f87023b", | |
"dweb:/ipfs/QmUYXTssiVaPAtECRVdqfh91UJARjxLAjkpr5og5iCUPBx" | |
] | |
} | |
}, | |
"version": 1 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"deploy": { | |
"VM:-": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"main:1": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"ropsten:3": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"rinkeby:4": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"kovan:42": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"goerli:5": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"Custom": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
} | |
}, | |
"data": { | |
"bytecode": { | |
"functionDebugData": {}, | |
"generatedSources": [], | |
"linkReferences": {}, | |
"object": "608060405234801561000f575f80fd5b506106498061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610034575f3560e01c80635a9b0b8914610038578063937f6e7714610056575b5f80fd5b610040610072565b60405161004d919061019d565b60405180910390f35b610070600480360381019061006b91906102fa565b610101565b005b60605f80546100809061036e565b80601f01602080910402602001604051908101604052809291908181526020018280546100ac9061036e565b80156100f75780601f106100ce576101008083540402835291602001916100f7565b820191905f5260205f20905b8154815290600101906020018083116100da57829003601f168201915b5050505050905090565b805f908161010f9190610544565b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561014a57808201518184015260208101905061012f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61016f82610113565b610179818561011d565b935061018981856020860161012d565b61019281610155565b840191505092915050565b5f6020820190508181035f8301526101b58184610165565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61020c82610155565b810181811067ffffffffffffffff8211171561022b5761022a6101d6565b5b80604052505050565b5f61023d6101bd565b90506102498282610203565b919050565b5f67ffffffffffffffff821115610268576102676101d6565b5b61027182610155565b9050602081019050919050565b828183375f83830152505050565b5f61029e6102998461024e565b610234565b9050828152602081018484840111156102ba576102b96101d2565b5b6102c584828561027e565b509392505050565b5f82601f8301126102e1576102e06101ce565b5b81356102f184826020860161028c565b91505092915050565b5f6020828403121561030f5761030e6101c6565b5b5f82013567ffffffffffffffff81111561032c5761032b6101ca565b5b610338848285016102cd565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061038557607f821691505b60208210810361039857610397610341565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103fa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826103bf565b61040486836103bf565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61044861044361043e8461041c565b610425565b61041c565b9050919050565b5f819050919050565b6104618361042e565b61047561046d8261044f565b8484546103cb565b825550505050565b5f90565b61048961047d565b610494818484610458565b505050565b5b818110156104b7576104ac5f82610481565b60018101905061049a565b5050565b601f8211156104fc576104cd8161039e565b6104d6846103b0565b810160208510156104e5578190505b6104f96104f1856103b0565b830182610499565b50505b505050565b5f82821c905092915050565b5f61051c5f1984600802610501565b1980831691505092915050565b5f610534838361050d565b9150826002028217905092915050565b61054d82610113565b67ffffffffffffffff811115610566576105656101d6565b5b610570825461036e565b61057b8282856104bb565b5f60209050601f8311600181146105ac575f841561059a578287015190505b6105a48582610529565b86555061060b565b601f1984166105ba8661039e565b5f5b828110156105e1578489015182556001820191506020850194506020810190506105bc565b868310156105fe57848901516105fa601f89168261050d565b8355505b6001600288020188555050505b50505050505056fea264697066735822122000e5e980242fc9c275b49907c45e2f751f7ba177b39c70818d244febdec3953864736f6c63430008160033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x649 DUP1 PUSH2 0x1D PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x34 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x5A9B0B89 EQ PUSH2 0x38 JUMPI DUP1 PUSH4 0x937F6E77 EQ PUSH2 0x56 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x72 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D SWAP2 SWAP1 PUSH2 0x19D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x70 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6B SWAP2 SWAP1 PUSH2 0x2FA JUMP JUMPDEST PUSH2 0x101 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH0 DUP1 SLOAD PUSH2 0x80 SWAP1 PUSH2 0x36E 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 0xAC SWAP1 PUSH2 0x36E JUMP JUMPDEST DUP1 ISZERO PUSH2 0xF7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xCE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xF7 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xDA JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH0 SWAP1 DUP2 PUSH2 0x10F SWAP2 SWAP1 PUSH2 0x544 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x14A JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x12F JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x16F DUP3 PUSH2 0x113 JUMP JUMPDEST PUSH2 0x179 DUP2 DUP6 PUSH2 0x11D JUMP JUMPDEST SWAP4 POP PUSH2 0x189 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x12D JUMP JUMPDEST PUSH2 0x192 DUP2 PUSH2 0x155 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1B5 DUP2 DUP5 PUSH2 0x165 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x20C DUP3 PUSH2 0x155 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x22B JUMPI PUSH2 0x22A PUSH2 0x1D6 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x23D PUSH2 0x1BD JUMP JUMPDEST SWAP1 POP PUSH2 0x249 DUP3 DUP3 PUSH2 0x203 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x268 JUMPI PUSH2 0x267 PUSH2 0x1D6 JUMP JUMPDEST JUMPDEST PUSH2 0x271 DUP3 PUSH2 0x155 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x29E PUSH2 0x299 DUP5 PUSH2 0x24E JUMP JUMPDEST PUSH2 0x234 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2BA JUMPI PUSH2 0x2B9 PUSH2 0x1D2 JUMP JUMPDEST JUMPDEST PUSH2 0x2C5 DUP5 DUP3 DUP6 PUSH2 0x27E JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2E1 JUMPI PUSH2 0x2E0 PUSH2 0x1CE JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2F1 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x28C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x30F JUMPI PUSH2 0x30E PUSH2 0x1C6 JUMP JUMPDEST JUMPDEST PUSH0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x32C JUMPI PUSH2 0x32B PUSH2 0x1CA JUMP JUMPDEST JUMPDEST PUSH2 0x338 DUP5 DUP3 DUP6 ADD PUSH2 0x2CD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x385 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x398 JUMPI PUSH2 0x397 PUSH2 0x341 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x3FA PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x3BF JUMP JUMPDEST PUSH2 0x404 DUP7 DUP4 PUSH2 0x3BF JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x448 PUSH2 0x443 PUSH2 0x43E DUP5 PUSH2 0x41C JUMP JUMPDEST PUSH2 0x425 JUMP JUMPDEST PUSH2 0x41C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x461 DUP4 PUSH2 0x42E JUMP JUMPDEST PUSH2 0x475 PUSH2 0x46D DUP3 PUSH2 0x44F JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x3CB JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x489 PUSH2 0x47D JUMP JUMPDEST PUSH2 0x494 DUP2 DUP5 DUP5 PUSH2 0x458 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4B7 JUMPI PUSH2 0x4AC PUSH0 DUP3 PUSH2 0x481 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x49A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x4FC JUMPI PUSH2 0x4CD DUP2 PUSH2 0x39E JUMP JUMPDEST PUSH2 0x4D6 DUP5 PUSH2 0x3B0 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x4E5 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x4F9 PUSH2 0x4F1 DUP6 PUSH2 0x3B0 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x499 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x51C PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x501 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x534 DUP4 DUP4 PUSH2 0x50D JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x54D DUP3 PUSH2 0x113 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x566 JUMPI PUSH2 0x565 PUSH2 0x1D6 JUMP JUMPDEST JUMPDEST PUSH2 0x570 DUP3 SLOAD PUSH2 0x36E JUMP JUMPDEST PUSH2 0x57B DUP3 DUP3 DUP6 PUSH2 0x4BB JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x5AC JUMPI PUSH0 DUP5 ISZERO PUSH2 0x59A JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x5A4 DUP6 DUP3 PUSH2 0x529 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x60B JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x5BA DUP7 PUSH2 0x39E JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x5E1 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x5BC JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x5FE JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x5FA PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x50D JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 STOP 0xE5 0xE9 DUP1 0x24 0x2F 0xC9 0xC2 PUSH22 0xB49907C45E2F751F7BA177B39C70818D244FEBDEC395 CODESIZE PUSH5 0x736F6C6343 STOP ADDMOD AND STOP CALLER ", | |
"sourceMap": "58:239:0:-:0;;;;;;;;;;;;;;;;;;;" | |
}, | |
"deployedBytecode": { | |
"functionDebugData": { | |
"@getInfo_21": { | |
"entryPoint": 114, | |
"id": 21, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"@setInfo_13": { | |
"entryPoint": 257, | |
"id": 13, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"abi_decode_available_length_t_string_memory_ptr": { | |
"entryPoint": 652, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_string_memory_ptr": { | |
"entryPoint": 717, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_string_memory_ptr": { | |
"entryPoint": 762, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 357, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 413, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"allocate_memory": { | |
"entryPoint": 564, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"allocate_unbounded": { | |
"entryPoint": 445, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"array_allocation_size_t_string_memory_ptr": { | |
"entryPoint": 590, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_dataslot_t_string_storage": { | |
"entryPoint": 926, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_length_t_string_memory_ptr": { | |
"entryPoint": 275, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
"entryPoint": 285, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"clean_up_bytearray_end_slots_t_string_storage": { | |
"entryPoint": 1211, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"cleanup_t_uint256": { | |
"entryPoint": 1052, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"clear_storage_range_t_bytes1": { | |
"entryPoint": 1177, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"convert_t_uint256_to_t_uint256": { | |
"entryPoint": 1070, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": { | |
"entryPoint": 1348, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"copy_calldata_to_memory_with_cleanup": { | |
"entryPoint": 638, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"copy_memory_to_memory_with_cleanup": { | |
"entryPoint": 301, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"divide_by_32_ceil": { | |
"entryPoint": 944, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"extract_byte_array_length": { | |
"entryPoint": 878, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"extract_used_part_and_set_length_of_short_byte_array": { | |
"entryPoint": 1321, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"finalize_allocation": { | |
"entryPoint": 515, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"identity": { | |
"entryPoint": 1061, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"mask_bytes_dynamic": { | |
"entryPoint": 1293, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"panic_error_0x22": { | |
"entryPoint": 833, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x41": { | |
"entryPoint": 470, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"prepare_store_t_uint256": { | |
"entryPoint": 1103, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": { | |
"entryPoint": 462, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": { | |
"entryPoint": 466, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
"entryPoint": 458, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
"entryPoint": 454, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"round_up_to_mul_of_32": { | |
"entryPoint": 341, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"shift_left_dynamic": { | |
"entryPoint": 959, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"shift_right_unsigned_dynamic": { | |
"entryPoint": 1281, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"storage_set_to_zero_t_uint256": { | |
"entryPoint": 1153, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"update_byte_slice_dynamic32": { | |
"entryPoint": 971, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 1 | |
}, | |
"update_storage_value_t_uint256_to_t_uint256": { | |
"entryPoint": 1112, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"zero_value_for_split_t_uint256": { | |
"entryPoint": 1149, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
} | |
}, | |
"generatedSources": [ | |
{ | |
"ast": { | |
"nativeSrc": "0:9235:1", | |
"nodeType": "YulBlock", | |
"src": "0:9235:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "66:40:1", | |
"nodeType": "YulBlock", | |
"src": "66:40:1", | |
"statements": [ | |
{ | |
"nativeSrc": "77:22:1", | |
"nodeType": "YulAssignment", | |
"src": "77:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "93:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "93:5:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "87:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "87:5:1" | |
}, | |
"nativeSrc": "87:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "87:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nativeSrc": "77:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "77:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_length_t_string_memory_ptr", | |
"nativeSrc": "7:99:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "49:5:1", | |
"nodeType": "YulTypedName", | |
"src": "49:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "59:6:1", | |
"nodeType": "YulTypedName", | |
"src": "59:6:1", | |
"type": "" | |
} | |
], | |
"src": "7:99:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "208:73:1", | |
"nodeType": "YulBlock", | |
"src": "208:73:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "225:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "225:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "230:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "230:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "218:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "218:6:1" | |
}, | |
"nativeSrc": "218:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "218:19:1" | |
}, | |
"nativeSrc": "218:19:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "218:19:1" | |
}, | |
{ | |
"nativeSrc": "246:29:1", | |
"nodeType": "YulAssignment", | |
"src": "246:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "265:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "265:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "270:4:1", | |
"nodeType": "YulLiteral", | |
"src": "270:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "261:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "261:3:1" | |
}, | |
"nativeSrc": "261:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "261:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "246:11:1", | |
"nodeType": "YulIdentifier", | |
"src": "246:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nativeSrc": "112:169:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "180:3:1", | |
"nodeType": "YulTypedName", | |
"src": "180:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "185:6:1", | |
"nodeType": "YulTypedName", | |
"src": "185:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "196:11:1", | |
"nodeType": "YulTypedName", | |
"src": "196:11:1", | |
"type": "" | |
} | |
], | |
"src": "112:169:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "349:184:1", | |
"nodeType": "YulBlock", | |
"src": "349:184:1", | |
"statements": [ | |
{ | |
"nativeSrc": "359:10:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "359:10:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "368:1:1", | |
"nodeType": "YulLiteral", | |
"src": "368:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nativeSrc": "363:1:1", | |
"nodeType": "YulTypedName", | |
"src": "363:1:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "428:63:1", | |
"nodeType": "YulBlock", | |
"src": "428:63:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "453:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "453:3:1" | |
}, | |
{ | |
"name": "i", | |
"nativeSrc": "458:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "458:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "449:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "449:3:1" | |
}, | |
"nativeSrc": "449:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "449:11:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "472:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "472:3:1" | |
}, | |
{ | |
"name": "i", | |
"nativeSrc": "477:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "477:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "468:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "468:3:1" | |
}, | |
"nativeSrc": "468:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "468:11:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "462:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "462:5:1" | |
}, | |
"nativeSrc": "462:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "462:18:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "442:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "442:6:1" | |
}, | |
"nativeSrc": "442:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "442:39:1" | |
}, | |
"nativeSrc": "442:39:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "442:39:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "389:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "389:1:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "392:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "392:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "386:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "386:2:1" | |
}, | |
"nativeSrc": "386:13:1", | |
"nodeType": "YulFunctionCall", | |
"src": "386:13:1" | |
}, | |
"nativeSrc": "378:113:1", | |
"nodeType": "YulForLoop", | |
"post": { | |
"nativeSrc": "400:19:1", | |
"nodeType": "YulBlock", | |
"src": "400:19:1", | |
"statements": [ | |
{ | |
"nativeSrc": "402:15:1", | |
"nodeType": "YulAssignment", | |
"src": "402:15:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "411:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "411:1:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "414:2:1", | |
"nodeType": "YulLiteral", | |
"src": "414:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "407:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "407:3:1" | |
}, | |
"nativeSrc": "407:10:1", | |
"nodeType": "YulFunctionCall", | |
"src": "407:10:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nativeSrc": "402:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "402:1:1" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nativeSrc": "382:3:1", | |
"nodeType": "YulBlock", | |
"src": "382:3:1", | |
"statements": [] | |
}, | |
"src": "378:113:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "511:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "511:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "516:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "516:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "507:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "507:3:1" | |
}, | |
"nativeSrc": "507:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "507:16:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "525:1:1", | |
"nodeType": "YulLiteral", | |
"src": "525:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "500:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "500:6:1" | |
}, | |
"nativeSrc": "500:27:1", | |
"nodeType": "YulFunctionCall", | |
"src": "500:27:1" | |
}, | |
"nativeSrc": "500:27:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "500:27:1" | |
} | |
] | |
}, | |
"name": "copy_memory_to_memory_with_cleanup", | |
"nativeSrc": "287:246:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nativeSrc": "331:3:1", | |
"nodeType": "YulTypedName", | |
"src": "331:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nativeSrc": "336:3:1", | |
"nodeType": "YulTypedName", | |
"src": "336:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "341:6:1", | |
"nodeType": "YulTypedName", | |
"src": "341:6:1", | |
"type": "" | |
} | |
], | |
"src": "287:246:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "587:54:1", | |
"nodeType": "YulBlock", | |
"src": "587:54:1", | |
"statements": [ | |
{ | |
"nativeSrc": "597:38:1", | |
"nodeType": "YulAssignment", | |
"src": "597:38:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "615:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "615:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "622:2:1", | |
"nodeType": "YulLiteral", | |
"src": "622:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "611:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "611:3:1" | |
}, | |
"nativeSrc": "611:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "611:14:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "631:2:1", | |
"nodeType": "YulLiteral", | |
"src": "631:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nativeSrc": "627:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "627:3:1" | |
}, | |
"nativeSrc": "627:7:1", | |
"nodeType": "YulFunctionCall", | |
"src": "627:7:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "607:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "607:3:1" | |
}, | |
"nativeSrc": "607:28:1", | |
"nodeType": "YulFunctionCall", | |
"src": "607:28:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nativeSrc": "597:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "597:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "round_up_to_mul_of_32", | |
"nativeSrc": "539:102:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "570:5:1", | |
"nodeType": "YulTypedName", | |
"src": "570:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nativeSrc": "580:6:1", | |
"nodeType": "YulTypedName", | |
"src": "580:6:1", | |
"type": "" | |
} | |
], | |
"src": "539:102:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "739:285:1", | |
"nodeType": "YulBlock", | |
"src": "739:285:1", | |
"statements": [ | |
{ | |
"nativeSrc": "749:53:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "749:53:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "796:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "796:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nativeSrc": "763:32:1", | |
"nodeType": "YulIdentifier", | |
"src": "763:32:1" | |
}, | |
"nativeSrc": "763:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "763:39:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "753:6:1", | |
"nodeType": "YulTypedName", | |
"src": "753:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "811:78:1", | |
"nodeType": "YulAssignment", | |
"src": "811:78:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "877:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "877:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "882:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "882:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nativeSrc": "818:58:1", | |
"nodeType": "YulIdentifier", | |
"src": "818:58:1" | |
}, | |
"nativeSrc": "818:71:1", | |
"nodeType": "YulFunctionCall", | |
"src": "818:71:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "811:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "811:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "937:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "937:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "944:4:1", | |
"nodeType": "YulLiteral", | |
"src": "944:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "933:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "933:3:1" | |
}, | |
"nativeSrc": "933:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "933:16:1" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "951:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "951:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "956:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "956:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory_with_cleanup", | |
"nativeSrc": "898:34:1", | |
"nodeType": "YulIdentifier", | |
"src": "898:34:1" | |
}, | |
"nativeSrc": "898:65:1", | |
"nodeType": "YulFunctionCall", | |
"src": "898:65:1" | |
}, | |
"nativeSrc": "898:65:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "898:65:1" | |
}, | |
{ | |
"nativeSrc": "972:46:1", | |
"nodeType": "YulAssignment", | |
"src": "972:46:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "983:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "983:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "1010:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1010:6:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nativeSrc": "988:21:1", | |
"nodeType": "YulIdentifier", | |
"src": "988:21:1" | |
}, | |
"nativeSrc": "988:29:1", | |
"nodeType": "YulFunctionCall", | |
"src": "988:29:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "979:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "979:3:1" | |
}, | |
"nativeSrc": "979:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "979:39:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nativeSrc": "972:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "972:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "647:377:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "720:5:1", | |
"nodeType": "YulTypedName", | |
"src": "720:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "727:3:1", | |
"nodeType": "YulTypedName", | |
"src": "727:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nativeSrc": "735:3:1", | |
"nodeType": "YulTypedName", | |
"src": "735:3:1", | |
"type": "" | |
} | |
], | |
"src": "647:377:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1148:195:1", | |
"nodeType": "YulBlock", | |
"src": "1148:195:1", | |
"statements": [ | |
{ | |
"nativeSrc": "1158:26:1", | |
"nodeType": "YulAssignment", | |
"src": "1158:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "1170:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "1170:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1181:2:1", | |
"nodeType": "YulLiteral", | |
"src": "1181:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "1166:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1166:3:1" | |
}, | |
"nativeSrc": "1166:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1166:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "1158:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "1158:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "1205:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "1205:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1216:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1216:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "1201:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1201:3:1" | |
}, | |
"nativeSrc": "1201:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1201:17:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "1224:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "1224:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "1230:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "1230:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "1220:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1220:3:1" | |
}, | |
"nativeSrc": "1220:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1220:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "1194:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1194:6:1" | |
}, | |
"nativeSrc": "1194:47:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1194:47:1" | |
}, | |
"nativeSrc": "1194:47:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1194:47:1" | |
}, | |
{ | |
"nativeSrc": "1250:86:1", | |
"nodeType": "YulAssignment", | |
"src": "1250:86:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "1322:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1322:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nativeSrc": "1331:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "1331:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "1258:63:1", | |
"nodeType": "YulIdentifier", | |
"src": "1258:63:1" | |
}, | |
"nativeSrc": "1258:78:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1258:78:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "1250:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "1250:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", | |
"nativeSrc": "1030:313:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "1120:9:1", | |
"nodeType": "YulTypedName", | |
"src": "1120:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nativeSrc": "1132:6:1", | |
"nodeType": "YulTypedName", | |
"src": "1132:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "1143:4:1", | |
"nodeType": "YulTypedName", | |
"src": "1143:4:1", | |
"type": "" | |
} | |
], | |
"src": "1030:313:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1389:35:1", | |
"nodeType": "YulBlock", | |
"src": "1389:35:1", | |
"statements": [ | |
{ | |
"nativeSrc": "1399:19:1", | |
"nodeType": "YulAssignment", | |
"src": "1399:19:1", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1415:2:1", | |
"nodeType": "YulLiteral", | |
"src": "1415:2:1", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "1409:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1409:5:1" | |
}, | |
"nativeSrc": "1409:9:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1409:9:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "1399:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1399:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "allocate_unbounded", | |
"nativeSrc": "1349:75:1", | |
"nodeType": "YulFunctionDefinition", | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "1382:6:1", | |
"nodeType": "YulTypedName", | |
"src": "1382:6:1", | |
"type": "" | |
} | |
], | |
"src": "1349:75:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1519:28:1", | |
"nodeType": "YulBlock", | |
"src": "1519:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1536:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1536:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1539:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1539:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "1529:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1529:6:1" | |
}, | |
"nativeSrc": "1529:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1529:12:1" | |
}, | |
"nativeSrc": "1529:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1529:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nativeSrc": "1430:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "1430:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1642:28:1", | |
"nodeType": "YulBlock", | |
"src": "1642:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1659:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1659:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1662:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1662:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "1652:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1652:6:1" | |
}, | |
"nativeSrc": "1652:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1652:12:1" | |
}, | |
"nativeSrc": "1652:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1652:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nativeSrc": "1553:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "1553:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1765:28:1", | |
"nodeType": "YulBlock", | |
"src": "1765:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1782:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1782:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1785:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1785:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "1775:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1775:6:1" | |
}, | |
"nativeSrc": "1775:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1775:12:1" | |
}, | |
"nativeSrc": "1775:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1775:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
"nativeSrc": "1676:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "1676:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1888:28:1", | |
"nodeType": "YulBlock", | |
"src": "1888:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1905:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1905:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1908:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1908:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "1898:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1898:6:1" | |
}, | |
"nativeSrc": "1898:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1898:12:1" | |
}, | |
"nativeSrc": "1898:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1898:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
"nativeSrc": "1799:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "1799:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1950:152:1", | |
"nodeType": "YulBlock", | |
"src": "1950:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1967:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1967:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1970:77:1", | |
"nodeType": "YulLiteral", | |
"src": "1970:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "1960:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1960:6:1" | |
}, | |
"nativeSrc": "1960:88:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1960:88:1" | |
}, | |
"nativeSrc": "1960:88:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1960:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "2064:1:1", | |
"nodeType": "YulLiteral", | |
"src": "2064:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2067:4:1", | |
"nodeType": "YulLiteral", | |
"src": "2067:4:1", | |
"type": "", | |
"value": "0x41" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "2057:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2057:6:1" | |
}, | |
"nativeSrc": "2057:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2057:15:1" | |
}, | |
"nativeSrc": "2057:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2057:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "2088:1:1", | |
"nodeType": "YulLiteral", | |
"src": "2088:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2091:4:1", | |
"nodeType": "YulLiteral", | |
"src": "2091:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "2081:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2081:6:1" | |
}, | |
"nativeSrc": "2081:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2081:15:1" | |
}, | |
"nativeSrc": "2081:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2081:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x41", | |
"nativeSrc": "1922:180:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "1922:180:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2151:238:1", | |
"nodeType": "YulBlock", | |
"src": "2151:238:1", | |
"statements": [ | |
{ | |
"nativeSrc": "2161:58:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "2161:58:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2183:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2183:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "size", | |
"nativeSrc": "2213:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "2213:4:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nativeSrc": "2191:21:1", | |
"nodeType": "YulIdentifier", | |
"src": "2191:21:1" | |
}, | |
"nativeSrc": "2191:27:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2191:27:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2179:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2179:3:1" | |
}, | |
"nativeSrc": "2179:40:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2179:40:1" | |
}, | |
"variables": [ | |
{ | |
"name": "newFreePtr", | |
"nativeSrc": "2165:10:1", | |
"nodeType": "YulTypedName", | |
"src": "2165:10:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2330:22:1", | |
"nodeType": "YulBlock", | |
"src": "2330:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nativeSrc": "2332:16:1", | |
"nodeType": "YulIdentifier", | |
"src": "2332:16:1" | |
}, | |
"nativeSrc": "2332:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2332:18:1" | |
}, | |
"nativeSrc": "2332:18:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2332:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nativeSrc": "2273:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "2273:10:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2285:18:1", | |
"nodeType": "YulLiteral", | |
"src": "2285:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "2270:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "2270:2:1" | |
}, | |
"nativeSrc": "2270:34:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2270:34:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nativeSrc": "2309:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "2309:10:1" | |
}, | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2321:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2321:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "2306:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "2306:2:1" | |
}, | |
"nativeSrc": "2306:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2306:22:1" | |
} | |
], | |
"functionName": { | |
"name": "or", | |
"nativeSrc": "2267:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "2267:2:1" | |
}, | |
"nativeSrc": "2267:62:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2267:62:1" | |
}, | |
"nativeSrc": "2264:88:1", | |
"nodeType": "YulIf", | |
"src": "2264:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "2368:2:1", | |
"nodeType": "YulLiteral", | |
"src": "2368:2:1", | |
"type": "", | |
"value": "64" | |
}, | |
{ | |
"name": "newFreePtr", | |
"nativeSrc": "2372:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "2372:10:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "2361:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2361:6:1" | |
}, | |
"nativeSrc": "2361:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2361:22:1" | |
}, | |
"nativeSrc": "2361:22:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2361:22:1" | |
} | |
] | |
}, | |
"name": "finalize_allocation", | |
"nativeSrc": "2108:281:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2137:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2137:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "size", | |
"nativeSrc": "2145:4:1", | |
"nodeType": "YulTypedName", | |
"src": "2145:4:1", | |
"type": "" | |
} | |
], | |
"src": "2108:281:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2436:88:1", | |
"nodeType": "YulBlock", | |
"src": "2436:88:1", | |
"statements": [ | |
{ | |
"nativeSrc": "2446:30:1", | |
"nodeType": "YulAssignment", | |
"src": "2446:30:1", | |
"value": { | |
"arguments": [], | |
"functionName": { | |
"name": "allocate_unbounded", | |
"nativeSrc": "2456:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "2456:18:1" | |
}, | |
"nativeSrc": "2456:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2456:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2446:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2446:6:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2505:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2505:6:1" | |
}, | |
{ | |
"name": "size", | |
"nativeSrc": "2513:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "2513:4:1" | |
} | |
], | |
"functionName": { | |
"name": "finalize_allocation", | |
"nativeSrc": "2485:19:1", | |
"nodeType": "YulIdentifier", | |
"src": "2485:19:1" | |
}, | |
"nativeSrc": "2485:33:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2485:33:1" | |
}, | |
"nativeSrc": "2485:33:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2485:33:1" | |
} | |
] | |
}, | |
"name": "allocate_memory", | |
"nativeSrc": "2395:129:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "size", | |
"nativeSrc": "2420:4:1", | |
"nodeType": "YulTypedName", | |
"src": "2420:4:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2429:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2429:6:1", | |
"type": "" | |
} | |
], | |
"src": "2395:129:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2597:241:1", | |
"nodeType": "YulBlock", | |
"src": "2597:241:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "2702:22:1", | |
"nodeType": "YulBlock", | |
"src": "2702:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nativeSrc": "2704:16:1", | |
"nodeType": "YulIdentifier", | |
"src": "2704:16:1" | |
}, | |
"nativeSrc": "2704:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2704:18:1" | |
}, | |
"nativeSrc": "2704:18:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2704:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "2674:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2674:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2682:18:1", | |
"nodeType": "YulLiteral", | |
"src": "2682:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "2671:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "2671:2:1" | |
}, | |
"nativeSrc": "2671:30:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2671:30:1" | |
}, | |
"nativeSrc": "2668:56:1", | |
"nodeType": "YulIf", | |
"src": "2668:56:1" | |
}, | |
{ | |
"nativeSrc": "2734:37:1", | |
"nodeType": "YulAssignment", | |
"src": "2734:37:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "2764:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2764:6:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nativeSrc": "2742:21:1", | |
"nodeType": "YulIdentifier", | |
"src": "2742:21:1" | |
}, | |
"nativeSrc": "2742:29:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2742:29:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nativeSrc": "2734:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "2734:4:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "2808:23:1", | |
"nodeType": "YulAssignment", | |
"src": "2808:23:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "size", | |
"nativeSrc": "2820:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "2820:4:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2826:4:1", | |
"nodeType": "YulLiteral", | |
"src": "2826:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2816:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2816:3:1" | |
}, | |
"nativeSrc": "2816:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2816:15:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nativeSrc": "2808:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "2808:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_allocation_size_t_string_memory_ptr", | |
"nativeSrc": "2530:308:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "length", | |
"nativeSrc": "2581:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2581:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "size", | |
"nativeSrc": "2592:4:1", | |
"nodeType": "YulTypedName", | |
"src": "2592:4:1", | |
"type": "" | |
} | |
], | |
"src": "2530:308:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2908:82:1", | |
"nodeType": "YulBlock", | |
"src": "2908:82:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "2931:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2931:3:1" | |
}, | |
{ | |
"name": "src", | |
"nativeSrc": "2936:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2936:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "2941:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2941:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldatacopy", | |
"nativeSrc": "2918:12:1", | |
"nodeType": "YulIdentifier", | |
"src": "2918:12:1" | |
}, | |
"nativeSrc": "2918:30:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2918:30:1" | |
}, | |
"nativeSrc": "2918:30:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2918:30:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "2968:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2968:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "2973:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2973:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2964:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2964:3:1" | |
}, | |
"nativeSrc": "2964:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2964:16:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2982:1:1", | |
"nodeType": "YulLiteral", | |
"src": "2982:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "2957:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2957:6:1" | |
}, | |
"nativeSrc": "2957:27:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2957:27:1" | |
}, | |
"nativeSrc": "2957:27:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2957:27:1" | |
} | |
] | |
}, | |
"name": "copy_calldata_to_memory_with_cleanup", | |
"nativeSrc": "2844:146:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nativeSrc": "2890:3:1", | |
"nodeType": "YulTypedName", | |
"src": "2890:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nativeSrc": "2895:3:1", | |
"nodeType": "YulTypedName", | |
"src": "2895:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "2900:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2900:6:1", | |
"type": "" | |
} | |
], | |
"src": "2844:146:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3080:341:1", | |
"nodeType": "YulBlock", | |
"src": "3080:341:1", | |
"statements": [ | |
{ | |
"nativeSrc": "3090:75:1", | |
"nodeType": "YulAssignment", | |
"src": "3090:75:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "3157:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3157:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_allocation_size_t_string_memory_ptr", | |
"nativeSrc": "3115:41:1", | |
"nodeType": "YulIdentifier", | |
"src": "3115:41:1" | |
}, | |
"nativeSrc": "3115:49:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3115:49:1" | |
} | |
], | |
"functionName": { | |
"name": "allocate_memory", | |
"nativeSrc": "3099:15:1", | |
"nodeType": "YulIdentifier", | |
"src": "3099:15:1" | |
}, | |
"nativeSrc": "3099:66:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3099:66:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nativeSrc": "3090:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "3090:5:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nativeSrc": "3181:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "3181:5:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "3188:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3188:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "3174:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3174:6:1" | |
}, | |
"nativeSrc": "3174:21:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3174:21:1" | |
}, | |
"nativeSrc": "3174:21:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "3174:21:1" | |
}, | |
{ | |
"nativeSrc": "3204:27:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "3204:27:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nativeSrc": "3219:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "3219:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "3226:4:1", | |
"nodeType": "YulLiteral", | |
"src": "3226:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "3215:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3215:3:1" | |
}, | |
"nativeSrc": "3215:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3215:16:1" | |
}, | |
"variables": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "3208:3:1", | |
"nodeType": "YulTypedName", | |
"src": "3208:3:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3269:83:1", | |
"nodeType": "YulBlock", | |
"src": "3269:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
"nativeSrc": "3271:77:1", | |
"nodeType": "YulIdentifier", | |
"src": "3271:77:1" | |
}, | |
"nativeSrc": "3271:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3271:79:1" | |
}, | |
"nativeSrc": "3271:79:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "3271:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "3250:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3250:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "3255:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3255:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "3246:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3246:3:1" | |
}, | |
"nativeSrc": "3246:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3246:16:1" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "3264:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3264:3:1" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "3243:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "3243:2:1" | |
}, | |
"nativeSrc": "3243:25:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3243:25:1" | |
}, | |
"nativeSrc": "3240:112:1", | |
"nodeType": "YulIf", | |
"src": "3240:112:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "3398:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3398:3:1" | |
}, | |
{ | |
"name": "dst", | |
"nativeSrc": "3403:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3403:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "3408:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3408:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_calldata_to_memory_with_cleanup", | |
"nativeSrc": "3361:36:1", | |
"nodeType": "YulIdentifier", | |
"src": "3361:36:1" | |
}, | |
"nativeSrc": "3361:54:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3361:54:1" | |
}, | |
"nativeSrc": "3361:54:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "3361:54:1" | |
} | |
] | |
}, | |
"name": "abi_decode_available_length_t_string_memory_ptr", | |
"nativeSrc": "2996:425:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nativeSrc": "3053:3:1", | |
"nodeType": "YulTypedName", | |
"src": "3053:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "3058:6:1", | |
"nodeType": "YulTypedName", | |
"src": "3058:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "3066:3:1", | |
"nodeType": "YulTypedName", | |
"src": "3066:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nativeSrc": "3074:5:1", | |
"nodeType": "YulTypedName", | |
"src": "3074:5:1", | |
"type": "" | |
} | |
], | |
"src": "2996:425:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3503:278:1", | |
"nodeType": "YulBlock", | |
"src": "3503:278:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "3552:83:1", | |
"nodeType": "YulBlock", | |
"src": "3552:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
"nativeSrc": "3554:77:1", | |
"nodeType": "YulIdentifier", | |
"src": "3554:77:1" | |
}, | |
"nativeSrc": "3554:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3554:79:1" | |
}, | |
"nativeSrc": "3554:79:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "3554:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "3531:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3531:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "3539:4:1", | |
"nodeType": "YulLiteral", | |
"src": "3539:4:1", | |
"type": "", | |
"value": "0x1f" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "3527:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3527:3:1" | |
}, | |
"nativeSrc": "3527:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3527:17:1" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "3546:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3546:3:1" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nativeSrc": "3523:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3523:3:1" | |
}, | |
"nativeSrc": "3523:27:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3523:27:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nativeSrc": "3516:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3516:6:1" | |
}, | |
"nativeSrc": "3516:35:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3516:35:1" | |
}, | |
"nativeSrc": "3513:122:1", | |
"nodeType": "YulIf", | |
"src": "3513:122:1" | |
}, | |
{ | |
"nativeSrc": "3644:34:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "3644:34:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "3671:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3671:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nativeSrc": "3658:12:1", | |
"nodeType": "YulIdentifier", | |
"src": "3658:12:1" | |
}, | |
"nativeSrc": "3658:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3658:20:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "3648:6:1", | |
"nodeType": "YulTypedName", | |
"src": "3648:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "3687:88:1", | |
"nodeType": "YulAssignment", | |
"src": "3687:88:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "3748:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3748:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "3756:4:1", | |
"nodeType": "YulLiteral", | |
"src": "3756:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "3744:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3744:3:1" | |
}, | |
"nativeSrc": "3744:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3744:17:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "3763:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3763:6:1" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "3771:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3771:3:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_available_length_t_string_memory_ptr", | |
"nativeSrc": "3696:47:1", | |
"nodeType": "YulIdentifier", | |
"src": "3696:47:1" | |
}, | |
"nativeSrc": "3696:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3696:79:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nativeSrc": "3687:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "3687:5:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_t_string_memory_ptr", | |
"nativeSrc": "3441:340:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "3481:6:1", | |
"nodeType": "YulTypedName", | |
"src": "3481:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "3489:3:1", | |
"nodeType": "YulTypedName", | |
"src": "3489:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nativeSrc": "3497:5:1", | |
"nodeType": "YulTypedName", | |
"src": "3497:5:1", | |
"type": "" | |
} | |
], | |
"src": "3441:340:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3863:433:1", | |
"nodeType": "YulBlock", | |
"src": "3863:433:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "3909:83:1", | |
"nodeType": "YulBlock", | |
"src": "3909:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nativeSrc": "3911:77:1", | |
"nodeType": "YulIdentifier", | |
"src": "3911:77:1" | |
}, | |
"nativeSrc": "3911:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3911:79:1" | |
}, | |
"nativeSrc": "3911:79:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "3911:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "3884:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "3884:7:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "3893:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "3893:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "3880:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3880:3:1" | |
}, | |
"nativeSrc": "3880:23:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3880:23:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "3905:2:1", | |
"nodeType": "YulLiteral", | |
"src": "3905:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nativeSrc": "3876:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3876:3:1" | |
}, | |
"nativeSrc": "3876:32:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3876:32:1" | |
}, | |
"nativeSrc": "3873:119:1", | |
"nodeType": "YulIf", | |
"src": "3873:119:1" | |
}, | |
{ | |
"nativeSrc": "4002:287:1", | |
"nodeType": "YulBlock", | |
"src": "4002:287:1", | |
"statements": [ | |
{ | |
"nativeSrc": "4017:45:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "4017:45:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "4048:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "4048:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4059:1:1", | |
"nodeType": "YulLiteral", | |
"src": "4059:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "4044:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4044:3:1" | |
}, | |
"nativeSrc": "4044:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4044:17:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nativeSrc": "4031:12:1", | |
"nodeType": "YulIdentifier", | |
"src": "4031:12:1" | |
}, | |
"nativeSrc": "4031:31:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4031:31:1" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "4021:6:1", | |
"nodeType": "YulTypedName", | |
"src": "4021:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4109:83:1", | |
"nodeType": "YulBlock", | |
"src": "4109:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nativeSrc": "4111:77:1", | |
"nodeType": "YulIdentifier", | |
"src": "4111:77:1" | |
}, | |
"nativeSrc": "4111:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4111:79:1" | |
}, | |
"nativeSrc": "4111:79:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "4111:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "4081:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4081:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4089:18:1", | |
"nodeType": "YulLiteral", | |
"src": "4089:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "4078:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "4078:2:1" | |
}, | |
"nativeSrc": "4078:30:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4078:30:1" | |
}, | |
"nativeSrc": "4075:117:1", | |
"nodeType": "YulIf", | |
"src": "4075:117:1" | |
}, | |
{ | |
"nativeSrc": "4206:73:1", | |
"nodeType": "YulAssignment", | |
"src": "4206:73:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "4251:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "4251:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "4262:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4262:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "4247:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4247:3:1" | |
}, | |
"nativeSrc": "4247:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4247:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "4271:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "4271:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_string_memory_ptr", | |
"nativeSrc": "4216:30:1", | |
"nodeType": "YulIdentifier", | |
"src": "4216:30:1" | |
}, | |
"nativeSrc": "4216:63:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4216:63:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "4206:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4206:6:1" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_string_memory_ptr", | |
"nativeSrc": "3787:509:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "3833:9:1", | |
"nodeType": "YulTypedName", | |
"src": "3833:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "3844:7:1", | |
"nodeType": "YulTypedName", | |
"src": "3844:7:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "3856:6:1", | |
"nodeType": "YulTypedName", | |
"src": "3856:6:1", | |
"type": "" | |
} | |
], | |
"src": "3787:509:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4330:152:1", | |
"nodeType": "YulBlock", | |
"src": "4330:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "4347:1:1", | |
"nodeType": "YulLiteral", | |
"src": "4347:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4350:77:1", | |
"nodeType": "YulLiteral", | |
"src": "4350:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "4340:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4340:6:1" | |
}, | |
"nativeSrc": "4340:88:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4340:88:1" | |
}, | |
"nativeSrc": "4340:88:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "4340:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "4444:1:1", | |
"nodeType": "YulLiteral", | |
"src": "4444:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4447:4:1", | |
"nodeType": "YulLiteral", | |
"src": "4447:4:1", | |
"type": "", | |
"value": "0x22" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "4437:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4437:6:1" | |
}, | |
"nativeSrc": "4437:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4437:15:1" | |
}, | |
"nativeSrc": "4437:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "4437:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "4468:1:1", | |
"nodeType": "YulLiteral", | |
"src": "4468:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4471:4:1", | |
"nodeType": "YulLiteral", | |
"src": "4471:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "4461:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4461:6:1" | |
}, | |
"nativeSrc": "4461:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4461:15:1" | |
}, | |
"nativeSrc": "4461:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "4461:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x22", | |
"nativeSrc": "4302:180:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "4302:180:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4539:269:1", | |
"nodeType": "YulBlock", | |
"src": "4539:269:1", | |
"statements": [ | |
{ | |
"nativeSrc": "4549:22:1", | |
"nodeType": "YulAssignment", | |
"src": "4549:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nativeSrc": "4563:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "4563:4:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4569:1:1", | |
"nodeType": "YulLiteral", | |
"src": "4569:1:1", | |
"type": "", | |
"value": "2" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nativeSrc": "4559:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4559:3:1" | |
}, | |
"nativeSrc": "4559:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4559:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nativeSrc": "4549:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4549:6:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "4580:38:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "4580:38:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nativeSrc": "4610:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "4610:4:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4616:1:1", | |
"nodeType": "YulLiteral", | |
"src": "4616:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "4606:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4606:3:1" | |
}, | |
"nativeSrc": "4606:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4606:12:1" | |
}, | |
"variables": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nativeSrc": "4584:18:1", | |
"nodeType": "YulTypedName", | |
"src": "4584:18:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4657:51:1", | |
"nodeType": "YulBlock", | |
"src": "4657:51:1", | |
"statements": [ | |
{ | |
"nativeSrc": "4671:27:1", | |
"nodeType": "YulAssignment", | |
"src": "4671:27:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "4685:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4685:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4693:4:1", | |
"nodeType": "YulLiteral", | |
"src": "4693:4:1", | |
"type": "", | |
"value": "0x7f" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "4681:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4681:3:1" | |
}, | |
"nativeSrc": "4681:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4681:17:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nativeSrc": "4671:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4671:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nativeSrc": "4637:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "4637:18:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nativeSrc": "4630:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4630:6:1" | |
}, | |
"nativeSrc": "4630:26:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4630:26:1" | |
}, | |
"nativeSrc": "4627:81:1", | |
"nodeType": "YulIf", | |
"src": "4627:81:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4760:42:1", | |
"nodeType": "YulBlock", | |
"src": "4760:42:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x22", | |
"nativeSrc": "4774:16:1", | |
"nodeType": "YulIdentifier", | |
"src": "4774:16:1" | |
}, | |
"nativeSrc": "4774:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4774:18:1" | |
}, | |
"nativeSrc": "4774:18:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "4774:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nativeSrc": "4724:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "4724:18:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "4747:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4747:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4755:2:1", | |
"nodeType": "YulLiteral", | |
"src": "4755:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "4744:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "4744:2:1" | |
}, | |
"nativeSrc": "4744:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4744:14:1" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nativeSrc": "4721:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "4721:2:1" | |
}, | |
"nativeSrc": "4721:38:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4721:38:1" | |
}, | |
"nativeSrc": "4718:84:1", | |
"nodeType": "YulIf", | |
"src": "4718:84:1" | |
} | |
] | |
}, | |
"name": "extract_byte_array_length", | |
"nativeSrc": "4488:320:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "data", | |
"nativeSrc": "4523:4:1", | |
"nodeType": "YulTypedName", | |
"src": "4523:4:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "4532:6:1", | |
"nodeType": "YulTypedName", | |
"src": "4532:6:1", | |
"type": "" | |
} | |
], | |
"src": "4488:320:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4868:87:1", | |
"nodeType": "YulBlock", | |
"src": "4868:87:1", | |
"statements": [ | |
{ | |
"nativeSrc": "4878:11:1", | |
"nodeType": "YulAssignment", | |
"src": "4878:11:1", | |
"value": { | |
"name": "ptr", | |
"nativeSrc": "4886:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4886:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nativeSrc": "4878:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "4878:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "4906:1:1", | |
"nodeType": "YulLiteral", | |
"src": "4906:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"name": "ptr", | |
"nativeSrc": "4909:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4909:3:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "4899:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4899:6:1" | |
}, | |
"nativeSrc": "4899:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4899:14:1" | |
}, | |
"nativeSrc": "4899:14:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "4899:14:1" | |
}, | |
{ | |
"nativeSrc": "4922:26:1", | |
"nodeType": "YulAssignment", | |
"src": "4922:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "4940:1:1", | |
"nodeType": "YulLiteral", | |
"src": "4940:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4943:4:1", | |
"nodeType": "YulLiteral", | |
"src": "4943:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "keccak256", | |
"nativeSrc": "4930:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "4930:9:1" | |
}, | |
"nativeSrc": "4930:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4930:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nativeSrc": "4922:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "4922:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_dataslot_t_string_storage", | |
"nativeSrc": "4814:141:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "ptr", | |
"nativeSrc": "4855:3:1", | |
"nodeType": "YulTypedName", | |
"src": "4855:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "data", | |
"nativeSrc": "4863:4:1", | |
"nodeType": "YulTypedName", | |
"src": "4863:4:1", | |
"type": "" | |
} | |
], | |
"src": "4814:141:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5005:49:1", | |
"nodeType": "YulBlock", | |
"src": "5005:49:1", | |
"statements": [ | |
{ | |
"nativeSrc": "5015:33:1", | |
"nodeType": "YulAssignment", | |
"src": "5015:33:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5033:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5033:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "5040:2:1", | |
"nodeType": "YulLiteral", | |
"src": "5040:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "5029:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5029:3:1" | |
}, | |
"nativeSrc": "5029:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5029:14:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "5045:2:1", | |
"nodeType": "YulLiteral", | |
"src": "5045:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nativeSrc": "5025:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5025:3:1" | |
}, | |
"nativeSrc": "5025:23:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5025:23:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nativeSrc": "5015:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "5015:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "divide_by_32_ceil", | |
"nativeSrc": "4961:93:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "4988:5:1", | |
"nodeType": "YulTypedName", | |
"src": "4988:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nativeSrc": "4998:6:1", | |
"nodeType": "YulTypedName", | |
"src": "4998:6:1", | |
"type": "" | |
} | |
], | |
"src": "4961:93:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5113:54:1", | |
"nodeType": "YulBlock", | |
"src": "5113:54:1", | |
"statements": [ | |
{ | |
"nativeSrc": "5123:37:1", | |
"nodeType": "YulAssignment", | |
"src": "5123:37:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "bits", | |
"nativeSrc": "5148:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "5148:4:1" | |
}, | |
{ | |
"name": "value", | |
"nativeSrc": "5154:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5154:5:1" | |
} | |
], | |
"functionName": { | |
"name": "shl", | |
"nativeSrc": "5144:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5144:3:1" | |
}, | |
"nativeSrc": "5144:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5144:16:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "newValue", | |
"nativeSrc": "5123:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "5123:8:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "shift_left_dynamic", | |
"nativeSrc": "5060:107:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "bits", | |
"nativeSrc": "5088:4:1", | |
"nodeType": "YulTypedName", | |
"src": "5088:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "value", | |
"nativeSrc": "5094:5:1", | |
"nodeType": "YulTypedName", | |
"src": "5094:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "newValue", | |
"nativeSrc": "5104:8:1", | |
"nodeType": "YulTypedName", | |
"src": "5104:8:1", | |
"type": "" | |
} | |
], | |
"src": "5060:107:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5249:317:1", | |
"nodeType": "YulBlock", | |
"src": "5249:317:1", | |
"statements": [ | |
{ | |
"nativeSrc": "5259:35:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "5259:35:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "shiftBytes", | |
"nativeSrc": "5280:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "5280:10:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "5292:1:1", | |
"nodeType": "YulLiteral", | |
"src": "5292:1:1", | |
"type": "", | |
"value": "8" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nativeSrc": "5276:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5276:3:1" | |
}, | |
"nativeSrc": "5276:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5276:18:1" | |
}, | |
"variables": [ | |
{ | |
"name": "shiftBits", | |
"nativeSrc": "5263:9:1", | |
"nodeType": "YulTypedName", | |
"src": "5263:9:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "5303:109:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "5303:109:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "shiftBits", | |
"nativeSrc": "5334:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "5334:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "5345:66:1", | |
"nodeType": "YulLiteral", | |
"src": "5345:66:1", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "shift_left_dynamic", | |
"nativeSrc": "5315:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "5315:18:1" | |
}, | |
"nativeSrc": "5315:97:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5315:97:1" | |
}, | |
"variables": [ | |
{ | |
"name": "mask", | |
"nativeSrc": "5307:4:1", | |
"nodeType": "YulTypedName", | |
"src": "5307:4:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "5421:51:1", | |
"nodeType": "YulAssignment", | |
"src": "5421:51:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "shiftBits", | |
"nativeSrc": "5452:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "5452:9:1" | |
}, | |
{ | |
"name": "toInsert", | |
"nativeSrc": "5463:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "5463:8:1" | |
} | |
], | |
"functionName": { | |
"name": "shift_left_dynamic", | |
"nativeSrc": "5433:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "5433:18:1" | |
}, | |
"nativeSrc": "5433:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5433:39:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "toInsert", | |
"nativeSrc": "5421:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "5421:8:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "5481:30:1", | |
"nodeType": "YulAssignment", | |
"src": "5481:30:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5494:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5494:5:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "mask", | |
"nativeSrc": "5505:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "5505:4:1" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nativeSrc": "5501:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5501:3:1" | |
}, | |
"nativeSrc": "5501:9:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5501:9:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "5490:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5490:3:1" | |
}, | |
"nativeSrc": "5490:21:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5490:21:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5481:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5481:5:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "5520:40:1", | |
"nodeType": "YulAssignment", | |
"src": "5520:40:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5533:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5533:5:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "toInsert", | |
"nativeSrc": "5544:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "5544:8:1" | |
}, | |
{ | |
"name": "mask", | |
"nativeSrc": "5554:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "5554:4:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "5540:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5540:3:1" | |
}, | |
"nativeSrc": "5540:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5540:19:1" | |
} | |
], | |
"functionName": { | |
"name": "or", | |
"nativeSrc": "5530:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "5530:2:1" | |
}, | |
"nativeSrc": "5530:30:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5530:30:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nativeSrc": "5520:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "5520:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "update_byte_slice_dynamic32", | |
"nativeSrc": "5173:393:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5210:5:1", | |
"nodeType": "YulTypedName", | |
"src": "5210:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "shiftBytes", | |
"nativeSrc": "5217:10:1", | |
"nodeType": "YulTypedName", | |
"src": "5217:10:1", | |
"type": "" | |
}, | |
{ | |
"name": "toInsert", | |
"nativeSrc": "5229:8:1", | |
"nodeType": "YulTypedName", | |
"src": "5229:8:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nativeSrc": "5242:6:1", | |
"nodeType": "YulTypedName", | |
"src": "5242:6:1", | |
"type": "" | |
} | |
], | |
"src": "5173:393:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5617:32:1", | |
"nodeType": "YulBlock", | |
"src": "5617:32:1", | |
"statements": [ | |
{ | |
"nativeSrc": "5627:16:1", | |
"nodeType": "YulAssignment", | |
"src": "5627:16:1", | |
"value": { | |
"name": "value", | |
"nativeSrc": "5638:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5638:5:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "5627:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "5627:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint256", | |
"nativeSrc": "5572:77:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5599:5:1", | |
"nodeType": "YulTypedName", | |
"src": "5599:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "5609:7:1", | |
"nodeType": "YulTypedName", | |
"src": "5609:7:1", | |
"type": "" | |
} | |
], | |
"src": "5572:77:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5687:28:1", | |
"nodeType": "YulBlock", | |
"src": "5687:28:1", | |
"statements": [ | |
{ | |
"nativeSrc": "5697:12:1", | |
"nodeType": "YulAssignment", | |
"src": "5697:12:1", | |
"value": { | |
"name": "value", | |
"nativeSrc": "5704:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5704:5:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "5697:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5697:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "identity", | |
"nativeSrc": "5655:60:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5673:5:1", | |
"nodeType": "YulTypedName", | |
"src": "5673:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "5683:3:1", | |
"nodeType": "YulTypedName", | |
"src": "5683:3:1", | |
"type": "" | |
} | |
], | |
"src": "5655:60:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5781:82:1", | |
"nodeType": "YulBlock", | |
"src": "5781:82:1", | |
"statements": [ | |
{ | |
"nativeSrc": "5791:66:1", | |
"nodeType": "YulAssignment", | |
"src": "5791:66:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5849:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5849:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nativeSrc": "5831:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "5831:17:1" | |
}, | |
"nativeSrc": "5831:24:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5831:24:1" | |
} | |
], | |
"functionName": { | |
"name": "identity", | |
"nativeSrc": "5822:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "5822:8:1" | |
}, | |
"nativeSrc": "5822:34:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5822:34:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nativeSrc": "5804:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "5804:17:1" | |
}, | |
"nativeSrc": "5804:53:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5804:53:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "converted", | |
"nativeSrc": "5791:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "5791:9:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "convert_t_uint256_to_t_uint256", | |
"nativeSrc": "5721:142:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5761:5:1", | |
"nodeType": "YulTypedName", | |
"src": "5761:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "converted", | |
"nativeSrc": "5771:9:1", | |
"nodeType": "YulTypedName", | |
"src": "5771:9:1", | |
"type": "" | |
} | |
], | |
"src": "5721:142:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5916:28:1", | |
"nodeType": "YulBlock", | |
"src": "5916:28:1", | |
"statements": [ | |
{ | |
"nativeSrc": "5926:12:1", | |
"nodeType": "YulAssignment", | |
"src": "5926:12:1", | |
"value": { | |
"name": "value", | |
"nativeSrc": "5933:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5933:5:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "5926:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5926:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "prepare_store_t_uint256", | |
"nativeSrc": "5869:75:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5902:5:1", | |
"nodeType": "YulTypedName", | |
"src": "5902:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "5912:3:1", | |
"nodeType": "YulTypedName", | |
"src": "5912:3:1", | |
"type": "" | |
} | |
], | |
"src": "5869:75:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "6026:193:1", | |
"nodeType": "YulBlock", | |
"src": "6026:193:1", | |
"statements": [ | |
{ | |
"nativeSrc": "6036:63:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "6036:63:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value_0", | |
"nativeSrc": "6091:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "6091:7:1" | |
} | |
], | |
"functionName": { | |
"name": "convert_t_uint256_to_t_uint256", | |
"nativeSrc": "6060:30:1", | |
"nodeType": "YulIdentifier", | |
"src": "6060:30:1" | |
}, | |
"nativeSrc": "6060:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6060:39:1" | |
}, | |
"variables": [ | |
{ | |
"name": "convertedValue_0", | |
"nativeSrc": "6040:16:1", | |
"nodeType": "YulTypedName", | |
"src": "6040:16:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "6115:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "6115:4:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "6155:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "6155:4:1" | |
} | |
], | |
"functionName": { | |
"name": "sload", | |
"nativeSrc": "6149:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "6149:5:1" | |
}, | |
"nativeSrc": "6149:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6149:11:1" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "6162:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "6162:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "convertedValue_0", | |
"nativeSrc": "6194:16:1", | |
"nodeType": "YulIdentifier", | |
"src": "6194:16:1" | |
} | |
], | |
"functionName": { | |
"name": "prepare_store_t_uint256", | |
"nativeSrc": "6170:23:1", | |
"nodeType": "YulIdentifier", | |
"src": "6170:23:1" | |
}, | |
"nativeSrc": "6170:41:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6170:41:1" | |
} | |
], | |
"functionName": { | |
"name": "update_byte_slice_dynamic32", | |
"nativeSrc": "6121:27:1", | |
"nodeType": "YulIdentifier", | |
"src": "6121:27:1" | |
}, | |
"nativeSrc": "6121:91:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6121:91:1" | |
} | |
], | |
"functionName": { | |
"name": "sstore", | |
"nativeSrc": "6108:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "6108:6:1" | |
}, | |
"nativeSrc": "6108:105:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6108:105:1" | |
}, | |
"nativeSrc": "6108:105:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "6108:105:1" | |
} | |
] | |
}, | |
"name": "update_storage_value_t_uint256_to_t_uint256", | |
"nativeSrc": "5950:269:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "6003:4:1", | |
"nodeType": "YulTypedName", | |
"src": "6003:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "6009:6:1", | |
"nodeType": "YulTypedName", | |
"src": "6009:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value_0", | |
"nativeSrc": "6017:7:1", | |
"nodeType": "YulTypedName", | |
"src": "6017:7:1", | |
"type": "" | |
} | |
], | |
"src": "5950:269:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "6274:24:1", | |
"nodeType": "YulBlock", | |
"src": "6274:24:1", | |
"statements": [ | |
{ | |
"nativeSrc": "6284:8:1", | |
"nodeType": "YulAssignment", | |
"src": "6284:8:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "6291:1:1", | |
"nodeType": "YulLiteral", | |
"src": "6291:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "6284:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "6284:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "zero_value_for_split_t_uint256", | |
"nativeSrc": "6225:73:1", | |
"nodeType": "YulFunctionDefinition", | |
"returnVariables": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "6270:3:1", | |
"nodeType": "YulTypedName", | |
"src": "6270:3:1", | |
"type": "" | |
} | |
], | |
"src": "6225:73:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "6357:136:1", | |
"nodeType": "YulBlock", | |
"src": "6357:136:1", | |
"statements": [ | |
{ | |
"nativeSrc": "6367:46:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "6367:46:1", | |
"value": { | |
"arguments": [], | |
"functionName": { | |
"name": "zero_value_for_split_t_uint256", | |
"nativeSrc": "6381:30:1", | |
"nodeType": "YulIdentifier", | |
"src": "6381:30:1" | |
}, | |
"nativeSrc": "6381:32:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6381:32:1" | |
}, | |
"variables": [ | |
{ | |
"name": "zero_0", | |
"nativeSrc": "6371:6:1", | |
"nodeType": "YulTypedName", | |
"src": "6371:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "6466:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "6466:4:1" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "6472:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "6472:6:1" | |
}, | |
{ | |
"name": "zero_0", | |
"nativeSrc": "6480:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "6480:6:1" | |
} | |
], | |
"functionName": { | |
"name": "update_storage_value_t_uint256_to_t_uint256", | |
"nativeSrc": "6422:43:1", | |
"nodeType": "YulIdentifier", | |
"src": "6422:43:1" | |
}, | |
"nativeSrc": "6422:65:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6422:65:1" | |
}, | |
"nativeSrc": "6422:65:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "6422:65:1" | |
} | |
] | |
}, | |
"name": "storage_set_to_zero_t_uint256", | |
"nativeSrc": "6304:189:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "6343:4:1", | |
"nodeType": "YulTypedName", | |
"src": "6343:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "6349:6:1", | |
"nodeType": "YulTypedName", | |
"src": "6349:6:1", | |
"type": "" | |
} | |
], | |
"src": "6304:189:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "6549:136:1", | |
"nodeType": "YulBlock", | |
"src": "6549:136:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "6616:63:1", | |
"nodeType": "YulBlock", | |
"src": "6616:63:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "start", | |
"nativeSrc": "6660:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "6660:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "6667:1:1", | |
"nodeType": "YulLiteral", | |
"src": "6667:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "storage_set_to_zero_t_uint256", | |
"nativeSrc": "6630:29:1", | |
"nodeType": "YulIdentifier", | |
"src": "6630:29:1" | |
}, | |
"nativeSrc": "6630:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6630:39:1" | |
}, | |
"nativeSrc": "6630:39:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "6630:39:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "start", | |
"nativeSrc": "6569:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "6569:5:1" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "6576:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "6576:3:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "6566:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "6566:2:1" | |
}, | |
"nativeSrc": "6566:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6566:14:1" | |
}, | |
"nativeSrc": "6559:120:1", | |
"nodeType": "YulForLoop", | |
"post": { | |
"nativeSrc": "6581:26:1", | |
"nodeType": "YulBlock", | |
"src": "6581:26:1", | |
"statements": [ | |
{ | |
"nativeSrc": "6583:22:1", | |
"nodeType": "YulAssignment", | |
"src": "6583:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "start", | |
"nativeSrc": "6596:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "6596:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "6603:1:1", | |
"nodeType": "YulLiteral", | |
"src": "6603:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "6592:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "6592:3:1" | |
}, | |
"nativeSrc": "6592:13:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6592:13:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "start", | |
"nativeSrc": "6583:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "6583:5:1" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nativeSrc": "6563:2:1", | |
"nodeType": "YulBlock", | |
"src": "6563:2:1", | |
"statements": [] | |
}, | |
"src": "6559:120:1" | |
} | |
] | |
}, | |
"name": "clear_storage_range_t_bytes1", | |
"nativeSrc": "6499:186:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "start", | |
"nativeSrc": "6537:5:1", | |
"nodeType": "YulTypedName", | |
"src": "6537:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "6544:3:1", | |
"nodeType": "YulTypedName", | |
"src": "6544:3:1", | |
"type": "" | |
} | |
], | |
"src": "6499:186:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "6770:464:1", | |
"nodeType": "YulBlock", | |
"src": "6770:464:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "6796:431:1", | |
"nodeType": "YulBlock", | |
"src": "6796:431:1", | |
"statements": [ | |
{ | |
"nativeSrc": "6810:54:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "6810:54:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nativeSrc": "6858:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "6858:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_dataslot_t_string_storage", | |
"nativeSrc": "6826:31:1", | |
"nodeType": "YulIdentifier", | |
"src": "6826:31:1" | |
}, | |
"nativeSrc": "6826:38:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6826:38:1" | |
}, | |
"variables": [ | |
{ | |
"name": "dataArea", | |
"nativeSrc": "6814:8:1", | |
"nodeType": "YulTypedName", | |
"src": "6814:8:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "6877:63:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "6877:63:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "dataArea", | |
"nativeSrc": "6900:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "6900:8:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "startIndex", | |
"nativeSrc": "6928:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "6928:10:1" | |
} | |
], | |
"functionName": { | |
"name": "divide_by_32_ceil", | |
"nativeSrc": "6910:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "6910:17:1" | |
}, | |
"nativeSrc": "6910:29:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6910:29:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "6896:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "6896:3:1" | |
}, | |
"nativeSrc": "6896:44:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6896:44:1" | |
}, | |
"variables": [ | |
{ | |
"name": "deleteStart", | |
"nativeSrc": "6881:11:1", | |
"nodeType": "YulTypedName", | |
"src": "6881:11:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "7097:27:1", | |
"nodeType": "YulBlock", | |
"src": "7097:27:1", | |
"statements": [ | |
{ | |
"nativeSrc": "7099:23:1", | |
"nodeType": "YulAssignment", | |
"src": "7099:23:1", | |
"value": { | |
"name": "dataArea", | |
"nativeSrc": "7114:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "7114:8:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "deleteStart", | |
"nativeSrc": "7099:11:1", | |
"nodeType": "YulIdentifier", | |
"src": "7099:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "startIndex", | |
"nativeSrc": "7081:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "7081:10:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "7093:2:1", | |
"nodeType": "YulLiteral", | |
"src": "7093:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "7078:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "7078:2:1" | |
}, | |
"nativeSrc": "7078:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7078:18:1" | |
}, | |
"nativeSrc": "7075:49:1", | |
"nodeType": "YulIf", | |
"src": "7075:49:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "deleteStart", | |
"nativeSrc": "7166:11:1", | |
"nodeType": "YulIdentifier", | |
"src": "7166:11:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "dataArea", | |
"nativeSrc": "7183:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "7183:8:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "len", | |
"nativeSrc": "7211:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7211:3:1" | |
} | |
], | |
"functionName": { | |
"name": "divide_by_32_ceil", | |
"nativeSrc": "7193:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "7193:17:1" | |
}, | |
"nativeSrc": "7193:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7193:22:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "7179:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7179:3:1" | |
}, | |
"nativeSrc": "7179:37:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7179:37:1" | |
} | |
], | |
"functionName": { | |
"name": "clear_storage_range_t_bytes1", | |
"nativeSrc": "7137:28:1", | |
"nodeType": "YulIdentifier", | |
"src": "7137:28:1" | |
}, | |
"nativeSrc": "7137:80:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7137:80:1" | |
}, | |
"nativeSrc": "7137:80:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "7137:80:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "len", | |
"nativeSrc": "6787:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "6787:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "6792:2:1", | |
"nodeType": "YulLiteral", | |
"src": "6792:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "6784:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "6784:2:1" | |
}, | |
"nativeSrc": "6784:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6784:11:1" | |
}, | |
"nativeSrc": "6781:446:1", | |
"nodeType": "YulIf", | |
"src": "6781:446:1" | |
} | |
] | |
}, | |
"name": "clean_up_bytearray_end_slots_t_string_storage", | |
"nativeSrc": "6691:543:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "array", | |
"nativeSrc": "6746:5:1", | |
"nodeType": "YulTypedName", | |
"src": "6746:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "len", | |
"nativeSrc": "6753:3:1", | |
"nodeType": "YulTypedName", | |
"src": "6753:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "startIndex", | |
"nativeSrc": "6758:10:1", | |
"nodeType": "YulTypedName", | |
"src": "6758:10:1", | |
"type": "" | |
} | |
], | |
"src": "6691:543:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "7303:54:1", | |
"nodeType": "YulBlock", | |
"src": "7303:54:1", | |
"statements": [ | |
{ | |
"nativeSrc": "7313:37:1", | |
"nodeType": "YulAssignment", | |
"src": "7313:37:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "bits", | |
"nativeSrc": "7338:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "7338:4:1" | |
}, | |
{ | |
"name": "value", | |
"nativeSrc": "7344:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "7344:5:1" | |
} | |
], | |
"functionName": { | |
"name": "shr", | |
"nativeSrc": "7334:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7334:3:1" | |
}, | |
"nativeSrc": "7334:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7334:16:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "newValue", | |
"nativeSrc": "7313:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "7313:8:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "shift_right_unsigned_dynamic", | |
"nativeSrc": "7240:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "bits", | |
"nativeSrc": "7278:4:1", | |
"nodeType": "YulTypedName", | |
"src": "7278:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "value", | |
"nativeSrc": "7284:5:1", | |
"nodeType": "YulTypedName", | |
"src": "7284:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "newValue", | |
"nativeSrc": "7294:8:1", | |
"nodeType": "YulTypedName", | |
"src": "7294:8:1", | |
"type": "" | |
} | |
], | |
"src": "7240:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "7414:118:1", | |
"nodeType": "YulBlock", | |
"src": "7414:118:1", | |
"statements": [ | |
{ | |
"nativeSrc": "7424:68:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "7424:68:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "7473:1:1", | |
"nodeType": "YulLiteral", | |
"src": "7473:1:1", | |
"type": "", | |
"value": "8" | |
}, | |
{ | |
"name": "bytes", | |
"nativeSrc": "7476:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "7476:5:1" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nativeSrc": "7469:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7469:3:1" | |
}, | |
"nativeSrc": "7469:13:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7469:13:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "7488:1:1", | |
"nodeType": "YulLiteral", | |
"src": "7488:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nativeSrc": "7484:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7484:3:1" | |
}, | |
"nativeSrc": "7484:6:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7484:6:1" | |
} | |
], | |
"functionName": { | |
"name": "shift_right_unsigned_dynamic", | |
"nativeSrc": "7440:28:1", | |
"nodeType": "YulIdentifier", | |
"src": "7440:28:1" | |
}, | |
"nativeSrc": "7440:51:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7440:51:1" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nativeSrc": "7436:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7436:3:1" | |
}, | |
"nativeSrc": "7436:56:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7436:56:1" | |
}, | |
"variables": [ | |
{ | |
"name": "mask", | |
"nativeSrc": "7428:4:1", | |
"nodeType": "YulTypedName", | |
"src": "7428:4:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "7501:25:1", | |
"nodeType": "YulAssignment", | |
"src": "7501:25:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nativeSrc": "7515:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "7515:4:1" | |
}, | |
{ | |
"name": "mask", | |
"nativeSrc": "7521:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "7521:4:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "7511:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7511:3:1" | |
}, | |
"nativeSrc": "7511:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7511:15:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nativeSrc": "7501:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "7501:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "mask_bytes_dynamic", | |
"nativeSrc": "7363:169:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "data", | |
"nativeSrc": "7391:4:1", | |
"nodeType": "YulTypedName", | |
"src": "7391:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "bytes", | |
"nativeSrc": "7397:5:1", | |
"nodeType": "YulTypedName", | |
"src": "7397:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nativeSrc": "7407:6:1", | |
"nodeType": "YulTypedName", | |
"src": "7407:6:1", | |
"type": "" | |
} | |
], | |
"src": "7363:169:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "7618:214:1", | |
"nodeType": "YulBlock", | |
"src": "7618:214:1", | |
"statements": [ | |
{ | |
"nativeSrc": "7751:37:1", | |
"nodeType": "YulAssignment", | |
"src": "7751:37:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nativeSrc": "7778:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "7778:4:1" | |
}, | |
{ | |
"name": "len", | |
"nativeSrc": "7784:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7784:3:1" | |
} | |
], | |
"functionName": { | |
"name": "mask_bytes_dynamic", | |
"nativeSrc": "7759:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "7759:18:1" | |
}, | |
"nativeSrc": "7759:29:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7759:29:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nativeSrc": "7751:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "7751:4:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "7797:29:1", | |
"nodeType": "YulAssignment", | |
"src": "7797:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nativeSrc": "7808:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "7808:4:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "7818:1:1", | |
"nodeType": "YulLiteral", | |
"src": "7818:1:1", | |
"type": "", | |
"value": "2" | |
}, | |
{ | |
"name": "len", | |
"nativeSrc": "7821:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7821:3:1" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nativeSrc": "7814:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7814:3:1" | |
}, | |
"nativeSrc": "7814:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7814:11:1" | |
} | |
], | |
"functionName": { | |
"name": "or", | |
"nativeSrc": "7805:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "7805:2:1" | |
}, | |
"nativeSrc": "7805:21:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7805:21:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "used", | |
"nativeSrc": "7797:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "7797:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "extract_used_part_and_set_length_of_short_byte_array", | |
"nativeSrc": "7537:295:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "data", | |
"nativeSrc": "7599:4:1", | |
"nodeType": "YulTypedName", | |
"src": "7599:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "len", | |
"nativeSrc": "7605:3:1", | |
"nodeType": "YulTypedName", | |
"src": "7605:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "used", | |
"nativeSrc": "7613:4:1", | |
"nodeType": "YulTypedName", | |
"src": "7613:4:1", | |
"type": "" | |
} | |
], | |
"src": "7537:295:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "7929:1303:1", | |
"nodeType": "YulBlock", | |
"src": "7929:1303:1", | |
"statements": [ | |
{ | |
"nativeSrc": "7940:51:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "7940:51:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "7987:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7987:3:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nativeSrc": "7954:32:1", | |
"nodeType": "YulIdentifier", | |
"src": "7954:32:1" | |
}, | |
"nativeSrc": "7954:37:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7954:37:1" | |
}, | |
"variables": [ | |
{ | |
"name": "newLen", | |
"nativeSrc": "7944:6:1", | |
"nodeType": "YulTypedName", | |
"src": "7944:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "8076:22:1", | |
"nodeType": "YulBlock", | |
"src": "8076:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nativeSrc": "8078:16:1", | |
"nodeType": "YulIdentifier", | |
"src": "8078:16:1" | |
}, | |
"nativeSrc": "8078:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8078:18:1" | |
}, | |
"nativeSrc": "8078:18:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "8078:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "newLen", | |
"nativeSrc": "8048:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8048:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "8056:18:1", | |
"nodeType": "YulLiteral", | |
"src": "8056:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "8045:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "8045:2:1" | |
}, | |
"nativeSrc": "8045:30:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8045:30:1" | |
}, | |
"nativeSrc": "8042:56:1", | |
"nodeType": "YulIf", | |
"src": "8042:56:1" | |
}, | |
{ | |
"nativeSrc": "8108:52:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "8108:52:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "8154:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "8154:4:1" | |
} | |
], | |
"functionName": { | |
"name": "sload", | |
"nativeSrc": "8148:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "8148:5:1" | |
}, | |
"nativeSrc": "8148:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8148:11:1" | |
} | |
], | |
"functionName": { | |
"name": "extract_byte_array_length", | |
"nativeSrc": "8122:25:1", | |
"nodeType": "YulIdentifier", | |
"src": "8122:25:1" | |
}, | |
"nativeSrc": "8122:38:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8122:38:1" | |
}, | |
"variables": [ | |
{ | |
"name": "oldLen", | |
"nativeSrc": "8112:6:1", | |
"nodeType": "YulTypedName", | |
"src": "8112:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "8253:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "8253:4:1" | |
}, | |
{ | |
"name": "oldLen", | |
"nativeSrc": "8259:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8259:6:1" | |
}, | |
{ | |
"name": "newLen", | |
"nativeSrc": "8267:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8267:6:1" | |
} | |
], | |
"functionName": { | |
"name": "clean_up_bytearray_end_slots_t_string_storage", | |
"nativeSrc": "8207:45:1", | |
"nodeType": "YulIdentifier", | |
"src": "8207:45:1" | |
}, | |
"nativeSrc": "8207:67:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8207:67:1" | |
}, | |
"nativeSrc": "8207:67:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "8207:67:1" | |
}, | |
{ | |
"nativeSrc": "8284:18:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "8284:18:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "8301:1:1", | |
"nodeType": "YulLiteral", | |
"src": "8301:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "8288:9:1", | |
"nodeType": "YulTypedName", | |
"src": "8288:9:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "8312:17:1", | |
"nodeType": "YulAssignment", | |
"src": "8312:17:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "8325:4:1", | |
"nodeType": "YulLiteral", | |
"src": "8325:4:1", | |
"type": "", | |
"value": "0x20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "8312:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "8312:9:1" | |
} | |
] | |
}, | |
{ | |
"cases": [ | |
{ | |
"body": { | |
"nativeSrc": "8376:611:1", | |
"nodeType": "YulBlock", | |
"src": "8376:611:1", | |
"statements": [ | |
{ | |
"nativeSrc": "8390:37:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "8390:37:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "newLen", | |
"nativeSrc": "8409:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8409:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "8421:4:1", | |
"nodeType": "YulLiteral", | |
"src": "8421:4:1", | |
"type": "", | |
"value": "0x1f" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nativeSrc": "8417:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8417:3:1" | |
}, | |
"nativeSrc": "8417:9:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8417:9:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "8405:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8405:3:1" | |
}, | |
"nativeSrc": "8405:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8405:22:1" | |
}, | |
"variables": [ | |
{ | |
"name": "loopEnd", | |
"nativeSrc": "8394:7:1", | |
"nodeType": "YulTypedName", | |
"src": "8394:7:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "8441:51:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "8441:51:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "8487:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "8487:4:1" | |
} | |
], | |
"functionName": { | |
"name": "array_dataslot_t_string_storage", | |
"nativeSrc": "8455:31:1", | |
"nodeType": "YulIdentifier", | |
"src": "8455:31:1" | |
}, | |
"nativeSrc": "8455:37:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8455:37:1" | |
}, | |
"variables": [ | |
{ | |
"name": "dstPtr", | |
"nativeSrc": "8445:6:1", | |
"nodeType": "YulTypedName", | |
"src": "8445:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "8505:10:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "8505:10:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "8514:1:1", | |
"nodeType": "YulLiteral", | |
"src": "8514:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nativeSrc": "8509:1:1", | |
"nodeType": "YulTypedName", | |
"src": "8509:1:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "8573:163:1", | |
"nodeType": "YulBlock", | |
"src": "8573:163:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "dstPtr", | |
"nativeSrc": "8598:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8598:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "8616:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8616:3:1" | |
}, | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "8621:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "8621:9:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "8612:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8612:3:1" | |
}, | |
"nativeSrc": "8612:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8612:19:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "8606:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "8606:5:1" | |
}, | |
"nativeSrc": "8606:26:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8606:26:1" | |
} | |
], | |
"functionName": { | |
"name": "sstore", | |
"nativeSrc": "8591:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8591:6:1" | |
}, | |
"nativeSrc": "8591:42:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8591:42:1" | |
}, | |
"nativeSrc": "8591:42:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "8591:42:1" | |
}, | |
{ | |
"nativeSrc": "8650:24:1", | |
"nodeType": "YulAssignment", | |
"src": "8650:24:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "dstPtr", | |
"nativeSrc": "8664:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8664:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "8672:1:1", | |
"nodeType": "YulLiteral", | |
"src": "8672:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "8660:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8660:3:1" | |
}, | |
"nativeSrc": "8660:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8660:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "dstPtr", | |
"nativeSrc": "8650:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8650:6:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "8691:31:1", | |
"nodeType": "YulAssignment", | |
"src": "8691:31:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "8708:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "8708:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "8719:2:1", | |
"nodeType": "YulLiteral", | |
"src": "8719:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "8704:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8704:3:1" | |
}, | |
"nativeSrc": "8704:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8704:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "8691:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "8691:9:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "8539:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "8539:1:1" | |
}, | |
{ | |
"name": "loopEnd", | |
"nativeSrc": "8542:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "8542:7:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "8536:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "8536:2:1" | |
}, | |
"nativeSrc": "8536:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8536:14:1" | |
}, | |
"nativeSrc": "8528:208:1", | |
"nodeType": "YulForLoop", | |
"post": { | |
"nativeSrc": "8551:21:1", | |
"nodeType": "YulBlock", | |
"src": "8551:21:1", | |
"statements": [ | |
{ | |
"nativeSrc": "8553:17:1", | |
"nodeType": "YulAssignment", | |
"src": "8553:17:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "8562:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "8562:1:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "8565:4:1", | |
"nodeType": "YulLiteral", | |
"src": "8565:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "8558:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8558:3:1" | |
}, | |
"nativeSrc": "8558:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8558:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nativeSrc": "8553:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "8553:1:1" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nativeSrc": "8532:3:1", | |
"nodeType": "YulBlock", | |
"src": "8532:3:1", | |
"statements": [] | |
}, | |
"src": "8528:208:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "8772:156:1", | |
"nodeType": "YulBlock", | |
"src": "8772:156:1", | |
"statements": [ | |
{ | |
"nativeSrc": "8790:43:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "8790:43:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "8817:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8817:3:1" | |
}, | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "8822:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "8822:9:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "8813:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8813:3:1" | |
}, | |
"nativeSrc": "8813:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8813:19:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "8807:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "8807:5:1" | |
}, | |
"nativeSrc": "8807:26:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8807:26:1" | |
}, | |
"variables": [ | |
{ | |
"name": "lastValue", | |
"nativeSrc": "8794:9:1", | |
"nodeType": "YulTypedName", | |
"src": "8794:9:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "dstPtr", | |
"nativeSrc": "8857:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8857:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "lastValue", | |
"nativeSrc": "8884:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "8884:9:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "newLen", | |
"nativeSrc": "8899:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8899:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "8907:4:1", | |
"nodeType": "YulLiteral", | |
"src": "8907:4:1", | |
"type": "", | |
"value": "0x1f" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "8895:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8895:3:1" | |
}, | |
"nativeSrc": "8895:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8895:17:1" | |
} | |
], | |
"functionName": { | |
"name": "mask_bytes_dynamic", | |
"nativeSrc": "8865:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "8865:18:1" | |
}, | |
"nativeSrc": "8865:48:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8865:48:1" | |
} | |
], | |
"functionName": { | |
"name": "sstore", | |
"nativeSrc": "8850:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8850:6:1" | |
}, | |
"nativeSrc": "8850:64:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8850:64:1" | |
}, | |
"nativeSrc": "8850:64:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "8850:64:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "loopEnd", | |
"nativeSrc": "8755:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "8755:7:1" | |
}, | |
{ | |
"name": "newLen", | |
"nativeSrc": "8764:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8764:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "8752:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "8752:2:1" | |
}, | |
"nativeSrc": "8752:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8752:19:1" | |
}, | |
"nativeSrc": "8749:179:1", | |
"nodeType": "YulIf", | |
"src": "8749:179:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "8948:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "8948:4:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "newLen", | |
"nativeSrc": "8962:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8962:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "8970:1:1", | |
"nodeType": "YulLiteral", | |
"src": "8970:1:1", | |
"type": "", | |
"value": "2" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nativeSrc": "8958:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8958:3:1" | |
}, | |
"nativeSrc": "8958:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8958:14:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "8974:1:1", | |
"nodeType": "YulLiteral", | |
"src": "8974:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "8954:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8954:3:1" | |
}, | |
"nativeSrc": "8954:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8954:22:1" | |
} | |
], | |
"functionName": { | |
"name": "sstore", | |
"nativeSrc": "8941:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8941:6:1" | |
}, | |
"nativeSrc": "8941:36:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8941:36:1" | |
}, | |
"nativeSrc": "8941:36:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "8941:36:1" | |
} | |
] | |
}, | |
"nativeSrc": "8369:618:1", | |
"nodeType": "YulCase", | |
"src": "8369:618:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "8374:1:1", | |
"nodeType": "YulLiteral", | |
"src": "8374:1:1", | |
"type": "", | |
"value": "1" | |
} | |
}, | |
{ | |
"body": { | |
"nativeSrc": "9004:222:1", | |
"nodeType": "YulBlock", | |
"src": "9004:222:1", | |
"statements": [ | |
{ | |
"nativeSrc": "9018:14:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "9018:14:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "9031:1:1", | |
"nodeType": "YulLiteral", | |
"src": "9031:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "value", | |
"nativeSrc": "9022:5:1", | |
"nodeType": "YulTypedName", | |
"src": "9022:5:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "9055:67:1", | |
"nodeType": "YulBlock", | |
"src": "9055:67:1", | |
"statements": [ | |
{ | |
"nativeSrc": "9073:35:1", | |
"nodeType": "YulAssignment", | |
"src": "9073:35:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "9092:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9092:3:1" | |
}, | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "9097:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "9097:9:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "9088:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9088:3:1" | |
}, | |
"nativeSrc": "9088:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9088:19:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "9082:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "9082:5:1" | |
}, | |
"nativeSrc": "9082:26:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9082:26:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nativeSrc": "9073:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "9073:5:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"name": "newLen", | |
"nativeSrc": "9048:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "9048:6:1" | |
}, | |
"nativeSrc": "9045:77:1", | |
"nodeType": "YulIf", | |
"src": "9045:77:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "9142:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "9142:4:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "9201:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "9201:5:1" | |
}, | |
{ | |
"name": "newLen", | |
"nativeSrc": "9208:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "9208:6:1" | |
} | |
], | |
"functionName": { | |
"name": "extract_used_part_and_set_length_of_short_byte_array", | |
"nativeSrc": "9148:52:1", | |
"nodeType": "YulIdentifier", | |
"src": "9148:52:1" | |
}, | |
"nativeSrc": "9148:67:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9148:67:1" | |
} | |
], | |
"functionName": { | |
"name": "sstore", | |
"nativeSrc": "9135:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "9135:6:1" | |
}, | |
"nativeSrc": "9135:81:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9135:81:1" | |
}, | |
"nativeSrc": "9135:81:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "9135:81:1" | |
} | |
] | |
}, | |
"nativeSrc": "8996:230:1", | |
"nodeType": "YulCase", | |
"src": "8996:230:1", | |
"value": "default" | |
} | |
], | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "newLen", | |
"nativeSrc": "8349:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8349:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "8357:2:1", | |
"nodeType": "YulLiteral", | |
"src": "8357:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "8346:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "8346:2:1" | |
}, | |
"nativeSrc": "8346:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8346:14:1" | |
}, | |
"nativeSrc": "8339:887:1", | |
"nodeType": "YulSwitch", | |
"src": "8339:887:1" | |
} | |
] | |
}, | |
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage", | |
"nativeSrc": "7837:1395:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "7918:4:1", | |
"nodeType": "YulTypedName", | |
"src": "7918:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "src", | |
"nativeSrc": "7924:3:1", | |
"nodeType": "YulTypedName", | |
"src": "7924:3:1", | |
"type": "" | |
} | |
], | |
"src": "7837:1395:1" | |
} | |
] | |
}, | |
"contents": "{\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_with_cleanup(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 mstore(add(dst, length), 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 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_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\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 revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\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_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\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_with_cleanup(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_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 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 function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n}\n", | |
"id": 1, | |
"language": "Yul", | |
"name": "#utility.yul" | |
} | |
], | |
"immutableReferences": {}, | |
"linkReferences": {}, | |
"object": "608060405234801561000f575f80fd5b5060043610610034575f3560e01c80635a9b0b8914610038578063937f6e7714610056575b5f80fd5b610040610072565b60405161004d919061019d565b60405180910390f35b610070600480360381019061006b91906102fa565b610101565b005b60605f80546100809061036e565b80601f01602080910402602001604051908101604052809291908181526020018280546100ac9061036e565b80156100f75780601f106100ce576101008083540402835291602001916100f7565b820191905f5260205f20905b8154815290600101906020018083116100da57829003601f168201915b5050505050905090565b805f908161010f9190610544565b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561014a57808201518184015260208101905061012f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61016f82610113565b610179818561011d565b935061018981856020860161012d565b61019281610155565b840191505092915050565b5f6020820190508181035f8301526101b58184610165565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61020c82610155565b810181811067ffffffffffffffff8211171561022b5761022a6101d6565b5b80604052505050565b5f61023d6101bd565b90506102498282610203565b919050565b5f67ffffffffffffffff821115610268576102676101d6565b5b61027182610155565b9050602081019050919050565b828183375f83830152505050565b5f61029e6102998461024e565b610234565b9050828152602081018484840111156102ba576102b96101d2565b5b6102c584828561027e565b509392505050565b5f82601f8301126102e1576102e06101ce565b5b81356102f184826020860161028c565b91505092915050565b5f6020828403121561030f5761030e6101c6565b5b5f82013567ffffffffffffffff81111561032c5761032b6101ca565b5b610338848285016102cd565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061038557607f821691505b60208210810361039857610397610341565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103fa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826103bf565b61040486836103bf565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61044861044361043e8461041c565b610425565b61041c565b9050919050565b5f819050919050565b6104618361042e565b61047561046d8261044f565b8484546103cb565b825550505050565b5f90565b61048961047d565b610494818484610458565b505050565b5b818110156104b7576104ac5f82610481565b60018101905061049a565b5050565b601f8211156104fc576104cd8161039e565b6104d6846103b0565b810160208510156104e5578190505b6104f96104f1856103b0565b830182610499565b50505b505050565b5f82821c905092915050565b5f61051c5f1984600802610501565b1980831691505092915050565b5f610534838361050d565b9150826002028217905092915050565b61054d82610113565b67ffffffffffffffff811115610566576105656101d6565b5b610570825461036e565b61057b8282856104bb565b5f60209050601f8311600181146105ac575f841561059a578287015190505b6105a48582610529565b86555061060b565b601f1984166105ba8661039e565b5f5b828110156105e1578489015182556001820191506020850194506020810190506105bc565b868310156105fe57848901516105fa601f89168261050d565b8355505b6001600288020188555050505b50505050505056fea264697066735822122000e5e980242fc9c275b49907c45e2f751f7ba177b39c70818d244febdec3953864736f6c63430008160033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x34 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x5A9B0B89 EQ PUSH2 0x38 JUMPI DUP1 PUSH4 0x937F6E77 EQ PUSH2 0x56 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x72 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D SWAP2 SWAP1 PUSH2 0x19D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x70 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6B SWAP2 SWAP1 PUSH2 0x2FA JUMP JUMPDEST PUSH2 0x101 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH0 DUP1 SLOAD PUSH2 0x80 SWAP1 PUSH2 0x36E 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 0xAC SWAP1 PUSH2 0x36E JUMP JUMPDEST DUP1 ISZERO PUSH2 0xF7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xCE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xF7 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xDA JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH0 SWAP1 DUP2 PUSH2 0x10F SWAP2 SWAP1 PUSH2 0x544 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x14A JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x12F JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x16F DUP3 PUSH2 0x113 JUMP JUMPDEST PUSH2 0x179 DUP2 DUP6 PUSH2 0x11D JUMP JUMPDEST SWAP4 POP PUSH2 0x189 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x12D JUMP JUMPDEST PUSH2 0x192 DUP2 PUSH2 0x155 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1B5 DUP2 DUP5 PUSH2 0x165 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x20C DUP3 PUSH2 0x155 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x22B JUMPI PUSH2 0x22A PUSH2 0x1D6 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x23D PUSH2 0x1BD JUMP JUMPDEST SWAP1 POP PUSH2 0x249 DUP3 DUP3 PUSH2 0x203 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x268 JUMPI PUSH2 0x267 PUSH2 0x1D6 JUMP JUMPDEST JUMPDEST PUSH2 0x271 DUP3 PUSH2 0x155 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x29E PUSH2 0x299 DUP5 PUSH2 0x24E JUMP JUMPDEST PUSH2 0x234 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2BA JUMPI PUSH2 0x2B9 PUSH2 0x1D2 JUMP JUMPDEST JUMPDEST PUSH2 0x2C5 DUP5 DUP3 DUP6 PUSH2 0x27E JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2E1 JUMPI PUSH2 0x2E0 PUSH2 0x1CE JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2F1 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x28C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x30F JUMPI PUSH2 0x30E PUSH2 0x1C6 JUMP JUMPDEST JUMPDEST PUSH0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x32C JUMPI PUSH2 0x32B PUSH2 0x1CA JUMP JUMPDEST JUMPDEST PUSH2 0x338 DUP5 DUP3 DUP6 ADD PUSH2 0x2CD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x385 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x398 JUMPI PUSH2 0x397 PUSH2 0x341 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x3FA PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x3BF JUMP JUMPDEST PUSH2 0x404 DUP7 DUP4 PUSH2 0x3BF JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x448 PUSH2 0x443 PUSH2 0x43E DUP5 PUSH2 0x41C JUMP JUMPDEST PUSH2 0x425 JUMP JUMPDEST PUSH2 0x41C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x461 DUP4 PUSH2 0x42E JUMP JUMPDEST PUSH2 0x475 PUSH2 0x46D DUP3 PUSH2 0x44F JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x3CB JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x489 PUSH2 0x47D JUMP JUMPDEST PUSH2 0x494 DUP2 DUP5 DUP5 PUSH2 0x458 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4B7 JUMPI PUSH2 0x4AC PUSH0 DUP3 PUSH2 0x481 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x49A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x4FC JUMPI PUSH2 0x4CD DUP2 PUSH2 0x39E JUMP JUMPDEST PUSH2 0x4D6 DUP5 PUSH2 0x3B0 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x4E5 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x4F9 PUSH2 0x4F1 DUP6 PUSH2 0x3B0 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x499 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x51C PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x501 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x534 DUP4 DUP4 PUSH2 0x50D JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x54D DUP3 PUSH2 0x113 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x566 JUMPI PUSH2 0x565 PUSH2 0x1D6 JUMP JUMPDEST JUMPDEST PUSH2 0x570 DUP3 SLOAD PUSH2 0x36E JUMP JUMPDEST PUSH2 0x57B DUP3 DUP3 DUP6 PUSH2 0x4BB JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x5AC JUMPI PUSH0 DUP5 ISZERO PUSH2 0x59A JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x5A4 DUP6 DUP3 PUSH2 0x529 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x60B JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x5BA DUP7 PUSH2 0x39E JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x5E1 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x5BC JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x5FE JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x5FA PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x50D JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 STOP 0xE5 0xE9 DUP1 0x24 0x2F 0xC9 0xC2 PUSH22 0xB49907C45E2F751F7BA177B39C70818D244FEBDEC395 CODESIZE PUSH5 0x736F6C6343 STOP ADDMOD AND STOP CALLER ", | |
"sourceMap": "58:239:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;114:84;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;204:91;246:13;278:10;271:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;204:91;:::o;114:84::-;185:6;172:10;:19;;;;;;:::i;:::-;;114:84;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:117;1785:1;1782;1775:12;1799:117;1908:1;1905;1898:12;1922:180;1970:77;1967:1;1960:88;2067:4;2064:1;2057:15;2091:4;2088:1;2081:15;2108:281;2191:27;2213:4;2191:27;:::i;:::-;2183:6;2179:40;2321:6;2309:10;2306:22;2285:18;2273:10;2270:34;2267:62;2264:88;;;2332:18;;:::i;:::-;2264:88;2372:10;2368:2;2361:22;2151:238;2108:281;;:::o;2395:129::-;2429:6;2456:20;;:::i;:::-;2446:30;;2485:33;2513:4;2505:6;2485:33;:::i;:::-;2395:129;;;:::o;2530:308::-;2592:4;2682:18;2674:6;2671:30;2668:56;;;2704:18;;:::i;:::-;2668:56;2742:29;2764:6;2742:29;:::i;:::-;2734:37;;2826:4;2820;2816:15;2808:23;;2530:308;;;:::o;2844:146::-;2941:6;2936:3;2931;2918:30;2982:1;2973:6;2968:3;2964:16;2957:27;2844:146;;;:::o;2996:425::-;3074:5;3099:66;3115:49;3157:6;3115:49;:::i;:::-;3099:66;:::i;:::-;3090:75;;3188:6;3181:5;3174:21;3226:4;3219:5;3215:16;3264:3;3255:6;3250:3;3246:16;3243:25;3240:112;;;3271:79;;:::i;:::-;3240:112;3361:54;3408:6;3403:3;3398;3361:54;:::i;:::-;3080:341;2996:425;;;;;:::o;3441:340::-;3497:5;3546:3;3539:4;3531:6;3527:17;3523:27;3513:122;;3554:79;;:::i;:::-;3513:122;3671:6;3658:20;3696:79;3771:3;3763:6;3756:4;3748:6;3744:17;3696:79;:::i;:::-;3687:88;;3503:278;3441:340;;;;:::o;3787:509::-;3856:6;3905:2;3893:9;3884:7;3880:23;3876:32;3873:119;;;3911:79;;:::i;:::-;3873:119;4059:1;4048:9;4044:17;4031:31;4089:18;4081:6;4078:30;4075:117;;;4111:79;;:::i;:::-;4075:117;4216:63;4271:7;4262:6;4251:9;4247:22;4216:63;:::i;:::-;4206:73;;4002:287;3787:509;;;;:::o;4302:180::-;4350:77;4347:1;4340:88;4447:4;4444:1;4437:15;4471:4;4468:1;4461:15;4488:320;4532:6;4569:1;4563:4;4559:12;4549:22;;4616:1;4610:4;4606:12;4637:18;4627:81;;4693:4;4685:6;4681:17;4671:27;;4627:81;4755:2;4747:6;4744:14;4724:18;4721:38;4718:84;;4774:18;;:::i;:::-;4718:84;4539:269;4488:320;;;:::o;4814:141::-;4863:4;4886:3;4878:11;;4909:3;4906:1;4899:14;4943:4;4940:1;4930:18;4922:26;;4814:141;;;:::o;4961:93::-;4998:6;5045:2;5040;5033:5;5029:14;5025:23;5015:33;;4961:93;;;:::o;5060:107::-;5104:8;5154:5;5148:4;5144:16;5123:37;;5060:107;;;;:::o;5173:393::-;5242:6;5292:1;5280:10;5276:18;5315:97;5345:66;5334:9;5315:97;:::i;:::-;5433:39;5463:8;5452:9;5433:39;:::i;:::-;5421:51;;5505:4;5501:9;5494:5;5490:21;5481:30;;5554:4;5544:8;5540:19;5533:5;5530:30;5520:40;;5249:317;;5173:393;;;;;:::o;5572:77::-;5609:7;5638:5;5627:16;;5572:77;;;:::o;5655:60::-;5683:3;5704:5;5697:12;;5655:60;;;:::o;5721:142::-;5771:9;5804:53;5822:34;5831:24;5849:5;5831:24;:::i;:::-;5822:34;:::i;:::-;5804:53;:::i;:::-;5791:66;;5721:142;;;:::o;5869:75::-;5912:3;5933:5;5926:12;;5869:75;;;:::o;5950:269::-;6060:39;6091:7;6060:39;:::i;:::-;6121:91;6170:41;6194:16;6170:41;:::i;:::-;6162:6;6155:4;6149:11;6121:91;:::i;:::-;6115:4;6108:105;6026:193;5950:269;;;:::o;6225:73::-;6270:3;6225:73;:::o;6304:189::-;6381:32;;:::i;:::-;6422:65;6480:6;6472;6466:4;6422:65;:::i;:::-;6357:136;6304:189;;:::o;6499:186::-;6559:120;6576:3;6569:5;6566:14;6559:120;;;6630:39;6667:1;6660:5;6630:39;:::i;:::-;6603:1;6596:5;6592:13;6583:22;;6559:120;;;6499:186;;:::o;6691:543::-;6792:2;6787:3;6784:11;6781:446;;;6826:38;6858:5;6826:38;:::i;:::-;6910:29;6928:10;6910:29;:::i;:::-;6900:8;6896:44;7093:2;7081:10;7078:18;7075:49;;;7114:8;7099:23;;7075:49;7137:80;7193:22;7211:3;7193:22;:::i;:::-;7183:8;7179:37;7166:11;7137:80;:::i;:::-;6796:431;;6781:446;6691:543;;;:::o;7240:117::-;7294:8;7344:5;7338:4;7334:16;7313:37;;7240:117;;;;:::o;7363:169::-;7407:6;7440:51;7488:1;7484:6;7476:5;7473:1;7469:13;7440:51;:::i;:::-;7436:56;7521:4;7515;7511:15;7501:25;;7414:118;7363:169;;;;:::o;7537:295::-;7613:4;7759:29;7784:3;7778:4;7759:29;:::i;:::-;7751:37;;7821:3;7818:1;7814:11;7808:4;7805:21;7797:29;;7537:295;;;;:::o;7837:1395::-;7954:37;7987:3;7954:37;:::i;:::-;8056:18;8048:6;8045:30;8042:56;;;8078:18;;:::i;:::-;8042:56;8122:38;8154:4;8148:11;8122:38;:::i;:::-;8207:67;8267:6;8259;8253:4;8207:67;:::i;:::-;8301:1;8325:4;8312:17;;8357:2;8349:6;8346:14;8374:1;8369:618;;;;9031:1;9048:6;9045:77;;;9097:9;9092:3;9088:19;9082:26;9073:35;;9045:77;9148:67;9208:6;9201:5;9148:67;:::i;:::-;9142:4;9135:81;9004:222;8339:887;;8369:618;8421:4;8417:9;8409:6;8405:22;8455:37;8487:4;8455:37;:::i;:::-;8514:1;8528:208;8542:7;8539:1;8536:14;8528:208;;;8621:9;8616:3;8612:19;8606:26;8598:6;8591:42;8672:1;8664:6;8660:14;8650:24;;8719:2;8708:9;8704:18;8691:31;;8565:4;8562:1;8558:12;8553:17;;8528:208;;;8764:6;8755:7;8752:19;8749:179;;;8822:9;8817:3;8813:19;8807:26;8865:48;8907:4;8899:6;8895:17;8884:9;8865:48;:::i;:::-;8857:6;8850:64;8772:156;8749:179;8974:1;8970;8962:6;8958:14;8954:22;8948:4;8941:36;8376:611;;;8339:887;;7929:1303;;;7837:1395;;:::o" | |
}, | |
"gasEstimates": { | |
"creation": { | |
"codeDepositCost": "321800", | |
"executionCost": "360", | |
"totalCost": "322160" | |
}, | |
"external": { | |
"getInfo()": "infinite", | |
"setInfo(string)": "infinite" | |
} | |
}, | |
"methodIdentifiers": { | |
"getInfo()": "5a9b0b89", | |
"setInfo(string)": "937f6e77" | |
} | |
}, | |
"abi": [ | |
{ | |
"inputs": [], | |
"name": "getInfo", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "myInfo", | |
"type": "string" | |
} | |
], | |
"name": "setInfo", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"compiler": { | |
"version": "0.8.22+commit.4fc1097e" | |
}, | |
"language": "Solidity", | |
"output": { | |
"abi": [ | |
{ | |
"inputs": [], | |
"name": "getInfo", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "myInfo", | |
"type": "string" | |
} | |
], | |
"name": "setInfo", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
} | |
], | |
"devdoc": { | |
"kind": "dev", | |
"methods": {}, | |
"version": 1 | |
}, | |
"userdoc": { | |
"kind": "user", | |
"methods": {}, | |
"version": 1 | |
} | |
}, | |
"settings": { | |
"compilationTarget": { | |
"contracts/Register.sol": "Register" | |
}, | |
"evmVersion": "shanghai", | |
"libraries": {}, | |
"metadata": { | |
"bytecodeHash": "ipfs" | |
}, | |
"optimizer": { | |
"enabled": false, | |
"runs": 200 | |
}, | |
"remappings": [] | |
}, | |
"sources": { | |
"contracts/Register.sol": { | |
"keccak256": "0x9d01c2e68a2609a4004a78cbbf0db834101066f77d1b239df0d4d52c2c7f494c", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://a1d929d86930dbe6f848f264f0b5e9b1b5ffdbb6b88bc3e75b7fd1d470facc15", | |
"dweb:/ipfs/QmekbYV3UquoVHFFvwK8yN6QucwwqcUp41uVGUw6WqMy4U" | |
] | |
} | |
}, | |
"version": 1 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"deploy": { | |
"VM:-": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"main:1": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"ropsten:3": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"rinkeby:4": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"kovan:42": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"goerli:5": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"Custom": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
} | |
}, | |
"data": { | |
"bytecode": { | |
"functionDebugData": { | |
"@_26": { | |
"entryPoint": null, | |
"id": 26, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
} | |
}, | |
"generatedSources": [], | |
"linkReferences": {}, | |
"object": "608060405234801561000f575f80fd5b503360015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600160025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550611144806100b25f395ff3fe608060405234801561000f575f80fd5b5060043610610086575f3560e01c80638da5cb5b116100595780638da5cb5b14610136578063b682000214610154578063ca6d56dc14610170578063d03d58491461018c57610086565b80630bf803e41461008a5780631a3cd59a146100ba5780631f81595d146100ea578063372c12b114610106575b5f80fd5b6100a4600480360381019061009f919061086e565b6101aa565b6040516100b191906108cd565b60405180910390f35b6100d460048036038101906100cf9190610910565b610284565b6040516100e191906109b5565b60405180910390f35b61010460048036038101906100ff9190610a2f565b61032f565b005b610120600480360381019061011b9190610a2f565b610415565b60405161012d9190610a74565b60405180910390f35b61013e610432565b60405161014b9190610a9c565b60405180910390f35b61016e60048036038101906101699190610ab5565b610457565b005b61018a60048036038101906101859190610a2f565b610567565b005b61019461064e565b6040516101a19190610c12565b60405180910390f35b5f6001151560025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615151461023b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023290610c7c565b60405180910390fd5b5f82908060018154018082558091505060019003905f5260205f20015f90919091909150908161026b9190610e94565b5060015f8054905061027d9190610f90565b9050919050565b60605f828154811061029957610298610fc3565b5b905f5260205f200180546102ac90610cc7565b80601f01602080910402602001604051908101604052809291908181526020018280546102d890610cc7565b80156103235780601f106102fa57610100808354040283529160200191610323565b820191905f5260205f20905b81548152906001019060200180831161030657829003601f168201915b50505050509050919050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146103be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b59061103a565b60405180910390fd5b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6002602052805f5260405f205f915054906101000a900460ff1681565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6001151560025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515146104e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104de90610c7c565b60405180910390fd5b7f305058d54db6daf26994cd687b168a24cdd9a7201462f1659782c4e4299879925f838154811061051b5761051a610fc3565b5b905f5260205f2001826040516105329291906110d9565b60405180910390a1805f838154811061054e5761054d610fc3565b5b905f5260205f200190816105629190610e94565b505050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ed9061103a565b60405180910390fd5b600160025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60605f805480602002602001604051908101604052809291908181526020015f905b82821015610718578382905f5260205f2001805461068d90610cc7565b80601f01602080910402602001604051908101604052809291908181526020018280546106b990610cc7565b80156107045780601f106106db57610100808354040283529160200191610704565b820191905f5260205f20905b8154815290600101906020018083116106e757829003601f168201915b505050505081526020019060010190610670565b50505050905090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6107808261073a565b810181811067ffffffffffffffff8211171561079f5761079e61074a565b5b80604052505050565b5f6107b1610721565b90506107bd8282610777565b919050565b5f67ffffffffffffffff8211156107dc576107db61074a565b5b6107e58261073a565b9050602081019050919050565b828183375f83830152505050565b5f61081261080d846107c2565b6107a8565b90508281526020810184848401111561082e5761082d610736565b5b6108398482856107f2565b509392505050565b5f82601f83011261085557610854610732565b5b8135610865848260208601610800565b91505092915050565b5f602082840312156108835761088261072a565b5b5f82013567ffffffffffffffff8111156108a05761089f61072e565b5b6108ac84828501610841565b91505092915050565b5f819050919050565b6108c7816108b5565b82525050565b5f6020820190506108e05f8301846108be565b92915050565b6108ef816108b5565b81146108f9575f80fd5b50565b5f8135905061090a816108e6565b92915050565b5f602082840312156109255761092461072a565b5b5f610932848285016108fc565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610972578082015181840152602081019050610957565b5f8484015250505050565b5f6109878261093b565b6109918185610945565b93506109a1818560208601610955565b6109aa8161073a565b840191505092915050565b5f6020820190508181035f8301526109cd818461097d565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6109fe826109d5565b9050919050565b610a0e816109f4565b8114610a18575f80fd5b50565b5f81359050610a2981610a05565b92915050565b5f60208284031215610a4457610a4361072a565b5b5f610a5184828501610a1b565b91505092915050565b5f8115159050919050565b610a6e81610a5a565b82525050565b5f602082019050610a875f830184610a65565b92915050565b610a96816109f4565b82525050565b5f602082019050610aaf5f830184610a8d565b92915050565b5f8060408385031215610acb57610aca61072a565b5b5f610ad8858286016108fc565b925050602083013567ffffffffffffffff811115610af957610af861072e565b5b610b0585828601610841565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f82825260208201905092915050565b5f610b528261093b565b610b5c8185610b38565b9350610b6c818560208601610955565b610b758161073a565b840191505092915050565b5f610b8b8383610b48565b905092915050565b5f602082019050919050565b5f610ba982610b0f565b610bb38185610b19565b935083602082028501610bc585610b29565b805f5b85811015610c005784840389528151610be18582610b80565b9450610bec83610b93565b925060208a01995050600181019050610bc8565b50829750879550505050505092915050565b5f6020820190508181035f830152610c2a8184610b9f565b905092915050565b7f4f6e6c792077686974656c6973740000000000000000000000000000000000005f82015250565b5f610c66600e83610945565b9150610c7182610c32565b602082019050919050565b5f6020820190508181035f830152610c9381610c5a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610cde57607f821691505b602082108103610cf157610cf0610c9a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610d537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610d18565b610d5d8683610d18565b95508019841693508086168417925050509392505050565b5f819050919050565b5f610d98610d93610d8e846108b5565b610d75565b6108b5565b9050919050565b5f819050919050565b610db183610d7e565b610dc5610dbd82610d9f565b848454610d24565b825550505050565b5f90565b610dd9610dcd565b610de4818484610da8565b505050565b5b81811015610e0757610dfc5f82610dd1565b600181019050610dea565b5050565b601f821115610e4c57610e1d81610cf7565b610e2684610d09565b81016020851015610e35578190505b610e49610e4185610d09565b830182610de9565b50505b505050565b5f82821c905092915050565b5f610e6c5f1984600802610e51565b1980831691505092915050565b5f610e848383610e5d565b9150826002028217905092915050565b610e9d8261093b565b67ffffffffffffffff811115610eb657610eb561074a565b5b610ec08254610cc7565b610ecb828285610e0b565b5f60209050601f831160018114610efc575f8415610eea578287015190505b610ef48582610e79565b865550610f5b565b601f198416610f0a86610cf7565b5f5b82811015610f3157848901518255600182019150602085019450602081019050610f0c565b86831015610f4e5784890151610f4a601f891682610e5d565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f9a826108b5565b9150610fa5836108b5565b9250828203905081811115610fbd57610fbc610f63565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4f6e6c79206f776e6572000000000000000000000000000000000000000000005f82015250565b5f611024600a83610945565b915061102f82610ff0565b602082019050919050565b5f6020820190508181035f83015261105181611018565b9050919050565b5f815461106481610cc7565b61106e8186610945565b9450600182165f8114611088576001811461109e576110d0565b60ff1983168652811515602002860193506110d0565b6110a785610cf7565b5f5b838110156110c8578154818901526001820191506020810190506110a9565b808801955050505b50505092915050565b5f6040820190508181035f8301526110f18185611058565b90508181036020830152611105818461097d565b9050939250505056fea2646970667358221220209f9374086b86519f42a7b99e98624bdf59d6940324a99356b76428f953f33864736f6c63430008160033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP CALLER PUSH1 0x1 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x2 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0x1144 DUP1 PUSH2 0xB2 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x86 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x59 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x136 JUMPI DUP1 PUSH4 0xB6820002 EQ PUSH2 0x154 JUMPI DUP1 PUSH4 0xCA6D56DC EQ PUSH2 0x170 JUMPI DUP1 PUSH4 0xD03D5849 EQ PUSH2 0x18C JUMPI PUSH2 0x86 JUMP JUMPDEST DUP1 PUSH4 0xBF803E4 EQ PUSH2 0x8A JUMPI DUP1 PUSH4 0x1A3CD59A EQ PUSH2 0xBA JUMPI DUP1 PUSH4 0x1F81595D EQ PUSH2 0xEA JUMPI DUP1 PUSH4 0x372C12B1 EQ PUSH2 0x106 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xA4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x9F SWAP2 SWAP1 PUSH2 0x86E JUMP JUMPDEST PUSH2 0x1AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB1 SWAP2 SWAP1 PUSH2 0x8CD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xCF SWAP2 SWAP1 PUSH2 0x910 JUMP JUMPDEST PUSH2 0x284 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0x9B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xFF SWAP2 SWAP1 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0x32F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x11B SWAP2 SWAP1 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0x415 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12D SWAP2 SWAP1 PUSH2 0xA74 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13E PUSH2 0x432 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14B SWAP2 SWAP1 PUSH2 0xA9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x169 SWAP2 SWAP1 PUSH2 0xAB5 JUMP JUMPDEST PUSH2 0x457 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x185 SWAP2 SWAP1 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0x567 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x194 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A1 SWAP2 SWAP1 PUSH2 0xC12 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 PUSH1 0x1 ISZERO ISZERO PUSH1 0x2 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x23B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x232 SWAP1 PUSH2 0xC7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD PUSH0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SWAP1 DUP2 PUSH2 0x26B SWAP2 SWAP1 PUSH2 0xE94 JUMP JUMPDEST POP PUSH1 0x1 PUSH0 DUP1 SLOAD SWAP1 POP PUSH2 0x27D SWAP2 SWAP1 PUSH2 0xF90 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x299 JUMPI PUSH2 0x298 PUSH2 0xFC3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x2AC SWAP1 PUSH2 0xCC7 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 0x2D8 SWAP1 PUSH2 0xCC7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x323 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2FA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x323 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x306 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x3BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3B5 SWAP1 PUSH2 0x103A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x2 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x20 MSTORE DUP1 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 ISZERO ISZERO PUSH1 0x2 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x4E7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4DE SWAP1 PUSH2 0xC7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x305058D54DB6DAF26994CD687B168A24CDD9A7201462F1659782C4E429987992 PUSH0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x51B JUMPI PUSH2 0x51A PUSH2 0xFC3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD DUP3 PUSH1 0x40 MLOAD PUSH2 0x532 SWAP3 SWAP2 SWAP1 PUSH2 0x10D9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 PUSH0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x54E JUMPI PUSH2 0x54D PUSH2 0xFC3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD SWAP1 DUP2 PUSH2 0x562 SWAP2 SWAP1 PUSH2 0xE94 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x5F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5ED SWAP1 PUSH2 0x103A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x2 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x718 JUMPI DUP4 DUP3 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x68D SWAP1 PUSH2 0xCC7 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 0x6B9 SWAP1 PUSH2 0xCC7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x704 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x6DB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x704 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x6E7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x670 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x780 DUP3 PUSH2 0x73A JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x79F JUMPI PUSH2 0x79E PUSH2 0x74A JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x7B1 PUSH2 0x721 JUMP JUMPDEST SWAP1 POP PUSH2 0x7BD DUP3 DUP3 PUSH2 0x777 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x7DC JUMPI PUSH2 0x7DB PUSH2 0x74A JUMP JUMPDEST JUMPDEST PUSH2 0x7E5 DUP3 PUSH2 0x73A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x812 PUSH2 0x80D DUP5 PUSH2 0x7C2 JUMP JUMPDEST PUSH2 0x7A8 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x82E JUMPI PUSH2 0x82D PUSH2 0x736 JUMP JUMPDEST JUMPDEST PUSH2 0x839 DUP5 DUP3 DUP6 PUSH2 0x7F2 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x855 JUMPI PUSH2 0x854 PUSH2 0x732 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x865 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x800 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x883 JUMPI PUSH2 0x882 PUSH2 0x72A JUMP JUMPDEST JUMPDEST PUSH0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x8A0 JUMPI PUSH2 0x89F PUSH2 0x72E JUMP JUMPDEST JUMPDEST PUSH2 0x8AC DUP5 DUP3 DUP6 ADD PUSH2 0x841 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8C7 DUP2 PUSH2 0x8B5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x8E0 PUSH0 DUP4 ADD DUP5 PUSH2 0x8BE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x8EF DUP2 PUSH2 0x8B5 JUMP JUMPDEST DUP2 EQ PUSH2 0x8F9 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x90A DUP2 PUSH2 0x8E6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x925 JUMPI PUSH2 0x924 PUSH2 0x72A JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x932 DUP5 DUP3 DUP6 ADD PUSH2 0x8FC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x972 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x957 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x987 DUP3 PUSH2 0x93B JUMP JUMPDEST PUSH2 0x991 DUP2 DUP6 PUSH2 0x945 JUMP JUMPDEST SWAP4 POP PUSH2 0x9A1 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x955 JUMP JUMPDEST PUSH2 0x9AA DUP2 PUSH2 0x73A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x9CD DUP2 DUP5 PUSH2 0x97D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x9FE DUP3 PUSH2 0x9D5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA0E DUP2 PUSH2 0x9F4 JUMP JUMPDEST DUP2 EQ PUSH2 0xA18 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xA29 DUP2 PUSH2 0xA05 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA44 JUMPI PUSH2 0xA43 PUSH2 0x72A JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xA51 DUP5 DUP3 DUP6 ADD PUSH2 0xA1B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA6E DUP2 PUSH2 0xA5A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA87 PUSH0 DUP4 ADD DUP5 PUSH2 0xA65 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA96 DUP2 PUSH2 0x9F4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xAAF PUSH0 DUP4 ADD DUP5 PUSH2 0xA8D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xACB JUMPI PUSH2 0xACA PUSH2 0x72A JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xAD8 DUP6 DUP3 DUP7 ADD PUSH2 0x8FC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAF9 JUMPI PUSH2 0xAF8 PUSH2 0x72E JUMP JUMPDEST JUMPDEST PUSH2 0xB05 DUP6 DUP3 DUP7 ADD PUSH2 0x841 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB52 DUP3 PUSH2 0x93B JUMP JUMPDEST PUSH2 0xB5C DUP2 DUP6 PUSH2 0xB38 JUMP JUMPDEST SWAP4 POP PUSH2 0xB6C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x955 JUMP JUMPDEST PUSH2 0xB75 DUP2 PUSH2 0x73A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB8B DUP4 DUP4 PUSH2 0xB48 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xBA9 DUP3 PUSH2 0xB0F JUMP JUMPDEST PUSH2 0xBB3 DUP2 DUP6 PUSH2 0xB19 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0xBC5 DUP6 PUSH2 0xB29 JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0xC00 JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0xBE1 DUP6 DUP3 PUSH2 0xB80 JUMP JUMPDEST SWAP5 POP PUSH2 0xBEC DUP4 PUSH2 0xB93 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xBC8 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xC2A DUP2 DUP5 PUSH2 0xB9F JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F6E6C792077686974656C697374000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xC66 PUSH1 0xE DUP4 PUSH2 0x945 JUMP JUMPDEST SWAP2 POP PUSH2 0xC71 DUP3 PUSH2 0xC32 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xC93 DUP2 PUSH2 0xC5A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xCDE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xCF1 JUMPI PUSH2 0xCF0 PUSH2 0xC9A JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0xD53 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0xD18 JUMP JUMPDEST PUSH2 0xD5D DUP7 DUP4 PUSH2 0xD18 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xD98 PUSH2 0xD93 PUSH2 0xD8E DUP5 PUSH2 0x8B5 JUMP JUMPDEST PUSH2 0xD75 JUMP JUMPDEST PUSH2 0x8B5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDB1 DUP4 PUSH2 0xD7E JUMP JUMPDEST PUSH2 0xDC5 PUSH2 0xDBD DUP3 PUSH2 0xD9F JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0xD24 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0xDD9 PUSH2 0xDCD JUMP JUMPDEST PUSH2 0xDE4 DUP2 DUP5 DUP5 PUSH2 0xDA8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE07 JUMPI PUSH2 0xDFC PUSH0 DUP3 PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xDEA JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0xE4C JUMPI PUSH2 0xE1D DUP2 PUSH2 0xCF7 JUMP JUMPDEST PUSH2 0xE26 DUP5 PUSH2 0xD09 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0xE35 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0xE49 PUSH2 0xE41 DUP6 PUSH2 0xD09 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0xDE9 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xE6C PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0xE51 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xE84 DUP4 DUP4 PUSH2 0xE5D JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE9D DUP3 PUSH2 0x93B JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xEB6 JUMPI PUSH2 0xEB5 PUSH2 0x74A JUMP JUMPDEST JUMPDEST PUSH2 0xEC0 DUP3 SLOAD PUSH2 0xCC7 JUMP JUMPDEST PUSH2 0xECB DUP3 DUP3 DUP6 PUSH2 0xE0B JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0xEFC JUMPI PUSH0 DUP5 ISZERO PUSH2 0xEEA JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0xEF4 DUP6 DUP3 PUSH2 0xE79 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0xF5B JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0xF0A DUP7 PUSH2 0xCF7 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xF31 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xF0C JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0xF4E JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0xF4A PUSH1 0x1F DUP10 AND DUP3 PUSH2 0xE5D JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xF9A DUP3 PUSH2 0x8B5 JUMP JUMPDEST SWAP2 POP PUSH2 0xFA5 DUP4 PUSH2 0x8B5 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0xFBD JUMPI PUSH2 0xFBC PUSH2 0xF63 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH32 0x4F6E6C79206F776E657200000000000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1024 PUSH1 0xA DUP4 PUSH2 0x945 JUMP JUMPDEST SWAP2 POP PUSH2 0x102F DUP3 PUSH2 0xFF0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1051 DUP2 PUSH2 0x1018 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SLOAD PUSH2 0x1064 DUP2 PUSH2 0xCC7 JUMP JUMPDEST PUSH2 0x106E DUP2 DUP7 PUSH2 0x945 JUMP JUMPDEST SWAP5 POP PUSH1 0x1 DUP3 AND PUSH0 DUP2 EQ PUSH2 0x1088 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x109E JUMPI PUSH2 0x10D0 JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND DUP7 MSTORE DUP2 ISZERO ISZERO PUSH1 0x20 MUL DUP7 ADD SWAP4 POP PUSH2 0x10D0 JUMP JUMPDEST PUSH2 0x10A7 DUP6 PUSH2 0xCF7 JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10C8 JUMPI DUP2 SLOAD DUP2 DUP10 ADD MSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x10A9 JUMP JUMPDEST DUP1 DUP9 ADD SWAP6 POP POP POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x10F1 DUP2 DUP6 PUSH2 0x1058 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1105 DUP2 DUP5 PUSH2 0x97D JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 KECCAK256 SWAP16 SWAP4 PUSH21 0x86B86519F42A7B99E98624BDF59D6940324A99356 0xB7 PUSH5 0x28F953F338 PUSH5 0x736F6C6343 STOP ADDMOD AND STOP CALLER ", | |
"sourceMap": "57:1214:0:-:0;;;189:87;;;;;;;;;;221:10;213:5;;:18;;;;;;;;;;;;;;;;;;265:4;241:9;:21;251:10;241:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;57:1214;;;;;;" | |
}, | |
"deployedBytecode": { | |
"functionDebugData": { | |
"@addInfo_116": { | |
"entryPoint": 426, | |
"id": 116, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@addMember_139": { | |
"entryPoint": 1383, | |
"id": 139, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"@delMember_153": { | |
"entryPoint": 815, | |
"id": 153, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"@getInfo_70": { | |
"entryPoint": 644, | |
"id": 70, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"@listInfo_125": { | |
"entryPoint": 1614, | |
"id": 125, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"@owner_6": { | |
"entryPoint": 1074, | |
"id": 6, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"@setInfo_93": { | |
"entryPoint": 1111, | |
"id": 93, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"@whiteList_10": { | |
"entryPoint": 1045, | |
"id": 10, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"abi_decode_available_length_t_string_memory_ptr": { | |
"entryPoint": 2048, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_address": { | |
"entryPoint": 2587, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_string_memory_ptr": { | |
"entryPoint": 2113, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_uint256": { | |
"entryPoint": 2300, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_address": { | |
"entryPoint": 2607, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_string_memory_ptr": { | |
"entryPoint": 2158, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_uint256": { | |
"entryPoint": 2320, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_uint256t_string_memory_ptr": { | |
"entryPoint": 2741, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 2 | |
}, | |
"abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr": { | |
"entryPoint": 2944, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_address_to_t_address_fromStack": { | |
"entryPoint": 2701, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack": { | |
"entryPoint": 2975, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_bool_to_t_bool_fromStack": { | |
"entryPoint": 2661, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr": { | |
"entryPoint": 2888, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 2429, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 4184, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 4120, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 3162, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_uint256_to_t_uint256_fromStack": { | |
"entryPoint": 2238, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": { | |
"entryPoint": 2716, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed": { | |
"entryPoint": 3090, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": { | |
"entryPoint": 2676, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 2485, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 4313, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 4154, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 3196, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": { | |
"entryPoint": 2253, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"allocate_memory": { | |
"entryPoint": 1960, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"allocate_unbounded": { | |
"entryPoint": 1825, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"array_allocation_size_t_string_memory_ptr": { | |
"entryPoint": 1986, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr": { | |
"entryPoint": 2857, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_dataslot_t_string_storage": { | |
"entryPoint": 3319, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr": { | |
"entryPoint": 2831, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_length_t_string_memory_ptr": { | |
"entryPoint": 2363, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr": { | |
"entryPoint": 2963, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack": { | |
"entryPoint": 2841, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr": { | |
"entryPoint": 2872, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
"entryPoint": 2373, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"checked_sub_t_uint256": { | |
"entryPoint": 3984, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"clean_up_bytearray_end_slots_t_string_storage": { | |
"entryPoint": 3595, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"cleanup_t_address": { | |
"entryPoint": 2548, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_bool": { | |
"entryPoint": 2650, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_uint160": { | |
"entryPoint": 2517, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_uint256": { | |
"entryPoint": 2229, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"clear_storage_range_t_bytes1": { | |
"entryPoint": 3561, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"convert_t_uint256_to_t_uint256": { | |
"entryPoint": 3454, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": { | |
"entryPoint": 3732, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"copy_calldata_to_memory_with_cleanup": { | |
"entryPoint": 2034, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"copy_memory_to_memory_with_cleanup": { | |
"entryPoint": 2389, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"divide_by_32_ceil": { | |
"entryPoint": 3337, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"extract_byte_array_length": { | |
"entryPoint": 3271, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"extract_used_part_and_set_length_of_short_byte_array": { | |
"entryPoint": 3705, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"finalize_allocation": { | |
"entryPoint": 1911, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"identity": { | |
"entryPoint": 3445, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"mask_bytes_dynamic": { | |
"entryPoint": 3677, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"panic_error_0x11": { | |
"entryPoint": 3939, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x22": { | |
"entryPoint": 3226, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x32": { | |
"entryPoint": 4035, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x41": { | |
"entryPoint": 1866, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"prepare_store_t_uint256": { | |
"entryPoint": 3487, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": { | |
"entryPoint": 1842, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": { | |
"entryPoint": 1846, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
"entryPoint": 1838, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
"entryPoint": 1834, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"round_up_to_mul_of_32": { | |
"entryPoint": 1850, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"shift_left_dynamic": { | |
"entryPoint": 3352, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"shift_right_unsigned_dynamic": { | |
"entryPoint": 3665, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"storage_set_to_zero_t_uint256": { | |
"entryPoint": 3537, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d": { | |
"entryPoint": 4080, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b": { | |
"entryPoint": 3122, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"update_byte_slice_dynamic32": { | |
"entryPoint": 3364, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 1 | |
}, | |
"update_storage_value_t_uint256_to_t_uint256": { | |
"entryPoint": 3496, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"validator_revert_t_address": { | |
"entryPoint": 2565, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"validator_revert_t_uint256": { | |
"entryPoint": 2278, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"zero_value_for_split_t_uint256": { | |
"entryPoint": 3533, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
} | |
}, | |
"generatedSources": [ | |
{ | |
"ast": { | |
"nativeSrc": "0:19134:1", | |
"nodeType": "YulBlock", | |
"src": "0:19134:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "47:35:1", | |
"nodeType": "YulBlock", | |
"src": "47:35:1", | |
"statements": [ | |
{ | |
"nativeSrc": "57:19:1", | |
"nodeType": "YulAssignment", | |
"src": "57:19:1", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "73:2:1", | |
"nodeType": "YulLiteral", | |
"src": "73:2:1", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "67:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "67:5:1" | |
}, | |
"nativeSrc": "67:9:1", | |
"nodeType": "YulFunctionCall", | |
"src": "67:9:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "57:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "57:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "allocate_unbounded", | |
"nativeSrc": "7:75:1", | |
"nodeType": "YulFunctionDefinition", | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "40:6:1", | |
"nodeType": "YulTypedName", | |
"src": "40:6:1", | |
"type": "" | |
} | |
], | |
"src": "7:75:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "177:28:1", | |
"nodeType": "YulBlock", | |
"src": "177:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "194:1:1", | |
"nodeType": "YulLiteral", | |
"src": "194:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "197:1:1", | |
"nodeType": "YulLiteral", | |
"src": "197:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "187:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "187:6:1" | |
}, | |
"nativeSrc": "187:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "187:12:1" | |
}, | |
"nativeSrc": "187:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "187:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nativeSrc": "88:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "88:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "300:28:1", | |
"nodeType": "YulBlock", | |
"src": "300:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "317:1:1", | |
"nodeType": "YulLiteral", | |
"src": "317:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "320:1:1", | |
"nodeType": "YulLiteral", | |
"src": "320:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "310:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "310:6:1" | |
}, | |
"nativeSrc": "310:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "310:12:1" | |
}, | |
"nativeSrc": "310:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "310:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nativeSrc": "211:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "211:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "423:28:1", | |
"nodeType": "YulBlock", | |
"src": "423:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "440:1:1", | |
"nodeType": "YulLiteral", | |
"src": "440:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "443:1:1", | |
"nodeType": "YulLiteral", | |
"src": "443:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "433:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "433:6:1" | |
}, | |
"nativeSrc": "433:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "433:12:1" | |
}, | |
"nativeSrc": "433:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "433:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
"nativeSrc": "334:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "334:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "546:28:1", | |
"nodeType": "YulBlock", | |
"src": "546:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "563:1:1", | |
"nodeType": "YulLiteral", | |
"src": "563:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "566:1:1", | |
"nodeType": "YulLiteral", | |
"src": "566:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "556:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "556:6:1" | |
}, | |
"nativeSrc": "556:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "556:12:1" | |
}, | |
"nativeSrc": "556:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "556:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
"nativeSrc": "457:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "457:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "628:54:1", | |
"nodeType": "YulBlock", | |
"src": "628:54:1", | |
"statements": [ | |
{ | |
"nativeSrc": "638:38:1", | |
"nodeType": "YulAssignment", | |
"src": "638:38:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "656:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "656:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "663:2:1", | |
"nodeType": "YulLiteral", | |
"src": "663:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "652:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "652:3:1" | |
}, | |
"nativeSrc": "652:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "652:14:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "672:2:1", | |
"nodeType": "YulLiteral", | |
"src": "672:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nativeSrc": "668:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "668:3:1" | |
}, | |
"nativeSrc": "668:7:1", | |
"nodeType": "YulFunctionCall", | |
"src": "668:7:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "648:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "648:3:1" | |
}, | |
"nativeSrc": "648:28:1", | |
"nodeType": "YulFunctionCall", | |
"src": "648:28:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nativeSrc": "638:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "638:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "round_up_to_mul_of_32", | |
"nativeSrc": "580:102:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "611:5:1", | |
"nodeType": "YulTypedName", | |
"src": "611:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nativeSrc": "621:6:1", | |
"nodeType": "YulTypedName", | |
"src": "621:6:1", | |
"type": "" | |
} | |
], | |
"src": "580:102:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "716:152:1", | |
"nodeType": "YulBlock", | |
"src": "716:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "733:1:1", | |
"nodeType": "YulLiteral", | |
"src": "733:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "736:77:1", | |
"nodeType": "YulLiteral", | |
"src": "736:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "726:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "726:6:1" | |
}, | |
"nativeSrc": "726:88:1", | |
"nodeType": "YulFunctionCall", | |
"src": "726:88:1" | |
}, | |
"nativeSrc": "726:88:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "726:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "830:1:1", | |
"nodeType": "YulLiteral", | |
"src": "830:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "833:4:1", | |
"nodeType": "YulLiteral", | |
"src": "833:4:1", | |
"type": "", | |
"value": "0x41" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "823:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "823:6:1" | |
}, | |
"nativeSrc": "823:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "823:15:1" | |
}, | |
"nativeSrc": "823:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "823:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "854:1:1", | |
"nodeType": "YulLiteral", | |
"src": "854:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "857:4:1", | |
"nodeType": "YulLiteral", | |
"src": "857:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "847:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "847:6:1" | |
}, | |
"nativeSrc": "847:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "847:15:1" | |
}, | |
"nativeSrc": "847:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "847:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x41", | |
"nativeSrc": "688:180:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "688:180:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "917:238:1", | |
"nodeType": "YulBlock", | |
"src": "917:238:1", | |
"statements": [ | |
{ | |
"nativeSrc": "927:58:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "927:58:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "949:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "949:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "size", | |
"nativeSrc": "979:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "979:4:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nativeSrc": "957:21:1", | |
"nodeType": "YulIdentifier", | |
"src": "957:21:1" | |
}, | |
"nativeSrc": "957:27:1", | |
"nodeType": "YulFunctionCall", | |
"src": "957:27:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "945:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "945:3:1" | |
}, | |
"nativeSrc": "945:40:1", | |
"nodeType": "YulFunctionCall", | |
"src": "945:40:1" | |
}, | |
"variables": [ | |
{ | |
"name": "newFreePtr", | |
"nativeSrc": "931:10:1", | |
"nodeType": "YulTypedName", | |
"src": "931:10:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1096:22:1", | |
"nodeType": "YulBlock", | |
"src": "1096:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nativeSrc": "1098:16:1", | |
"nodeType": "YulIdentifier", | |
"src": "1098:16:1" | |
}, | |
"nativeSrc": "1098:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1098:18:1" | |
}, | |
"nativeSrc": "1098:18:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1098:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nativeSrc": "1039:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "1039:10:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1051:18:1", | |
"nodeType": "YulLiteral", | |
"src": "1051:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "1036:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "1036:2:1" | |
}, | |
"nativeSrc": "1036:34:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1036:34:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nativeSrc": "1075:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "1075:10:1" | |
}, | |
{ | |
"name": "memPtr", | |
"nativeSrc": "1087:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1087:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "1072:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "1072:2:1" | |
}, | |
"nativeSrc": "1072:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1072:22:1" | |
} | |
], | |
"functionName": { | |
"name": "or", | |
"nativeSrc": "1033:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "1033:2:1" | |
}, | |
"nativeSrc": "1033:62:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1033:62:1" | |
}, | |
"nativeSrc": "1030:88:1", | |
"nodeType": "YulIf", | |
"src": "1030:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1134:2:1", | |
"nodeType": "YulLiteral", | |
"src": "1134:2:1", | |
"type": "", | |
"value": "64" | |
}, | |
{ | |
"name": "newFreePtr", | |
"nativeSrc": "1138:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "1138:10:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "1127:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1127:6:1" | |
}, | |
"nativeSrc": "1127:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1127:22:1" | |
}, | |
"nativeSrc": "1127:22:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1127:22:1" | |
} | |
] | |
}, | |
"name": "finalize_allocation", | |
"nativeSrc": "874:281:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "903:6:1", | |
"nodeType": "YulTypedName", | |
"src": "903:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "size", | |
"nativeSrc": "911:4:1", | |
"nodeType": "YulTypedName", | |
"src": "911:4:1", | |
"type": "" | |
} | |
], | |
"src": "874:281:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1202:88:1", | |
"nodeType": "YulBlock", | |
"src": "1202:88:1", | |
"statements": [ | |
{ | |
"nativeSrc": "1212:30:1", | |
"nodeType": "YulAssignment", | |
"src": "1212:30:1", | |
"value": { | |
"arguments": [], | |
"functionName": { | |
"name": "allocate_unbounded", | |
"nativeSrc": "1222:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "1222:18:1" | |
}, | |
"nativeSrc": "1222:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1222:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "1212:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1212:6:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "1271:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1271:6:1" | |
}, | |
{ | |
"name": "size", | |
"nativeSrc": "1279:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "1279:4:1" | |
} | |
], | |
"functionName": { | |
"name": "finalize_allocation", | |
"nativeSrc": "1251:19:1", | |
"nodeType": "YulIdentifier", | |
"src": "1251:19:1" | |
}, | |
"nativeSrc": "1251:33:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1251:33:1" | |
}, | |
"nativeSrc": "1251:33:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1251:33:1" | |
} | |
] | |
}, | |
"name": "allocate_memory", | |
"nativeSrc": "1161:129:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "size", | |
"nativeSrc": "1186:4:1", | |
"nodeType": "YulTypedName", | |
"src": "1186:4:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "1195:6:1", | |
"nodeType": "YulTypedName", | |
"src": "1195:6:1", | |
"type": "" | |
} | |
], | |
"src": "1161:129:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1363:241:1", | |
"nodeType": "YulBlock", | |
"src": "1363:241:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "1468:22:1", | |
"nodeType": "YulBlock", | |
"src": "1468:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nativeSrc": "1470:16:1", | |
"nodeType": "YulIdentifier", | |
"src": "1470:16:1" | |
}, | |
"nativeSrc": "1470:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1470:18:1" | |
}, | |
"nativeSrc": "1470:18:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1470:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "1440:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1440:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1448:18:1", | |
"nodeType": "YulLiteral", | |
"src": "1448:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "1437:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "1437:2:1" | |
}, | |
"nativeSrc": "1437:30:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1437:30:1" | |
}, | |
"nativeSrc": "1434:56:1", | |
"nodeType": "YulIf", | |
"src": "1434:56:1" | |
}, | |
{ | |
"nativeSrc": "1500:37:1", | |
"nodeType": "YulAssignment", | |
"src": "1500:37:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "1530:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1530:6:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nativeSrc": "1508:21:1", | |
"nodeType": "YulIdentifier", | |
"src": "1508:21:1" | |
}, | |
"nativeSrc": "1508:29:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1508:29:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nativeSrc": "1500:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "1500:4:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "1574:23:1", | |
"nodeType": "YulAssignment", | |
"src": "1574:23:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "size", | |
"nativeSrc": "1586:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "1586:4:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1592:4:1", | |
"nodeType": "YulLiteral", | |
"src": "1592:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "1582:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1582:3:1" | |
}, | |
"nativeSrc": "1582:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1582:15:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nativeSrc": "1574:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "1574:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_allocation_size_t_string_memory_ptr", | |
"nativeSrc": "1296:308:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "length", | |
"nativeSrc": "1347:6:1", | |
"nodeType": "YulTypedName", | |
"src": "1347:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "size", | |
"nativeSrc": "1358:4:1", | |
"nodeType": "YulTypedName", | |
"src": "1358:4:1", | |
"type": "" | |
} | |
], | |
"src": "1296:308:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1674:82:1", | |
"nodeType": "YulBlock", | |
"src": "1674:82:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "1697:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1697:3:1" | |
}, | |
{ | |
"name": "src", | |
"nativeSrc": "1702:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1702:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "1707:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1707:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldatacopy", | |
"nativeSrc": "1684:12:1", | |
"nodeType": "YulIdentifier", | |
"src": "1684:12:1" | |
}, | |
"nativeSrc": "1684:30:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1684:30:1" | |
}, | |
"nativeSrc": "1684:30:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1684:30:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "1734:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1734:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "1739:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1739:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "1730:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1730:3:1" | |
}, | |
"nativeSrc": "1730:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1730:16:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1748:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1748:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "1723:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1723:6:1" | |
}, | |
"nativeSrc": "1723:27:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1723:27:1" | |
}, | |
"nativeSrc": "1723:27:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1723:27:1" | |
} | |
] | |
}, | |
"name": "copy_calldata_to_memory_with_cleanup", | |
"nativeSrc": "1610:146:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nativeSrc": "1656:3:1", | |
"nodeType": "YulTypedName", | |
"src": "1656:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nativeSrc": "1661:3:1", | |
"nodeType": "YulTypedName", | |
"src": "1661:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "1666:6:1", | |
"nodeType": "YulTypedName", | |
"src": "1666:6:1", | |
"type": "" | |
} | |
], | |
"src": "1610:146:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1846:341:1", | |
"nodeType": "YulBlock", | |
"src": "1846:341:1", | |
"statements": [ | |
{ | |
"nativeSrc": "1856:75:1", | |
"nodeType": "YulAssignment", | |
"src": "1856:75:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "1923:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1923:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_allocation_size_t_string_memory_ptr", | |
"nativeSrc": "1881:41:1", | |
"nodeType": "YulIdentifier", | |
"src": "1881:41:1" | |
}, | |
"nativeSrc": "1881:49:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1881:49:1" | |
} | |
], | |
"functionName": { | |
"name": "allocate_memory", | |
"nativeSrc": "1865:15:1", | |
"nodeType": "YulIdentifier", | |
"src": "1865:15:1" | |
}, | |
"nativeSrc": "1865:66:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1865:66:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nativeSrc": "1856:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1856:5:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nativeSrc": "1947:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1947:5:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "1954:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1954:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "1940:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1940:6:1" | |
}, | |
"nativeSrc": "1940:21:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1940:21:1" | |
}, | |
"nativeSrc": "1940:21:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1940:21:1" | |
}, | |
{ | |
"nativeSrc": "1970:27:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "1970:27:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nativeSrc": "1985:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1985:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1992:4:1", | |
"nodeType": "YulLiteral", | |
"src": "1992:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "1981:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1981:3:1" | |
}, | |
"nativeSrc": "1981:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1981:16:1" | |
}, | |
"variables": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "1974:3:1", | |
"nodeType": "YulTypedName", | |
"src": "1974:3:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2035:83:1", | |
"nodeType": "YulBlock", | |
"src": "2035:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
"nativeSrc": "2037:77:1", | |
"nodeType": "YulIdentifier", | |
"src": "2037:77:1" | |
}, | |
"nativeSrc": "2037:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2037:79:1" | |
}, | |
"nativeSrc": "2037:79:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2037:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "2016:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2016:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "2021:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2021:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2012:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2012:3:1" | |
}, | |
"nativeSrc": "2012:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2012:16:1" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "2030:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2030:3:1" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "2009:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "2009:2:1" | |
}, | |
"nativeSrc": "2009:25:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2009:25:1" | |
}, | |
"nativeSrc": "2006:112:1", | |
"nodeType": "YulIf", | |
"src": "2006:112:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "2164:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2164:3:1" | |
}, | |
{ | |
"name": "dst", | |
"nativeSrc": "2169:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2169:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "2174:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2174:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_calldata_to_memory_with_cleanup", | |
"nativeSrc": "2127:36:1", | |
"nodeType": "YulIdentifier", | |
"src": "2127:36:1" | |
}, | |
"nativeSrc": "2127:54:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2127:54:1" | |
}, | |
"nativeSrc": "2127:54:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2127:54:1" | |
} | |
] | |
}, | |
"name": "abi_decode_available_length_t_string_memory_ptr", | |
"nativeSrc": "1762:425:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nativeSrc": "1819:3:1", | |
"nodeType": "YulTypedName", | |
"src": "1819:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "1824:6:1", | |
"nodeType": "YulTypedName", | |
"src": "1824:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "1832:3:1", | |
"nodeType": "YulTypedName", | |
"src": "1832:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nativeSrc": "1840:5:1", | |
"nodeType": "YulTypedName", | |
"src": "1840:5:1", | |
"type": "" | |
} | |
], | |
"src": "1762:425:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2269:278:1", | |
"nodeType": "YulBlock", | |
"src": "2269:278:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "2318:83:1", | |
"nodeType": "YulBlock", | |
"src": "2318:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
"nativeSrc": "2320:77:1", | |
"nodeType": "YulIdentifier", | |
"src": "2320:77:1" | |
}, | |
"nativeSrc": "2320:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2320:79:1" | |
}, | |
"nativeSrc": "2320:79:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2320:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "2297:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2297:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2305:4:1", | |
"nodeType": "YulLiteral", | |
"src": "2305:4:1", | |
"type": "", | |
"value": "0x1f" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2293:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2293:3:1" | |
}, | |
"nativeSrc": "2293:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2293:17:1" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "2312:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2312:3:1" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nativeSrc": "2289:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2289:3:1" | |
}, | |
"nativeSrc": "2289:27:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2289:27:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nativeSrc": "2282:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2282:6:1" | |
}, | |
"nativeSrc": "2282:35:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2282:35:1" | |
}, | |
"nativeSrc": "2279:122:1", | |
"nodeType": "YulIf", | |
"src": "2279:122:1" | |
}, | |
{ | |
"nativeSrc": "2410:34:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "2410:34:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "2437:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2437:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nativeSrc": "2424:12:1", | |
"nodeType": "YulIdentifier", | |
"src": "2424:12:1" | |
}, | |
"nativeSrc": "2424:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2424:20:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "2414:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2414:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "2453:88:1", | |
"nodeType": "YulAssignment", | |
"src": "2453:88:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "2514:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2514:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2522:4:1", | |
"nodeType": "YulLiteral", | |
"src": "2522:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2510:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2510:3:1" | |
}, | |
"nativeSrc": "2510:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2510:17:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "2529:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2529:6:1" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "2537:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2537:3:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_available_length_t_string_memory_ptr", | |
"nativeSrc": "2462:47:1", | |
"nodeType": "YulIdentifier", | |
"src": "2462:47:1" | |
}, | |
"nativeSrc": "2462:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2462:79:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nativeSrc": "2453:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "2453:5:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_t_string_memory_ptr", | |
"nativeSrc": "2207:340:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "2247:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2247:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "2255:3:1", | |
"nodeType": "YulTypedName", | |
"src": "2255:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nativeSrc": "2263:5:1", | |
"nodeType": "YulTypedName", | |
"src": "2263:5:1", | |
"type": "" | |
} | |
], | |
"src": "2207:340:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2629:433:1", | |
"nodeType": "YulBlock", | |
"src": "2629:433:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "2675:83:1", | |
"nodeType": "YulBlock", | |
"src": "2675:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nativeSrc": "2677:77:1", | |
"nodeType": "YulIdentifier", | |
"src": "2677:77:1" | |
}, | |
"nativeSrc": "2677:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2677:79:1" | |
}, | |
"nativeSrc": "2677:79:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2677:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "2650:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "2650:7:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "2659:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "2659:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "2646:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2646:3:1" | |
}, | |
"nativeSrc": "2646:23:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2646:23:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2671:2:1", | |
"nodeType": "YulLiteral", | |
"src": "2671:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nativeSrc": "2642:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2642:3:1" | |
}, | |
"nativeSrc": "2642:32:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2642:32:1" | |
}, | |
"nativeSrc": "2639:119:1", | |
"nodeType": "YulIf", | |
"src": "2639:119:1" | |
}, | |
{ | |
"nativeSrc": "2768:287:1", | |
"nodeType": "YulBlock", | |
"src": "2768:287:1", | |
"statements": [ | |
{ | |
"nativeSrc": "2783:45:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "2783:45:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "2814:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "2814:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2825:1:1", | |
"nodeType": "YulLiteral", | |
"src": "2825:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2810:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2810:3:1" | |
}, | |
"nativeSrc": "2810:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2810:17:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nativeSrc": "2797:12:1", | |
"nodeType": "YulIdentifier", | |
"src": "2797:12:1" | |
}, | |
"nativeSrc": "2797:31:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2797:31:1" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "2787:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2787:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2875:83:1", | |
"nodeType": "YulBlock", | |
"src": "2875:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nativeSrc": "2877:77:1", | |
"nodeType": "YulIdentifier", | |
"src": "2877:77:1" | |
}, | |
"nativeSrc": "2877:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2877:79:1" | |
}, | |
"nativeSrc": "2877:79:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2877:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "2847:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2847:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2855:18:1", | |
"nodeType": "YulLiteral", | |
"src": "2855:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "2844:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "2844:2:1" | |
}, | |
"nativeSrc": "2844:30:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2844:30:1" | |
}, | |
"nativeSrc": "2841:117:1", | |
"nodeType": "YulIf", | |
"src": "2841:117:1" | |
}, | |
{ | |
"nativeSrc": "2972:73:1", | |
"nodeType": "YulAssignment", | |
"src": "2972:73:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "3017:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "3017:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "3028:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3028:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "3013:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3013:3:1" | |
}, | |
"nativeSrc": "3013:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3013:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "3037:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "3037:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_string_memory_ptr", | |
"nativeSrc": "2982:30:1", | |
"nodeType": "YulIdentifier", | |
"src": "2982:30:1" | |
}, | |
"nativeSrc": "2982:63:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2982:63:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "2972:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2972:6:1" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_string_memory_ptr", | |
"nativeSrc": "2553:509:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "2599:9:1", | |
"nodeType": "YulTypedName", | |
"src": "2599:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "2610:7:1", | |
"nodeType": "YulTypedName", | |
"src": "2610:7:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "2622:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2622:6:1", | |
"type": "" | |
} | |
], | |
"src": "2553:509:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3113:32:1", | |
"nodeType": "YulBlock", | |
"src": "3113:32:1", | |
"statements": [ | |
{ | |
"nativeSrc": "3123:16:1", | |
"nodeType": "YulAssignment", | |
"src": "3123:16:1", | |
"value": { | |
"name": "value", | |
"nativeSrc": "3134:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "3134:5:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "3123:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "3123:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint256", | |
"nativeSrc": "3068:77:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "3095:5:1", | |
"nodeType": "YulTypedName", | |
"src": "3095:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "3105:7:1", | |
"nodeType": "YulTypedName", | |
"src": "3105:7:1", | |
"type": "" | |
} | |
], | |
"src": "3068:77:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3216:53:1", | |
"nodeType": "YulBlock", | |
"src": "3216:53:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "3233:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3233:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "3256:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "3256:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nativeSrc": "3238:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "3238:17:1" | |
}, | |
"nativeSrc": "3238:24:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3238:24:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "3226:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3226:6:1" | |
}, | |
"nativeSrc": "3226:37:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3226:37:1" | |
}, | |
"nativeSrc": "3226:37:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "3226:37:1" | |
} | |
] | |
}, | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nativeSrc": "3151:118:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "3204:5:1", | |
"nodeType": "YulTypedName", | |
"src": "3204:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "3211:3:1", | |
"nodeType": "YulTypedName", | |
"src": "3211:3:1", | |
"type": "" | |
} | |
], | |
"src": "3151:118:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3373:124:1", | |
"nodeType": "YulBlock", | |
"src": "3373:124:1", | |
"statements": [ | |
{ | |
"nativeSrc": "3383:26:1", | |
"nodeType": "YulAssignment", | |
"src": "3383:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "3395:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "3395:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "3406:2:1", | |
"nodeType": "YulLiteral", | |
"src": "3406:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "3391:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3391:3:1" | |
}, | |
"nativeSrc": "3391:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3391:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "3383:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "3383:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "3463:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3463:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "3476:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "3476:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "3487:1:1", | |
"nodeType": "YulLiteral", | |
"src": "3487:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "3472:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3472:3:1" | |
}, | |
"nativeSrc": "3472:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3472:17:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nativeSrc": "3419:43:1", | |
"nodeType": "YulIdentifier", | |
"src": "3419:43:1" | |
}, | |
"nativeSrc": "3419:71:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3419:71:1" | |
}, | |
"nativeSrc": "3419:71:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "3419:71:1" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", | |
"nativeSrc": "3275:222:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "3345:9:1", | |
"nodeType": "YulTypedName", | |
"src": "3345:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nativeSrc": "3357:6:1", | |
"nodeType": "YulTypedName", | |
"src": "3357:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "3368:4:1", | |
"nodeType": "YulTypedName", | |
"src": "3368:4:1", | |
"type": "" | |
} | |
], | |
"src": "3275:222:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3546:79:1", | |
"nodeType": "YulBlock", | |
"src": "3546:79:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "3603:16:1", | |
"nodeType": "YulBlock", | |
"src": "3603:16:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "3612:1:1", | |
"nodeType": "YulLiteral", | |
"src": "3612:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "3615:1:1", | |
"nodeType": "YulLiteral", | |
"src": "3615:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "3605:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3605:6:1" | |
}, | |
"nativeSrc": "3605:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3605:12:1" | |
}, | |
"nativeSrc": "3605:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "3605:12:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "3569:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "3569:5:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "3594:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "3594:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nativeSrc": "3576:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "3576:17:1" | |
}, | |
"nativeSrc": "3576:24:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3576:24:1" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nativeSrc": "3566:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "3566:2:1" | |
}, | |
"nativeSrc": "3566:35:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3566:35:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nativeSrc": "3559:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3559:6:1" | |
}, | |
"nativeSrc": "3559:43:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3559:43:1" | |
}, | |
"nativeSrc": "3556:63:1", | |
"nodeType": "YulIf", | |
"src": "3556:63:1" | |
} | |
] | |
}, | |
"name": "validator_revert_t_uint256", | |
"nativeSrc": "3503:122:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "3539:5:1", | |
"nodeType": "YulTypedName", | |
"src": "3539:5:1", | |
"type": "" | |
} | |
], | |
"src": "3503:122:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3683:87:1", | |
"nodeType": "YulBlock", | |
"src": "3683:87:1", | |
"statements": [ | |
{ | |
"nativeSrc": "3693:29:1", | |
"nodeType": "YulAssignment", | |
"src": "3693:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "3715:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3715:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nativeSrc": "3702:12:1", | |
"nodeType": "YulIdentifier", | |
"src": "3702:12:1" | |
}, | |
"nativeSrc": "3702:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3702:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nativeSrc": "3693:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "3693:5:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "3758:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "3758:5:1" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_uint256", | |
"nativeSrc": "3731:26:1", | |
"nodeType": "YulIdentifier", | |
"src": "3731:26:1" | |
}, | |
"nativeSrc": "3731:33:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3731:33:1" | |
}, | |
"nativeSrc": "3731:33:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "3731:33:1" | |
} | |
] | |
}, | |
"name": "abi_decode_t_uint256", | |
"nativeSrc": "3631:139:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "3661:6:1", | |
"nodeType": "YulTypedName", | |
"src": "3661:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "3669:3:1", | |
"nodeType": "YulTypedName", | |
"src": "3669:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nativeSrc": "3677:5:1", | |
"nodeType": "YulTypedName", | |
"src": "3677:5:1", | |
"type": "" | |
} | |
], | |
"src": "3631:139:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3842:263:1", | |
"nodeType": "YulBlock", | |
"src": "3842:263:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "3888:83:1", | |
"nodeType": "YulBlock", | |
"src": "3888:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nativeSrc": "3890:77:1", | |
"nodeType": "YulIdentifier", | |
"src": "3890:77:1" | |
}, | |
"nativeSrc": "3890:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3890:79:1" | |
}, | |
"nativeSrc": "3890:79:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "3890:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "3863:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "3863:7:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "3872:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "3872:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "3859:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3859:3:1" | |
}, | |
"nativeSrc": "3859:23:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3859:23:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "3884:2:1", | |
"nodeType": "YulLiteral", | |
"src": "3884:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nativeSrc": "3855:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "3855:3:1" | |
}, | |
"nativeSrc": "3855:32:1", | |
"nodeType": "YulFunctionCall", | |
"src": "3855:32:1" | |
}, | |
"nativeSrc": "3852:119:1", | |
"nodeType": "YulIf", | |
"src": "3852:119:1" | |
}, | |
{ | |
"nativeSrc": "3981:117:1", | |
"nodeType": "YulBlock", | |
"src": "3981:117:1", | |
"statements": [ | |
{ | |
"nativeSrc": "3996:15:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "3996:15:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "4010:1:1", | |
"nodeType": "YulLiteral", | |
"src": "4010:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "4000:6:1", | |
"nodeType": "YulTypedName", | |
"src": "4000:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "4025:63:1", | |
"nodeType": "YulAssignment", | |
"src": "4025:63:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "4060:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "4060:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "4071:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4071:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "4056:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4056:3:1" | |
}, | |
"nativeSrc": "4056:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4056:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "4080:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "4080:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nativeSrc": "4035:20:1", | |
"nodeType": "YulIdentifier", | |
"src": "4035:20:1" | |
}, | |
"nativeSrc": "4035:53:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4035:53:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "4025:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4025:6:1" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_uint256", | |
"nativeSrc": "3776:329:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "3812:9:1", | |
"nodeType": "YulTypedName", | |
"src": "3812:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "3823:7:1", | |
"nodeType": "YulTypedName", | |
"src": "3823:7:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "3835:6:1", | |
"nodeType": "YulTypedName", | |
"src": "3835:6:1", | |
"type": "" | |
} | |
], | |
"src": "3776:329:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4170:40:1", | |
"nodeType": "YulBlock", | |
"src": "4170:40:1", | |
"statements": [ | |
{ | |
"nativeSrc": "4181:22:1", | |
"nodeType": "YulAssignment", | |
"src": "4181:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "4197:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "4197:5:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "4191:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "4191:5:1" | |
}, | |
"nativeSrc": "4191:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4191:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nativeSrc": "4181:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4181:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_length_t_string_memory_ptr", | |
"nativeSrc": "4111:99:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "4153:5:1", | |
"nodeType": "YulTypedName", | |
"src": "4153:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "4163:6:1", | |
"nodeType": "YulTypedName", | |
"src": "4163:6:1", | |
"type": "" | |
} | |
], | |
"src": "4111:99:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4312:73:1", | |
"nodeType": "YulBlock", | |
"src": "4312:73:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4329:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4329:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "4334:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4334:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "4322:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4322:6:1" | |
}, | |
"nativeSrc": "4322:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4322:19:1" | |
}, | |
"nativeSrc": "4322:19:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "4322:19:1" | |
}, | |
{ | |
"nativeSrc": "4350:29:1", | |
"nodeType": "YulAssignment", | |
"src": "4350:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4369:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4369:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4374:4:1", | |
"nodeType": "YulLiteral", | |
"src": "4374:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "4365:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4365:3:1" | |
}, | |
"nativeSrc": "4365:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4365:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "4350:11:1", | |
"nodeType": "YulIdentifier", | |
"src": "4350:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nativeSrc": "4216:169:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4284:3:1", | |
"nodeType": "YulTypedName", | |
"src": "4284:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "4289:6:1", | |
"nodeType": "YulTypedName", | |
"src": "4289:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "4300:11:1", | |
"nodeType": "YulTypedName", | |
"src": "4300:11:1", | |
"type": "" | |
} | |
], | |
"src": "4216:169:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4453:184:1", | |
"nodeType": "YulBlock", | |
"src": "4453:184:1", | |
"statements": [ | |
{ | |
"nativeSrc": "4463:10:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "4463:10:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "4472:1:1", | |
"nodeType": "YulLiteral", | |
"src": "4472:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nativeSrc": "4467:1:1", | |
"nodeType": "YulTypedName", | |
"src": "4467:1:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4532:63:1", | |
"nodeType": "YulBlock", | |
"src": "4532:63:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "4557:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4557:3:1" | |
}, | |
{ | |
"name": "i", | |
"nativeSrc": "4562:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "4562:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "4553:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4553:3:1" | |
}, | |
"nativeSrc": "4553:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4553:11:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "4576:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4576:3:1" | |
}, | |
{ | |
"name": "i", | |
"nativeSrc": "4581:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "4581:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "4572:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4572:3:1" | |
}, | |
"nativeSrc": "4572:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4572:11:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "4566:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "4566:5:1" | |
}, | |
"nativeSrc": "4566:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4566:18:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "4546:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4546:6:1" | |
}, | |
"nativeSrc": "4546:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4546:39:1" | |
}, | |
"nativeSrc": "4546:39:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "4546:39:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "4493:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "4493:1:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "4496:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4496:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "4490:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "4490:2:1" | |
}, | |
"nativeSrc": "4490:13:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4490:13:1" | |
}, | |
"nativeSrc": "4482:113:1", | |
"nodeType": "YulForLoop", | |
"post": { | |
"nativeSrc": "4504:19:1", | |
"nodeType": "YulBlock", | |
"src": "4504:19:1", | |
"statements": [ | |
{ | |
"nativeSrc": "4506:15:1", | |
"nodeType": "YulAssignment", | |
"src": "4506:15:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "4515:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "4515:1:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4518:2:1", | |
"nodeType": "YulLiteral", | |
"src": "4518:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "4511:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4511:3:1" | |
}, | |
"nativeSrc": "4511:10:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4511:10:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nativeSrc": "4506:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "4506:1:1" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nativeSrc": "4486:3:1", | |
"nodeType": "YulBlock", | |
"src": "4486:3:1", | |
"statements": [] | |
}, | |
"src": "4482:113:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "4615:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4615:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "4620:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4620:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "4611:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4611:3:1" | |
}, | |
"nativeSrc": "4611:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4611:16:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4629:1:1", | |
"nodeType": "YulLiteral", | |
"src": "4629:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "4604:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4604:6:1" | |
}, | |
"nativeSrc": "4604:27:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4604:27:1" | |
}, | |
"nativeSrc": "4604:27:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "4604:27:1" | |
} | |
] | |
}, | |
"name": "copy_memory_to_memory_with_cleanup", | |
"nativeSrc": "4391:246:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nativeSrc": "4435:3:1", | |
"nodeType": "YulTypedName", | |
"src": "4435:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nativeSrc": "4440:3:1", | |
"nodeType": "YulTypedName", | |
"src": "4440:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "4445:6:1", | |
"nodeType": "YulTypedName", | |
"src": "4445:6:1", | |
"type": "" | |
} | |
], | |
"src": "4391:246:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "4735:285:1", | |
"nodeType": "YulBlock", | |
"src": "4735:285:1", | |
"statements": [ | |
{ | |
"nativeSrc": "4745:53:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "4745:53:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "4792:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "4792:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nativeSrc": "4759:32:1", | |
"nodeType": "YulIdentifier", | |
"src": "4759:32:1" | |
}, | |
"nativeSrc": "4759:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4759:39:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "4749:6:1", | |
"nodeType": "YulTypedName", | |
"src": "4749:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "4807:78:1", | |
"nodeType": "YulAssignment", | |
"src": "4807:78:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4873:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4873:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "4878:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4878:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nativeSrc": "4814:58:1", | |
"nodeType": "YulIdentifier", | |
"src": "4814:58:1" | |
}, | |
"nativeSrc": "4814:71:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4814:71:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4807:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4807:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "4933:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "4933:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "4940:4:1", | |
"nodeType": "YulLiteral", | |
"src": "4940:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "4929:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4929:3:1" | |
}, | |
"nativeSrc": "4929:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4929:16:1" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "4947:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4947:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "4952:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "4952:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory_with_cleanup", | |
"nativeSrc": "4894:34:1", | |
"nodeType": "YulIdentifier", | |
"src": "4894:34:1" | |
}, | |
"nativeSrc": "4894:65:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4894:65:1" | |
}, | |
"nativeSrc": "4894:65:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "4894:65:1" | |
}, | |
{ | |
"nativeSrc": "4968:46:1", | |
"nodeType": "YulAssignment", | |
"src": "4968:46:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "4979:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4979:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "5006:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "5006:6:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nativeSrc": "4984:21:1", | |
"nodeType": "YulIdentifier", | |
"src": "4984:21:1" | |
}, | |
"nativeSrc": "4984:29:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4984:29:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "4975:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4975:3:1" | |
}, | |
"nativeSrc": "4975:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "4975:39:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nativeSrc": "4968:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "4968:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "4643:377:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "4716:5:1", | |
"nodeType": "YulTypedName", | |
"src": "4716:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "4723:3:1", | |
"nodeType": "YulTypedName", | |
"src": "4723:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nativeSrc": "4731:3:1", | |
"nodeType": "YulTypedName", | |
"src": "4731:3:1", | |
"type": "" | |
} | |
], | |
"src": "4643:377:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5144:195:1", | |
"nodeType": "YulBlock", | |
"src": "5144:195:1", | |
"statements": [ | |
{ | |
"nativeSrc": "5154:26:1", | |
"nodeType": "YulAssignment", | |
"src": "5154:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "5166:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "5166:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "5177:2:1", | |
"nodeType": "YulLiteral", | |
"src": "5177:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "5162:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5162:3:1" | |
}, | |
"nativeSrc": "5162:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5162:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "5154:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "5154:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "5201:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "5201:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "5212:1:1", | |
"nodeType": "YulLiteral", | |
"src": "5212:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "5197:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5197:3:1" | |
}, | |
"nativeSrc": "5197:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5197:17:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "5220:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "5220:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "5226:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "5226:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "5216:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5216:3:1" | |
}, | |
"nativeSrc": "5216:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5216:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "5190:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "5190:6:1" | |
}, | |
"nativeSrc": "5190:47:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5190:47:1" | |
}, | |
"nativeSrc": "5190:47:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "5190:47:1" | |
}, | |
{ | |
"nativeSrc": "5246:86:1", | |
"nodeType": "YulAssignment", | |
"src": "5246:86:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "5318:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "5318:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nativeSrc": "5327:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "5327:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "5254:63:1", | |
"nodeType": "YulIdentifier", | |
"src": "5254:63:1" | |
}, | |
"nativeSrc": "5254:78:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5254:78:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "5246:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "5246:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", | |
"nativeSrc": "5026:313:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "5116:9:1", | |
"nodeType": "YulTypedName", | |
"src": "5116:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nativeSrc": "5128:6:1", | |
"nodeType": "YulTypedName", | |
"src": "5128:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "5139:4:1", | |
"nodeType": "YulTypedName", | |
"src": "5139:4:1", | |
"type": "" | |
} | |
], | |
"src": "5026:313:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5390:81:1", | |
"nodeType": "YulBlock", | |
"src": "5390:81:1", | |
"statements": [ | |
{ | |
"nativeSrc": "5400:65:1", | |
"nodeType": "YulAssignment", | |
"src": "5400:65:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5415:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5415:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "5422:42:1", | |
"nodeType": "YulLiteral", | |
"src": "5422:42:1", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "5411:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5411:3:1" | |
}, | |
"nativeSrc": "5411:54:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5411:54:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "5400:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "5400:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint160", | |
"nativeSrc": "5345:126:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5372:5:1", | |
"nodeType": "YulTypedName", | |
"src": "5372:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "5382:7:1", | |
"nodeType": "YulTypedName", | |
"src": "5382:7:1", | |
"type": "" | |
} | |
], | |
"src": "5345:126:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5522:51:1", | |
"nodeType": "YulBlock", | |
"src": "5522:51:1", | |
"statements": [ | |
{ | |
"nativeSrc": "5532:35:1", | |
"nodeType": "YulAssignment", | |
"src": "5532:35:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5561:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5561:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint160", | |
"nativeSrc": "5543:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "5543:17:1" | |
}, | |
"nativeSrc": "5543:24:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5543:24:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "5532:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "5532:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_address", | |
"nativeSrc": "5477:96:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5504:5:1", | |
"nodeType": "YulTypedName", | |
"src": "5504:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "5514:7:1", | |
"nodeType": "YulTypedName", | |
"src": "5514:7:1", | |
"type": "" | |
} | |
], | |
"src": "5477:96:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5622:79:1", | |
"nodeType": "YulBlock", | |
"src": "5622:79:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "5679:16:1", | |
"nodeType": "YulBlock", | |
"src": "5679:16:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "5688:1:1", | |
"nodeType": "YulLiteral", | |
"src": "5688:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "5691:1:1", | |
"nodeType": "YulLiteral", | |
"src": "5691:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "5681:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "5681:6:1" | |
}, | |
"nativeSrc": "5681:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5681:12:1" | |
}, | |
"nativeSrc": "5681:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "5681:12:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5645:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5645:5:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5670:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5670:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nativeSrc": "5652:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "5652:17:1" | |
}, | |
"nativeSrc": "5652:24:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5652:24:1" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nativeSrc": "5642:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "5642:2:1" | |
}, | |
"nativeSrc": "5642:35:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5642:35:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nativeSrc": "5635:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "5635:6:1" | |
}, | |
"nativeSrc": "5635:43:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5635:43:1" | |
}, | |
"nativeSrc": "5632:63:1", | |
"nodeType": "YulIf", | |
"src": "5632:63:1" | |
} | |
] | |
}, | |
"name": "validator_revert_t_address", | |
"nativeSrc": "5579:122:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5615:5:1", | |
"nodeType": "YulTypedName", | |
"src": "5615:5:1", | |
"type": "" | |
} | |
], | |
"src": "5579:122:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5759:87:1", | |
"nodeType": "YulBlock", | |
"src": "5759:87:1", | |
"statements": [ | |
{ | |
"nativeSrc": "5769:29:1", | |
"nodeType": "YulAssignment", | |
"src": "5769:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "5791:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "5791:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nativeSrc": "5778:12:1", | |
"nodeType": "YulIdentifier", | |
"src": "5778:12:1" | |
}, | |
"nativeSrc": "5778:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5778:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5769:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5769:5:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5834:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "5834:5:1" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_address", | |
"nativeSrc": "5807:26:1", | |
"nodeType": "YulIdentifier", | |
"src": "5807:26:1" | |
}, | |
"nativeSrc": "5807:33:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5807:33:1" | |
}, | |
"nativeSrc": "5807:33:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "5807:33:1" | |
} | |
] | |
}, | |
"name": "abi_decode_t_address", | |
"nativeSrc": "5707:139:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "5737:6:1", | |
"nodeType": "YulTypedName", | |
"src": "5737:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "5745:3:1", | |
"nodeType": "YulTypedName", | |
"src": "5745:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nativeSrc": "5753:5:1", | |
"nodeType": "YulTypedName", | |
"src": "5753:5:1", | |
"type": "" | |
} | |
], | |
"src": "5707:139:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "5918:263:1", | |
"nodeType": "YulBlock", | |
"src": "5918:263:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "5964:83:1", | |
"nodeType": "YulBlock", | |
"src": "5964:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nativeSrc": "5966:77:1", | |
"nodeType": "YulIdentifier", | |
"src": "5966:77:1" | |
}, | |
"nativeSrc": "5966:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5966:79:1" | |
}, | |
"nativeSrc": "5966:79:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "5966:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "5939:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "5939:7:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "5948:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "5948:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "5935:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5935:3:1" | |
}, | |
"nativeSrc": "5935:23:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5935:23:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "5960:2:1", | |
"nodeType": "YulLiteral", | |
"src": "5960:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nativeSrc": "5931:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "5931:3:1" | |
}, | |
"nativeSrc": "5931:32:1", | |
"nodeType": "YulFunctionCall", | |
"src": "5931:32:1" | |
}, | |
"nativeSrc": "5928:119:1", | |
"nodeType": "YulIf", | |
"src": "5928:119:1" | |
}, | |
{ | |
"nativeSrc": "6057:117:1", | |
"nodeType": "YulBlock", | |
"src": "6057:117:1", | |
"statements": [ | |
{ | |
"nativeSrc": "6072:15:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "6072:15:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "6086:1:1", | |
"nodeType": "YulLiteral", | |
"src": "6086:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "6076:6:1", | |
"nodeType": "YulTypedName", | |
"src": "6076:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "6101:63:1", | |
"nodeType": "YulAssignment", | |
"src": "6101:63:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "6136:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "6136:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "6147:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "6147:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "6132:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "6132:3:1" | |
}, | |
"nativeSrc": "6132:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6132:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "6156:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "6156:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_address", | |
"nativeSrc": "6111:20:1", | |
"nodeType": "YulIdentifier", | |
"src": "6111:20:1" | |
}, | |
"nativeSrc": "6111:53:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6111:53:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "6101:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "6101:6:1" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_address", | |
"nativeSrc": "5852:329:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "5888:9:1", | |
"nodeType": "YulTypedName", | |
"src": "5888:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "5899:7:1", | |
"nodeType": "YulTypedName", | |
"src": "5899:7:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "5911:6:1", | |
"nodeType": "YulTypedName", | |
"src": "5911:6:1", | |
"type": "" | |
} | |
], | |
"src": "5852:329:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "6229:48:1", | |
"nodeType": "YulBlock", | |
"src": "6229:48:1", | |
"statements": [ | |
{ | |
"nativeSrc": "6239:32:1", | |
"nodeType": "YulAssignment", | |
"src": "6239:32:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "6264:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "6264:5:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nativeSrc": "6257:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "6257:6:1" | |
}, | |
"nativeSrc": "6257:13:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6257:13:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nativeSrc": "6250:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "6250:6:1" | |
}, | |
"nativeSrc": "6250:21:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6250:21:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "6239:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "6239:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_bool", | |
"nativeSrc": "6187:90:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "6211:5:1", | |
"nodeType": "YulTypedName", | |
"src": "6211:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nativeSrc": "6221:7:1", | |
"nodeType": "YulTypedName", | |
"src": "6221:7:1", | |
"type": "" | |
} | |
], | |
"src": "6187:90:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "6342:50:1", | |
"nodeType": "YulBlock", | |
"src": "6342:50:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "6359:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "6359:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "6379:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "6379:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_bool", | |
"nativeSrc": "6364:14:1", | |
"nodeType": "YulIdentifier", | |
"src": "6364:14:1" | |
}, | |
"nativeSrc": "6364:21:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6364:21:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "6352:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "6352:6:1" | |
}, | |
"nativeSrc": "6352:34:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6352:34:1" | |
}, | |
"nativeSrc": "6352:34:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "6352:34:1" | |
} | |
] | |
}, | |
"name": "abi_encode_t_bool_to_t_bool_fromStack", | |
"nativeSrc": "6283:109:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "6330:5:1", | |
"nodeType": "YulTypedName", | |
"src": "6330:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "6337:3:1", | |
"nodeType": "YulTypedName", | |
"src": "6337:3:1", | |
"type": "" | |
} | |
], | |
"src": "6283:109:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "6490:118:1", | |
"nodeType": "YulBlock", | |
"src": "6490:118:1", | |
"statements": [ | |
{ | |
"nativeSrc": "6500:26:1", | |
"nodeType": "YulAssignment", | |
"src": "6500:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "6512:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "6512:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "6523:2:1", | |
"nodeType": "YulLiteral", | |
"src": "6523:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "6508:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "6508:3:1" | |
}, | |
"nativeSrc": "6508:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6508:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "6500:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "6500:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "6574:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "6574:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "6587:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "6587:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "6598:1:1", | |
"nodeType": "YulLiteral", | |
"src": "6598:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "6583:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "6583:3:1" | |
}, | |
"nativeSrc": "6583:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6583:17:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_bool_to_t_bool_fromStack", | |
"nativeSrc": "6536:37:1", | |
"nodeType": "YulIdentifier", | |
"src": "6536:37:1" | |
}, | |
"nativeSrc": "6536:65:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6536:65:1" | |
}, | |
"nativeSrc": "6536:65:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "6536:65:1" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed", | |
"nativeSrc": "6398:210:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "6462:9:1", | |
"nodeType": "YulTypedName", | |
"src": "6462:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nativeSrc": "6474:6:1", | |
"nodeType": "YulTypedName", | |
"src": "6474:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "6485:4:1", | |
"nodeType": "YulTypedName", | |
"src": "6485:4:1", | |
"type": "" | |
} | |
], | |
"src": "6398:210:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "6679:53:1", | |
"nodeType": "YulBlock", | |
"src": "6679:53:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "6696:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "6696:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "6719:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "6719:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nativeSrc": "6701:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "6701:17:1" | |
}, | |
"nativeSrc": "6701:24:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6701:24:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "6689:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "6689:6:1" | |
}, | |
"nativeSrc": "6689:37:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6689:37:1" | |
}, | |
"nativeSrc": "6689:37:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "6689:37:1" | |
} | |
] | |
}, | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nativeSrc": "6614:118:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "6667:5:1", | |
"nodeType": "YulTypedName", | |
"src": "6667:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "6674:3:1", | |
"nodeType": "YulTypedName", | |
"src": "6674:3:1", | |
"type": "" | |
} | |
], | |
"src": "6614:118:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "6836:124:1", | |
"nodeType": "YulBlock", | |
"src": "6836:124:1", | |
"statements": [ | |
{ | |
"nativeSrc": "6846:26:1", | |
"nodeType": "YulAssignment", | |
"src": "6846:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "6858:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "6858:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "6869:2:1", | |
"nodeType": "YulLiteral", | |
"src": "6869:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "6854:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "6854:3:1" | |
}, | |
"nativeSrc": "6854:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6854:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "6846:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "6846:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "6926:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "6926:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "6939:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "6939:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "6950:1:1", | |
"nodeType": "YulLiteral", | |
"src": "6950:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "6935:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "6935:3:1" | |
}, | |
"nativeSrc": "6935:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6935:17:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nativeSrc": "6882:43:1", | |
"nodeType": "YulIdentifier", | |
"src": "6882:43:1" | |
}, | |
"nativeSrc": "6882:71:1", | |
"nodeType": "YulFunctionCall", | |
"src": "6882:71:1" | |
}, | |
"nativeSrc": "6882:71:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "6882:71:1" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed", | |
"nativeSrc": "6738:222:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "6808:9:1", | |
"nodeType": "YulTypedName", | |
"src": "6808:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nativeSrc": "6820:6:1", | |
"nodeType": "YulTypedName", | |
"src": "6820:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "6831:4:1", | |
"nodeType": "YulTypedName", | |
"src": "6831:4:1", | |
"type": "" | |
} | |
], | |
"src": "6738:222:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "7059:561:1", | |
"nodeType": "YulBlock", | |
"src": "7059:561:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "7105:83:1", | |
"nodeType": "YulBlock", | |
"src": "7105:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nativeSrc": "7107:77:1", | |
"nodeType": "YulIdentifier", | |
"src": "7107:77:1" | |
}, | |
"nativeSrc": "7107:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7107:79:1" | |
}, | |
"nativeSrc": "7107:79:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "7107:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "7080:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "7080:7:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "7089:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "7089:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "7076:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7076:3:1" | |
}, | |
"nativeSrc": "7076:23:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7076:23:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "7101:2:1", | |
"nodeType": "YulLiteral", | |
"src": "7101:2:1", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nativeSrc": "7072:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7072:3:1" | |
}, | |
"nativeSrc": "7072:32:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7072:32:1" | |
}, | |
"nativeSrc": "7069:119:1", | |
"nodeType": "YulIf", | |
"src": "7069:119:1" | |
}, | |
{ | |
"nativeSrc": "7198:117:1", | |
"nodeType": "YulBlock", | |
"src": "7198:117:1", | |
"statements": [ | |
{ | |
"nativeSrc": "7213:15:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "7213:15:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "7227:1:1", | |
"nodeType": "YulLiteral", | |
"src": "7227:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "7217:6:1", | |
"nodeType": "YulTypedName", | |
"src": "7217:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "7242:63:1", | |
"nodeType": "YulAssignment", | |
"src": "7242:63:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "7277:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "7277:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "7288:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "7288:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "7273:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7273:3:1" | |
}, | |
"nativeSrc": "7273:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7273:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "7297:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "7297:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nativeSrc": "7252:20:1", | |
"nodeType": "YulIdentifier", | |
"src": "7252:20:1" | |
}, | |
"nativeSrc": "7252:53:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7252:53:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "7242:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "7242:6:1" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "7325:288:1", | |
"nodeType": "YulBlock", | |
"src": "7325:288:1", | |
"statements": [ | |
{ | |
"nativeSrc": "7340:46:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "7340:46:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "7371:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "7371:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "7382:2:1", | |
"nodeType": "YulLiteral", | |
"src": "7382:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "7367:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7367:3:1" | |
}, | |
"nativeSrc": "7367:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7367:18:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nativeSrc": "7354:12:1", | |
"nodeType": "YulIdentifier", | |
"src": "7354:12:1" | |
}, | |
"nativeSrc": "7354:32:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7354:32:1" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "7344:6:1", | |
"nodeType": "YulTypedName", | |
"src": "7344:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "7433:83:1", | |
"nodeType": "YulBlock", | |
"src": "7433:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nativeSrc": "7435:77:1", | |
"nodeType": "YulIdentifier", | |
"src": "7435:77:1" | |
}, | |
"nativeSrc": "7435:79:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7435:79:1" | |
}, | |
"nativeSrc": "7435:79:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "7435:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nativeSrc": "7405:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "7405:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "7413:18:1", | |
"nodeType": "YulLiteral", | |
"src": "7413:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "7402:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "7402:2:1" | |
}, | |
"nativeSrc": "7402:30:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7402:30:1" | |
}, | |
"nativeSrc": "7399:117:1", | |
"nodeType": "YulIf", | |
"src": "7399:117:1" | |
}, | |
{ | |
"nativeSrc": "7530:73:1", | |
"nodeType": "YulAssignment", | |
"src": "7530:73:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "7575:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "7575:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "7586:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "7586:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "7571:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7571:3:1" | |
}, | |
"nativeSrc": "7571:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7571:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "7595:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "7595:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_string_memory_ptr", | |
"nativeSrc": "7540:30:1", | |
"nodeType": "YulIdentifier", | |
"src": "7540:30:1" | |
}, | |
"nativeSrc": "7540:63:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7540:63:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nativeSrc": "7530:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "7530:6:1" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_uint256t_string_memory_ptr", | |
"nativeSrc": "6966:654:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "7021:9:1", | |
"nodeType": "YulTypedName", | |
"src": "7021:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nativeSrc": "7032:7:1", | |
"nodeType": "YulTypedName", | |
"src": "7032:7:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "7044:6:1", | |
"nodeType": "YulTypedName", | |
"src": "7044:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nativeSrc": "7052:6:1", | |
"nodeType": "YulTypedName", | |
"src": "7052:6:1", | |
"type": "" | |
} | |
], | |
"src": "6966:654:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "7710:40:1", | |
"nodeType": "YulBlock", | |
"src": "7710:40:1", | |
"statements": [ | |
{ | |
"nativeSrc": "7721:22:1", | |
"nodeType": "YulAssignment", | |
"src": "7721:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "7737:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "7737:5:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "7731:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "7731:5:1" | |
}, | |
"nativeSrc": "7731:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7731:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nativeSrc": "7721:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "7721:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr", | |
"nativeSrc": "7626:124:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "7693:5:1", | |
"nodeType": "YulTypedName", | |
"src": "7693:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "7703:6:1", | |
"nodeType": "YulTypedName", | |
"src": "7703:6:1", | |
"type": "" | |
} | |
], | |
"src": "7626:124:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "7877:73:1", | |
"nodeType": "YulBlock", | |
"src": "7877:73:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "7894:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7894:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "7899:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "7899:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "7887:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "7887:6:1" | |
}, | |
"nativeSrc": "7887:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7887:19:1" | |
}, | |
"nativeSrc": "7887:19:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "7887:19:1" | |
}, | |
{ | |
"nativeSrc": "7915:29:1", | |
"nodeType": "YulAssignment", | |
"src": "7915:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "7934:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7934:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "7939:4:1", | |
"nodeType": "YulLiteral", | |
"src": "7939:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "7930:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "7930:3:1" | |
}, | |
"nativeSrc": "7930:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "7930:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "7915:11:1", | |
"nodeType": "YulIdentifier", | |
"src": "7915:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nativeSrc": "7756:194:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "7849:3:1", | |
"nodeType": "YulTypedName", | |
"src": "7849:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "7854:6:1", | |
"nodeType": "YulTypedName", | |
"src": "7854:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "7865:11:1", | |
"nodeType": "YulTypedName", | |
"src": "7865:11:1", | |
"type": "" | |
} | |
], | |
"src": "7756:194:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "8038:60:1", | |
"nodeType": "YulBlock", | |
"src": "8038:60:1", | |
"statements": [ | |
{ | |
"nativeSrc": "8048:11:1", | |
"nodeType": "YulAssignment", | |
"src": "8048:11:1", | |
"value": { | |
"name": "ptr", | |
"nativeSrc": "8056:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8056:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nativeSrc": "8048:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "8048:4:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "8069:22:1", | |
"nodeType": "YulAssignment", | |
"src": "8069:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "ptr", | |
"nativeSrc": "8081:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8081:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "8086:4:1", | |
"nodeType": "YulLiteral", | |
"src": "8086:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "8077:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8077:3:1" | |
}, | |
"nativeSrc": "8077:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8077:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nativeSrc": "8069:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "8069:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr", | |
"nativeSrc": "7956:142:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "ptr", | |
"nativeSrc": "8025:3:1", | |
"nodeType": "YulTypedName", | |
"src": "8025:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "data", | |
"nativeSrc": "8033:4:1", | |
"nodeType": "YulTypedName", | |
"src": "8033:4:1", | |
"type": "" | |
} | |
], | |
"src": "7956:142:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "8190:73:1", | |
"nodeType": "YulBlock", | |
"src": "8190:73:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "8207:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8207:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "8212:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8212:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "8200:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8200:6:1" | |
}, | |
"nativeSrc": "8200:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8200:19:1" | |
}, | |
"nativeSrc": "8200:19:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "8200:19:1" | |
}, | |
{ | |
"nativeSrc": "8228:29:1", | |
"nodeType": "YulAssignment", | |
"src": "8228:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "8247:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8247:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "8252:4:1", | |
"nodeType": "YulLiteral", | |
"src": "8252:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "8243:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8243:3:1" | |
}, | |
"nativeSrc": "8243:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8243:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "8228:11:1", | |
"nodeType": "YulIdentifier", | |
"src": "8228:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr", | |
"nativeSrc": "8104:159:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "8162:3:1", | |
"nodeType": "YulTypedName", | |
"src": "8162:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "8167:6:1", | |
"nodeType": "YulTypedName", | |
"src": "8167:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "8178:11:1", | |
"nodeType": "YulTypedName", | |
"src": "8178:11:1", | |
"type": "" | |
} | |
], | |
"src": "8104:159:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "8351:275:1", | |
"nodeType": "YulBlock", | |
"src": "8351:275:1", | |
"statements": [ | |
{ | |
"nativeSrc": "8361:53:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "8361:53:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "8408:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "8408:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nativeSrc": "8375:32:1", | |
"nodeType": "YulIdentifier", | |
"src": "8375:32:1" | |
}, | |
"nativeSrc": "8375:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8375:39:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "8365:6:1", | |
"nodeType": "YulTypedName", | |
"src": "8365:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "8423:68:1", | |
"nodeType": "YulAssignment", | |
"src": "8423:68:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "8479:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8479:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "8484:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8484:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr", | |
"nativeSrc": "8430:48:1", | |
"nodeType": "YulIdentifier", | |
"src": "8430:48:1" | |
}, | |
"nativeSrc": "8430:61:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8430:61:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "8423:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8423:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "8539:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "8539:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "8546:4:1", | |
"nodeType": "YulLiteral", | |
"src": "8546:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "8535:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8535:3:1" | |
}, | |
"nativeSrc": "8535:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8535:16:1" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "8553:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8553:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "8558:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8558:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory_with_cleanup", | |
"nativeSrc": "8500:34:1", | |
"nodeType": "YulIdentifier", | |
"src": "8500:34:1" | |
}, | |
"nativeSrc": "8500:65:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8500:65:1" | |
}, | |
"nativeSrc": "8500:65:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "8500:65:1" | |
}, | |
{ | |
"nativeSrc": "8574:46:1", | |
"nodeType": "YulAssignment", | |
"src": "8574:46:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "8585:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8585:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "8612:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8612:6:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nativeSrc": "8590:21:1", | |
"nodeType": "YulIdentifier", | |
"src": "8590:21:1" | |
}, | |
"nativeSrc": "8590:29:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8590:29:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "8581:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8581:3:1" | |
}, | |
"nativeSrc": "8581:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8581:39:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nativeSrc": "8574:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8574:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr", | |
"nativeSrc": "8269:357:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "8332:5:1", | |
"nodeType": "YulTypedName", | |
"src": "8332:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "8339:3:1", | |
"nodeType": "YulTypedName", | |
"src": "8339:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nativeSrc": "8347:3:1", | |
"nodeType": "YulTypedName", | |
"src": "8347:3:1", | |
"type": "" | |
} | |
], | |
"src": "8269:357:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "8732:96:1", | |
"nodeType": "YulBlock", | |
"src": "8732:96:1", | |
"statements": [ | |
{ | |
"nativeSrc": "8742:80:1", | |
"nodeType": "YulAssignment", | |
"src": "8742:80:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "8810:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "8810:6:1" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "8818:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8818:3:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr", | |
"nativeSrc": "8756:53:1", | |
"nodeType": "YulIdentifier", | |
"src": "8756:53:1" | |
}, | |
"nativeSrc": "8756:66:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8756:66:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updatedPos", | |
"nativeSrc": "8742:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "8742:10:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr", | |
"nativeSrc": "8632:196:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "8705:6:1", | |
"nodeType": "YulTypedName", | |
"src": "8705:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "8713:3:1", | |
"nodeType": "YulTypedName", | |
"src": "8713:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updatedPos", | |
"nativeSrc": "8721:10:1", | |
"nodeType": "YulTypedName", | |
"src": "8721:10:1", | |
"type": "" | |
} | |
], | |
"src": "8632:196:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "8919:38:1", | |
"nodeType": "YulBlock", | |
"src": "8919:38:1", | |
"statements": [ | |
{ | |
"nativeSrc": "8929:22:1", | |
"nodeType": "YulAssignment", | |
"src": "8929:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "ptr", | |
"nativeSrc": "8941:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8941:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "8946:4:1", | |
"nodeType": "YulLiteral", | |
"src": "8946:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "8937:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "8937:3:1" | |
}, | |
"nativeSrc": "8937:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "8937:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "next", | |
"nativeSrc": "8929:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "8929:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr", | |
"nativeSrc": "8834:123:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "ptr", | |
"nativeSrc": "8906:3:1", | |
"nodeType": "YulTypedName", | |
"src": "8906:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "next", | |
"nativeSrc": "8914:4:1", | |
"nodeType": "YulTypedName", | |
"src": "8914:4:1", | |
"type": "" | |
} | |
], | |
"src": "8834:123:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "9135:847:1", | |
"nodeType": "YulBlock", | |
"src": "9135:847:1", | |
"statements": [ | |
{ | |
"nativeSrc": "9145:78:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "9145:78:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "9217:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "9217:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr", | |
"nativeSrc": "9159:57:1", | |
"nodeType": "YulIdentifier", | |
"src": "9159:57:1" | |
}, | |
"nativeSrc": "9159:64:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9159:64:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "9149:6:1", | |
"nodeType": "YulTypedName", | |
"src": "9149:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "9232:103:1", | |
"nodeType": "YulAssignment", | |
"src": "9232:103:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "9323:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9323:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "9328:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "9328:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nativeSrc": "9239:83:1", | |
"nodeType": "YulIdentifier", | |
"src": "9239:83:1" | |
}, | |
"nativeSrc": "9239:96:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9239:96:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "9232:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9232:3:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "9344:20:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "9344:20:1", | |
"value": { | |
"name": "pos", | |
"nativeSrc": "9361:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9361:3:1" | |
}, | |
"variables": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "9348:9:1", | |
"nodeType": "YulTypedName", | |
"src": "9348:9:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "9373:39:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "9373:39:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "9389:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9389:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "9398:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "9398:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "9406:4:1", | |
"nodeType": "YulLiteral", | |
"src": "9406:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nativeSrc": "9394:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9394:3:1" | |
}, | |
"nativeSrc": "9394:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9394:17:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "9385:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9385:3:1" | |
}, | |
"nativeSrc": "9385:27:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9385:27:1" | |
}, | |
"variables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "9377:4:1", | |
"nodeType": "YulTypedName", | |
"src": "9377:4:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "9421:81:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "9421:81:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "9496:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "9496:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr", | |
"nativeSrc": "9436:59:1", | |
"nodeType": "YulIdentifier", | |
"src": "9436:59:1" | |
}, | |
"nativeSrc": "9436:66:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9436:66:1" | |
}, | |
"variables": [ | |
{ | |
"name": "baseRef", | |
"nativeSrc": "9425:7:1", | |
"nodeType": "YulTypedName", | |
"src": "9425:7:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "9511:21:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "9511:21:1", | |
"value": { | |
"name": "baseRef", | |
"nativeSrc": "9525:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "9525:7:1" | |
}, | |
"variables": [ | |
{ | |
"name": "srcPtr", | |
"nativeSrc": "9515:6:1", | |
"nodeType": "YulTypedName", | |
"src": "9515:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "9601:336:1", | |
"nodeType": "YulBlock", | |
"src": "9601:336:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "9622:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9622:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "9631:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "9631:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "9637:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "9637:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "9627:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9627:3:1" | |
}, | |
"nativeSrc": "9627:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9627:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "9615:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "9615:6:1" | |
}, | |
"nativeSrc": "9615:33:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9615:33:1" | |
}, | |
"nativeSrc": "9615:33:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "9615:33:1" | |
}, | |
{ | |
"nativeSrc": "9661:34:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "9661:34:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "srcPtr", | |
"nativeSrc": "9688:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "9688:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "9682:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "9682:5:1" | |
}, | |
"nativeSrc": "9682:13:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9682:13:1" | |
}, | |
"variables": [ | |
{ | |
"name": "elementValue0", | |
"nativeSrc": "9665:13:1", | |
"nodeType": "YulTypedName", | |
"src": "9665:13:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "9708:92:1", | |
"nodeType": "YulAssignment", | |
"src": "9708:92:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "elementValue0", | |
"nativeSrc": "9780:13:1", | |
"nodeType": "YulIdentifier", | |
"src": "9780:13:1" | |
}, | |
{ | |
"name": "tail", | |
"nativeSrc": "9795:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "9795:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr", | |
"nativeSrc": "9716:63:1", | |
"nodeType": "YulIdentifier", | |
"src": "9716:63:1" | |
}, | |
"nativeSrc": "9716:84:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9716:84:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "9708:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "9708:4:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "9813:80:1", | |
"nodeType": "YulAssignment", | |
"src": "9813:80:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "srcPtr", | |
"nativeSrc": "9886:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "9886:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr", | |
"nativeSrc": "9823:62:1", | |
"nodeType": "YulIdentifier", | |
"src": "9823:62:1" | |
}, | |
"nativeSrc": "9823:70:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9823:70:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "srcPtr", | |
"nativeSrc": "9813:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "9813:6:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "9906:21:1", | |
"nodeType": "YulAssignment", | |
"src": "9906:21:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "9917:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9917:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "9922:4:1", | |
"nodeType": "YulLiteral", | |
"src": "9922:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "9913:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9913:3:1" | |
}, | |
"nativeSrc": "9913:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9913:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "9906:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9906:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "9563:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "9563:1:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "9566:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "9566:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "9560:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "9560:2:1" | |
}, | |
"nativeSrc": "9560:13:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9560:13:1" | |
}, | |
"nativeSrc": "9541:396:1", | |
"nodeType": "YulForLoop", | |
"post": { | |
"nativeSrc": "9574:18:1", | |
"nodeType": "YulBlock", | |
"src": "9574:18:1", | |
"statements": [ | |
{ | |
"nativeSrc": "9576:14:1", | |
"nodeType": "YulAssignment", | |
"src": "9576:14:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "9585:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "9585:1:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "9588:1:1", | |
"nodeType": "YulLiteral", | |
"src": "9588:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "9581:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9581:3:1" | |
}, | |
"nativeSrc": "9581:9:1", | |
"nodeType": "YulFunctionCall", | |
"src": "9581:9:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nativeSrc": "9576:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "9576:1:1" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nativeSrc": "9545:14:1", | |
"nodeType": "YulBlock", | |
"src": "9545:14:1", | |
"statements": [ | |
{ | |
"nativeSrc": "9547:10:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "9547:10:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "9556:1:1", | |
"nodeType": "YulLiteral", | |
"src": "9556:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nativeSrc": "9551:1:1", | |
"nodeType": "YulTypedName", | |
"src": "9551:1:1", | |
"type": "" | |
} | |
] | |
} | |
] | |
}, | |
"src": "9541:396:1" | |
}, | |
{ | |
"nativeSrc": "9946:11:1", | |
"nodeType": "YulAssignment", | |
"src": "9946:11:1", | |
"value": { | |
"name": "tail", | |
"nativeSrc": "9953:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "9953:4:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "9946:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9946:3:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "9966:10:1", | |
"nodeType": "YulAssignment", | |
"src": "9966:10:1", | |
"value": { | |
"name": "pos", | |
"nativeSrc": "9973:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9973:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nativeSrc": "9966:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "9966:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nativeSrc": "8991:991:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "9114:5:1", | |
"nodeType": "YulTypedName", | |
"src": "9114:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "9121:3:1", | |
"nodeType": "YulTypedName", | |
"src": "9121:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nativeSrc": "9130:3:1", | |
"nodeType": "YulTypedName", | |
"src": "9130:3:1", | |
"type": "" | |
} | |
], | |
"src": "8991:991:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "10156:245:1", | |
"nodeType": "YulBlock", | |
"src": "10156:245:1", | |
"statements": [ | |
{ | |
"nativeSrc": "10166:26:1", | |
"nodeType": "YulAssignment", | |
"src": "10166:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "10178:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "10178:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "10189:2:1", | |
"nodeType": "YulLiteral", | |
"src": "10189:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "10174:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "10174:3:1" | |
}, | |
"nativeSrc": "10174:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "10174:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "10166:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "10166:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "10213:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "10213:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "10224:1:1", | |
"nodeType": "YulLiteral", | |
"src": "10224:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "10209:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "10209:3:1" | |
}, | |
"nativeSrc": "10209:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "10209:17:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "10232:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "10232:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "10238:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "10238:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "10228:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "10228:3:1" | |
}, | |
"nativeSrc": "10228:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "10228:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "10202:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "10202:6:1" | |
}, | |
"nativeSrc": "10202:47:1", | |
"nodeType": "YulFunctionCall", | |
"src": "10202:47:1" | |
}, | |
"nativeSrc": "10202:47:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "10202:47:1" | |
}, | |
{ | |
"nativeSrc": "10258:136:1", | |
"nodeType": "YulAssignment", | |
"src": "10258:136:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "10380:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "10380:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nativeSrc": "10389:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "10389:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nativeSrc": "10266:113:1", | |
"nodeType": "YulIdentifier", | |
"src": "10266:113:1" | |
}, | |
"nativeSrc": "10266:128:1", | |
"nodeType": "YulFunctionCall", | |
"src": "10266:128:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "10258:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "10258:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed", | |
"nativeSrc": "9988:413:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "10128:9:1", | |
"nodeType": "YulTypedName", | |
"src": "10128:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nativeSrc": "10140:6:1", | |
"nodeType": "YulTypedName", | |
"src": "10140:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "10151:4:1", | |
"nodeType": "YulTypedName", | |
"src": "10151:4:1", | |
"type": "" | |
} | |
], | |
"src": "9988:413:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "10513:58:1", | |
"nodeType": "YulBlock", | |
"src": "10513:58:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "10535:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "10535:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "10543:1:1", | |
"nodeType": "YulLiteral", | |
"src": "10543:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "10531:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "10531:3:1" | |
}, | |
"nativeSrc": "10531:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "10531:14:1" | |
}, | |
{ | |
"hexValue": "4f6e6c792077686974656c697374", | |
"kind": "string", | |
"nativeSrc": "10547:16:1", | |
"nodeType": "YulLiteral", | |
"src": "10547:16:1", | |
"type": "", | |
"value": "Only whitelist" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "10524:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "10524:6:1" | |
}, | |
"nativeSrc": "10524:40:1", | |
"nodeType": "YulFunctionCall", | |
"src": "10524:40:1" | |
}, | |
"nativeSrc": "10524:40:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "10524:40:1" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b", | |
"nativeSrc": "10407:164:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "10505:6:1", | |
"nodeType": "YulTypedName", | |
"src": "10505:6:1", | |
"type": "" | |
} | |
], | |
"src": "10407:164:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "10723:220:1", | |
"nodeType": "YulBlock", | |
"src": "10723:220:1", | |
"statements": [ | |
{ | |
"nativeSrc": "10733:74:1", | |
"nodeType": "YulAssignment", | |
"src": "10733:74:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "10799:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "10799:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "10804:2:1", | |
"nodeType": "YulLiteral", | |
"src": "10804:2:1", | |
"type": "", | |
"value": "14" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nativeSrc": "10740:58:1", | |
"nodeType": "YulIdentifier", | |
"src": "10740:58:1" | |
}, | |
"nativeSrc": "10740:67:1", | |
"nodeType": "YulFunctionCall", | |
"src": "10740:67:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "10733:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "10733:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "10905:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "10905:3:1" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b", | |
"nativeSrc": "10816:88:1", | |
"nodeType": "YulIdentifier", | |
"src": "10816:88:1" | |
}, | |
"nativeSrc": "10816:93:1", | |
"nodeType": "YulFunctionCall", | |
"src": "10816:93:1" | |
}, | |
"nativeSrc": "10816:93:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "10816:93:1" | |
}, | |
{ | |
"nativeSrc": "10918:19:1", | |
"nodeType": "YulAssignment", | |
"src": "10918:19:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "10929:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "10929:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "10934:2:1", | |
"nodeType": "YulLiteral", | |
"src": "10934:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "10925:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "10925:3:1" | |
}, | |
"nativeSrc": "10925:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "10925:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nativeSrc": "10918:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "10918:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "10577:366:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "10711:3:1", | |
"nodeType": "YulTypedName", | |
"src": "10711:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nativeSrc": "10719:3:1", | |
"nodeType": "YulTypedName", | |
"src": "10719:3:1", | |
"type": "" | |
} | |
], | |
"src": "10577:366:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "11120:248:1", | |
"nodeType": "YulBlock", | |
"src": "11120:248:1", | |
"statements": [ | |
{ | |
"nativeSrc": "11130:26:1", | |
"nodeType": "YulAssignment", | |
"src": "11130:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "11142:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "11142:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "11153:2:1", | |
"nodeType": "YulLiteral", | |
"src": "11153:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "11138:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "11138:3:1" | |
}, | |
"nativeSrc": "11138:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11138:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "11130:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "11130:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "11177:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "11177:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "11188:1:1", | |
"nodeType": "YulLiteral", | |
"src": "11188:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "11173:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "11173:3:1" | |
}, | |
"nativeSrc": "11173:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11173:17:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "11196:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "11196:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "11202:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "11202:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "11192:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "11192:3:1" | |
}, | |
"nativeSrc": "11192:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11192:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "11166:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "11166:6:1" | |
}, | |
"nativeSrc": "11166:47:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11166:47:1" | |
}, | |
"nativeSrc": "11166:47:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "11166:47:1" | |
}, | |
{ | |
"nativeSrc": "11222:139:1", | |
"nodeType": "YulAssignment", | |
"src": "11222:139:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "11356:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "11356:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "11230:124:1", | |
"nodeType": "YulIdentifier", | |
"src": "11230:124:1" | |
}, | |
"nativeSrc": "11230:131:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11230:131:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "11222:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "11222:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b__to_t_string_memory_ptr__fromStack_reversed", | |
"nativeSrc": "10949:419:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "11100:9:1", | |
"nodeType": "YulTypedName", | |
"src": "11100:9:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "11115:4:1", | |
"nodeType": "YulTypedName", | |
"src": "11115:4:1", | |
"type": "" | |
} | |
], | |
"src": "10949:419:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "11402:152:1", | |
"nodeType": "YulBlock", | |
"src": "11402:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "11419:1:1", | |
"nodeType": "YulLiteral", | |
"src": "11419:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "11422:77:1", | |
"nodeType": "YulLiteral", | |
"src": "11422:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "11412:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "11412:6:1" | |
}, | |
"nativeSrc": "11412:88:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11412:88:1" | |
}, | |
"nativeSrc": "11412:88:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "11412:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "11516:1:1", | |
"nodeType": "YulLiteral", | |
"src": "11516:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "11519:4:1", | |
"nodeType": "YulLiteral", | |
"src": "11519:4:1", | |
"type": "", | |
"value": "0x22" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "11509:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "11509:6:1" | |
}, | |
"nativeSrc": "11509:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11509:15:1" | |
}, | |
"nativeSrc": "11509:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "11509:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "11540:1:1", | |
"nodeType": "YulLiteral", | |
"src": "11540:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "11543:4:1", | |
"nodeType": "YulLiteral", | |
"src": "11543:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "11533:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "11533:6:1" | |
}, | |
"nativeSrc": "11533:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11533:15:1" | |
}, | |
"nativeSrc": "11533:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "11533:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x22", | |
"nativeSrc": "11374:180:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "11374:180:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "11611:269:1", | |
"nodeType": "YulBlock", | |
"src": "11611:269:1", | |
"statements": [ | |
{ | |
"nativeSrc": "11621:22:1", | |
"nodeType": "YulAssignment", | |
"src": "11621:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nativeSrc": "11635:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "11635:4:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "11641:1:1", | |
"nodeType": "YulLiteral", | |
"src": "11641:1:1", | |
"type": "", | |
"value": "2" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nativeSrc": "11631:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "11631:3:1" | |
}, | |
"nativeSrc": "11631:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11631:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nativeSrc": "11621:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "11621:6:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "11652:38:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "11652:38:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nativeSrc": "11682:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "11682:4:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "11688:1:1", | |
"nodeType": "YulLiteral", | |
"src": "11688:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "11678:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "11678:3:1" | |
}, | |
"nativeSrc": "11678:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11678:12:1" | |
}, | |
"variables": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nativeSrc": "11656:18:1", | |
"nodeType": "YulTypedName", | |
"src": "11656:18:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "11729:51:1", | |
"nodeType": "YulBlock", | |
"src": "11729:51:1", | |
"statements": [ | |
{ | |
"nativeSrc": "11743:27:1", | |
"nodeType": "YulAssignment", | |
"src": "11743:27:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "11757:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "11757:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "11765:4:1", | |
"nodeType": "YulLiteral", | |
"src": "11765:4:1", | |
"type": "", | |
"value": "0x7f" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "11753:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "11753:3:1" | |
}, | |
"nativeSrc": "11753:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11753:17:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nativeSrc": "11743:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "11743:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nativeSrc": "11709:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "11709:18:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nativeSrc": "11702:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "11702:6:1" | |
}, | |
"nativeSrc": "11702:26:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11702:26:1" | |
}, | |
"nativeSrc": "11699:81:1", | |
"nodeType": "YulIf", | |
"src": "11699:81:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "11832:42:1", | |
"nodeType": "YulBlock", | |
"src": "11832:42:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x22", | |
"nativeSrc": "11846:16:1", | |
"nodeType": "YulIdentifier", | |
"src": "11846:16:1" | |
}, | |
"nativeSrc": "11846:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11846:18:1" | |
}, | |
"nativeSrc": "11846:18:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "11846:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nativeSrc": "11796:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "11796:18:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "11819:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "11819:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "11827:2:1", | |
"nodeType": "YulLiteral", | |
"src": "11827:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "11816:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "11816:2:1" | |
}, | |
"nativeSrc": "11816:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11816:14:1" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nativeSrc": "11793:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "11793:2:1" | |
}, | |
"nativeSrc": "11793:38:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11793:38:1" | |
}, | |
"nativeSrc": "11790:84:1", | |
"nodeType": "YulIf", | |
"src": "11790:84:1" | |
} | |
] | |
}, | |
"name": "extract_byte_array_length", | |
"nativeSrc": "11560:320:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "data", | |
"nativeSrc": "11595:4:1", | |
"nodeType": "YulTypedName", | |
"src": "11595:4:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "11604:6:1", | |
"nodeType": "YulTypedName", | |
"src": "11604:6:1", | |
"type": "" | |
} | |
], | |
"src": "11560:320:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "11940:87:1", | |
"nodeType": "YulBlock", | |
"src": "11940:87:1", | |
"statements": [ | |
{ | |
"nativeSrc": "11950:11:1", | |
"nodeType": "YulAssignment", | |
"src": "11950:11:1", | |
"value": { | |
"name": "ptr", | |
"nativeSrc": "11958:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "11958:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nativeSrc": "11950:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "11950:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "11978:1:1", | |
"nodeType": "YulLiteral", | |
"src": "11978:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"name": "ptr", | |
"nativeSrc": "11981:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "11981:3:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "11971:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "11971:6:1" | |
}, | |
"nativeSrc": "11971:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "11971:14:1" | |
}, | |
"nativeSrc": "11971:14:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "11971:14:1" | |
}, | |
{ | |
"nativeSrc": "11994:26:1", | |
"nodeType": "YulAssignment", | |
"src": "11994:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "12012:1:1", | |
"nodeType": "YulLiteral", | |
"src": "12012:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "12015:4:1", | |
"nodeType": "YulLiteral", | |
"src": "12015:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "keccak256", | |
"nativeSrc": "12002:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "12002:9:1" | |
}, | |
"nativeSrc": "12002:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12002:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nativeSrc": "11994:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "11994:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_dataslot_t_string_storage", | |
"nativeSrc": "11886:141:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "ptr", | |
"nativeSrc": "11927:3:1", | |
"nodeType": "YulTypedName", | |
"src": "11927:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "data", | |
"nativeSrc": "11935:4:1", | |
"nodeType": "YulTypedName", | |
"src": "11935:4:1", | |
"type": "" | |
} | |
], | |
"src": "11886:141:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "12077:49:1", | |
"nodeType": "YulBlock", | |
"src": "12077:49:1", | |
"statements": [ | |
{ | |
"nativeSrc": "12087:33:1", | |
"nodeType": "YulAssignment", | |
"src": "12087:33:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "12105:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "12105:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "12112:2:1", | |
"nodeType": "YulLiteral", | |
"src": "12112:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "12101:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "12101:3:1" | |
}, | |
"nativeSrc": "12101:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12101:14:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "12117:2:1", | |
"nodeType": "YulLiteral", | |
"src": "12117:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nativeSrc": "12097:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "12097:3:1" | |
}, | |
"nativeSrc": "12097:23:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12097:23:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nativeSrc": "12087:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "12087:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "divide_by_32_ceil", | |
"nativeSrc": "12033:93:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "12060:5:1", | |
"nodeType": "YulTypedName", | |
"src": "12060:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nativeSrc": "12070:6:1", | |
"nodeType": "YulTypedName", | |
"src": "12070:6:1", | |
"type": "" | |
} | |
], | |
"src": "12033:93:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "12185:54:1", | |
"nodeType": "YulBlock", | |
"src": "12185:54:1", | |
"statements": [ | |
{ | |
"nativeSrc": "12195:37:1", | |
"nodeType": "YulAssignment", | |
"src": "12195:37:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "bits", | |
"nativeSrc": "12220:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "12220:4:1" | |
}, | |
{ | |
"name": "value", | |
"nativeSrc": "12226:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "12226:5:1" | |
} | |
], | |
"functionName": { | |
"name": "shl", | |
"nativeSrc": "12216:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "12216:3:1" | |
}, | |
"nativeSrc": "12216:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12216:16:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "newValue", | |
"nativeSrc": "12195:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "12195:8:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "shift_left_dynamic", | |
"nativeSrc": "12132:107:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "bits", | |
"nativeSrc": "12160:4:1", | |
"nodeType": "YulTypedName", | |
"src": "12160:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "value", | |
"nativeSrc": "12166:5:1", | |
"nodeType": "YulTypedName", | |
"src": "12166:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "newValue", | |
"nativeSrc": "12176:8:1", | |
"nodeType": "YulTypedName", | |
"src": "12176:8:1", | |
"type": "" | |
} | |
], | |
"src": "12132:107:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "12321:317:1", | |
"nodeType": "YulBlock", | |
"src": "12321:317:1", | |
"statements": [ | |
{ | |
"nativeSrc": "12331:35:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "12331:35:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "shiftBytes", | |
"nativeSrc": "12352:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "12352:10:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "12364:1:1", | |
"nodeType": "YulLiteral", | |
"src": "12364:1:1", | |
"type": "", | |
"value": "8" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nativeSrc": "12348:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "12348:3:1" | |
}, | |
"nativeSrc": "12348:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12348:18:1" | |
}, | |
"variables": [ | |
{ | |
"name": "shiftBits", | |
"nativeSrc": "12335:9:1", | |
"nodeType": "YulTypedName", | |
"src": "12335:9:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "12375:109:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "12375:109:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "shiftBits", | |
"nativeSrc": "12406:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "12406:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "12417:66:1", | |
"nodeType": "YulLiteral", | |
"src": "12417:66:1", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "shift_left_dynamic", | |
"nativeSrc": "12387:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "12387:18:1" | |
}, | |
"nativeSrc": "12387:97:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12387:97:1" | |
}, | |
"variables": [ | |
{ | |
"name": "mask", | |
"nativeSrc": "12379:4:1", | |
"nodeType": "YulTypedName", | |
"src": "12379:4:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "12493:51:1", | |
"nodeType": "YulAssignment", | |
"src": "12493:51:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "shiftBits", | |
"nativeSrc": "12524:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "12524:9:1" | |
}, | |
{ | |
"name": "toInsert", | |
"nativeSrc": "12535:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "12535:8:1" | |
} | |
], | |
"functionName": { | |
"name": "shift_left_dynamic", | |
"nativeSrc": "12505:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "12505:18:1" | |
}, | |
"nativeSrc": "12505:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12505:39:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "toInsert", | |
"nativeSrc": "12493:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "12493:8:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "12553:30:1", | |
"nodeType": "YulAssignment", | |
"src": "12553:30:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "12566:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "12566:5:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "mask", | |
"nativeSrc": "12577:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "12577:4:1" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nativeSrc": "12573:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "12573:3:1" | |
}, | |
"nativeSrc": "12573:9:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12573:9:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "12562:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "12562:3:1" | |
}, | |
"nativeSrc": "12562:21:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12562:21:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nativeSrc": "12553:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "12553:5:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "12592:40:1", | |
"nodeType": "YulAssignment", | |
"src": "12592:40:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "12605:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "12605:5:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "toInsert", | |
"nativeSrc": "12616:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "12616:8:1" | |
}, | |
{ | |
"name": "mask", | |
"nativeSrc": "12626:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "12626:4:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "12612:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "12612:3:1" | |
}, | |
"nativeSrc": "12612:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12612:19:1" | |
} | |
], | |
"functionName": { | |
"name": "or", | |
"nativeSrc": "12602:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "12602:2:1" | |
}, | |
"nativeSrc": "12602:30:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12602:30:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nativeSrc": "12592:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "12592:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "update_byte_slice_dynamic32", | |
"nativeSrc": "12245:393:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "12282:5:1", | |
"nodeType": "YulTypedName", | |
"src": "12282:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "shiftBytes", | |
"nativeSrc": "12289:10:1", | |
"nodeType": "YulTypedName", | |
"src": "12289:10:1", | |
"type": "" | |
}, | |
{ | |
"name": "toInsert", | |
"nativeSrc": "12301:8:1", | |
"nodeType": "YulTypedName", | |
"src": "12301:8:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nativeSrc": "12314:6:1", | |
"nodeType": "YulTypedName", | |
"src": "12314:6:1", | |
"type": "" | |
} | |
], | |
"src": "12245:393:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "12676:28:1", | |
"nodeType": "YulBlock", | |
"src": "12676:28:1", | |
"statements": [ | |
{ | |
"nativeSrc": "12686:12:1", | |
"nodeType": "YulAssignment", | |
"src": "12686:12:1", | |
"value": { | |
"name": "value", | |
"nativeSrc": "12693:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "12693:5:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "12686:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "12686:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "identity", | |
"nativeSrc": "12644:60:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "12662:5:1", | |
"nodeType": "YulTypedName", | |
"src": "12662:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "12672:3:1", | |
"nodeType": "YulTypedName", | |
"src": "12672:3:1", | |
"type": "" | |
} | |
], | |
"src": "12644:60:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "12770:82:1", | |
"nodeType": "YulBlock", | |
"src": "12770:82:1", | |
"statements": [ | |
{ | |
"nativeSrc": "12780:66:1", | |
"nodeType": "YulAssignment", | |
"src": "12780:66:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "12838:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "12838:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nativeSrc": "12820:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "12820:17:1" | |
}, | |
"nativeSrc": "12820:24:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12820:24:1" | |
} | |
], | |
"functionName": { | |
"name": "identity", | |
"nativeSrc": "12811:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "12811:8:1" | |
}, | |
"nativeSrc": "12811:34:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12811:34:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nativeSrc": "12793:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "12793:17:1" | |
}, | |
"nativeSrc": "12793:53:1", | |
"nodeType": "YulFunctionCall", | |
"src": "12793:53:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "converted", | |
"nativeSrc": "12780:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "12780:9:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "convert_t_uint256_to_t_uint256", | |
"nativeSrc": "12710:142:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "12750:5:1", | |
"nodeType": "YulTypedName", | |
"src": "12750:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "converted", | |
"nativeSrc": "12760:9:1", | |
"nodeType": "YulTypedName", | |
"src": "12760:9:1", | |
"type": "" | |
} | |
], | |
"src": "12710:142:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "12905:28:1", | |
"nodeType": "YulBlock", | |
"src": "12905:28:1", | |
"statements": [ | |
{ | |
"nativeSrc": "12915:12:1", | |
"nodeType": "YulAssignment", | |
"src": "12915:12:1", | |
"value": { | |
"name": "value", | |
"nativeSrc": "12922:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "12922:5:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "12915:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "12915:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "prepare_store_t_uint256", | |
"nativeSrc": "12858:75:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "12891:5:1", | |
"nodeType": "YulTypedName", | |
"src": "12891:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "12901:3:1", | |
"nodeType": "YulTypedName", | |
"src": "12901:3:1", | |
"type": "" | |
} | |
], | |
"src": "12858:75:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "13015:193:1", | |
"nodeType": "YulBlock", | |
"src": "13015:193:1", | |
"statements": [ | |
{ | |
"nativeSrc": "13025:63:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "13025:63:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value_0", | |
"nativeSrc": "13080:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "13080:7:1" | |
} | |
], | |
"functionName": { | |
"name": "convert_t_uint256_to_t_uint256", | |
"nativeSrc": "13049:30:1", | |
"nodeType": "YulIdentifier", | |
"src": "13049:30:1" | |
}, | |
"nativeSrc": "13049:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13049:39:1" | |
}, | |
"variables": [ | |
{ | |
"name": "convertedValue_0", | |
"nativeSrc": "13029:16:1", | |
"nodeType": "YulTypedName", | |
"src": "13029:16:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "13104:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "13104:4:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "13144:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "13144:4:1" | |
} | |
], | |
"functionName": { | |
"name": "sload", | |
"nativeSrc": "13138:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "13138:5:1" | |
}, | |
"nativeSrc": "13138:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13138:11:1" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "13151:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "13151:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "convertedValue_0", | |
"nativeSrc": "13183:16:1", | |
"nodeType": "YulIdentifier", | |
"src": "13183:16:1" | |
} | |
], | |
"functionName": { | |
"name": "prepare_store_t_uint256", | |
"nativeSrc": "13159:23:1", | |
"nodeType": "YulIdentifier", | |
"src": "13159:23:1" | |
}, | |
"nativeSrc": "13159:41:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13159:41:1" | |
} | |
], | |
"functionName": { | |
"name": "update_byte_slice_dynamic32", | |
"nativeSrc": "13110:27:1", | |
"nodeType": "YulIdentifier", | |
"src": "13110:27:1" | |
}, | |
"nativeSrc": "13110:91:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13110:91:1" | |
} | |
], | |
"functionName": { | |
"name": "sstore", | |
"nativeSrc": "13097:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "13097:6:1" | |
}, | |
"nativeSrc": "13097:105:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13097:105:1" | |
}, | |
"nativeSrc": "13097:105:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "13097:105:1" | |
} | |
] | |
}, | |
"name": "update_storage_value_t_uint256_to_t_uint256", | |
"nativeSrc": "12939:269:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "12992:4:1", | |
"nodeType": "YulTypedName", | |
"src": "12992:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "12998:6:1", | |
"nodeType": "YulTypedName", | |
"src": "12998:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value_0", | |
"nativeSrc": "13006:7:1", | |
"nodeType": "YulTypedName", | |
"src": "13006:7:1", | |
"type": "" | |
} | |
], | |
"src": "12939:269:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "13263:24:1", | |
"nodeType": "YulBlock", | |
"src": "13263:24:1", | |
"statements": [ | |
{ | |
"nativeSrc": "13273:8:1", | |
"nodeType": "YulAssignment", | |
"src": "13273:8:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "13280:1:1", | |
"nodeType": "YulLiteral", | |
"src": "13280:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "13273:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "13273:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "zero_value_for_split_t_uint256", | |
"nativeSrc": "13214:73:1", | |
"nodeType": "YulFunctionDefinition", | |
"returnVariables": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "13259:3:1", | |
"nodeType": "YulTypedName", | |
"src": "13259:3:1", | |
"type": "" | |
} | |
], | |
"src": "13214:73:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "13346:136:1", | |
"nodeType": "YulBlock", | |
"src": "13346:136:1", | |
"statements": [ | |
{ | |
"nativeSrc": "13356:46:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "13356:46:1", | |
"value": { | |
"arguments": [], | |
"functionName": { | |
"name": "zero_value_for_split_t_uint256", | |
"nativeSrc": "13370:30:1", | |
"nodeType": "YulIdentifier", | |
"src": "13370:30:1" | |
}, | |
"nativeSrc": "13370:32:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13370:32:1" | |
}, | |
"variables": [ | |
{ | |
"name": "zero_0", | |
"nativeSrc": "13360:6:1", | |
"nodeType": "YulTypedName", | |
"src": "13360:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "13455:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "13455:4:1" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "13461:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "13461:6:1" | |
}, | |
{ | |
"name": "zero_0", | |
"nativeSrc": "13469:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "13469:6:1" | |
} | |
], | |
"functionName": { | |
"name": "update_storage_value_t_uint256_to_t_uint256", | |
"nativeSrc": "13411:43:1", | |
"nodeType": "YulIdentifier", | |
"src": "13411:43:1" | |
}, | |
"nativeSrc": "13411:65:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13411:65:1" | |
}, | |
"nativeSrc": "13411:65:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "13411:65:1" | |
} | |
] | |
}, | |
"name": "storage_set_to_zero_t_uint256", | |
"nativeSrc": "13293:189:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "13332:4:1", | |
"nodeType": "YulTypedName", | |
"src": "13332:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "offset", | |
"nativeSrc": "13338:6:1", | |
"nodeType": "YulTypedName", | |
"src": "13338:6:1", | |
"type": "" | |
} | |
], | |
"src": "13293:189:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "13538:136:1", | |
"nodeType": "YulBlock", | |
"src": "13538:136:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "13605:63:1", | |
"nodeType": "YulBlock", | |
"src": "13605:63:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "start", | |
"nativeSrc": "13649:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "13649:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "13656:1:1", | |
"nodeType": "YulLiteral", | |
"src": "13656:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "storage_set_to_zero_t_uint256", | |
"nativeSrc": "13619:29:1", | |
"nodeType": "YulIdentifier", | |
"src": "13619:29:1" | |
}, | |
"nativeSrc": "13619:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13619:39:1" | |
}, | |
"nativeSrc": "13619:39:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "13619:39:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "start", | |
"nativeSrc": "13558:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "13558:5:1" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "13565:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "13565:3:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "13555:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "13555:2:1" | |
}, | |
"nativeSrc": "13555:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13555:14:1" | |
}, | |
"nativeSrc": "13548:120:1", | |
"nodeType": "YulForLoop", | |
"post": { | |
"nativeSrc": "13570:26:1", | |
"nodeType": "YulBlock", | |
"src": "13570:26:1", | |
"statements": [ | |
{ | |
"nativeSrc": "13572:22:1", | |
"nodeType": "YulAssignment", | |
"src": "13572:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "start", | |
"nativeSrc": "13585:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "13585:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "13592:1:1", | |
"nodeType": "YulLiteral", | |
"src": "13592:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "13581:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "13581:3:1" | |
}, | |
"nativeSrc": "13581:13:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13581:13:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "start", | |
"nativeSrc": "13572:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "13572:5:1" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nativeSrc": "13552:2:1", | |
"nodeType": "YulBlock", | |
"src": "13552:2:1", | |
"statements": [] | |
}, | |
"src": "13548:120:1" | |
} | |
] | |
}, | |
"name": "clear_storage_range_t_bytes1", | |
"nativeSrc": "13488:186:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "start", | |
"nativeSrc": "13526:5:1", | |
"nodeType": "YulTypedName", | |
"src": "13526:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nativeSrc": "13533:3:1", | |
"nodeType": "YulTypedName", | |
"src": "13533:3:1", | |
"type": "" | |
} | |
], | |
"src": "13488:186:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "13759:464:1", | |
"nodeType": "YulBlock", | |
"src": "13759:464:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "13785:431:1", | |
"nodeType": "YulBlock", | |
"src": "13785:431:1", | |
"statements": [ | |
{ | |
"nativeSrc": "13799:54:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "13799:54:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nativeSrc": "13847:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "13847:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_dataslot_t_string_storage", | |
"nativeSrc": "13815:31:1", | |
"nodeType": "YulIdentifier", | |
"src": "13815:31:1" | |
}, | |
"nativeSrc": "13815:38:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13815:38:1" | |
}, | |
"variables": [ | |
{ | |
"name": "dataArea", | |
"nativeSrc": "13803:8:1", | |
"nodeType": "YulTypedName", | |
"src": "13803:8:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "13866:63:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "13866:63:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "dataArea", | |
"nativeSrc": "13889:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "13889:8:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "startIndex", | |
"nativeSrc": "13917:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "13917:10:1" | |
} | |
], | |
"functionName": { | |
"name": "divide_by_32_ceil", | |
"nativeSrc": "13899:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "13899:17:1" | |
}, | |
"nativeSrc": "13899:29:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13899:29:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "13885:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "13885:3:1" | |
}, | |
"nativeSrc": "13885:44:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13885:44:1" | |
}, | |
"variables": [ | |
{ | |
"name": "deleteStart", | |
"nativeSrc": "13870:11:1", | |
"nodeType": "YulTypedName", | |
"src": "13870:11:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "14086:27:1", | |
"nodeType": "YulBlock", | |
"src": "14086:27:1", | |
"statements": [ | |
{ | |
"nativeSrc": "14088:23:1", | |
"nodeType": "YulAssignment", | |
"src": "14088:23:1", | |
"value": { | |
"name": "dataArea", | |
"nativeSrc": "14103:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "14103:8:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "deleteStart", | |
"nativeSrc": "14088:11:1", | |
"nodeType": "YulIdentifier", | |
"src": "14088:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "startIndex", | |
"nativeSrc": "14070:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "14070:10:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "14082:2:1", | |
"nodeType": "YulLiteral", | |
"src": "14082:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "14067:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "14067:2:1" | |
}, | |
"nativeSrc": "14067:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14067:18:1" | |
}, | |
"nativeSrc": "14064:49:1", | |
"nodeType": "YulIf", | |
"src": "14064:49:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "deleteStart", | |
"nativeSrc": "14155:11:1", | |
"nodeType": "YulIdentifier", | |
"src": "14155:11:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "dataArea", | |
"nativeSrc": "14172:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "14172:8:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "len", | |
"nativeSrc": "14200:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "14200:3:1" | |
} | |
], | |
"functionName": { | |
"name": "divide_by_32_ceil", | |
"nativeSrc": "14182:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "14182:17:1" | |
}, | |
"nativeSrc": "14182:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14182:22:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "14168:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "14168:3:1" | |
}, | |
"nativeSrc": "14168:37:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14168:37:1" | |
} | |
], | |
"functionName": { | |
"name": "clear_storage_range_t_bytes1", | |
"nativeSrc": "14126:28:1", | |
"nodeType": "YulIdentifier", | |
"src": "14126:28:1" | |
}, | |
"nativeSrc": "14126:80:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14126:80:1" | |
}, | |
"nativeSrc": "14126:80:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "14126:80:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "len", | |
"nativeSrc": "13776:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "13776:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "13781:2:1", | |
"nodeType": "YulLiteral", | |
"src": "13781:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "13773:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "13773:2:1" | |
}, | |
"nativeSrc": "13773:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "13773:11:1" | |
}, | |
"nativeSrc": "13770:446:1", | |
"nodeType": "YulIf", | |
"src": "13770:446:1" | |
} | |
] | |
}, | |
"name": "clean_up_bytearray_end_slots_t_string_storage", | |
"nativeSrc": "13680:543:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "array", | |
"nativeSrc": "13735:5:1", | |
"nodeType": "YulTypedName", | |
"src": "13735:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "len", | |
"nativeSrc": "13742:3:1", | |
"nodeType": "YulTypedName", | |
"src": "13742:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "startIndex", | |
"nativeSrc": "13747:10:1", | |
"nodeType": "YulTypedName", | |
"src": "13747:10:1", | |
"type": "" | |
} | |
], | |
"src": "13680:543:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "14292:54:1", | |
"nodeType": "YulBlock", | |
"src": "14292:54:1", | |
"statements": [ | |
{ | |
"nativeSrc": "14302:37:1", | |
"nodeType": "YulAssignment", | |
"src": "14302:37:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "bits", | |
"nativeSrc": "14327:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "14327:4:1" | |
}, | |
{ | |
"name": "value", | |
"nativeSrc": "14333:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "14333:5:1" | |
} | |
], | |
"functionName": { | |
"name": "shr", | |
"nativeSrc": "14323:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "14323:3:1" | |
}, | |
"nativeSrc": "14323:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14323:16:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "newValue", | |
"nativeSrc": "14302:8:1", | |
"nodeType": "YulIdentifier", | |
"src": "14302:8:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "shift_right_unsigned_dynamic", | |
"nativeSrc": "14229:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "bits", | |
"nativeSrc": "14267:4:1", | |
"nodeType": "YulTypedName", | |
"src": "14267:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "value", | |
"nativeSrc": "14273:5:1", | |
"nodeType": "YulTypedName", | |
"src": "14273:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "newValue", | |
"nativeSrc": "14283:8:1", | |
"nodeType": "YulTypedName", | |
"src": "14283:8:1", | |
"type": "" | |
} | |
], | |
"src": "14229:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "14403:118:1", | |
"nodeType": "YulBlock", | |
"src": "14403:118:1", | |
"statements": [ | |
{ | |
"nativeSrc": "14413:68:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "14413:68:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "14462:1:1", | |
"nodeType": "YulLiteral", | |
"src": "14462:1:1", | |
"type": "", | |
"value": "8" | |
}, | |
{ | |
"name": "bytes", | |
"nativeSrc": "14465:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "14465:5:1" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nativeSrc": "14458:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "14458:3:1" | |
}, | |
"nativeSrc": "14458:13:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14458:13:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "14477:1:1", | |
"nodeType": "YulLiteral", | |
"src": "14477:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nativeSrc": "14473:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "14473:3:1" | |
}, | |
"nativeSrc": "14473:6:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14473:6:1" | |
} | |
], | |
"functionName": { | |
"name": "shift_right_unsigned_dynamic", | |
"nativeSrc": "14429:28:1", | |
"nodeType": "YulIdentifier", | |
"src": "14429:28:1" | |
}, | |
"nativeSrc": "14429:51:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14429:51:1" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nativeSrc": "14425:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "14425:3:1" | |
}, | |
"nativeSrc": "14425:56:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14425:56:1" | |
}, | |
"variables": [ | |
{ | |
"name": "mask", | |
"nativeSrc": "14417:4:1", | |
"nodeType": "YulTypedName", | |
"src": "14417:4:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "14490:25:1", | |
"nodeType": "YulAssignment", | |
"src": "14490:25:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nativeSrc": "14504:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "14504:4:1" | |
}, | |
{ | |
"name": "mask", | |
"nativeSrc": "14510:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "14510:4:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "14500:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "14500:3:1" | |
}, | |
"nativeSrc": "14500:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14500:15:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nativeSrc": "14490:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "14490:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "mask_bytes_dynamic", | |
"nativeSrc": "14352:169:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "data", | |
"nativeSrc": "14380:4:1", | |
"nodeType": "YulTypedName", | |
"src": "14380:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "bytes", | |
"nativeSrc": "14386:5:1", | |
"nodeType": "YulTypedName", | |
"src": "14386:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nativeSrc": "14396:6:1", | |
"nodeType": "YulTypedName", | |
"src": "14396:6:1", | |
"type": "" | |
} | |
], | |
"src": "14352:169:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "14607:214:1", | |
"nodeType": "YulBlock", | |
"src": "14607:214:1", | |
"statements": [ | |
{ | |
"nativeSrc": "14740:37:1", | |
"nodeType": "YulAssignment", | |
"src": "14740:37:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nativeSrc": "14767:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "14767:4:1" | |
}, | |
{ | |
"name": "len", | |
"nativeSrc": "14773:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "14773:3:1" | |
} | |
], | |
"functionName": { | |
"name": "mask_bytes_dynamic", | |
"nativeSrc": "14748:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "14748:18:1" | |
}, | |
"nativeSrc": "14748:29:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14748:29:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nativeSrc": "14740:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "14740:4:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "14786:29:1", | |
"nodeType": "YulAssignment", | |
"src": "14786:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nativeSrc": "14797:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "14797:4:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "14807:1:1", | |
"nodeType": "YulLiteral", | |
"src": "14807:1:1", | |
"type": "", | |
"value": "2" | |
}, | |
{ | |
"name": "len", | |
"nativeSrc": "14810:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "14810:3:1" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nativeSrc": "14803:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "14803:3:1" | |
}, | |
"nativeSrc": "14803:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14803:11:1" | |
} | |
], | |
"functionName": { | |
"name": "or", | |
"nativeSrc": "14794:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "14794:2:1" | |
}, | |
"nativeSrc": "14794:21:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14794:21:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "used", | |
"nativeSrc": "14786:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "14786:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "extract_used_part_and_set_length_of_short_byte_array", | |
"nativeSrc": "14526:295:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "data", | |
"nativeSrc": "14588:4:1", | |
"nodeType": "YulTypedName", | |
"src": "14588:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "len", | |
"nativeSrc": "14594:3:1", | |
"nodeType": "YulTypedName", | |
"src": "14594:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "used", | |
"nativeSrc": "14602:4:1", | |
"nodeType": "YulTypedName", | |
"src": "14602:4:1", | |
"type": "" | |
} | |
], | |
"src": "14526:295:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "14918:1303:1", | |
"nodeType": "YulBlock", | |
"src": "14918:1303:1", | |
"statements": [ | |
{ | |
"nativeSrc": "14929:51:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "14929:51:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "14976:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "14976:3:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nativeSrc": "14943:32:1", | |
"nodeType": "YulIdentifier", | |
"src": "14943:32:1" | |
}, | |
"nativeSrc": "14943:37:1", | |
"nodeType": "YulFunctionCall", | |
"src": "14943:37:1" | |
}, | |
"variables": [ | |
{ | |
"name": "newLen", | |
"nativeSrc": "14933:6:1", | |
"nodeType": "YulTypedName", | |
"src": "14933:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "15065:22:1", | |
"nodeType": "YulBlock", | |
"src": "15065:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nativeSrc": "15067:16:1", | |
"nodeType": "YulIdentifier", | |
"src": "15067:16:1" | |
}, | |
"nativeSrc": "15067:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15067:18:1" | |
}, | |
"nativeSrc": "15067:18:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "15067:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "newLen", | |
"nativeSrc": "15037:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15037:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "15045:18:1", | |
"nodeType": "YulLiteral", | |
"src": "15045:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "15034:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "15034:2:1" | |
}, | |
"nativeSrc": "15034:30:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15034:30:1" | |
}, | |
"nativeSrc": "15031:56:1", | |
"nodeType": "YulIf", | |
"src": "15031:56:1" | |
}, | |
{ | |
"nativeSrc": "15097:52:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "15097:52:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "15143:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "15143:4:1" | |
} | |
], | |
"functionName": { | |
"name": "sload", | |
"nativeSrc": "15137:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "15137:5:1" | |
}, | |
"nativeSrc": "15137:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15137:11:1" | |
} | |
], | |
"functionName": { | |
"name": "extract_byte_array_length", | |
"nativeSrc": "15111:25:1", | |
"nodeType": "YulIdentifier", | |
"src": "15111:25:1" | |
}, | |
"nativeSrc": "15111:38:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15111:38:1" | |
}, | |
"variables": [ | |
{ | |
"name": "oldLen", | |
"nativeSrc": "15101:6:1", | |
"nodeType": "YulTypedName", | |
"src": "15101:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "15242:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "15242:4:1" | |
}, | |
{ | |
"name": "oldLen", | |
"nativeSrc": "15248:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15248:6:1" | |
}, | |
{ | |
"name": "newLen", | |
"nativeSrc": "15256:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15256:6:1" | |
} | |
], | |
"functionName": { | |
"name": "clean_up_bytearray_end_slots_t_string_storage", | |
"nativeSrc": "15196:45:1", | |
"nodeType": "YulIdentifier", | |
"src": "15196:45:1" | |
}, | |
"nativeSrc": "15196:67:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15196:67:1" | |
}, | |
"nativeSrc": "15196:67:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "15196:67:1" | |
}, | |
{ | |
"nativeSrc": "15273:18:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "15273:18:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "15290:1:1", | |
"nodeType": "YulLiteral", | |
"src": "15290:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "15277:9:1", | |
"nodeType": "YulTypedName", | |
"src": "15277:9:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "15301:17:1", | |
"nodeType": "YulAssignment", | |
"src": "15301:17:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "15314:4:1", | |
"nodeType": "YulLiteral", | |
"src": "15314:4:1", | |
"type": "", | |
"value": "0x20" | |
}, | |
"variableNames": [ | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "15301:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "15301:9:1" | |
} | |
] | |
}, | |
{ | |
"cases": [ | |
{ | |
"body": { | |
"nativeSrc": "15365:611:1", | |
"nodeType": "YulBlock", | |
"src": "15365:611:1", | |
"statements": [ | |
{ | |
"nativeSrc": "15379:37:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "15379:37:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "newLen", | |
"nativeSrc": "15398:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15398:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "15410:4:1", | |
"nodeType": "YulLiteral", | |
"src": "15410:4:1", | |
"type": "", | |
"value": "0x1f" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nativeSrc": "15406:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "15406:3:1" | |
}, | |
"nativeSrc": "15406:9:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15406:9:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "15394:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "15394:3:1" | |
}, | |
"nativeSrc": "15394:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15394:22:1" | |
}, | |
"variables": [ | |
{ | |
"name": "loopEnd", | |
"nativeSrc": "15383:7:1", | |
"nodeType": "YulTypedName", | |
"src": "15383:7:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "15430:51:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "15430:51:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "15476:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "15476:4:1" | |
} | |
], | |
"functionName": { | |
"name": "array_dataslot_t_string_storage", | |
"nativeSrc": "15444:31:1", | |
"nodeType": "YulIdentifier", | |
"src": "15444:31:1" | |
}, | |
"nativeSrc": "15444:37:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15444:37:1" | |
}, | |
"variables": [ | |
{ | |
"name": "dstPtr", | |
"nativeSrc": "15434:6:1", | |
"nodeType": "YulTypedName", | |
"src": "15434:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "15494:10:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "15494:10:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "15503:1:1", | |
"nodeType": "YulLiteral", | |
"src": "15503:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nativeSrc": "15498:1:1", | |
"nodeType": "YulTypedName", | |
"src": "15498:1:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "15562:163:1", | |
"nodeType": "YulBlock", | |
"src": "15562:163:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "dstPtr", | |
"nativeSrc": "15587:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15587:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "15605:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "15605:3:1" | |
}, | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "15610:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "15610:9:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "15601:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "15601:3:1" | |
}, | |
"nativeSrc": "15601:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15601:19:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "15595:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "15595:5:1" | |
}, | |
"nativeSrc": "15595:26:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15595:26:1" | |
} | |
], | |
"functionName": { | |
"name": "sstore", | |
"nativeSrc": "15580:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15580:6:1" | |
}, | |
"nativeSrc": "15580:42:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15580:42:1" | |
}, | |
"nativeSrc": "15580:42:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "15580:42:1" | |
}, | |
{ | |
"nativeSrc": "15639:24:1", | |
"nodeType": "YulAssignment", | |
"src": "15639:24:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "dstPtr", | |
"nativeSrc": "15653:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15653:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "15661:1:1", | |
"nodeType": "YulLiteral", | |
"src": "15661:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "15649:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "15649:3:1" | |
}, | |
"nativeSrc": "15649:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15649:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "dstPtr", | |
"nativeSrc": "15639:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15639:6:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "15680:31:1", | |
"nodeType": "YulAssignment", | |
"src": "15680:31:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "15697:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "15697:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "15708:2:1", | |
"nodeType": "YulLiteral", | |
"src": "15708:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "15693:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "15693:3:1" | |
}, | |
"nativeSrc": "15693:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15693:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "15680:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "15680:9:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "15528:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "15528:1:1" | |
}, | |
{ | |
"name": "loopEnd", | |
"nativeSrc": "15531:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "15531:7:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "15525:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "15525:2:1" | |
}, | |
"nativeSrc": "15525:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15525:14:1" | |
}, | |
"nativeSrc": "15517:208:1", | |
"nodeType": "YulForLoop", | |
"post": { | |
"nativeSrc": "15540:21:1", | |
"nodeType": "YulBlock", | |
"src": "15540:21:1", | |
"statements": [ | |
{ | |
"nativeSrc": "15542:17:1", | |
"nodeType": "YulAssignment", | |
"src": "15542:17:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "15551:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "15551:1:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "15554:4:1", | |
"nodeType": "YulLiteral", | |
"src": "15554:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "15547:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "15547:3:1" | |
}, | |
"nativeSrc": "15547:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15547:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nativeSrc": "15542:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "15542:1:1" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nativeSrc": "15521:3:1", | |
"nodeType": "YulBlock", | |
"src": "15521:3:1", | |
"statements": [] | |
}, | |
"src": "15517:208:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "15761:156:1", | |
"nodeType": "YulBlock", | |
"src": "15761:156:1", | |
"statements": [ | |
{ | |
"nativeSrc": "15779:43:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "15779:43:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "15806:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "15806:3:1" | |
}, | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "15811:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "15811:9:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "15802:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "15802:3:1" | |
}, | |
"nativeSrc": "15802:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15802:19:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "15796:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "15796:5:1" | |
}, | |
"nativeSrc": "15796:26:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15796:26:1" | |
}, | |
"variables": [ | |
{ | |
"name": "lastValue", | |
"nativeSrc": "15783:9:1", | |
"nodeType": "YulTypedName", | |
"src": "15783:9:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "dstPtr", | |
"nativeSrc": "15846:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15846:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "lastValue", | |
"nativeSrc": "15873:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "15873:9:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "newLen", | |
"nativeSrc": "15888:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15888:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "15896:4:1", | |
"nodeType": "YulLiteral", | |
"src": "15896:4:1", | |
"type": "", | |
"value": "0x1f" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "15884:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "15884:3:1" | |
}, | |
"nativeSrc": "15884:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15884:17:1" | |
} | |
], | |
"functionName": { | |
"name": "mask_bytes_dynamic", | |
"nativeSrc": "15854:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "15854:18:1" | |
}, | |
"nativeSrc": "15854:48:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15854:48:1" | |
} | |
], | |
"functionName": { | |
"name": "sstore", | |
"nativeSrc": "15839:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15839:6:1" | |
}, | |
"nativeSrc": "15839:64:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15839:64:1" | |
}, | |
"nativeSrc": "15839:64:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "15839:64:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "loopEnd", | |
"nativeSrc": "15744:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "15744:7:1" | |
}, | |
{ | |
"name": "newLen", | |
"nativeSrc": "15753:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15753:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "15741:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "15741:2:1" | |
}, | |
"nativeSrc": "15741:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15741:19:1" | |
}, | |
"nativeSrc": "15738:179:1", | |
"nodeType": "YulIf", | |
"src": "15738:179:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "15937:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "15937:4:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "newLen", | |
"nativeSrc": "15951:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15951:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "15959:1:1", | |
"nodeType": "YulLiteral", | |
"src": "15959:1:1", | |
"type": "", | |
"value": "2" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nativeSrc": "15947:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "15947:3:1" | |
}, | |
"nativeSrc": "15947:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15947:14:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "15963:1:1", | |
"nodeType": "YulLiteral", | |
"src": "15963:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "15943:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "15943:3:1" | |
}, | |
"nativeSrc": "15943:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15943:22:1" | |
} | |
], | |
"functionName": { | |
"name": "sstore", | |
"nativeSrc": "15930:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15930:6:1" | |
}, | |
"nativeSrc": "15930:36:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15930:36:1" | |
}, | |
"nativeSrc": "15930:36:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "15930:36:1" | |
} | |
] | |
}, | |
"nativeSrc": "15358:618:1", | |
"nodeType": "YulCase", | |
"src": "15358:618:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "15363:1:1", | |
"nodeType": "YulLiteral", | |
"src": "15363:1:1", | |
"type": "", | |
"value": "1" | |
} | |
}, | |
{ | |
"body": { | |
"nativeSrc": "15993:222:1", | |
"nodeType": "YulBlock", | |
"src": "15993:222:1", | |
"statements": [ | |
{ | |
"nativeSrc": "16007:14:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "16007:14:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "16020:1:1", | |
"nodeType": "YulLiteral", | |
"src": "16020:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "value", | |
"nativeSrc": "16011:5:1", | |
"nodeType": "YulTypedName", | |
"src": "16011:5:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "16044:67:1", | |
"nodeType": "YulBlock", | |
"src": "16044:67:1", | |
"statements": [ | |
{ | |
"nativeSrc": "16062:35:1", | |
"nodeType": "YulAssignment", | |
"src": "16062:35:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "16081:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "16081:3:1" | |
}, | |
{ | |
"name": "srcOffset", | |
"nativeSrc": "16086:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "16086:9:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "16077:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "16077:3:1" | |
}, | |
"nativeSrc": "16077:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16077:19:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "16071:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "16071:5:1" | |
}, | |
"nativeSrc": "16071:26:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16071:26:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nativeSrc": "16062:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "16062:5:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"name": "newLen", | |
"nativeSrc": "16037:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "16037:6:1" | |
}, | |
"nativeSrc": "16034:77:1", | |
"nodeType": "YulIf", | |
"src": "16034:77:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "16131:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "16131:4:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "16190:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "16190:5:1" | |
}, | |
{ | |
"name": "newLen", | |
"nativeSrc": "16197:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "16197:6:1" | |
} | |
], | |
"functionName": { | |
"name": "extract_used_part_and_set_length_of_short_byte_array", | |
"nativeSrc": "16137:52:1", | |
"nodeType": "YulIdentifier", | |
"src": "16137:52:1" | |
}, | |
"nativeSrc": "16137:67:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16137:67:1" | |
} | |
], | |
"functionName": { | |
"name": "sstore", | |
"nativeSrc": "16124:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "16124:6:1" | |
}, | |
"nativeSrc": "16124:81:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16124:81:1" | |
}, | |
"nativeSrc": "16124:81:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "16124:81:1" | |
} | |
] | |
}, | |
"nativeSrc": "15985:230:1", | |
"nodeType": "YulCase", | |
"src": "15985:230:1", | |
"value": "default" | |
} | |
], | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "newLen", | |
"nativeSrc": "15338:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "15338:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "15346:2:1", | |
"nodeType": "YulLiteral", | |
"src": "15346:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "15335:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "15335:2:1" | |
}, | |
"nativeSrc": "15335:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "15335:14:1" | |
}, | |
"nativeSrc": "15328:887:1", | |
"nodeType": "YulSwitch", | |
"src": "15328:887:1" | |
} | |
] | |
}, | |
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage", | |
"nativeSrc": "14826:1395:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "slot", | |
"nativeSrc": "14907:4:1", | |
"nodeType": "YulTypedName", | |
"src": "14907:4:1", | |
"type": "" | |
}, | |
{ | |
"name": "src", | |
"nativeSrc": "14913:3:1", | |
"nodeType": "YulTypedName", | |
"src": "14913:3:1", | |
"type": "" | |
} | |
], | |
"src": "14826:1395:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "16255:152:1", | |
"nodeType": "YulBlock", | |
"src": "16255:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "16272:1:1", | |
"nodeType": "YulLiteral", | |
"src": "16272:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "16275:77:1", | |
"nodeType": "YulLiteral", | |
"src": "16275:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "16265:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "16265:6:1" | |
}, | |
"nativeSrc": "16265:88:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16265:88:1" | |
}, | |
"nativeSrc": "16265:88:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "16265:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "16369:1:1", | |
"nodeType": "YulLiteral", | |
"src": "16369:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "16372:4:1", | |
"nodeType": "YulLiteral", | |
"src": "16372:4:1", | |
"type": "", | |
"value": "0x11" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "16362:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "16362:6:1" | |
}, | |
"nativeSrc": "16362:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16362:15:1" | |
}, | |
"nativeSrc": "16362:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "16362:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "16393:1:1", | |
"nodeType": "YulLiteral", | |
"src": "16393:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "16396:4:1", | |
"nodeType": "YulLiteral", | |
"src": "16396:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "16386:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "16386:6:1" | |
}, | |
"nativeSrc": "16386:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16386:15:1" | |
}, | |
"nativeSrc": "16386:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "16386:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x11", | |
"nativeSrc": "16227:180:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "16227:180:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "16458:149:1", | |
"nodeType": "YulBlock", | |
"src": "16458:149:1", | |
"statements": [ | |
{ | |
"nativeSrc": "16468:25:1", | |
"nodeType": "YulAssignment", | |
"src": "16468:25:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nativeSrc": "16491:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "16491:1:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nativeSrc": "16473:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "16473:17:1" | |
}, | |
"nativeSrc": "16473:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16473:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nativeSrc": "16468:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "16468:1:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "16502:25:1", | |
"nodeType": "YulAssignment", | |
"src": "16502:25:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nativeSrc": "16525:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "16525:1:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nativeSrc": "16507:17:1", | |
"nodeType": "YulIdentifier", | |
"src": "16507:17:1" | |
}, | |
"nativeSrc": "16507:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16507:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nativeSrc": "16502:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "16502:1:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "16536:17:1", | |
"nodeType": "YulAssignment", | |
"src": "16536:17:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nativeSrc": "16548:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "16548:1:1" | |
}, | |
{ | |
"name": "y", | |
"nativeSrc": "16551:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "16551:1:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "16544:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "16544:3:1" | |
}, | |
"nativeSrc": "16544:9:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16544:9:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "diff", | |
"nativeSrc": "16536:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "16536:4:1" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "16578:22:1", | |
"nodeType": "YulBlock", | |
"src": "16578:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nativeSrc": "16580:16:1", | |
"nodeType": "YulIdentifier", | |
"src": "16580:16:1" | |
}, | |
"nativeSrc": "16580:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16580:18:1" | |
}, | |
"nativeSrc": "16580:18:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "16580:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "diff", | |
"nativeSrc": "16569:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "16569:4:1" | |
}, | |
{ | |
"name": "x", | |
"nativeSrc": "16575:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "16575:1:1" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "16566:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "16566:2:1" | |
}, | |
"nativeSrc": "16566:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16566:11:1" | |
}, | |
"nativeSrc": "16563:37:1", | |
"nodeType": "YulIf", | |
"src": "16563:37:1" | |
} | |
] | |
}, | |
"name": "checked_sub_t_uint256", | |
"nativeSrc": "16413:194:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nativeSrc": "16444:1:1", | |
"nodeType": "YulTypedName", | |
"src": "16444:1:1", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nativeSrc": "16447:1:1", | |
"nodeType": "YulTypedName", | |
"src": "16447:1:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "diff", | |
"nativeSrc": "16453:4:1", | |
"nodeType": "YulTypedName", | |
"src": "16453:4:1", | |
"type": "" | |
} | |
], | |
"src": "16413:194:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "16641:152:1", | |
"nodeType": "YulBlock", | |
"src": "16641:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "16658:1:1", | |
"nodeType": "YulLiteral", | |
"src": "16658:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "16661:77:1", | |
"nodeType": "YulLiteral", | |
"src": "16661:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "16651:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "16651:6:1" | |
}, | |
"nativeSrc": "16651:88:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16651:88:1" | |
}, | |
"nativeSrc": "16651:88:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "16651:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "16755:1:1", | |
"nodeType": "YulLiteral", | |
"src": "16755:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "16758:4:1", | |
"nodeType": "YulLiteral", | |
"src": "16758:4:1", | |
"type": "", | |
"value": "0x32" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "16748:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "16748:6:1" | |
}, | |
"nativeSrc": "16748:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16748:15:1" | |
}, | |
"nativeSrc": "16748:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "16748:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "16779:1:1", | |
"nodeType": "YulLiteral", | |
"src": "16779:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "16782:4:1", | |
"nodeType": "YulLiteral", | |
"src": "16782:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "16772:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "16772:6:1" | |
}, | |
"nativeSrc": "16772:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16772:15:1" | |
}, | |
"nativeSrc": "16772:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "16772:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x32", | |
"nativeSrc": "16613:180:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "16613:180:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "16905:54:1", | |
"nodeType": "YulBlock", | |
"src": "16905:54:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "16927:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "16927:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "16935:1:1", | |
"nodeType": "YulLiteral", | |
"src": "16935:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "16923:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "16923:3:1" | |
}, | |
"nativeSrc": "16923:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16923:14:1" | |
}, | |
{ | |
"hexValue": "4f6e6c79206f776e6572", | |
"kind": "string", | |
"nativeSrc": "16939:12:1", | |
"nodeType": "YulLiteral", | |
"src": "16939:12:1", | |
"type": "", | |
"value": "Only owner" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "16916:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "16916:6:1" | |
}, | |
"nativeSrc": "16916:36:1", | |
"nodeType": "YulFunctionCall", | |
"src": "16916:36:1" | |
}, | |
"nativeSrc": "16916:36:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "16916:36:1" | |
} | |
] | |
}, | |
"name": "store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d", | |
"nativeSrc": "16799:160:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "16897:6:1", | |
"nodeType": "YulTypedName", | |
"src": "16897:6:1", | |
"type": "" | |
} | |
], | |
"src": "16799:160:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "17111:220:1", | |
"nodeType": "YulBlock", | |
"src": "17111:220:1", | |
"statements": [ | |
{ | |
"nativeSrc": "17121:74:1", | |
"nodeType": "YulAssignment", | |
"src": "17121:74:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "17187:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "17187:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "17192:2:1", | |
"nodeType": "YulLiteral", | |
"src": "17192:2:1", | |
"type": "", | |
"value": "10" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nativeSrc": "17128:58:1", | |
"nodeType": "YulIdentifier", | |
"src": "17128:58:1" | |
}, | |
"nativeSrc": "17128:67:1", | |
"nodeType": "YulFunctionCall", | |
"src": "17128:67:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "17121:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "17121:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "17293:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "17293:3:1" | |
} | |
], | |
"functionName": { | |
"name": "store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d", | |
"nativeSrc": "17204:88:1", | |
"nodeType": "YulIdentifier", | |
"src": "17204:88:1" | |
}, | |
"nativeSrc": "17204:93:1", | |
"nodeType": "YulFunctionCall", | |
"src": "17204:93:1" | |
}, | |
"nativeSrc": "17204:93:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "17204:93:1" | |
}, | |
{ | |
"nativeSrc": "17306:19:1", | |
"nodeType": "YulAssignment", | |
"src": "17306:19:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "17317:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "17317:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "17322:2:1", | |
"nodeType": "YulLiteral", | |
"src": "17322:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "17313:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "17313:3:1" | |
}, | |
"nativeSrc": "17313:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "17313:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nativeSrc": "17306:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "17306:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "16965:366:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "17099:3:1", | |
"nodeType": "YulTypedName", | |
"src": "17099:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nativeSrc": "17107:3:1", | |
"nodeType": "YulTypedName", | |
"src": "17107:3:1", | |
"type": "" | |
} | |
], | |
"src": "16965:366:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "17508:248:1", | |
"nodeType": "YulBlock", | |
"src": "17508:248:1", | |
"statements": [ | |
{ | |
"nativeSrc": "17518:26:1", | |
"nodeType": "YulAssignment", | |
"src": "17518:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "17530:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "17530:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "17541:2:1", | |
"nodeType": "YulLiteral", | |
"src": "17541:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "17526:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "17526:3:1" | |
}, | |
"nativeSrc": "17526:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "17526:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "17518:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "17518:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "17565:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "17565:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "17576:1:1", | |
"nodeType": "YulLiteral", | |
"src": "17576:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "17561:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "17561:3:1" | |
}, | |
"nativeSrc": "17561:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "17561:17:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "17584:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "17584:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "17590:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "17590:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "17580:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "17580:3:1" | |
}, | |
"nativeSrc": "17580:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "17580:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "17554:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "17554:6:1" | |
}, | |
"nativeSrc": "17554:47:1", | |
"nodeType": "YulFunctionCall", | |
"src": "17554:47:1" | |
}, | |
"nativeSrc": "17554:47:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "17554:47:1" | |
}, | |
{ | |
"nativeSrc": "17610:139:1", | |
"nodeType": "YulAssignment", | |
"src": "17610:139:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "17744:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "17744:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "17618:124:1", | |
"nodeType": "YulIdentifier", | |
"src": "17618:124:1" | |
}, | |
"nativeSrc": "17618:131:1", | |
"nodeType": "YulFunctionCall", | |
"src": "17618:131:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "17610:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "17610:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d__to_t_string_memory_ptr__fromStack_reversed", | |
"nativeSrc": "17337:419:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "17488:9:1", | |
"nodeType": "YulTypedName", | |
"src": "17488:9:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "17503:4:1", | |
"nodeType": "YulTypedName", | |
"src": "17503:4:1", | |
"type": "" | |
} | |
], | |
"src": "17337:419:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "17875:742:1", | |
"nodeType": "YulBlock", | |
"src": "17875:742:1", | |
"statements": [ | |
{ | |
"nativeSrc": "17885:29:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "17885:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "17908:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "17908:5:1" | |
} | |
], | |
"functionName": { | |
"name": "sload", | |
"nativeSrc": "17902:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "17902:5:1" | |
}, | |
"nativeSrc": "17902:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "17902:12:1" | |
}, | |
"variables": [ | |
{ | |
"name": "slotValue", | |
"nativeSrc": "17889:9:1", | |
"nodeType": "YulTypedName", | |
"src": "17889:9:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "17923:50:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "17923:50:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "slotValue", | |
"nativeSrc": "17963:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "17963:9:1" | |
} | |
], | |
"functionName": { | |
"name": "extract_byte_array_length", | |
"nativeSrc": "17937:25:1", | |
"nodeType": "YulIdentifier", | |
"src": "17937:25:1" | |
}, | |
"nativeSrc": "17937:36:1", | |
"nodeType": "YulFunctionCall", | |
"src": "17937:36:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "17927:6:1", | |
"nodeType": "YulTypedName", | |
"src": "17927:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "17982:78:1", | |
"nodeType": "YulAssignment", | |
"src": "17982:78:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "18048:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18048:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "18053:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "18053:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nativeSrc": "17989:58:1", | |
"nodeType": "YulIdentifier", | |
"src": "17989:58:1" | |
}, | |
"nativeSrc": "17989:71:1", | |
"nodeType": "YulFunctionCall", | |
"src": "17989:71:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "17982:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "17982:3:1" | |
} | |
] | |
}, | |
{ | |
"cases": [ | |
{ | |
"body": { | |
"nativeSrc": "18109:157:1", | |
"nodeType": "YulBlock", | |
"src": "18109:157:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "18162:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18162:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "slotValue", | |
"nativeSrc": "18171:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "18171:9:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "18186:4:1", | |
"nodeType": "YulLiteral", | |
"src": "18186:4:1", | |
"type": "", | |
"value": "0xff" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nativeSrc": "18182:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18182:3:1" | |
}, | |
"nativeSrc": "18182:9:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18182:9:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "18167:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18167:3:1" | |
}, | |
"nativeSrc": "18167:25:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18167:25:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "18155:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "18155:6:1" | |
}, | |
"nativeSrc": "18155:38:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18155:38:1" | |
}, | |
"nativeSrc": "18155:38:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "18155:38:1" | |
}, | |
{ | |
"nativeSrc": "18206:50:1", | |
"nodeType": "YulAssignment", | |
"src": "18206:50:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "18217:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18217:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "18226:4:1", | |
"nodeType": "YulLiteral", | |
"src": "18226:4:1", | |
"type": "", | |
"value": "0x20" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "18246:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "18246:6:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nativeSrc": "18239:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "18239:6:1" | |
}, | |
"nativeSrc": "18239:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18239:14:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nativeSrc": "18232:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "18232:6:1" | |
}, | |
"nativeSrc": "18232:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18232:22:1" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nativeSrc": "18222:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18222:3:1" | |
}, | |
"nativeSrc": "18222:33:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18222:33:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "18213:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18213:3:1" | |
}, | |
"nativeSrc": "18213:43:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18213:43:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "18206:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18206:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"nativeSrc": "18102:164:1", | |
"nodeType": "YulCase", | |
"src": "18102:164:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "18107:1:1", | |
"nodeType": "YulLiteral", | |
"src": "18107:1:1", | |
"type": "", | |
"value": "0" | |
} | |
}, | |
{ | |
"body": { | |
"nativeSrc": "18282:329:1", | |
"nodeType": "YulBlock", | |
"src": "18282:329:1", | |
"statements": [ | |
{ | |
"nativeSrc": "18327:53:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "18327:53:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "18374:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "18374:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_dataslot_t_string_storage", | |
"nativeSrc": "18342:31:1", | |
"nodeType": "YulIdentifier", | |
"src": "18342:31:1" | |
}, | |
"nativeSrc": "18342:38:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18342:38:1" | |
}, | |
"variables": [ | |
{ | |
"name": "dataPos", | |
"nativeSrc": "18331:7:1", | |
"nodeType": "YulTypedName", | |
"src": "18331:7:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "18393:10:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "18393:10:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "18402:1:1", | |
"nodeType": "YulLiteral", | |
"src": "18402:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nativeSrc": "18397:1:1", | |
"nodeType": "YulTypedName", | |
"src": "18397:1:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "18460:110:1", | |
"nodeType": "YulBlock", | |
"src": "18460:110:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "18489:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18489:3:1" | |
}, | |
{ | |
"name": "i", | |
"nativeSrc": "18494:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "18494:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "18485:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18485:3:1" | |
}, | |
"nativeSrc": "18485:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18485:11:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "dataPos", | |
"nativeSrc": "18504:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "18504:7:1" | |
} | |
], | |
"functionName": { | |
"name": "sload", | |
"nativeSrc": "18498:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "18498:5:1" | |
}, | |
"nativeSrc": "18498:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18498:14:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "18478:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "18478:6:1" | |
}, | |
"nativeSrc": "18478:35:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18478:35:1" | |
}, | |
"nativeSrc": "18478:35:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "18478:35:1" | |
}, | |
{ | |
"nativeSrc": "18530:26:1", | |
"nodeType": "YulAssignment", | |
"src": "18530:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "dataPos", | |
"nativeSrc": "18545:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "18545:7:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "18554:1:1", | |
"nodeType": "YulLiteral", | |
"src": "18554:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "18541:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18541:3:1" | |
}, | |
"nativeSrc": "18541:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18541:15:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "dataPos", | |
"nativeSrc": "18530:7:1", | |
"nodeType": "YulIdentifier", | |
"src": "18530:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "18427:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "18427:1:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "18430:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "18430:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "18424:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "18424:2:1" | |
}, | |
"nativeSrc": "18424:13:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18424:13:1" | |
}, | |
"nativeSrc": "18416:154:1", | |
"nodeType": "YulForLoop", | |
"post": { | |
"nativeSrc": "18438:21:1", | |
"nodeType": "YulBlock", | |
"src": "18438:21:1", | |
"statements": [ | |
{ | |
"nativeSrc": "18440:17:1", | |
"nodeType": "YulAssignment", | |
"src": "18440:17:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "18449:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "18449:1:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "18452:4:1", | |
"nodeType": "YulLiteral", | |
"src": "18452:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "18445:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18445:3:1" | |
}, | |
"nativeSrc": "18445:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18445:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nativeSrc": "18440:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "18440:1:1" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nativeSrc": "18420:3:1", | |
"nodeType": "YulBlock", | |
"src": "18420:3:1", | |
"statements": [] | |
}, | |
"src": "18416:154:1" | |
}, | |
{ | |
"nativeSrc": "18583:18:1", | |
"nodeType": "YulAssignment", | |
"src": "18583:18:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "18594:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18594:3:1" | |
}, | |
{ | |
"name": "i", | |
"nativeSrc": "18599:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "18599:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "18590:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18590:3:1" | |
}, | |
"nativeSrc": "18590:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18590:11:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "18583:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18583:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"nativeSrc": "18275:336:1", | |
"nodeType": "YulCase", | |
"src": "18275:336:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "18280:1:1", | |
"nodeType": "YulLiteral", | |
"src": "18280:1:1", | |
"type": "", | |
"value": "1" | |
} | |
} | |
], | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "slotValue", | |
"nativeSrc": "18080:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "18080:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "18091:1:1", | |
"nodeType": "YulLiteral", | |
"src": "18091:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "18076:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18076:3:1" | |
}, | |
"nativeSrc": "18076:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18076:17:1" | |
}, | |
"nativeSrc": "18069:542:1", | |
"nodeType": "YulSwitch", | |
"src": "18069:542:1" | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "17786:831:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "17856:5:1", | |
"nodeType": "YulTypedName", | |
"src": "17856:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "17863:3:1", | |
"nodeType": "YulTypedName", | |
"src": "17863:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "ret", | |
"nativeSrc": "17871:3:1", | |
"nodeType": "YulTypedName", | |
"src": "17871:3:1", | |
"type": "" | |
} | |
], | |
"src": "17786:831:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "18786:345:1", | |
"nodeType": "YulBlock", | |
"src": "18786:345:1", | |
"statements": [ | |
{ | |
"nativeSrc": "18796:26:1", | |
"nodeType": "YulAssignment", | |
"src": "18796:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "18808:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "18808:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "18819:2:1", | |
"nodeType": "YulLiteral", | |
"src": "18819:2:1", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "18804:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18804:3:1" | |
}, | |
"nativeSrc": "18804:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18804:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "18796:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "18796:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "18843:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "18843:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "18854:1:1", | |
"nodeType": "YulLiteral", | |
"src": "18854:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "18839:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18839:3:1" | |
}, | |
"nativeSrc": "18839:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18839:17:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "18862:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "18862:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "18868:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "18868:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "18858:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18858:3:1" | |
}, | |
"nativeSrc": "18858:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18858:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "18832:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "18832:6:1" | |
}, | |
"nativeSrc": "18832:47:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18832:47:1" | |
}, | |
"nativeSrc": "18832:47:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "18832:47:1" | |
}, | |
{ | |
"nativeSrc": "18888:83:1", | |
"nodeType": "YulAssignment", | |
"src": "18888:83:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "18957:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "18957:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nativeSrc": "18966:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "18966:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "18896:60:1", | |
"nodeType": "YulIdentifier", | |
"src": "18896:60:1" | |
}, | |
"nativeSrc": "18896:75:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18896:75:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "18888:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "18888:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "18992:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "18992:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "19003:2:1", | |
"nodeType": "YulLiteral", | |
"src": "19003:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "18988:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "18988:3:1" | |
}, | |
"nativeSrc": "18988:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18988:18:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "19012:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "19012:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "19018:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "19018:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "19008:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "19008:3:1" | |
}, | |
"nativeSrc": "19008:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "19008:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "18981:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "18981:6:1" | |
}, | |
"nativeSrc": "18981:48:1", | |
"nodeType": "YulFunctionCall", | |
"src": "18981:48:1" | |
}, | |
"nativeSrc": "18981:48:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "18981:48:1" | |
}, | |
{ | |
"nativeSrc": "19038:86:1", | |
"nodeType": "YulAssignment", | |
"src": "19038:86:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value1", | |
"nativeSrc": "19110:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "19110:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nativeSrc": "19119:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "19119:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "19046:63:1", | |
"nodeType": "YulIdentifier", | |
"src": "19046:63:1" | |
}, | |
"nativeSrc": "19046:78:1", | |
"nodeType": "YulFunctionCall", | |
"src": "19046:78:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "19038:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "19038:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed", | |
"nativeSrc": "18623:508:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "18750:9:1", | |
"nodeType": "YulTypedName", | |
"src": "18750:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nativeSrc": "18762:6:1", | |
"nodeType": "YulTypedName", | |
"src": "18762:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nativeSrc": "18770:6:1", | |
"nodeType": "YulTypedName", | |
"src": "18770:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "18781:4:1", | |
"nodeType": "YulTypedName", | |
"src": "18781:4:1", | |
"type": "" | |
} | |
], | |
"src": "18623:508:1" | |
} | |
] | |
}, | |
"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 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_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\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_with_cleanup(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_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 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 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 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_with_cleanup(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 mstore(add(dst, length), 0)\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_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(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_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_uint256t_string_memory_ptr(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 := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr(value0, pos) -> updatedPos {\n updatedPos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(value0, pos)\n }\n\n function array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n // string[] -> string[]\n function abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(pos, length)\n let headStart := pos\n let tail := add(pos, mul(length, 0x20))\n let baseRef := array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n mstore(pos, sub(tail, headStart))\n let elementValue0 := mload(srcPtr)\n tail := abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr(elementValue0, tail)\n srcPtr := array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr(srcPtr)\n pos := add(pos, 0x20)\n }\n pos := tail\n end := pos\n }\n\n function abi_encode_tuple_t_array$_t_string_memory_ptr_$dyn_memory_ptr__to_t_array$_t_string_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack(value0, tail)\n\n }\n\n function store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b(memPtr) {\n\n mstore(add(memPtr, 0), \"Only whitelist\")\n\n }\n\n function abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_e456a8df821d58a81d00df5ff2bc8653f1a52a4771d0bdf36a4aa3f1bac56f7b_to_t_string_memory_ptr_fromStack( tail)\n\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 function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\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_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n diff := sub(x, y)\n\n if gt(diff, x) { panic_error_0x11() }\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d(memPtr) {\n\n mstore(add(memPtr, 0), \"Only owner\")\n\n }\n\n function abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 10)\n store_literal_in_memory_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_17d9f114efaa93d67eedad749dd7fd16a6895ff93e28b7a30c667a069f2ed42d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n // string -> string\n function abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack(value, pos) -> ret {\n let slotValue := sload(value)\n let length := extract_byte_array_length(slotValue)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n switch and(slotValue, 1)\n case 0 {\n // short byte array\n mstore(pos, and(slotValue, not(0xff)))\n ret := add(pos, mul(0x20, iszero(iszero(length))))\n }\n case 1 {\n // long byte array\n let dataPos := array_dataslot_t_string_storage(value)\n let i := 0\n for { } lt(i, length) { i := add(i, 0x20) } {\n mstore(add(pos, i), sload(dataPos))\n dataPos := add(dataPos, 1)\n }\n ret := add(pos, i)\n }\n }\n\n function abi_encode_tuple_t_string_storage_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_storage_to_t_string_memory_ptr_fromStack(value0, tail)\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}\n", | |
"id": 1, | |
"language": "Yul", | |
"name": "#utility.yul" | |
} | |
], | |
"immutableReferences": {}, | |
"linkReferences": {}, | |
"object": "608060405234801561000f575f80fd5b5060043610610086575f3560e01c80638da5cb5b116100595780638da5cb5b14610136578063b682000214610154578063ca6d56dc14610170578063d03d58491461018c57610086565b80630bf803e41461008a5780631a3cd59a146100ba5780631f81595d146100ea578063372c12b114610106575b5f80fd5b6100a4600480360381019061009f919061086e565b6101aa565b6040516100b191906108cd565b60405180910390f35b6100d460048036038101906100cf9190610910565b610284565b6040516100e191906109b5565b60405180910390f35b61010460048036038101906100ff9190610a2f565b61032f565b005b610120600480360381019061011b9190610a2f565b610415565b60405161012d9190610a74565b60405180910390f35b61013e610432565b60405161014b9190610a9c565b60405180910390f35b61016e60048036038101906101699190610ab5565b610457565b005b61018a60048036038101906101859190610a2f565b610567565b005b61019461064e565b6040516101a19190610c12565b60405180910390f35b5f6001151560025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615151461023b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161023290610c7c565b60405180910390fd5b5f82908060018154018082558091505060019003905f5260205f20015f90919091909150908161026b9190610e94565b5060015f8054905061027d9190610f90565b9050919050565b60605f828154811061029957610298610fc3565b5b905f5260205f200180546102ac90610cc7565b80601f01602080910402602001604051908101604052809291908181526020018280546102d890610cc7565b80156103235780601f106102fa57610100808354040283529160200191610323565b820191905f5260205f20905b81548152906001019060200180831161030657829003601f168201915b50505050509050919050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146103be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b59061103a565b60405180910390fd5b5f60025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6002602052805f5260405f205f915054906101000a900460ff1681565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6001151560025f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161515146104e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104de90610c7c565b60405180910390fd5b7f305058d54db6daf26994cd687b168a24cdd9a7201462f1659782c4e4299879925f838154811061051b5761051a610fc3565b5b905f5260205f2001826040516105329291906110d9565b60405180910390a1805f838154811061054e5761054d610fc3565b5b905f5260205f200190816105629190610e94565b505050565b60015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146105f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ed9061103a565b60405180910390fd5b600160025f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60605f805480602002602001604051908101604052809291908181526020015f905b82821015610718578382905f5260205f2001805461068d90610cc7565b80601f01602080910402602001604051908101604052809291908181526020018280546106b990610cc7565b80156107045780601f106106db57610100808354040283529160200191610704565b820191905f5260205f20905b8154815290600101906020018083116106e757829003601f168201915b505050505081526020019060010190610670565b50505050905090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6107808261073a565b810181811067ffffffffffffffff8211171561079f5761079e61074a565b5b80604052505050565b5f6107b1610721565b90506107bd8282610777565b919050565b5f67ffffffffffffffff8211156107dc576107db61074a565b5b6107e58261073a565b9050602081019050919050565b828183375f83830152505050565b5f61081261080d846107c2565b6107a8565b90508281526020810184848401111561082e5761082d610736565b5b6108398482856107f2565b509392505050565b5f82601f83011261085557610854610732565b5b8135610865848260208601610800565b91505092915050565b5f602082840312156108835761088261072a565b5b5f82013567ffffffffffffffff8111156108a05761089f61072e565b5b6108ac84828501610841565b91505092915050565b5f819050919050565b6108c7816108b5565b82525050565b5f6020820190506108e05f8301846108be565b92915050565b6108ef816108b5565b81146108f9575f80fd5b50565b5f8135905061090a816108e6565b92915050565b5f602082840312156109255761092461072a565b5b5f610932848285016108fc565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610972578082015181840152602081019050610957565b5f8484015250505050565b5f6109878261093b565b6109918185610945565b93506109a1818560208601610955565b6109aa8161073a565b840191505092915050565b5f6020820190508181035f8301526109cd818461097d565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6109fe826109d5565b9050919050565b610a0e816109f4565b8114610a18575f80fd5b50565b5f81359050610a2981610a05565b92915050565b5f60208284031215610a4457610a4361072a565b5b5f610a5184828501610a1b565b91505092915050565b5f8115159050919050565b610a6e81610a5a565b82525050565b5f602082019050610a875f830184610a65565b92915050565b610a96816109f4565b82525050565b5f602082019050610aaf5f830184610a8d565b92915050565b5f8060408385031215610acb57610aca61072a565b5b5f610ad8858286016108fc565b925050602083013567ffffffffffffffff811115610af957610af861072e565b5b610b0585828601610841565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b5f82825260208201905092915050565b5f610b528261093b565b610b5c8185610b38565b9350610b6c818560208601610955565b610b758161073a565b840191505092915050565b5f610b8b8383610b48565b905092915050565b5f602082019050919050565b5f610ba982610b0f565b610bb38185610b19565b935083602082028501610bc585610b29565b805f5b85811015610c005784840389528151610be18582610b80565b9450610bec83610b93565b925060208a01995050600181019050610bc8565b50829750879550505050505092915050565b5f6020820190508181035f830152610c2a8184610b9f565b905092915050565b7f4f6e6c792077686974656c6973740000000000000000000000000000000000005f82015250565b5f610c66600e83610945565b9150610c7182610c32565b602082019050919050565b5f6020820190508181035f830152610c9381610c5a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610cde57607f821691505b602082108103610cf157610cf0610c9a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610d537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610d18565b610d5d8683610d18565b95508019841693508086168417925050509392505050565b5f819050919050565b5f610d98610d93610d8e846108b5565b610d75565b6108b5565b9050919050565b5f819050919050565b610db183610d7e565b610dc5610dbd82610d9f565b848454610d24565b825550505050565b5f90565b610dd9610dcd565b610de4818484610da8565b505050565b5b81811015610e0757610dfc5f82610dd1565b600181019050610dea565b5050565b601f821115610e4c57610e1d81610cf7565b610e2684610d09565b81016020851015610e35578190505b610e49610e4185610d09565b830182610de9565b50505b505050565b5f82821c905092915050565b5f610e6c5f1984600802610e51565b1980831691505092915050565b5f610e848383610e5d565b9150826002028217905092915050565b610e9d8261093b565b67ffffffffffffffff811115610eb657610eb561074a565b5b610ec08254610cc7565b610ecb828285610e0b565b5f60209050601f831160018114610efc575f8415610eea578287015190505b610ef48582610e79565b865550610f5b565b601f198416610f0a86610cf7565b5f5b82811015610f3157848901518255600182019150602085019450602081019050610f0c565b86831015610f4e5784890151610f4a601f891682610e5d565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610f9a826108b5565b9150610fa5836108b5565b9250828203905081811115610fbd57610fbc610f63565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4f6e6c79206f776e6572000000000000000000000000000000000000000000005f82015250565b5f611024600a83610945565b915061102f82610ff0565b602082019050919050565b5f6020820190508181035f83015261105181611018565b9050919050565b5f815461106481610cc7565b61106e8186610945565b9450600182165f8114611088576001811461109e576110d0565b60ff1983168652811515602002860193506110d0565b6110a785610cf7565b5f5b838110156110c8578154818901526001820191506020810190506110a9565b808801955050505b50505092915050565b5f6040820190508181035f8301526110f18185611058565b90508181036020830152611105818461097d565b9050939250505056fea2646970667358221220209f9374086b86519f42a7b99e98624bdf59d6940324a99356b76428f953f33864736f6c63430008160033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x86 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x59 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x136 JUMPI DUP1 PUSH4 0xB6820002 EQ PUSH2 0x154 JUMPI DUP1 PUSH4 0xCA6D56DC EQ PUSH2 0x170 JUMPI DUP1 PUSH4 0xD03D5849 EQ PUSH2 0x18C JUMPI PUSH2 0x86 JUMP JUMPDEST DUP1 PUSH4 0xBF803E4 EQ PUSH2 0x8A JUMPI DUP1 PUSH4 0x1A3CD59A EQ PUSH2 0xBA JUMPI DUP1 PUSH4 0x1F81595D EQ PUSH2 0xEA JUMPI DUP1 PUSH4 0x372C12B1 EQ PUSH2 0x106 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xA4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x9F SWAP2 SWAP1 PUSH2 0x86E JUMP JUMPDEST PUSH2 0x1AA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB1 SWAP2 SWAP1 PUSH2 0x8CD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xD4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xCF SWAP2 SWAP1 PUSH2 0x910 JUMP JUMPDEST PUSH2 0x284 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE1 SWAP2 SWAP1 PUSH2 0x9B5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x104 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xFF SWAP2 SWAP1 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0x32F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x120 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x11B SWAP2 SWAP1 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0x415 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12D SWAP2 SWAP1 PUSH2 0xA74 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13E PUSH2 0x432 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x14B SWAP2 SWAP1 PUSH2 0xA9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x169 SWAP2 SWAP1 PUSH2 0xAB5 JUMP JUMPDEST PUSH2 0x457 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x18A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x185 SWAP2 SWAP1 PUSH2 0xA2F JUMP JUMPDEST PUSH2 0x567 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x194 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A1 SWAP2 SWAP1 PUSH2 0xC12 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 PUSH1 0x1 ISZERO ISZERO PUSH1 0x2 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x23B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x232 SWAP1 PUSH2 0xC7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 DUP3 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD PUSH0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SWAP1 DUP2 PUSH2 0x26B SWAP2 SWAP1 PUSH2 0xE94 JUMP JUMPDEST POP PUSH1 0x1 PUSH0 DUP1 SLOAD SWAP1 POP PUSH2 0x27D SWAP2 SWAP1 PUSH2 0xF90 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x299 JUMPI PUSH2 0x298 PUSH2 0xFC3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x2AC SWAP1 PUSH2 0xCC7 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 0x2D8 SWAP1 PUSH2 0xCC7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x323 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2FA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x323 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x306 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x3BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3B5 SWAP1 PUSH2 0x103A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x2 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x20 MSTORE DUP1 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x1 ISZERO ISZERO PUSH1 0x2 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO ISZERO EQ PUSH2 0x4E7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4DE SWAP1 PUSH2 0xC7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x305058D54DB6DAF26994CD687B168A24CDD9A7201462F1659782C4E429987992 PUSH0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x51B JUMPI PUSH2 0x51A PUSH2 0xFC3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD DUP3 PUSH1 0x40 MLOAD PUSH2 0x532 SWAP3 SWAP2 SWAP1 PUSH2 0x10D9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 PUSH0 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x54E JUMPI PUSH2 0x54D PUSH2 0xFC3 JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD SWAP1 DUP2 PUSH2 0x562 SWAP2 SWAP1 PUSH2 0xE94 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x5F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5ED SWAP1 PUSH2 0x103A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x2 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 SLOAD DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x718 JUMPI DUP4 DUP3 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x68D SWAP1 PUSH2 0xCC7 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 0x6B9 SWAP1 PUSH2 0xCC7 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x704 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x6DB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x704 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x6E7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x670 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x780 DUP3 PUSH2 0x73A JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x79F JUMPI PUSH2 0x79E PUSH2 0x74A JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x7B1 PUSH2 0x721 JUMP JUMPDEST SWAP1 POP PUSH2 0x7BD DUP3 DUP3 PUSH2 0x777 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x7DC JUMPI PUSH2 0x7DB PUSH2 0x74A JUMP JUMPDEST JUMPDEST PUSH2 0x7E5 DUP3 PUSH2 0x73A JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x812 PUSH2 0x80D DUP5 PUSH2 0x7C2 JUMP JUMPDEST PUSH2 0x7A8 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x82E JUMPI PUSH2 0x82D PUSH2 0x736 JUMP JUMPDEST JUMPDEST PUSH2 0x839 DUP5 DUP3 DUP6 PUSH2 0x7F2 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x855 JUMPI PUSH2 0x854 PUSH2 0x732 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x865 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x800 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x883 JUMPI PUSH2 0x882 PUSH2 0x72A JUMP JUMPDEST JUMPDEST PUSH0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x8A0 JUMPI PUSH2 0x89F PUSH2 0x72E JUMP JUMPDEST JUMPDEST PUSH2 0x8AC DUP5 DUP3 DUP6 ADD PUSH2 0x841 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8C7 DUP2 PUSH2 0x8B5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x8E0 PUSH0 DUP4 ADD DUP5 PUSH2 0x8BE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x8EF DUP2 PUSH2 0x8B5 JUMP JUMPDEST DUP2 EQ PUSH2 0x8F9 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x90A DUP2 PUSH2 0x8E6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x925 JUMPI PUSH2 0x924 PUSH2 0x72A JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x932 DUP5 DUP3 DUP6 ADD PUSH2 0x8FC JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x972 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x957 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x987 DUP3 PUSH2 0x93B JUMP JUMPDEST PUSH2 0x991 DUP2 DUP6 PUSH2 0x945 JUMP JUMPDEST SWAP4 POP PUSH2 0x9A1 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x955 JUMP JUMPDEST PUSH2 0x9AA DUP2 PUSH2 0x73A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x9CD DUP2 DUP5 PUSH2 0x97D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x9FE DUP3 PUSH2 0x9D5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA0E DUP2 PUSH2 0x9F4 JUMP JUMPDEST DUP2 EQ PUSH2 0xA18 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xA29 DUP2 PUSH2 0xA05 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA44 JUMPI PUSH2 0xA43 PUSH2 0x72A JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xA51 DUP5 DUP3 DUP6 ADD PUSH2 0xA1B JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA6E DUP2 PUSH2 0xA5A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA87 PUSH0 DUP4 ADD DUP5 PUSH2 0xA65 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA96 DUP2 PUSH2 0x9F4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xAAF PUSH0 DUP4 ADD DUP5 PUSH2 0xA8D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xACB JUMPI PUSH2 0xACA PUSH2 0x72A JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xAD8 DUP6 DUP3 DUP7 ADD PUSH2 0x8FC JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xAF9 JUMPI PUSH2 0xAF8 PUSH2 0x72E JUMP JUMPDEST JUMPDEST PUSH2 0xB05 DUP6 DUP3 DUP7 ADD PUSH2 0x841 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB52 DUP3 PUSH2 0x93B JUMP JUMPDEST PUSH2 0xB5C DUP2 DUP6 PUSH2 0xB38 JUMP JUMPDEST SWAP4 POP PUSH2 0xB6C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x955 JUMP JUMPDEST PUSH2 0xB75 DUP2 PUSH2 0x73A JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xB8B DUP4 DUP4 PUSH2 0xB48 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xBA9 DUP3 PUSH2 0xB0F JUMP JUMPDEST PUSH2 0xBB3 DUP2 DUP6 PUSH2 0xB19 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0xBC5 DUP6 PUSH2 0xB29 JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0xC00 JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0xBE1 DUP6 DUP3 PUSH2 0xB80 JUMP JUMPDEST SWAP5 POP PUSH2 0xBEC DUP4 PUSH2 0xB93 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xBC8 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xC2A DUP2 DUP5 PUSH2 0xB9F JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F6E6C792077686974656C697374000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xC66 PUSH1 0xE DUP4 PUSH2 0x945 JUMP JUMPDEST SWAP2 POP PUSH2 0xC71 DUP3 PUSH2 0xC32 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xC93 DUP2 PUSH2 0xC5A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xCDE JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xCF1 JUMPI PUSH2 0xCF0 PUSH2 0xC9A JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0xD53 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0xD18 JUMP JUMPDEST PUSH2 0xD5D DUP7 DUP4 PUSH2 0xD18 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xD98 PUSH2 0xD93 PUSH2 0xD8E DUP5 PUSH2 0x8B5 JUMP JUMPDEST PUSH2 0xD75 JUMP JUMPDEST PUSH2 0x8B5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDB1 DUP4 PUSH2 0xD7E JUMP JUMPDEST PUSH2 0xDC5 PUSH2 0xDBD DUP3 PUSH2 0xD9F JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0xD24 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0xDD9 PUSH2 0xDCD JUMP JUMPDEST PUSH2 0xDE4 DUP2 DUP5 DUP5 PUSH2 0xDA8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xE07 JUMPI PUSH2 0xDFC PUSH0 DUP3 PUSH2 0xDD1 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xDEA JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0xE4C JUMPI PUSH2 0xE1D DUP2 PUSH2 0xCF7 JUMP JUMPDEST PUSH2 0xE26 DUP5 PUSH2 0xD09 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0xE35 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0xE49 PUSH2 0xE41 DUP6 PUSH2 0xD09 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0xDE9 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xE6C PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0xE51 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xE84 DUP4 DUP4 PUSH2 0xE5D JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xE9D DUP3 PUSH2 0x93B JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xEB6 JUMPI PUSH2 0xEB5 PUSH2 0x74A JUMP JUMPDEST JUMPDEST PUSH2 0xEC0 DUP3 SLOAD PUSH2 0xCC7 JUMP JUMPDEST PUSH2 0xECB DUP3 DUP3 DUP6 PUSH2 0xE0B JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0xEFC JUMPI PUSH0 DUP5 ISZERO PUSH2 0xEEA JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0xEF4 DUP6 DUP3 PUSH2 0xE79 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0xF5B JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0xF0A DUP7 PUSH2 0xCF7 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xF31 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xF0C JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0xF4E JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0xF4A PUSH1 0x1F DUP10 AND DUP3 PUSH2 0xE5D JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xF9A DUP3 PUSH2 0x8B5 JUMP JUMPDEST SWAP2 POP PUSH2 0xFA5 DUP4 PUSH2 0x8B5 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0xFBD JUMPI PUSH2 0xFBC PUSH2 0xF63 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH32 0x4F6E6C79206F776E657200000000000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1024 PUSH1 0xA DUP4 PUSH2 0x945 JUMP JUMPDEST SWAP2 POP PUSH2 0x102F DUP3 PUSH2 0xFF0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1051 DUP2 PUSH2 0x1018 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SLOAD PUSH2 0x1064 DUP2 PUSH2 0xCC7 JUMP JUMPDEST PUSH2 0x106E DUP2 DUP7 PUSH2 0x945 JUMP JUMPDEST SWAP5 POP PUSH1 0x1 DUP3 AND PUSH0 DUP2 EQ PUSH2 0x1088 JUMPI PUSH1 0x1 DUP2 EQ PUSH2 0x109E JUMPI PUSH2 0x10D0 JUMP JUMPDEST PUSH1 0xFF NOT DUP4 AND DUP7 MSTORE DUP2 ISZERO ISZERO PUSH1 0x20 MUL DUP7 ADD SWAP4 POP PUSH2 0x10D0 JUMP JUMPDEST PUSH2 0x10A7 DUP6 PUSH2 0xCF7 JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x10C8 JUMPI DUP2 SLOAD DUP2 DUP10 ADD MSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x10A9 JUMP JUMPDEST DUP1 DUP9 ADD SWAP6 POP POP POP JUMPDEST POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x10F1 DUP2 DUP6 PUSH2 0x1058 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1105 DUP2 DUP5 PUSH2 0x97D JUMP JUMPDEST SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 KECCAK256 SWAP16 SWAP4 PUSH21 0x86B86519F42A7B99E98624BDF59D6940324A99356 0xB7 PUSH5 0x28F953F338 PUSH5 0x736F6C6343 STOP ADDMOD AND STOP CALLER ", | |
"sourceMap": "57:1214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;811:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;545:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1168:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;140:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;114:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;651:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1058:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;966:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;811:146;879:10;498:4;473:29;;:9;:21;483:10;473:21;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;465:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;901:4:::1;912:5;901:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;949:1;936:4;:11;;;;:14;;;;:::i;:::-;928:22;;811:146:::0;;;:::o;545:100::-;595:13;627:4;632:5;627:11;;;;;;;;:::i;:::-;;;;;;;;;620:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;545:100;;;:::o;1168:97::-;388:5;;;;;;;;;;;374:19;;:10;:19;;;366:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;1253:5:::1;1232:9;:18;1242:7;1232:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;1168:97:::0;:::o;140:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;114:20::-;;;;;;;;;;;;;:::o;651:153::-;498:4;473:29;;:9;:21;483:10;473:21;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;465:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;737:31:::1;749:4;754:5;749:11;;;;;;;;:::i;:::-;;;;;;;;;762:5;737:31;;;;;;;:::i;:::-;;;;;;;;792:5;778:4;783:5;778:11;;;;;;;;:::i;:::-;;;;;;;;;:19;;;;;;:::i;:::-;;651:153:::0;;:::o;1058:104::-;388:5;;;;;;;;;;;374:19;;:10;:19;;;366:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;1151:4:::1;1130:9;:18;1140:7;1130:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;1058:104:::0;:::o;966:86::-;1007:15;1041:4;1034:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;966:86;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:146::-;1707:6;1702:3;1697;1684:30;1748:1;1739:6;1734:3;1730:16;1723:27;1610:146;;;:::o;1762:425::-;1840:5;1865:66;1881:49;1923:6;1881:49;:::i;:::-;1865:66;:::i;:::-;1856:75;;1954:6;1947:5;1940:21;1992:4;1985:5;1981:16;2030:3;2021:6;2016:3;2012:16;2009:25;2006:112;;;2037:79;;:::i;:::-;2006:112;2127:54;2174:6;2169:3;2164;2127:54;:::i;:::-;1846:341;1762:425;;;;;:::o;2207:340::-;2263:5;2312:3;2305:4;2297:6;2293:17;2289:27;2279:122;;2320:79;;:::i;:::-;2279:122;2437:6;2424:20;2462:79;2537:3;2529:6;2522:4;2514:6;2510:17;2462:79;:::i;:::-;2453:88;;2269:278;2207:340;;;;:::o;2553:509::-;2622:6;2671:2;2659:9;2650:7;2646:23;2642:32;2639:119;;;2677:79;;:::i;:::-;2639:119;2825:1;2814:9;2810:17;2797:31;2855:18;2847:6;2844:30;2841:117;;;2877:79;;:::i;:::-;2841:117;2982:63;3037:7;3028:6;3017:9;3013:22;2982:63;:::i;:::-;2972:73;;2768:287;2553:509;;;;:::o;3068:77::-;3105:7;3134:5;3123:16;;3068:77;;;:::o;3151:118::-;3238:24;3256:5;3238:24;:::i;:::-;3233:3;3226:37;3151:118;;:::o;3275:222::-;3368:4;3406:2;3395:9;3391:18;3383:26;;3419:71;3487:1;3476:9;3472:17;3463:6;3419:71;:::i;:::-;3275:222;;;;:::o;3503:122::-;3576:24;3594:5;3576:24;:::i;:::-;3569:5;3566:35;3556:63;;3615:1;3612;3605:12;3556:63;3503:122;:::o;3631:139::-;3677:5;3715:6;3702:20;3693:29;;3731:33;3758:5;3731:33;:::i;:::-;3631:139;;;;:::o;3776:329::-;3835:6;3884:2;3872:9;3863:7;3859:23;3855:32;3852:119;;;3890:79;;:::i;:::-;3852:119;4010:1;4035:53;4080:7;4071:6;4060:9;4056:22;4035:53;:::i;:::-;4025:63;;3981:117;3776:329;;;;:::o;4111:99::-;4163:6;4197:5;4191:12;4181:22;;4111:99;;;:::o;4216:169::-;4300:11;4334:6;4329:3;4322:19;4374:4;4369:3;4365:14;4350:29;;4216:169;;;;:::o;4391:246::-;4472:1;4482:113;4496:6;4493:1;4490:13;4482:113;;;4581:1;4576:3;4572:11;4566:18;4562:1;4557:3;4553:11;4546:39;4518:2;4515:1;4511:10;4506:15;;4482:113;;;4629:1;4620:6;4615:3;4611:16;4604:27;4453:184;4391:246;;;:::o;4643:377::-;4731:3;4759:39;4792:5;4759:39;:::i;:::-;4814:71;4878:6;4873:3;4814:71;:::i;:::-;4807:78;;4894:65;4952:6;4947:3;4940:4;4933:5;4929:16;4894:65;:::i;:::-;4984:29;5006:6;4984:29;:::i;:::-;4979:3;4975:39;4968:46;;4735:285;4643:377;;;;:::o;5026:313::-;5139:4;5177:2;5166:9;5162:18;5154:26;;5226:9;5220:4;5216:20;5212:1;5201:9;5197:17;5190:47;5254:78;5327:4;5318:6;5254:78;:::i;:::-;5246:86;;5026:313;;;;:::o;5345:126::-;5382:7;5422:42;5415:5;5411:54;5400:65;;5345:126;;;:::o;5477:96::-;5514:7;5543:24;5561:5;5543:24;:::i;:::-;5532:35;;5477:96;;;:::o;5579:122::-;5652:24;5670:5;5652:24;:::i;:::-;5645:5;5642:35;5632:63;;5691:1;5688;5681:12;5632:63;5579:122;:::o;5707:139::-;5753:5;5791:6;5778:20;5769:29;;5807:33;5834:5;5807:33;:::i;:::-;5707:139;;;;:::o;5852:329::-;5911:6;5960:2;5948:9;5939:7;5935:23;5931:32;5928:119;;;5966:79;;:::i;:::-;5928:119;6086:1;6111:53;6156:7;6147:6;6136:9;6132:22;6111:53;:::i;:::-;6101:63;;6057:117;5852:329;;;;:::o;6187:90::-;6221:7;6264:5;6257:13;6250:21;6239:32;;6187:90;;;:::o;6283:109::-;6364:21;6379:5;6364:21;:::i;:::-;6359:3;6352:34;6283:109;;:::o;6398:210::-;6485:4;6523:2;6512:9;6508:18;6500:26;;6536:65;6598:1;6587:9;6583:17;6574:6;6536:65;:::i;:::-;6398:210;;;;:::o;6614:118::-;6701:24;6719:5;6701:24;:::i;:::-;6696:3;6689:37;6614:118;;:::o;6738:222::-;6831:4;6869:2;6858:9;6854:18;6846:26;;6882:71;6950:1;6939:9;6935:17;6926:6;6882:71;:::i;:::-;6738:222;;;;:::o;6966:654::-;7044:6;7052;7101:2;7089:9;7080:7;7076:23;7072:32;7069:119;;;7107:79;;:::i;:::-;7069:119;7227:1;7252:53;7297:7;7288:6;7277:9;7273:22;7252:53;:::i;:::-;7242:63;;7198:117;7382:2;7371:9;7367:18;7354:32;7413:18;7405:6;7402:30;7399:117;;;7435:79;;:::i;:::-;7399:117;7540:63;7595:7;7586:6;7575:9;7571:22;7540:63;:::i;:::-;7530:73;;7325:288;6966:654;;;;;:::o;7626:124::-;7703:6;7737:5;7731:12;7721:22;;7626:124;;;:::o;7756:194::-;7865:11;7899:6;7894:3;7887:19;7939:4;7934:3;7930:14;7915:29;;7756:194;;;;:::o;7956:142::-;8033:4;8056:3;8048:11;;8086:4;8081:3;8077:14;8069:22;;7956:142;;;:::o;8104:159::-;8178:11;8212:6;8207:3;8200:19;8252:4;8247:3;8243:14;8228:29;;8104:159;;;;:::o;8269:357::-;8347:3;8375:39;8408:5;8375:39;:::i;:::-;8430:61;8484:6;8479:3;8430:61;:::i;:::-;8423:68;;8500:65;8558:6;8553:3;8546:4;8539:5;8535:16;8500:65;:::i;:::-;8590:29;8612:6;8590:29;:::i;:::-;8585:3;8581:39;8574:46;;8351:275;8269:357;;;;:::o;8632:196::-;8721:10;8756:66;8818:3;8810:6;8756:66;:::i;:::-;8742:80;;8632:196;;;;:::o;8834:123::-;8914:4;8946;8941:3;8937:14;8929:22;;8834:123;;;:::o;8991:991::-;9130:3;9159:64;9217:5;9159:64;:::i;:::-;9239:96;9328:6;9323:3;9239:96;:::i;:::-;9232:103;;9361:3;9406:4;9398:6;9394:17;9389:3;9385:27;9436:66;9496:5;9436:66;:::i;:::-;9525:7;9556:1;9541:396;9566:6;9563:1;9560:13;9541:396;;;9637:9;9631:4;9627:20;9622:3;9615:33;9688:6;9682:13;9716:84;9795:4;9780:13;9716:84;:::i;:::-;9708:92;;9823:70;9886:6;9823:70;:::i;:::-;9813:80;;9922:4;9917:3;9913:14;9906:21;;9601:336;9588:1;9585;9581:9;9576:14;;9541:396;;;9545:14;9953:4;9946:11;;9973:3;9966:10;;9135:847;;;;;8991:991;;;;:::o;9988:413::-;10151:4;10189:2;10178:9;10174:18;10166:26;;10238:9;10232:4;10228:20;10224:1;10213:9;10209:17;10202:47;10266:128;10389:4;10380:6;10266:128;:::i;:::-;10258:136;;9988:413;;;;:::o;10407:164::-;10547:16;10543:1;10535:6;10531:14;10524:40;10407:164;:::o;10577:366::-;10719:3;10740:67;10804:2;10799:3;10740:67;:::i;:::-;10733:74;;10816:93;10905:3;10816:93;:::i;:::-;10934:2;10929:3;10925:12;10918:19;;10577:366;;;:::o;10949:419::-;11115:4;11153:2;11142:9;11138:18;11130:26;;11202:9;11196:4;11192:20;11188:1;11177:9;11173:17;11166:47;11230:131;11356:4;11230:131;:::i;:::-;11222:139;;10949:419;;;:::o;11374:180::-;11422:77;11419:1;11412:88;11519:4;11516:1;11509:15;11543:4;11540:1;11533:15;11560:320;11604:6;11641:1;11635:4;11631:12;11621:22;;11688:1;11682:4;11678:12;11709:18;11699:81;;11765:4;11757:6;11753:17;11743:27;;11699:81;11827:2;11819:6;11816:14;11796:18;11793:38;11790:84;;11846:18;;:::i;:::-;11790:84;11611:269;11560:320;;;:::o;11886:141::-;11935:4;11958:3;11950:11;;11981:3;11978:1;11971:14;12015:4;12012:1;12002:18;11994:26;;11886:141;;;:::o;12033:93::-;12070:6;12117:2;12112;12105:5;12101:14;12097:23;12087:33;;12033:93;;;:::o;12132:107::-;12176:8;12226:5;12220:4;12216:16;12195:37;;12132:107;;;;:::o;12245:393::-;12314:6;12364:1;12352:10;12348:18;12387:97;12417:66;12406:9;12387:97;:::i;:::-;12505:39;12535:8;12524:9;12505:39;:::i;:::-;12493:51;;12577:4;12573:9;12566:5;12562:21;12553:30;;12626:4;12616:8;12612:19;12605:5;12602:30;12592:40;;12321:317;;12245:393;;;;;:::o;12644:60::-;12672:3;12693:5;12686:12;;12644:60;;;:::o;12710:142::-;12760:9;12793:53;12811:34;12820:24;12838:5;12820:24;:::i;:::-;12811:34;:::i;:::-;12793:53;:::i;:::-;12780:66;;12710:142;;;:::o;12858:75::-;12901:3;12922:5;12915:12;;12858:75;;;:::o;12939:269::-;13049:39;13080:7;13049:39;:::i;:::-;13110:91;13159:41;13183:16;13159:41;:::i;:::-;13151:6;13144:4;13138:11;13110:91;:::i;:::-;13104:4;13097:105;13015:193;12939:269;;;:::o;13214:73::-;13259:3;13214:73;:::o;13293:189::-;13370:32;;:::i;:::-;13411:65;13469:6;13461;13455:4;13411:65;:::i;:::-;13346:136;13293:189;;:::o;13488:186::-;13548:120;13565:3;13558:5;13555:14;13548:120;;;13619:39;13656:1;13649:5;13619:39;:::i;:::-;13592:1;13585:5;13581:13;13572:22;;13548:120;;;13488:186;;:::o;13680:543::-;13781:2;13776:3;13773:11;13770:446;;;13815:38;13847:5;13815:38;:::i;:::-;13899:29;13917:10;13899:29;:::i;:::-;13889:8;13885:44;14082:2;14070:10;14067:18;14064:49;;;14103:8;14088:23;;14064:49;14126:80;14182:22;14200:3;14182:22;:::i;:::-;14172:8;14168:37;14155:11;14126:80;:::i;:::-;13785:431;;13770:446;13680:543;;;:::o;14229:117::-;14283:8;14333:5;14327:4;14323:16;14302:37;;14229:117;;;;:::o;14352:169::-;14396:6;14429:51;14477:1;14473:6;14465:5;14462:1;14458:13;14429:51;:::i;:::-;14425:56;14510:4;14504;14500:15;14490:25;;14403:118;14352:169;;;;:::o;14526:295::-;14602:4;14748:29;14773:3;14767:4;14748:29;:::i;:::-;14740:37;;14810:3;14807:1;14803:11;14797:4;14794:21;14786:29;;14526:295;;;;:::o;14826:1395::-;14943:37;14976:3;14943:37;:::i;:::-;15045:18;15037:6;15034:30;15031:56;;;15067:18;;:::i;:::-;15031:56;15111:38;15143:4;15137:11;15111:38;:::i;:::-;15196:67;15256:6;15248;15242:4;15196:67;:::i;:::-;15290:1;15314:4;15301:17;;15346:2;15338:6;15335:14;15363:1;15358:618;;;;16020:1;16037:6;16034:77;;;16086:9;16081:3;16077:19;16071:26;16062:35;;16034:77;16137:67;16197:6;16190:5;16137:67;:::i;:::-;16131:4;16124:81;15993:222;15328:887;;15358:618;15410:4;15406:9;15398:6;15394:22;15444:37;15476:4;15444:37;:::i;:::-;15503:1;15517:208;15531:7;15528:1;15525:14;15517:208;;;15610:9;15605:3;15601:19;15595:26;15587:6;15580:42;15661:1;15653:6;15649:14;15639:24;;15708:2;15697:9;15693:18;15680:31;;15554:4;15551:1;15547:12;15542:17;;15517:208;;;15753:6;15744:7;15741:19;15738:179;;;15811:9;15806:3;15802:19;15796:26;15854:48;15896:4;15888:6;15884:17;15873:9;15854:48;:::i;:::-;15846:6;15839:64;15761:156;15738:179;15963:1;15959;15951:6;15947:14;15943:22;15937:4;15930:36;15365:611;;;15328:887;;14918:1303;;;14826:1395;;:::o;16227:180::-;16275:77;16272:1;16265:88;16372:4;16369:1;16362:15;16396:4;16393:1;16386:15;16413:194;16453:4;16473:20;16491:1;16473:20;:::i;:::-;16468:25;;16507:20;16525:1;16507:20;:::i;:::-;16502:25;;16551:1;16548;16544:9;16536:17;;16575:1;16569:4;16566:11;16563:37;;;16580:18;;:::i;:::-;16563:37;16413:194;;;;:::o;16613:180::-;16661:77;16658:1;16651:88;16758:4;16755:1;16748:15;16782:4;16779:1;16772:15;16799:160;16939:12;16935:1;16927:6;16923:14;16916:36;16799:160;:::o;16965:366::-;17107:3;17128:67;17192:2;17187:3;17128:67;:::i;:::-;17121:74;;17204:93;17293:3;17204:93;:::i;:::-;17322:2;17317:3;17313:12;17306:19;;16965:366;;;:::o;17337:419::-;17503:4;17541:2;17530:9;17526:18;17518:26;;17590:9;17584:4;17580:20;17576:1;17565:9;17561:17;17554:47;17618:131;17744:4;17618:131;:::i;:::-;17610:139;;17337:419;;;:::o;17786:831::-;17871:3;17908:5;17902:12;17937:36;17963:9;17937:36;:::i;:::-;17989:71;18053:6;18048:3;17989:71;:::i;:::-;17982:78;;18091:1;18080:9;18076:17;18107:1;18102:164;;;;18280:1;18275:336;;;;18069:542;;18102:164;18186:4;18182:9;18171;18167:25;18162:3;18155:38;18246:6;18239:14;18232:22;18226:4;18222:33;18217:3;18213:43;18206:50;;18102:164;;18275:336;18342:38;18374:5;18342:38;:::i;:::-;18402:1;18416:154;18430:6;18427:1;18424:13;18416:154;;;18504:7;18498:14;18494:1;18489:3;18485:11;18478:35;18554:1;18545:7;18541:15;18530:26;;18452:4;18449:1;18445:12;18440:17;;18416:154;;;18599:1;18594:3;18590:11;18583:18;;18282:329;;18069:542;;17875:742;;17786:831;;;;:::o;18623:508::-;18781:4;18819:2;18808:9;18804:18;18796:26;;18868:9;18862:4;18858:20;18854:1;18843:9;18839:17;18832:47;18896:75;18966:4;18957:6;18896:75;:::i;:::-;18888:83;;19018:9;19012:4;19008:20;19003:2;18992:9;18988:18;18981:48;19046:78;19119:4;19110:6;19046:78;:::i;:::-;19038:86;;18623:508;;;;;:::o" | |
}, | |
"gasEstimates": { | |
"creation": { | |
"codeDepositCost": "884000", | |
"executionCost": "49538", | |
"totalCost": "933538" | |
}, | |
"external": { | |
"addInfo(string)": "infinite", | |
"addMember(address)": "27016", | |
"delMember(address)": "27016", | |
"getInfo(uint256)": "infinite", | |
"listInfo()": "infinite", | |
"owner()": "2508", | |
"setInfo(uint256,string)": "infinite", | |
"whiteList(address)": "2900" | |
} | |
}, | |
"methodIdentifiers": { | |
"addInfo(string)": "0bf803e4", | |
"addMember(address)": "ca6d56dc", | |
"delMember(address)": "1f81595d", | |
"getInfo(uint256)": "1a3cd59a", | |
"listInfo()": "d03d5849", | |
"owner()": "8da5cb5b", | |
"setInfo(uint256,string)": "b6820002", | |
"whiteList(address)": "372c12b1" | |
} | |
}, | |
"abi": [ | |
{ | |
"inputs": [], | |
"stateMutability": "nonpayable", | |
"type": "constructor" | |
}, | |
{ | |
"anonymous": false, | |
"inputs": [ | |
{ | |
"indexed": false, | |
"internalType": "string", | |
"name": "oldInfo", | |
"type": "string" | |
}, | |
{ | |
"indexed": false, | |
"internalType": "string", | |
"name": "newInfo", | |
"type": "string" | |
} | |
], | |
"name": "InfoChange", | |
"type": "event" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "_info", | |
"type": "string" | |
} | |
], | |
"name": "addInfo", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "index", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "_member", | |
"type": "address" | |
} | |
], | |
"name": "addMember", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "_member", | |
"type": "address" | |
} | |
], | |
"name": "delMember", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "index", | |
"type": "uint256" | |
} | |
], | |
"name": "getInfo", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "listInfo", | |
"outputs": [ | |
{ | |
"internalType": "string[]", | |
"name": "", | |
"type": "string[]" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "owner", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "index", | |
"type": "uint256" | |
}, | |
{ | |
"internalType": "string", | |
"name": "_info", | |
"type": "string" | |
} | |
], | |
"name": "setInfo", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"name": "whiteList", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"compiler": { | |
"version": "0.8.22+commit.4fc1097e" | |
}, | |
"language": "Solidity", | |
"output": { | |
"abi": [ | |
{ | |
"inputs": [], | |
"stateMutability": "nonpayable", | |
"type": "constructor" | |
}, | |
{ | |
"anonymous": false, | |
"inputs": [ | |
{ | |
"indexed": false, | |
"internalType": "string", | |
"name": "oldInfo", | |
"type": "string" | |
}, | |
{ | |
"indexed": false, | |
"internalType": "string", | |
"name": "newInfo", | |
"type": "string" | |
} | |
], | |
"name": "InfoChange", | |
"type": "event" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "_info", | |
"type": "string" | |
} | |
], | |
"name": "addInfo", | |
"outputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "index", | |
"type": "uint256" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "_member", | |
"type": "address" | |
} | |
], | |
"name": "addMember", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "_member", | |
"type": "address" | |
} | |
], | |
"name": "delMember", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "index", | |
"type": "uint256" | |
} | |
], | |
"name": "getInfo", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "listInfo", | |
"outputs": [ | |
{ | |
"internalType": "string[]", | |
"name": "", | |
"type": "string[]" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [], | |
"name": "owner", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "uint256", | |
"name": "index", | |
"type": "uint256" | |
}, | |
{ | |
"internalType": "string", | |
"name": "_info", | |
"type": "string" | |
} | |
], | |
"name": "setInfo", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "address", | |
"name": "", | |
"type": "address" | |
} | |
], | |
"name": "whiteList", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
} | |
], | |
"devdoc": { | |
"kind": "dev", | |
"methods": {}, | |
"version": 1 | |
}, | |
"userdoc": { | |
"kind": "user", | |
"methods": {}, | |
"version": 1 | |
} | |
}, | |
"settings": { | |
"compilationTarget": { | |
"contracts/RegisterAccessControl.sol": "RegisterAccess" | |
}, | |
"evmVersion": "shanghai", | |
"libraries": {}, | |
"metadata": { | |
"bytecodeHash": "ipfs" | |
}, | |
"optimizer": { | |
"enabled": false, | |
"runs": 200 | |
}, | |
"remappings": [] | |
}, | |
"sources": { | |
"contracts/RegisterAccessControl.sol": { | |
"keccak256": "0x2ce113aa1be088b1cb78436cbb18774d8f9ca923ec6fe54a8481f51e84486cf9", | |
"license": "MIT", | |
"urls": [ | |
"bzz-raw://4a099f93e6639d46e5bf497be0ec685a3c9d4c5030d17e93b12ee0c16867cf69", | |
"dweb:/ipfs/QmSL7MQYFZuwxWgApEbh5Zvp6DYmdA3t5NCMKuvMCbGjQi" | |
] | |
} | |
}, | |
"version": 1 | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.22; | |
contract Payable { | |
// Payable address can send Ether via transfer or send | |
address payable public owner; | |
// Payable constructor can receive Ether | |
constructor() payable { | |
owner = payable(msg.sender); | |
} | |
// Function to deposit Ether into this contract. | |
// Call this function along with some Ether. | |
// The balance of this contract will be automatically updated. | |
function deposit() public payable {} | |
// Call this function along with some Ether. | |
// The function will throw an error since this function is not payable. | |
function notPayable() public {} | |
// Function to withdraw all Ether from this contract. | |
function withdraw() public { | |
// get the amount of Ether stored in this contract | |
uint amount = address(this).balance; | |
require(owner == msg.sender, "Only owner can do a withdraw!"); | |
// send all Ether to owner | |
(bool success, ) = owner.call{value: amount}(""); | |
require(success, "Failed to send Ether"); | |
} | |
// Function to transfer Ether from this contract to address from input | |
function transfer(address payable _to, uint _amount) public { | |
// Note that "to" is declared as payable | |
(bool success, ) = _to.call{value: _amount}(""); | |
require(success, "Failed to send Ether"); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.22; | |
contract Register { | |
string private storedInfo; | |
function setInfo(string memory myInfo) external { | |
storedInfo = myInfo; | |
} | |
function getInfo() external view returns (string memory) { | |
return storedInfo; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//SPDX-License-Identifier: MIT | |
pragma solidity 0.8.22; | |
contract RegisterAccess { | |
string[] private info; | |
address public owner; | |
mapping (address => bool) public whiteList; | |
constructor() { | |
owner = msg.sender; | |
whiteList[msg.sender] = true; | |
} | |
event InfoChange(string oldInfo, string newInfo); | |
modifier onlyOwner { | |
require(msg.sender == owner, "Only owner"); | |
_; | |
} | |
modifier onlyWhitelist { | |
require(whiteList[msg.sender] == true, "Only whitelist"); | |
_; | |
} | |
function getInfo(uint index) public view returns (string memory) { | |
return info[index]; | |
} | |
function setInfo(uint index, string memory _info) public onlyWhitelist { | |
emit InfoChange (info[index], _info); | |
info[index] = _info; | |
} | |
function addInfo(string memory _info) public onlyWhitelist returns (uint index) { | |
info.push (_info); | |
index = info.length -1; | |
} | |
function listInfo() public view returns (string[] memory) { | |
return info; | |
} | |
function addMember (address _member) public onlyOwner { | |
whiteList[_member] = true; | |
} | |
function delMember (address _member) public onlyOwner { | |
whiteList[_member] = false; | |
} | |
} |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"id": "0d6f9056dad8dd2cc8a9a1bb935ba933", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.22", | |
"solcLongVersion": "0.8.22+commit.4fc1097e", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"contracts/Register.sol": { | |
"content": "// SPDX-License-Identifier: MIT\npragma solidity 0.8.22;\n \ncontract Register {\n string private storedInfo;\n\n function setInfo(string memory myInfo) external {\n storedInfo = myInfo;\n }\n\n function getInfo() external view returns (string memory) {\n return storedInfo;\n }\n}\n" | |
} | |
}, | |
"settings": { | |
"optimizer": { | |
"enabled": false, | |
"runs": 200 | |
}, | |
"outputSelection": { | |
"*": { | |
"": [ | |
"ast" | |
], | |
"*": [ | |
"abi", | |
"metadata", | |
"devdoc", | |
"userdoc", | |
"storageLayout", | |
"evm.legacyAssembly", | |
"evm.bytecode", | |
"evm.deployedBytecode", | |
"evm.methodIdentifiers", | |
"evm.gasEstimates", | |
"evm.assembly" | |
] | |
} | |
} | |
} | |
}, | |
"output": { | |
"contracts": { | |
"contracts/Register.sol": { | |
"Register": { | |
"abi": [ | |
{ | |
"inputs": [], | |
"name": "getInfo", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "myInfo", | |
"type": "string" | |
} | |
], | |
"name": "setInfo", | |
"outputs": [], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
} | |
], | |
"devdoc": { | |
"kind": "dev", | |
"methods": {}, | |
"version": 1 | |
}, | |
"evm": { | |
"assembly": " /* \"contracts/Register.sol\":58:297 contract Register {... */\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/Register.sol\":58:297 contract Register {... */\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 0x5a9b0b89\n eq\n tag_3\n jumpi\n dup1\n 0x937f6e77\n eq\n tag_4\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/Register.sol\":204:295 function getInfo() external view returns (string memory) {... */\n tag_3:\n tag_5\n tag_6\n jump\t// in\n tag_5:\n mload(0x40)\n tag_7\n swap2\n swap1\n tag_8\n jump\t// in\n tag_7:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/Register.sol\":114:198 function setInfo(string memory myInfo) external {... */\n tag_4:\n tag_9\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n tag_12\n jump\t// in\n tag_9:\n stop\n /* \"contracts/Register.sol\":204:295 function getInfo() external view returns (string memory) {... */\n tag_6:\n /* \"contracts/Register.sol\":246:259 string memory */\n 0x60\n /* \"contracts/Register.sol\":278:288 storedInfo */\n 0x00\n /* \"contracts/Register.sol\":271:288 return storedInfo */\n dup1\n sload\n tag_14\n swap1\n tag_15\n jump\t// in\n tag_14:\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_16\n swap1\n tag_15\n jump\t// in\n tag_16:\n dup1\n iszero\n tag_17\n jumpi\n dup1\n 0x1f\n lt\n tag_18\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_17)\n tag_18:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_19:\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_19\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_17:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"contracts/Register.sol\":204:295 function getInfo() external view returns (string memory) {... */\n swap1\n jump\t// out\n /* \"contracts/Register.sol\":114:198 function setInfo(string memory myInfo) external {... */\n tag_12:\n /* \"contracts/Register.sol\":185:191 myInfo */\n dup1\n /* \"contracts/Register.sol\":172:182 storedInfo */\n 0x00\n /* \"contracts/Register.sol\":172:191 storedInfo = myInfo */\n swap1\n dup2\n tag_21\n swap2\n swap1\n tag_22\n jump\t// in\n tag_21:\n pop\n /* \"contracts/Register.sol\":114:198 function setInfo(string memory myInfo) external {... */\n pop\n jump\t// out\n /* \"#utility.yul\":7:106 */\n tag_23:\n /* \"#utility.yul\":59:65 */\n 0x00\n /* \"#utility.yul\":93:98 */\n dup2\n /* \"#utility.yul\":87:99 */\n mload\n /* \"#utility.yul\":77:99 */\n swap1\n pop\n /* \"#utility.yul\":7:106 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":112:281 */\n tag_24:\n /* \"#utility.yul\":196:207 */\n 0x00\n /* \"#utility.yul\":230:236 */\n dup3\n /* \"#utility.yul\":225:228 */\n dup3\n /* \"#utility.yul\":218:237 */\n mstore\n /* \"#utility.yul\":270:274 */\n 0x20\n /* \"#utility.yul\":265:268 */\n dup3\n /* \"#utility.yul\":261:275 */\n add\n /* \"#utility.yul\":246:275 */\n swap1\n pop\n /* \"#utility.yul\":112:281 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":287:533 */\n tag_25:\n /* \"#utility.yul\":368:369 */\n 0x00\n /* \"#utility.yul\":378:491 */\n tag_61:\n /* \"#utility.yul\":392:398 */\n dup4\n /* \"#utility.yul\":389:390 */\n dup2\n /* \"#utility.yul\":386:399 */\n lt\n /* \"#utility.yul\":378:491 */\n iszero\n tag_63\n jumpi\n /* \"#utility.yul\":477:478 */\n dup1\n /* \"#utility.yul\":472:475 */\n dup3\n /* \"#utility.yul\":468:479 */\n add\n /* \"#utility.yul\":462:480 */\n mload\n /* \"#utility.yul\":458:459 */\n dup2\n /* \"#utility.yul\":453:456 */\n dup5\n /* \"#utility.yul\":449:460 */\n add\n /* \"#utility.yul\":442:481 */\n mstore\n /* \"#utility.yul\":414:416 */\n 0x20\n /* \"#utility.yul\":411:412 */\n dup2\n /* \"#utility.yul\":407:417 */\n add\n /* \"#utility.yul\":402:417 */\n swap1\n pop\n /* \"#utility.yul\":378:491 */\n jump(tag_61)\n tag_63:\n /* \"#utility.yul\":525:526 */\n 0x00\n /* \"#utility.yul\":516:522 */\n dup5\n /* \"#utility.yul\":511:514 */\n dup5\n /* \"#utility.yul\":507:523 */\n add\n /* \"#utility.yul\":500:527 */\n mstore\n /* \"#utility.yul\":349:533 */\n pop\n /* \"#utility.yul\":287:533 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":539:641 */\n tag_26:\n /* \"#utility.yul\":580:586 */\n 0x00\n /* \"#utility.yul\":631:633 */\n 0x1f\n /* \"#utility.yul\":627:634 */\n not\n /* \"#utility.yul\":622:624 */\n 0x1f\n /* \"#utility.yul\":615:620 */\n dup4\n /* \"#utility.yul\":611:625 */\n add\n /* \"#utility.yul\":607:635 */\n and\n /* \"#utility.yul\":597:635 */\n swap1\n pop\n /* \"#utility.yul\":539:641 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":647:1024 */\n tag_27:\n /* \"#utility.yul\":735:738 */\n 0x00\n /* \"#utility.yul\":763:802 */\n tag_66\n /* \"#utility.yul\":796:801 */\n dup3\n /* \"#utility.yul\":763:802 */\n tag_23\n jump\t// in\n tag_66:\n /* \"#utility.yul\":818:889 */\n tag_67\n /* \"#utility.yul\":882:888 */\n dup2\n /* \"#utility.yul\":877:880 */\n dup6\n /* \"#utility.yul\":818:889 */\n tag_24\n jump\t// in\n tag_67:\n /* \"#utility.yul\":811:889 */\n swap4\n pop\n /* \"#utility.yul\":898:963 */\n tag_68\n /* \"#utility.yul\":956:962 */\n dup2\n /* \"#utility.yul\":951:954 */\n dup6\n /* \"#utility.yul\":944:948 */\n 0x20\n /* \"#utility.yul\":937:942 */\n dup7\n /* \"#utility.yul\":933:949 */\n add\n /* \"#utility.yul\":898:963 */\n tag_25\n jump\t// in\n tag_68:\n /* \"#utility.yul\":988:1017 */\n tag_69\n /* \"#utility.yul\":1010:1016 */\n dup2\n /* \"#utility.yul\":988:1017 */\n tag_26\n jump\t// in\n tag_69:\n /* \"#utility.yul\":983:986 */\n dup5\n /* \"#utility.yul\":979:1018 */\n add\n /* \"#utility.yul\":972:1018 */\n swap2\n pop\n /* \"#utility.yul\":739:1024 */\n pop\n /* \"#utility.yul\":647:1024 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1030:1343 */\n tag_8:\n /* \"#utility.yul\":1143:1147 */\n 0x00\n /* \"#utility.yul\":1181:1183 */\n 0x20\n /* \"#utility.yul\":1170:1179 */\n dup3\n /* \"#utility.yul\":1166:1184 */\n add\n /* \"#utility.yul\":1158:1184 */\n swap1\n pop\n /* \"#utility.yul\":1230:1239 */\n dup2\n /* \"#utility.yul\":1224:1228 */\n dup2\n /* \"#utility.yul\":1220:1240 */\n sub\n /* \"#utility.yul\":1216:1217 */\n 0x00\n /* \"#utility.yul\":1205:1214 */\n dup4\n /* \"#utility.yul\":1201:1218 */\n add\n /* \"#utility.yul\":1194:1241 */\n mstore\n /* \"#utility.yul\":1258:1336 */\n tag_71\n /* \"#utility.yul\":1331:1335 */\n dup2\n /* \"#utility.yul\":1322:1328 */\n dup5\n /* \"#utility.yul\":1258:1336 */\n tag_27\n jump\t// in\n tag_71:\n /* \"#utility.yul\":1250:1336 */\n swap1\n pop\n /* \"#utility.yul\":1030:1343 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1349:1424 */\n tag_28:\n /* \"#utility.yul\":1382:1388 */\n 0x00\n /* \"#utility.yul\":1415:1417 */\n 0x40\n /* \"#utility.yul\":1409:1418 */\n mload\n /* \"#utility.yul\":1399:1418 */\n swap1\n pop\n /* \"#utility.yul\":1349:1424 */\n swap1\n jump\t// out\n /* \"#utility.yul\":1430:1547 */\n tag_29:\n /* \"#utility.yul\":1539:1540 */\n 0x00\n /* \"#utility.yul\":1536:1537 */\n dup1\n /* \"#utility.yul\":1529:1541 */\n revert\n /* \"#utility.yul\":1553:1670 */\n tag_30:\n /* \"#utility.yul\":1662:1663 */\n 0x00\n /* \"#utility.yul\":1659:1660 */\n dup1\n /* \"#utility.yul\":1652:1664 */\n revert\n /* \"#utility.yul\":1676:1793 */\n tag_31:\n /* \"#utility.yul\":1785:1786 */\n 0x00\n /* \"#utility.yul\":1782:1783 */\n dup1\n /* \"#utility.yul\":1775:1787 */\n revert\n /* \"#utility.yul\":1799:1916 */\n tag_32:\n /* \"#utility.yul\":1908:1909 */\n 0x00\n /* \"#utility.yul\":1905:1906 */\n dup1\n /* \"#utility.yul\":1898:1910 */\n revert\n /* \"#utility.yul\":1922:2102 */\n tag_33:\n /* \"#utility.yul\":1970:2047 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1967:1968 */\n 0x00\n /* \"#utility.yul\":1960:2048 */\n mstore\n /* \"#utility.yul\":2067:2071 */\n 0x41\n /* \"#utility.yul\":2064:2065 */\n 0x04\n /* \"#utility.yul\":2057:2072 */\n mstore\n /* \"#utility.yul\":2091:2095 */\n 0x24\n /* \"#utility.yul\":2088:2089 */\n 0x00\n /* \"#utility.yul\":2081:2096 */\n revert\n /* \"#utility.yul\":2108:2389 */\n tag_34:\n /* \"#utility.yul\":2191:2218 */\n tag_79\n /* \"#utility.yul\":2213:2217 */\n dup3\n /* \"#utility.yul\":2191:2218 */\n tag_26\n jump\t// in\n tag_79:\n /* \"#utility.yul\":2183:2189 */\n dup2\n /* \"#utility.yul\":2179:2219 */\n add\n /* \"#utility.yul\":2321:2327 */\n dup2\n /* \"#utility.yul\":2309:2319 */\n dup2\n /* \"#utility.yul\":2306:2328 */\n lt\n /* \"#utility.yul\":2285:2303 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2273:2283 */\n dup3\n /* \"#utility.yul\":2270:2304 */\n gt\n /* \"#utility.yul\":2267:2329 */\n or\n /* \"#utility.yul\":2264:2352 */\n iszero\n tag_80\n jumpi\n /* \"#utility.yul\":2332:2350 */\n tag_81\n tag_33\n jump\t// in\n tag_81:\n /* \"#utility.yul\":2264:2352 */\n tag_80:\n /* \"#utility.yul\":2372:2382 */\n dup1\n /* \"#utility.yul\":2368:2370 */\n 0x40\n /* \"#utility.yul\":2361:2383 */\n mstore\n /* \"#utility.yul\":2151:2389 */\n pop\n /* \"#utility.yul\":2108:2389 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2395:2524 */\n tag_35:\n /* \"#utility.yul\":2429:2435 */\n 0x00\n /* \"#utility.yul\":2456:2476 */\n tag_83\n tag_28\n jump\t// in\n tag_83:\n /* \"#utility.yul\":2446:2476 */\n swap1\n pop\n /* \"#utility.yul\":2485:2518 */\n tag_84\n /* \"#utility.yul\":2513:2517 */\n dup3\n /* \"#utility.yul\":2505:2511 */\n dup3\n /* \"#utility.yul\":2485:2518 */\n tag_34\n jump\t// in\n tag_84:\n /* \"#utility.yul\":2395:2524 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2530:2838 */\n tag_36:\n /* \"#utility.yul\":2592:2596 */\n 0x00\n /* \"#utility.yul\":2682:2700 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2674:2680 */\n dup3\n /* \"#utility.yul\":2671:2701 */\n gt\n /* \"#utility.yul\":2668:2724 */\n iszero\n tag_86\n jumpi\n /* \"#utility.yul\":2704:2722 */\n tag_87\n tag_33\n jump\t// in\n tag_87:\n /* \"#utility.yul\":2668:2724 */\n tag_86:\n /* \"#utility.yul\":2742:2771 */\n tag_88\n /* \"#utility.yul\":2764:2770 */\n dup3\n /* \"#utility.yul\":2742:2771 */\n tag_26\n jump\t// in\n tag_88:\n /* \"#utility.yul\":2734:2771 */\n swap1\n pop\n /* \"#utility.yul\":2826:2830 */\n 0x20\n /* \"#utility.yul\":2820:2824 */\n dup2\n /* \"#utility.yul\":2816:2831 */\n add\n /* \"#utility.yul\":2808:2831 */\n swap1\n pop\n /* \"#utility.yul\":2530:2838 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2844:2990 */\n tag_37:\n /* \"#utility.yul\":2941:2947 */\n dup3\n /* \"#utility.yul\":2936:2939 */\n dup2\n /* \"#utility.yul\":2931:2934 */\n dup4\n /* \"#utility.yul\":2918:2948 */\n calldatacopy\n /* \"#utility.yul\":2982:2983 */\n 0x00\n /* \"#utility.yul\":2973:2979 */\n dup4\n /* \"#utility.yul\":2968:2971 */\n dup4\n /* \"#utility.yul\":2964:2980 */\n add\n /* \"#utility.yul\":2957:2984 */\n mstore\n /* \"#utility.yul\":2844:2990 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2996:3421 */\n tag_38:\n /* \"#utility.yul\":3074:3079 */\n 0x00\n /* \"#utility.yul\":3099:3165 */\n tag_91\n /* \"#utility.yul\":3115:3164 */\n tag_92\n /* \"#utility.yul\":3157:3163 */\n dup5\n /* \"#utility.yul\":3115:3164 */\n tag_36\n jump\t// in\n tag_92:\n /* \"#utility.yul\":3099:3165 */\n tag_35\n jump\t// in\n tag_91:\n /* \"#utility.yul\":3090:3165 */\n swap1\n pop\n /* \"#utility.yul\":3188:3194 */\n dup3\n /* \"#utility.yul\":3181:3186 */\n dup2\n /* \"#utility.yul\":3174:3195 */\n mstore\n /* \"#utility.yul\":3226:3230 */\n 0x20\n /* \"#utility.yul\":3219:3224 */\n dup2\n /* \"#utility.yul\":3215:3231 */\n add\n /* \"#utility.yul\":3264:3267 */\n dup5\n /* \"#utility.yul\":3255:3261 */\n dup5\n /* \"#utility.yul\":3250:3253 */\n dup5\n /* \"#utility.yul\":3246:3262 */\n add\n /* \"#utility.yul\":3243:3268 */\n gt\n /* \"#utility.yul\":3240:3352 */\n iszero\n tag_93\n jumpi\n /* \"#utility.yul\":3271:3350 */\n tag_94\n tag_32\n jump\t// in\n tag_94:\n /* \"#utility.yul\":3240:3352 */\n tag_93:\n /* \"#utility.yul\":3361:3415 */\n tag_95\n /* \"#utility.yul\":3408:3414 */\n dup5\n /* \"#utility.yul\":3403:3406 */\n dup3\n /* \"#utility.yul\":3398:3401 */\n dup6\n /* \"#utility.yul\":3361:3415 */\n tag_37\n jump\t// in\n tag_95:\n /* \"#utility.yul\":3080:3421 */\n pop\n /* \"#utility.yul\":2996:3421 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3441:3781 */\n tag_39:\n /* \"#utility.yul\":3497:3502 */\n 0x00\n /* \"#utility.yul\":3546:3549 */\n dup3\n /* \"#utility.yul\":3539:3543 */\n 0x1f\n /* \"#utility.yul\":3531:3537 */\n dup4\n /* \"#utility.yul\":3527:3544 */\n add\n /* \"#utility.yul\":3523:3550 */\n slt\n /* \"#utility.yul\":3513:3635 */\n tag_97\n jumpi\n /* \"#utility.yul\":3554:3633 */\n tag_98\n tag_31\n jump\t// in\n tag_98:\n /* \"#utility.yul\":3513:3635 */\n tag_97:\n /* \"#utility.yul\":3671:3677 */\n dup2\n /* \"#utility.yul\":3658:3678 */\n calldataload\n /* \"#utility.yul\":3696:3775 */\n tag_99\n /* \"#utility.yul\":3771:3774 */\n dup5\n /* \"#utility.yul\":3763:3769 */\n dup3\n /* \"#utility.yul\":3756:3760 */\n 0x20\n /* \"#utility.yul\":3748:3754 */\n dup7\n /* \"#utility.yul\":3744:3761 */\n add\n /* \"#utility.yul\":3696:3775 */\n tag_38\n jump\t// in\n tag_99:\n /* \"#utility.yul\":3687:3775 */\n swap2\n pop\n /* \"#utility.yul\":3503:3781 */\n pop\n /* \"#utility.yul\":3441:3781 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3787:4296 */\n tag_11:\n /* \"#utility.yul\":3856:3862 */\n 0x00\n /* \"#utility.yul\":3905:3907 */\n 0x20\n /* \"#utility.yul\":3893:3902 */\n dup3\n /* \"#utility.yul\":3884:3891 */\n dup5\n /* \"#utility.yul\":3880:3903 */\n sub\n /* \"#utility.yul\":3876:3908 */\n slt\n /* \"#utility.yul\":3873:3992 */\n iszero\n tag_101\n jumpi\n /* \"#utility.yul\":3911:3990 */\n tag_102\n tag_29\n jump\t// in\n tag_102:\n /* \"#utility.yul\":3873:3992 */\n tag_101:\n /* \"#utility.yul\":4059:4060 */\n 0x00\n /* \"#utility.yul\":4048:4057 */\n dup3\n /* \"#utility.yul\":4044:4061 */\n add\n /* \"#utility.yul\":4031:4062 */\n calldataload\n /* \"#utility.yul\":4089:4107 */\n 0xffffffffffffffff\n /* \"#utility.yul\":4081:4087 */\n dup2\n /* \"#utility.yul\":4078:4108 */\n gt\n /* \"#utility.yul\":4075:4192 */\n iszero\n tag_103\n jumpi\n /* \"#utility.yul\":4111:4190 */\n tag_104\n tag_30\n jump\t// in\n tag_104:\n /* \"#utility.yul\":4075:4192 */\n tag_103:\n /* \"#utility.yul\":4216:4279 */\n tag_105\n /* \"#utility.yul\":4271:4278 */\n dup5\n /* \"#utility.yul\":4262:4268 */\n dup3\n /* \"#utility.yul\":4251:4260 */\n dup6\n /* \"#utility.yul\":4247:4269 */\n add\n /* \"#utility.yul\":4216:4279 */\n tag_39\n jump\t// in\n tag_105:\n /* \"#utility.yul\":4206:4279 */\n swap2\n pop\n /* \"#utility.yul\":4002:4289 */\n pop\n /* \"#utility.yul\":3787:4296 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4302:4482 */\n tag_40:\n /* \"#utility.yul\":4350:4427 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":4347:4348 */\n 0x00\n /* \"#utility.yul\":4340:4428 */\n mstore\n /* \"#utility.yul\":4447:4451 */\n 0x22\n /* \"#utility.yul\":4444:4445 */\n 0x04\n /* \"#utility.yul\":4437:4452 */\n mstore\n /* \"#utility.yul\":4471:4475 */\n 0x24\n /* \"#utility.yul\":4468:4469 */\n 0x00\n /* \"#utility.yul\":4461:4476 */\n revert\n /* \"#utility.yul\":4488:4808 */\n tag_15:\n /* \"#utility.yul\":4532:4538 */\n 0x00\n /* \"#utility.yul\":4569:4570 */\n 0x02\n /* \"#utility.yul\":4563:4567 */\n dup3\n /* \"#utility.yul\":4559:4571 */\n div\n /* \"#utility.yul\":4549:4571 */\n swap1\n pop\n /* \"#utility.yul\":4616:4617 */\n 0x01\n /* \"#utility.yul\":4610:4614 */\n dup3\n /* \"#utility.yul\":4606:4618 */\n and\n /* \"#utility.yul\":4637:4655 */\n dup1\n /* \"#utility.yul\":4627:4708 */\n tag_108\n jumpi\n /* \"#utility.yul\":4693:4697 */\n 0x7f\n /* \"#utility.yul\":4685:4691 */\n dup3\n /* \"#utility.yul\":4681:4698 */\n and\n /* \"#utility.yul\":4671:4698 */\n swap2\n pop\n /* \"#utility.yul\":4627:4708 */\n tag_108:\n /* \"#utility.yul\":4755:4757 */\n 0x20\n /* \"#utility.yul\":4747:4753 */\n dup3\n /* \"#utility.yul\":4744:4758 */\n lt\n /* \"#utility.yul\":4724:4742 */\n dup2\n /* \"#utility.yul\":4721:4759 */\n sub\n /* \"#utility.yul\":4718:4802 */\n tag_109\n jumpi\n /* \"#utility.yul\":4774:4792 */\n tag_110\n tag_40\n jump\t// in\n tag_110:\n /* \"#utility.yul\":4718:4802 */\n tag_109:\n /* \"#utility.yul\":4539:4808 */\n pop\n /* \"#utility.yul\":4488:4808 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4814:4955 */\n tag_41:\n /* \"#utility.yul\":4863:4867 */\n 0x00\n /* \"#utility.yul\":4886:4889 */\n dup2\n /* \"#utility.yul\":4878:4889 */\n swap1\n pop\n /* \"#utility.yul\":4909:4912 */\n dup2\n /* \"#utility.yul\":4906:4907 */\n 0x00\n /* \"#utility.yul\":4899:4913 */\n mstore\n /* \"#utility.yul\":4943:4947 */\n 0x20\n /* \"#utility.yul\":4940:4941 */\n 0x00\n /* \"#utility.yul\":4930:4948 */\n keccak256\n /* \"#utility.yul\":4922:4948 */\n swap1\n pop\n /* \"#utility.yul\":4814:4955 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4961:5054 */\n tag_42:\n /* \"#utility.yul\":4998:5004 */\n 0x00\n /* \"#utility.yul\":5045:5047 */\n 0x20\n /* \"#utility.yul\":5040:5042 */\n 0x1f\n /* \"#utility.yul\":5033:5038 */\n dup4\n /* \"#utility.yul\":5029:5043 */\n add\n /* \"#utility.yul\":5025:5048 */\n div\n /* \"#utility.yul\":5015:5048 */\n swap1\n pop\n /* \"#utility.yul\":4961:5054 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5060:5167 */\n tag_43:\n /* \"#utility.yul\":5104:5112 */\n 0x00\n /* \"#utility.yul\":5154:5159 */\n dup3\n /* \"#utility.yul\":5148:5152 */\n dup3\n /* \"#utility.yul\":5144:5160 */\n shl\n /* \"#utility.yul\":5123:5160 */\n swap1\n pop\n /* \"#utility.yul\":5060:5167 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5173:5566 */\n tag_44:\n /* \"#utility.yul\":5242:5248 */\n 0x00\n /* \"#utility.yul\":5292:5293 */\n 0x08\n /* \"#utility.yul\":5280:5290 */\n dup4\n /* \"#utility.yul\":5276:5294 */\n mul\n /* \"#utility.yul\":5315:5412 */\n tag_115\n /* \"#utility.yul\":5345:5411 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":5334:5343 */\n dup3\n /* \"#utility.yul\":5315:5412 */\n tag_43\n jump\t// in\n tag_115:\n /* \"#utility.yul\":5433:5472 */\n tag_116\n /* \"#utility.yul\":5463:5471 */\n dup7\n /* \"#utility.yul\":5452:5461 */\n dup4\n /* \"#utility.yul\":5433:5472 */\n tag_43\n jump\t// in\n tag_116:\n /* \"#utility.yul\":5421:5472 */\n swap6\n pop\n /* \"#utility.yul\":5505:5509 */\n dup1\n /* \"#utility.yul\":5501:5510 */\n not\n /* \"#utility.yul\":5494:5499 */\n dup5\n /* \"#utility.yul\":5490:5511 */\n and\n /* \"#utility.yul\":5481:5511 */\n swap4\n pop\n /* \"#utility.yul\":5554:5558 */\n dup1\n /* \"#utility.yul\":5544:5552 */\n dup7\n /* \"#utility.yul\":5540:5559 */\n and\n /* \"#utility.yul\":5533:5538 */\n dup5\n /* \"#utility.yul\":5530:5560 */\n or\n /* \"#utility.yul\":5520:5560 */\n swap3\n pop\n /* \"#utility.yul\":5249:5566 */\n pop\n pop\n /* \"#utility.yul\":5173:5566 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5572:5649 */\n tag_45:\n /* \"#utility.yul\":5609:5616 */\n 0x00\n /* \"#utility.yul\":5638:5643 */\n dup2\n /* \"#utility.yul\":5627:5643 */\n swap1\n pop\n /* \"#utility.yul\":5572:5649 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5655:5715 */\n tag_46:\n /* \"#utility.yul\":5683:5686 */\n 0x00\n /* \"#utility.yul\":5704:5709 */\n dup2\n /* \"#utility.yul\":5697:5709 */\n swap1\n pop\n /* \"#utility.yul\":5655:5715 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5721:5863 */\n tag_47:\n /* \"#utility.yul\":5771:5780 */\n 0x00\n /* \"#utility.yul\":5804:5857 */\n tag_120\n /* \"#utility.yul\":5822:5856 */\n tag_121\n /* \"#utility.yul\":5831:5855 */\n tag_122\n /* \"#utility.yul\":5849:5854 */\n dup5\n /* \"#utility.yul\":5831:5855 */\n tag_45\n jump\t// in\n tag_122:\n /* \"#utility.yul\":5822:5856 */\n tag_46\n jump\t// in\n tag_121:\n /* \"#utility.yul\":5804:5857 */\n tag_45\n jump\t// in\n tag_120:\n /* \"#utility.yul\":5791:5857 */\n swap1\n pop\n /* \"#utility.yul\":5721:5863 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5869:5944 */\n tag_48:\n /* \"#utility.yul\":5912:5915 */\n 0x00\n /* \"#utility.yul\":5933:5938 */\n dup2\n /* \"#utility.yul\":5926:5938 */\n swap1\n pop\n /* \"#utility.yul\":5869:5944 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5950:6219 */\n tag_49:\n /* \"#utility.yul\":6060:6099 */\n tag_125\n /* \"#utility.yul\":6091:6098 */\n dup4\n /* \"#utility.yul\":6060:6099 */\n tag_47\n jump\t// in\n tag_125:\n /* \"#utility.yul\":6121:6212 */\n tag_126\n /* \"#utility.yul\":6170:6211 */\n tag_127\n /* \"#utility.yul\":6194:6210 */\n dup3\n /* \"#utility.yul\":6170:6211 */\n tag_48\n jump\t// in\n tag_127:\n /* \"#utility.yul\":6162:6168 */\n dup5\n /* \"#utility.yul\":6155:6159 */\n dup5\n /* \"#utility.yul\":6149:6160 */\n sload\n /* \"#utility.yul\":6121:6212 */\n tag_44\n jump\t// in\n tag_126:\n /* \"#utility.yul\":6115:6119 */\n dup3\n /* \"#utility.yul\":6108:6213 */\n sstore\n /* \"#utility.yul\":6026:6219 */\n pop\n /* \"#utility.yul\":5950:6219 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6225:6298 */\n tag_50:\n /* \"#utility.yul\":6270:6273 */\n 0x00\n /* \"#utility.yul\":6225:6298 */\n swap1\n jump\t// out\n /* \"#utility.yul\":6304:6493 */\n tag_51:\n /* \"#utility.yul\":6381:6413 */\n tag_130\n tag_50\n jump\t// in\n tag_130:\n /* \"#utility.yul\":6422:6487 */\n tag_131\n /* \"#utility.yul\":6480:6486 */\n dup2\n /* \"#utility.yul\":6472:6478 */\n dup5\n /* \"#utility.yul\":6466:6470 */\n dup5\n /* \"#utility.yul\":6422:6487 */\n tag_49\n jump\t// in\n tag_131:\n /* \"#utility.yul\":6357:6493 */\n pop\n /* \"#utility.yul\":6304:6493 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6499:6685 */\n tag_52:\n /* \"#utility.yul\":6559:6679 */\n tag_133:\n /* \"#utility.yul\":6576:6579 */\n dup2\n /* \"#utility.yul\":6569:6574 */\n dup2\n /* \"#utility.yul\":6566:6580 */\n lt\n /* \"#utility.yul\":6559:6679 */\n iszero\n tag_135\n jumpi\n /* \"#utility.yul\":6630:6669 */\n tag_136\n /* \"#utility.yul\":6667:6668 */\n 0x00\n /* \"#utility.yul\":6660:6665 */\n dup3\n /* \"#utility.yul\":6630:6669 */\n tag_51\n jump\t// in\n tag_136:\n /* \"#utility.yul\":6603:6604 */\n 0x01\n /* \"#utility.yul\":6596:6601 */\n dup2\n /* \"#utility.yul\":6592:6605 */\n add\n /* \"#utility.yul\":6583:6605 */\n swap1\n pop\n /* \"#utility.yul\":6559:6679 */\n jump(tag_133)\n tag_135:\n /* \"#utility.yul\":6499:6685 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6691:7234 */\n tag_53:\n /* \"#utility.yul\":6792:6794 */\n 0x1f\n /* \"#utility.yul\":6787:6790 */\n dup3\n /* \"#utility.yul\":6784:6795 */\n gt\n /* \"#utility.yul\":6781:7227 */\n iszero\n tag_138\n jumpi\n /* \"#utility.yul\":6826:6864 */\n tag_139\n /* \"#utility.yul\":6858:6863 */\n dup2\n /* \"#utility.yul\":6826:6864 */\n tag_41\n jump\t// in\n tag_139:\n /* \"#utility.yul\":6910:6939 */\n tag_140\n /* \"#utility.yul\":6928:6938 */\n dup5\n /* \"#utility.yul\":6910:6939 */\n tag_42\n jump\t// in\n tag_140:\n /* \"#utility.yul\":6900:6908 */\n dup2\n /* \"#utility.yul\":6896:6940 */\n add\n /* \"#utility.yul\":7093:7095 */\n 0x20\n /* \"#utility.yul\":7081:7091 */\n dup6\n /* \"#utility.yul\":7078:7096 */\n lt\n /* \"#utility.yul\":7075:7124 */\n iszero\n tag_141\n jumpi\n /* \"#utility.yul\":7114:7122 */\n dup2\n /* \"#utility.yul\":7099:7122 */\n swap1\n pop\n /* \"#utility.yul\":7075:7124 */\n tag_141:\n /* \"#utility.yul\":7137:7217 */\n tag_142\n /* \"#utility.yul\":7193:7215 */\n tag_143\n /* \"#utility.yul\":7211:7214 */\n dup6\n /* \"#utility.yul\":7193:7215 */\n tag_42\n jump\t// in\n tag_143:\n /* \"#utility.yul\":7183:7191 */\n dup4\n /* \"#utility.yul\":7179:7216 */\n add\n /* \"#utility.yul\":7166:7177 */\n dup3\n /* \"#utility.yul\":7137:7217 */\n tag_52\n jump\t// in\n tag_142:\n /* \"#utility.yul\":6796:7227 */\n pop\n pop\n /* \"#utility.yul\":6781:7227 */\n tag_138:\n /* \"#utility.yul\":6691:7234 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7240:7357 */\n tag_54:\n /* \"#utility.yul\":7294:7302 */\n 0x00\n /* \"#utility.yul\":7344:7349 */\n dup3\n /* \"#utility.yul\":7338:7342 */\n dup3\n /* \"#utility.yul\":7334:7350 */\n shr\n /* \"#utility.yul\":7313:7350 */\n swap1\n pop\n /* \"#utility.yul\":7240:7357 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7363:7532 */\n tag_55:\n /* \"#utility.yul\":7407:7413 */\n 0x00\n /* \"#utility.yul\":7440:7491 */\n tag_146\n /* \"#utility.yul\":7488:7489 */\n 0x00\n /* \"#utility.yul\":7484:7490 */\n not\n /* \"#utility.yul\":7476:7481 */\n dup5\n /* \"#utility.yul\":7473:7474 */\n 0x08\n /* \"#utility.yul\":7469:7482 */\n mul\n /* \"#utility.yul\":7440:7491 */\n tag_54\n jump\t// in\n tag_146:\n /* \"#utility.yul\":7436:7492 */\n not\n /* \"#utility.yul\":7521:7525 */\n dup1\n /* \"#utility.yul\":7515:7519 */\n dup4\n /* \"#utility.yul\":7511:7526 */\n and\n /* \"#utility.yul\":7501:7526 */\n swap2\n pop\n /* \"#utility.yul\":7414:7532 */\n pop\n /* \"#utility.yul\":7363:7532 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7537:7832 */\n tag_56:\n /* \"#utility.yul\":7613:7617 */\n 0x00\n /* \"#utility.yul\":7759:7788 */\n tag_148\n /* \"#utility.yul\":7784:7787 */\n dup4\n /* \"#utility.yul\":7778:7782 */\n dup4\n /* \"#utility.yul\":7759:7788 */\n tag_55\n jump\t// in\n tag_148:\n /* \"#utility.yul\":7751:7788 */\n swap2\n pop\n /* \"#utility.yul\":7821:7824 */\n dup3\n /* \"#utility.yul\":7818:7819 */\n 0x02\n /* \"#utility.yul\":7814:7825 */\n mul\n /* \"#utility.yul\":7808:7812 */\n dup3\n /* \"#utility.yul\":7805:7826 */\n or\n /* \"#utility.yul\":7797:7826 */\n swap1\n pop\n /* \"#utility.yul\":7537:7832 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7837:9232 */\n tag_22:\n /* \"#utility.yul\":7954:7991 */\n tag_150\n /* \"#utility.yul\":7987:7990 */\n dup3\n /* \"#utility.yul\":7954:7991 */\n tag_23\n jump\t// in\n tag_150:\n /* \"#utility.yul\":8056:8074 */\n 0xffffffffffffffff\n /* \"#utility.yul\":8048:8054 */\n dup2\n /* \"#utility.yul\":8045:8075 */\n gt\n /* \"#utility.yul\":8042:8098 */\n iszero\n tag_151\n jumpi\n /* \"#utility.yul\":8078:8096 */\n tag_152\n tag_33\n jump\t// in\n tag_152:\n /* \"#utility.yul\":8042:8098 */\n tag_151:\n /* \"#utility.yul\":8122:8160 */\n tag_153\n /* \"#utility.yul\":8154:8158 */\n dup3\n /* \"#utility.yul\":8148:8159 */\n sload\n /* \"#utility.yul\":8122:8160 */\n tag_15\n jump\t// in\n tag_153:\n /* \"#utility.yul\":8207:8274 */\n tag_154\n /* \"#utility.yul\":8267:8273 */\n dup3\n /* \"#utility.yul\":8259:8265 */\n dup3\n /* \"#utility.yul\":8253:8257 */\n dup6\n /* \"#utility.yul\":8207:8274 */\n tag_53\n jump\t// in\n tag_154:\n /* \"#utility.yul\":8301:8302 */\n 0x00\n /* \"#utility.yul\":8325:8329 */\n 0x20\n /* \"#utility.yul\":8312:8329 */\n swap1\n pop\n /* \"#utility.yul\":8357:8359 */\n 0x1f\n /* \"#utility.yul\":8349:8355 */\n dup4\n /* \"#utility.yul\":8346:8360 */\n gt\n /* \"#utility.yul\":8374:8375 */\n 0x01\n /* \"#utility.yul\":8369:8987 */\n dup2\n eq\n tag_156\n jumpi\n /* \"#utility.yul\":9031:9032 */\n 0x00\n /* \"#utility.yul\":9048:9054 */\n dup5\n /* \"#utility.yul\":9045:9122 */\n iszero\n tag_157\n jumpi\n /* \"#utility.yul\":9097:9106 */\n dup3\n /* \"#utility.yul\":9092:9095 */\n dup8\n /* \"#utility.yul\":9088:9107 */\n add\n /* \"#utility.yul\":9082:9108 */\n mload\n /* \"#utility.yul\":9073:9108 */\n swap1\n pop\n /* \"#utility.yul\":9045:9122 */\n tag_157:\n /* \"#utility.yul\":9148:9215 */\n tag_158\n /* \"#utility.yul\":9208:9214 */\n dup6\n /* \"#utility.yul\":9201:9206 */\n dup3\n /* \"#utility.yul\":9148:9215 */\n tag_56\n jump\t// in\n tag_158:\n /* \"#utility.yul\":9142:9146 */\n dup7\n /* \"#utility.yul\":9135:9216 */\n sstore\n /* \"#utility.yul\":9004:9226 */\n pop\n /* \"#utility.yul\":8339:9226 */\n jump(tag_155)\n /* \"#utility.yul\":8369:8987 */\n tag_156:\n /* \"#utility.yul\":8421:8425 */\n 0x1f\n /* \"#utility.yul\":8417:8426 */\n not\n /* \"#utility.yul\":8409:8415 */\n dup5\n /* \"#utility.yul\":8405:8427 */\n and\n /* \"#utility.yul\":8455:8492 */\n tag_159\n /* \"#utility.yul\":8487:8491 */\n dup7\n /* \"#utility.yul\":8455:8492 */\n tag_41\n jump\t// in\n tag_159:\n /* \"#utility.yul\":8514:8515 */\n 0x00\n /* \"#utility.yul\":8528:8736 */\n tag_160:\n /* \"#utility.yul\":8542:8549 */\n dup3\n /* \"#utility.yul\":8539:8540 */\n dup2\n /* \"#utility.yul\":8536:8550 */\n lt\n /* \"#utility.yul\":8528:8736 */\n iszero\n tag_162\n jumpi\n /* \"#utility.yul\":8621:8630 */\n dup5\n /* \"#utility.yul\":8616:8619 */\n dup10\n /* \"#utility.yul\":8612:8631 */\n add\n /* \"#utility.yul\":8606:8632 */\n mload\n /* \"#utility.yul\":8598:8604 */\n dup3\n /* \"#utility.yul\":8591:8633 */\n sstore\n /* \"#utility.yul\":8672:8673 */\n 0x01\n /* \"#utility.yul\":8664:8670 */\n dup3\n /* \"#utility.yul\":8660:8674 */\n add\n /* \"#utility.yul\":8650:8674 */\n swap2\n pop\n /* \"#utility.yul\":8719:8721 */\n 0x20\n /* \"#utility.yul\":8708:8717 */\n dup6\n /* \"#utility.yul\":8704:8722 */\n add\n /* \"#utility.yul\":8691:8722 */\n swap5\n pop\n /* \"#utility.yul\":8565:8569 */\n 0x20\n /* \"#utility.yul\":8562:8563 */\n dup2\n /* \"#utility.yul\":8558:8570 */\n add\n /* \"#utility.yul\":8553:8570 */\n swap1\n pop\n /* \"#utility.yul\":8528:8736 */\n jump(tag_160)\n tag_162:\n /* \"#utility.yul\":8764:8770 */\n dup7\n /* \"#utility.yul\":8755:8762 */\n dup4\n /* \"#utility.yul\":8752:8771 */\n lt\n /* \"#utility.yul\":8749:8928 */\n iszero\n tag_163\n jumpi\n /* \"#utility.yul\":8822:8831 */\n dup5\n /* \"#utility.yul\":8817:8820 */\n dup10\n /* \"#utility.yul\":8813:8832 */\n add\n /* \"#utility.yul\":8807:8833 */\n mload\n /* \"#utility.yul\":8865:8913 */\n tag_164\n /* \"#utility.yul\":8907:8911 */\n 0x1f\n /* \"#utility.yul\":8899:8905 */\n dup10\n /* \"#utility.yul\":8895:8912 */\n and\n /* \"#utility.yul\":8884:8893 */\n dup3\n /* \"#utility.yul\":8865:8913 */\n tag_55\n jump\t// in\n tag_164:\n /* \"#utility.yul\":8857:8863 */\n dup4\n /* \"#utility.yul\":8850:8914 */\n sstore\n /* \"#utility.yul\":8772:8928 */\n pop\n /* \"#utility.yul\":8749:8928 */\n tag_163:\n /* \"#utility.yul\":8974:8975 */\n 0x01\n /* \"#utility.yul\":8970:8971 */\n 0x02\n /* \"#utility.yul\":8962:8968 */\n dup9\n /* \"#utility.yul\":8958:8972 */\n mul\n /* \"#utility.yul\":8954:8976 */\n add\n /* \"#utility.yul\":8948:8952 */\n dup9\n /* \"#utility.yul\":8941:8977 */\n sstore\n /* \"#utility.yul\":8376:8987 */\n pop\n pop\n pop\n /* \"#utility.yul\":8339:9226 */\n tag_155:\n pop\n /* \"#utility.yul\":7929:9232 */\n pop\n pop\n pop\n /* \"#utility.yul\":7837:9232 */\n pop\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122000e5e980242fc9c275b49907c45e2f751f7ba177b39c70818d244febdec3953864736f6c63430008160033\n}\n", | |
"bytecode": { | |
"functionDebugData": {}, | |
"generatedSources": [], | |
"linkReferences": {}, | |
"object": "608060405234801561000f575f80fd5b506106498061001d5f395ff3fe608060405234801561000f575f80fd5b5060043610610034575f3560e01c80635a9b0b8914610038578063937f6e7714610056575b5f80fd5b610040610072565b60405161004d919061019d565b60405180910390f35b610070600480360381019061006b91906102fa565b610101565b005b60605f80546100809061036e565b80601f01602080910402602001604051908101604052809291908181526020018280546100ac9061036e565b80156100f75780601f106100ce576101008083540402835291602001916100f7565b820191905f5260205f20905b8154815290600101906020018083116100da57829003601f168201915b5050505050905090565b805f908161010f9190610544565b5050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561014a57808201518184015260208101905061012f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61016f82610113565b610179818561011d565b935061018981856020860161012d565b61019281610155565b840191505092915050565b5f6020820190508181035f8301526101b58184610165565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61020c82610155565b810181811067ffffffffffffffff8211171561022b5761022a6101d6565b5b80604052505050565b5f61023d6101bd565b90506102498282610203565b919050565b5f67ffffffffffffffff821115610268576102676101d6565b5b61027182610155565b9050602081019050919050565b828183375f83830152505050565b5f61029e6102998461024e565b610234565b9050828152602081018484840111156102ba576102b96101d2565b5b6102c584828561027e565b509392505050565b5f82601f8301126102e1576102e06101ce565b5b81356102f184826020860161028c565b91505092915050565b5f6020828403121561030f5761030e6101c6565b5b5f82013567ffffffffffffffff81111561032c5761032b6101ca565b5b610338848285016102cd565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061038557607f821691505b60208210810361039857610397610341565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026103fa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826103bf565b61040486836103bf565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61044861044361043e8461041c565b610425565b61041c565b9050919050565b5f819050919050565b6104618361042e565b61047561046d8261044f565b8484546103cb565b825550505050565b5f90565b61048961047d565b610494818484610458565b505050565b5b818110156104b7576104ac5f82610481565b60018101905061049a565b5050565b601f8211156104fc576104cd8161039e565b6104d6846103b0565b810160208510156104e5578190505b6104f96104f1856103b0565b830182610499565b50505b505050565b5f82821c905092915050565b5f61051c5f1984600802610501565b1980831691505092915050565b5f610534838361050d565b9150826002028217905092915050565b61054d82610113565b67ffffffffffffffff811115610566576105656101d6565b5b610570825461036e565b61057b8282856104bb565b5f60209050601f8311600181146105ac575f841561059a578287015190505b6105a48582610529565b86555061060b565b601f1984166105ba8661039e565b5f5b828110156105e1578489015182556001820191506020850194506020810190506105bc565b868310156105fe57848901516105fa601f89168261050d565b8355505b6001600288020188555050505b50505050505056fea264697066735822122000e5e980242fc9c275b49907c45e2f751f7ba177b39c70818d244febdec3953864736f6c63430008160033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x649 DUP1 PUSH2 0x1D PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x34 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x5A9B0B89 EQ PUSH2 0x38 JUMPI DUP1 PUSH4 0x937F6E77 EQ PUSH2 0x56 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x40 PUSH2 0x72 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4D SWAP2 SWAP1 PUSH2 0x19D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x70 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6B SWAP2 SWAP1 PUSH2 0x2FA JUMP JUMPDEST PUSH2 0x101 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH0 DUP1 SLOAD PUSH2 0x80 SWAP1 PUSH2 0x36E 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 0xAC SWAP1 PUSH2 0x36E JUMP JUMPDEST DUP1 ISZERO PUSH2 0xF7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xCE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xF7 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xDA JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH0 SWAP1 DUP2 PUSH2 0x10F SWAP2 SWAP1 PUSH2 0x544 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x14A JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x12F JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x16F DUP3 PUSH2 0x113 JUMP JUMPDEST PUSH2 0x179 DUP2 DUP6 PUSH2 0x11D JUMP JUMPDEST SWAP4 POP PUSH2 0x189 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x12D JUMP JUMPDEST PUSH2 0x192 DUP2 PUSH2 0x155 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1B5 DUP2 DUP5 PUSH2 0x165 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x20C DUP3 PUSH2 0x155 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x22B JUMPI PUSH2 0x22A PUSH2 0x1D6 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x23D PUSH2 0x1BD JUMP JUMPDEST SWAP1 POP PUSH2 0x249 DUP3 DUP3 PUSH2 0x203 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x268 JUMPI PUSH2 0x267 PUSH2 0x1D6 JUMP JUMPDEST JUMPDEST PUSH2 0x271 DUP3 PUSH2 0x155 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x29E PUSH2 0x299 DUP5 PUSH2 0x24E JUMP JUMPDEST PUSH2 0x234 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x2BA JUMPI PUSH2 0x2B9 PUSH2 0x1D2 JUMP JUMPDEST JUMPDEST PUSH2 0x2C5 DUP5 DUP3 DUP6 PUSH2 0x27E JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2E1 JUMPI PUSH2 0x2E0 PUSH2 0x1CE JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x2F1 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x28C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x30F JUMPI PUSH2 0x30E PUSH2 0x1C6 JUMP JUMPDEST JUMPDEST PUSH0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x32C JUMPI PUSH2 0x32B PUSH2 0x1CA JUMP JUMPDEST JUMPDEST PUSH2 0x338 DUP5 DUP3 DUP6 ADD PUSH2 0x2CD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x385 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x398 JUMPI PUSH2 0x397 PUSH2 0x341 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x3FA PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x3BF JUMP JUMPDEST PUSH2 0x404 DUP7 DUP4 PUSH2 0x3BF JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x448 PUSH2 0x443 PUSH2 0x43E DUP5 PUSH2 0x41C JUMP JUMPDEST PUSH2 0x425 JUMP JUMPDEST PUSH2 0x41C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x461 DUP4 PUSH2 0x42E JUMP JUMPDEST PUSH2 0x475 PUSH2 0x46D DUP3 PUSH2 0x44F JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x3CB JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x489 PUSH2 0x47D JUMP JUMPDEST PUSH2 0x494 DUP2 DUP5 DUP5 PUSH2 0x458 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x4B7 JUMPI PUSH2 0x4AC PUSH0 DUP3 PUSH2 0x481 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x49A JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x4FC JUMPI PUSH2 0x4CD DUP2 PUSH2 0x39E JUMP JUMPDEST PUSH2 0x4D6 DUP5 PUSH2 0x3B0 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x4E5 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x4F9 PUSH2 0x4F1 DUP6 PUSH2 0x3B0 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x499 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x51C PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x501 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x534 DUP4 DUP4 PUSH2 0x50D JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x54D DUP3 PUSH2 0x113 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x566 JUMPI PUSH2 0x565 PUSH2 0x1D6 JUMP JUMPDEST JUMPDEST PUSH2 0x570 DUP3 SLOAD PUSH2 0x36E JUMP JUMPDEST PUSH2 0x57B DUP3 DUP3 DUP6 PUSH2 0x4BB JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x5AC JUMPI PUSH0 DUP5 ISZERO PUSH2 0x59A JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x5A4 DUP6 DUP3 PUSH2 0x529 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x60B JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x5BA DUP7 PUSH2 0x39E JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x5E1 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x5BC JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x5FE JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x5FA PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x50D JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 STOP 0xE5 0xE9 DUP1 0x24 0x2F 0xC9 0xC2 PUSH22 0xB49907C45E2F751F7BA177B39C70818D244FEBDEC395 CODESIZE PUSH5 0x736F6C6343 STOP ADDMOD AND STOP CALLER ", | |
"sourceMap": "58:239:0:-:0;;;;;;;;;;;;;;;;;;;" | |
}, | |
"deployedBytecode": { | |
"functionDebugData": { | |
"@getInfo_21": { | |
"entryPoint": 114, | |
"id": 21, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"@setInfo_13": { | |
"entryPoint": 257, | |
"id": 13, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
}, | |
"abi_decode_available_length_t_string_memory_ptr": { | |
"entryPoint": 652, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_string_memory_ptr": { | |
"entryPoint": 717, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_string_memory_ptr": { | |
"entryPoint": 762, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 357, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 413, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"allocate_memory": { | |
"entryPoint": 564, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"allocate_unbounded": { | |
"entryPoint": 445, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"array_allocation_size_t_string_memory_ptr": { | |
"entryPoint": 590, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_dataslot_t_string_storage": { | |
"entryPoint": 926, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_length_t_string_memory_ptr": { | |
"entryPoint": 275, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
"entryPoint": 285, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"clean_up_bytearray_end_slots_t_string_storage": { | |
"entryPoint": 1211, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"cleanup_t_uint256": { | |
"entryPoint": 1052, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"clear_storage_range_t_bytes1": { | |
"entryPoint": 1177, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"convert_t_uint256_to_t_uint256": { | |
"entryPoint": 1070, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": { | |
"entryPoint": 1348, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"copy_calldata_to_memory_with_cleanup": { | |
"entryPoint": 638, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"copy_memory_to_memory_with_cleanup": { | |
"entryPoint": 301, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"divide_by_32_ceil": { | |
"entryPoint": 944, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"extract_byte_array_length": { | |
"entryPoint": 878, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"extract_used_part_and_set_length_of_short_byte_array": { | |
"entryPoint": 1321, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"finalize_allocation": { | |
"entryPoint": 515, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"identity": { | |
"entryPoint": 1061, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"mask_bytes_dynamic": { | |
"entryPoint": 1293, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"panic_error_0x22": { | |
"entryPoint": 833, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x41": { | |
"entryPoint": 470, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"prepare_store_t_uint256": { | |
"entryPoint": 1103, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": { | |
"entryPoint": 462, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": { | |
"entryPoint": 466, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
"entryPoint": 458, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
"entryPoint": 454, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"round_up_to_mul_of_32": { | |
"entryPoint": 341, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"shift_left_dynamic": { | |
"entryPoint": 959, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"shift_right_unsigned_dynamic": { | |
"entryPoint": 1281, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"storage_set_to_zero_t_uint256": { | |
"entryPoint": 1153, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"update_byte_slice_dynamic32": { | |
"entryPoint": 971, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 1 | |
}, | |
"update_storage_value_t_uint256_to_t_uint256": { | |
"entryPoint": 1112, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"zero_value_for_split_t_uint256": { | |
"entryPoint": 1149, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
} | |
}, | |
"generatedSources": [ | |
{ | |
"ast": { | |
"nativeSrc": "0:9235:1", | |
"nodeType": "YulBlock", | |
"src": "0:9235:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "66:40:1", | |
"nodeType": "YulBlock", | |
"src": "66:40:1", | |
"statements": [ | |
{ | |
"nativeSrc": "77:22:1", | |
"nodeType": "YulAssignment", | |
"src": "77:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "93:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "93:5:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "87:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "87:5:1" | |
}, | |
"nativeSrc": "87:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "87:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nativeSrc": "77:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "77:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_length_t_string_memory_ptr", | |
"nativeSrc": "7:99:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "49:5:1", | |
"nodeType": "YulTypedName", | |
"src": "49:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "59:6:1", | |
"nodeType": "YulTypedName", | |
"src": "59:6:1", | |
"type": "" | |
} | |
], | |
"src": "7:99:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "208:73:1", | |
"nodeType": "YulBlock", | |
"src": "208:73:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "225:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "225:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "230:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "230:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "218:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "218:6:1" | |
}, | |
"nativeSrc": "218:19:1", | |
"nodeType": "YulFunctionCall", | |
"src": "218:19:1" | |
}, | |
"nativeSrc": "218:19:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "218:19:1" | |
}, | |
{ | |
"nativeSrc": "246:29:1", | |
"nodeType": "YulAssignment", | |
"src": "246:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "265:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "265:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "270:4:1", | |
"nodeType": "YulLiteral", | |
"src": "270:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "261:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "261:3:1" | |
}, | |
"nativeSrc": "261:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "261:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "246:11:1", | |
"nodeType": "YulIdentifier", | |
"src": "246:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nativeSrc": "112:169:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "180:3:1", | |
"nodeType": "YulTypedName", | |
"src": "180:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "185:6:1", | |
"nodeType": "YulTypedName", | |
"src": "185:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nativeSrc": "196:11:1", | |
"nodeType": "YulTypedName", | |
"src": "196:11:1", | |
"type": "" | |
} | |
], | |
"src": "112:169:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "349:184:1", | |
"nodeType": "YulBlock", | |
"src": "349:184:1", | |
"statements": [ | |
{ | |
"nativeSrc": "359:10:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "359:10:1", | |
"value": { | |
"kind": "number", | |
"nativeSrc": "368:1:1", | |
"nodeType": "YulLiteral", | |
"src": "368:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nativeSrc": "363:1:1", | |
"nodeType": "YulTypedName", | |
"src": "363:1:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "428:63:1", | |
"nodeType": "YulBlock", | |
"src": "428:63:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "453:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "453:3:1" | |
}, | |
{ | |
"name": "i", | |
"nativeSrc": "458:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "458:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "449:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "449:3:1" | |
}, | |
"nativeSrc": "449:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "449:11:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nativeSrc": "472:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "472:3:1" | |
}, | |
{ | |
"name": "i", | |
"nativeSrc": "477:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "477:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "468:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "468:3:1" | |
}, | |
"nativeSrc": "468:11:1", | |
"nodeType": "YulFunctionCall", | |
"src": "468:11:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "462:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "462:5:1" | |
}, | |
"nativeSrc": "462:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "462:18:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "442:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "442:6:1" | |
}, | |
"nativeSrc": "442:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "442:39:1" | |
}, | |
"nativeSrc": "442:39:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "442:39:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "389:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "389:1:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "392:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "392:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "386:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "386:2:1" | |
}, | |
"nativeSrc": "386:13:1", | |
"nodeType": "YulFunctionCall", | |
"src": "386:13:1" | |
}, | |
"nativeSrc": "378:113:1", | |
"nodeType": "YulForLoop", | |
"post": { | |
"nativeSrc": "400:19:1", | |
"nodeType": "YulBlock", | |
"src": "400:19:1", | |
"statements": [ | |
{ | |
"nativeSrc": "402:15:1", | |
"nodeType": "YulAssignment", | |
"src": "402:15:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nativeSrc": "411:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "411:1:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "414:2:1", | |
"nodeType": "YulLiteral", | |
"src": "414:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "407:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "407:3:1" | |
}, | |
"nativeSrc": "407:10:1", | |
"nodeType": "YulFunctionCall", | |
"src": "407:10:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nativeSrc": "402:1:1", | |
"nodeType": "YulIdentifier", | |
"src": "402:1:1" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nativeSrc": "382:3:1", | |
"nodeType": "YulBlock", | |
"src": "382:3:1", | |
"statements": [] | |
}, | |
"src": "378:113:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "511:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "511:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "516:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "516:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "507:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "507:3:1" | |
}, | |
"nativeSrc": "507:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "507:16:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "525:1:1", | |
"nodeType": "YulLiteral", | |
"src": "525:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "500:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "500:6:1" | |
}, | |
"nativeSrc": "500:27:1", | |
"nodeType": "YulFunctionCall", | |
"src": "500:27:1" | |
}, | |
"nativeSrc": "500:27:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "500:27:1" | |
} | |
] | |
}, | |
"name": "copy_memory_to_memory_with_cleanup", | |
"nativeSrc": "287:246:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nativeSrc": "331:3:1", | |
"nodeType": "YulTypedName", | |
"src": "331:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nativeSrc": "336:3:1", | |
"nodeType": "YulTypedName", | |
"src": "336:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "341:6:1", | |
"nodeType": "YulTypedName", | |
"src": "341:6:1", | |
"type": "" | |
} | |
], | |
"src": "287:246:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "587:54:1", | |
"nodeType": "YulBlock", | |
"src": "587:54:1", | |
"statements": [ | |
{ | |
"nativeSrc": "597:38:1", | |
"nodeType": "YulAssignment", | |
"src": "597:38:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "615:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "615:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "622:2:1", | |
"nodeType": "YulLiteral", | |
"src": "622:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "611:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "611:3:1" | |
}, | |
"nativeSrc": "611:14:1", | |
"nodeType": "YulFunctionCall", | |
"src": "611:14:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "631:2:1", | |
"nodeType": "YulLiteral", | |
"src": "631:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nativeSrc": "627:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "627:3:1" | |
}, | |
"nativeSrc": "627:7:1", | |
"nodeType": "YulFunctionCall", | |
"src": "627:7:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nativeSrc": "607:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "607:3:1" | |
}, | |
"nativeSrc": "607:28:1", | |
"nodeType": "YulFunctionCall", | |
"src": "607:28:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nativeSrc": "597:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "597:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "round_up_to_mul_of_32", | |
"nativeSrc": "539:102:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "570:5:1", | |
"nodeType": "YulTypedName", | |
"src": "570:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nativeSrc": "580:6:1", | |
"nodeType": "YulTypedName", | |
"src": "580:6:1", | |
"type": "" | |
} | |
], | |
"src": "539:102:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "739:285:1", | |
"nodeType": "YulBlock", | |
"src": "739:285:1", | |
"statements": [ | |
{ | |
"nativeSrc": "749:53:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "749:53:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "796:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "796:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nativeSrc": "763:32:1", | |
"nodeType": "YulIdentifier", | |
"src": "763:32:1" | |
}, | |
"nativeSrc": "763:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "763:39:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nativeSrc": "753:6:1", | |
"nodeType": "YulTypedName", | |
"src": "753:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "811:78:1", | |
"nodeType": "YulAssignment", | |
"src": "811:78:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "877:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "877:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "882:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "882:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nativeSrc": "818:58:1", | |
"nodeType": "YulIdentifier", | |
"src": "818:58:1" | |
}, | |
"nativeSrc": "818:71:1", | |
"nodeType": "YulFunctionCall", | |
"src": "818:71:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "811:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "811:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nativeSrc": "937:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "937:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "944:4:1", | |
"nodeType": "YulLiteral", | |
"src": "944:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "933:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "933:3:1" | |
}, | |
"nativeSrc": "933:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "933:16:1" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "951:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "951:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "956:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "956:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory_with_cleanup", | |
"nativeSrc": "898:34:1", | |
"nodeType": "YulIdentifier", | |
"src": "898:34:1" | |
}, | |
"nativeSrc": "898:65:1", | |
"nodeType": "YulFunctionCall", | |
"src": "898:65:1" | |
}, | |
"nativeSrc": "898:65:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "898:65:1" | |
}, | |
{ | |
"nativeSrc": "972:46:1", | |
"nodeType": "YulAssignment", | |
"src": "972:46:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nativeSrc": "983:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "983:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "1010:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1010:6:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nativeSrc": "988:21:1", | |
"nodeType": "YulIdentifier", | |
"src": "988:21:1" | |
}, | |
"nativeSrc": "988:29:1", | |
"nodeType": "YulFunctionCall", | |
"src": "988:29:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "979:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "979:3:1" | |
}, | |
"nativeSrc": "979:39:1", | |
"nodeType": "YulFunctionCall", | |
"src": "979:39:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nativeSrc": "972:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "972:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "647:377:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nativeSrc": "720:5:1", | |
"nodeType": "YulTypedName", | |
"src": "720:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nativeSrc": "727:3:1", | |
"nodeType": "YulTypedName", | |
"src": "727:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nativeSrc": "735:3:1", | |
"nodeType": "YulTypedName", | |
"src": "735:3:1", | |
"type": "" | |
} | |
], | |
"src": "647:377:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1148:195:1", | |
"nodeType": "YulBlock", | |
"src": "1148:195:1", | |
"statements": [ | |
{ | |
"nativeSrc": "1158:26:1", | |
"nodeType": "YulAssignment", | |
"src": "1158:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "1170:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "1170:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1181:2:1", | |
"nodeType": "YulLiteral", | |
"src": "1181:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "1166:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1166:3:1" | |
}, | |
"nativeSrc": "1166:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1166:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "1158:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "1158:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "1205:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "1205:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1216:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1216:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "1201:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1201:3:1" | |
}, | |
"nativeSrc": "1201:17:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1201:17:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "1224:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "1224:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nativeSrc": "1230:9:1", | |
"nodeType": "YulIdentifier", | |
"src": "1230:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nativeSrc": "1220:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "1220:3:1" | |
}, | |
"nativeSrc": "1220:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1220:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "1194:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1194:6:1" | |
}, | |
"nativeSrc": "1194:47:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1194:47:1" | |
}, | |
"nativeSrc": "1194:47:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1194:47:1" | |
}, | |
{ | |
"nativeSrc": "1250:86:1", | |
"nodeType": "YulAssignment", | |
"src": "1250:86:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nativeSrc": "1322:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1322:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nativeSrc": "1331:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "1331:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nativeSrc": "1258:63:1", | |
"nodeType": "YulIdentifier", | |
"src": "1258:63:1" | |
}, | |
"nativeSrc": "1258:78:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1258:78:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "1250:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "1250:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", | |
"nativeSrc": "1030:313:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nativeSrc": "1120:9:1", | |
"nodeType": "YulTypedName", | |
"src": "1120:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nativeSrc": "1132:6:1", | |
"nodeType": "YulTypedName", | |
"src": "1132:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nativeSrc": "1143:4:1", | |
"nodeType": "YulTypedName", | |
"src": "1143:4:1", | |
"type": "" | |
} | |
], | |
"src": "1030:313:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1389:35:1", | |
"nodeType": "YulBlock", | |
"src": "1389:35:1", | |
"statements": [ | |
{ | |
"nativeSrc": "1399:19:1", | |
"nodeType": "YulAssignment", | |
"src": "1399:19:1", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1415:2:1", | |
"nodeType": "YulLiteral", | |
"src": "1415:2:1", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nativeSrc": "1409:5:1", | |
"nodeType": "YulIdentifier", | |
"src": "1409:5:1" | |
}, | |
"nativeSrc": "1409:9:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1409:9:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "1399:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1399:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "allocate_unbounded", | |
"nativeSrc": "1349:75:1", | |
"nodeType": "YulFunctionDefinition", | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "1382:6:1", | |
"nodeType": "YulTypedName", | |
"src": "1382:6:1", | |
"type": "" | |
} | |
], | |
"src": "1349:75:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1519:28:1", | |
"nodeType": "YulBlock", | |
"src": "1519:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1536:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1536:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1539:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1539:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "1529:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1529:6:1" | |
}, | |
"nativeSrc": "1529:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1529:12:1" | |
}, | |
"nativeSrc": "1529:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1529:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nativeSrc": "1430:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "1430:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1642:28:1", | |
"nodeType": "YulBlock", | |
"src": "1642:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1659:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1659:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1662:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1662:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "1652:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1652:6:1" | |
}, | |
"nativeSrc": "1652:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1652:12:1" | |
}, | |
"nativeSrc": "1652:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1652:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nativeSrc": "1553:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "1553:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1765:28:1", | |
"nodeType": "YulBlock", | |
"src": "1765:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1782:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1782:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1785:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1785:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "1775:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1775:6:1" | |
}, | |
"nativeSrc": "1775:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1775:12:1" | |
}, | |
"nativeSrc": "1775:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1775:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
"nativeSrc": "1676:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "1676:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1888:28:1", | |
"nodeType": "YulBlock", | |
"src": "1888:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1905:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1905:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1908:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1908:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "1898:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1898:6:1" | |
}, | |
"nativeSrc": "1898:12:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1898:12:1" | |
}, | |
"nativeSrc": "1898:12:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1898:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
"nativeSrc": "1799:117:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "1799:117:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "1950:152:1", | |
"nodeType": "YulBlock", | |
"src": "1950:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "1967:1:1", | |
"nodeType": "YulLiteral", | |
"src": "1967:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "1970:77:1", | |
"nodeType": "YulLiteral", | |
"src": "1970:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "1960:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "1960:6:1" | |
}, | |
"nativeSrc": "1960:88:1", | |
"nodeType": "YulFunctionCall", | |
"src": "1960:88:1" | |
}, | |
"nativeSrc": "1960:88:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "1960:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "2064:1:1", | |
"nodeType": "YulLiteral", | |
"src": "2064:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2067:4:1", | |
"nodeType": "YulLiteral", | |
"src": "2067:4:1", | |
"type": "", | |
"value": "0x41" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "2057:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2057:6:1" | |
}, | |
"nativeSrc": "2057:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2057:15:1" | |
}, | |
"nativeSrc": "2057:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2057:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "2088:1:1", | |
"nodeType": "YulLiteral", | |
"src": "2088:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2091:4:1", | |
"nodeType": "YulLiteral", | |
"src": "2091:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nativeSrc": "2081:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2081:6:1" | |
}, | |
"nativeSrc": "2081:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2081:15:1" | |
}, | |
"nativeSrc": "2081:15:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2081:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x41", | |
"nativeSrc": "1922:180:1", | |
"nodeType": "YulFunctionDefinition", | |
"src": "1922:180:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2151:238:1", | |
"nodeType": "YulBlock", | |
"src": "2151:238:1", | |
"statements": [ | |
{ | |
"nativeSrc": "2161:58:1", | |
"nodeType": "YulVariableDeclaration", | |
"src": "2161:58:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2183:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2183:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "size", | |
"nativeSrc": "2213:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "2213:4:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nativeSrc": "2191:21:1", | |
"nodeType": "YulIdentifier", | |
"src": "2191:21:1" | |
}, | |
"nativeSrc": "2191:27:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2191:27:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2179:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2179:3:1" | |
}, | |
"nativeSrc": "2179:40:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2179:40:1" | |
}, | |
"variables": [ | |
{ | |
"name": "newFreePtr", | |
"nativeSrc": "2165:10:1", | |
"nodeType": "YulTypedName", | |
"src": "2165:10:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2330:22:1", | |
"nodeType": "YulBlock", | |
"src": "2330:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nativeSrc": "2332:16:1", | |
"nodeType": "YulIdentifier", | |
"src": "2332:16:1" | |
}, | |
"nativeSrc": "2332:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2332:18:1" | |
}, | |
"nativeSrc": "2332:18:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2332:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nativeSrc": "2273:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "2273:10:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2285:18:1", | |
"nodeType": "YulLiteral", | |
"src": "2285:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "2270:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "2270:2:1" | |
}, | |
"nativeSrc": "2270:34:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2270:34:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nativeSrc": "2309:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "2309:10:1" | |
}, | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2321:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2321:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nativeSrc": "2306:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "2306:2:1" | |
}, | |
"nativeSrc": "2306:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2306:22:1" | |
} | |
], | |
"functionName": { | |
"name": "or", | |
"nativeSrc": "2267:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "2267:2:1" | |
}, | |
"nativeSrc": "2267:62:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2267:62:1" | |
}, | |
"nativeSrc": "2264:88:1", | |
"nodeType": "YulIf", | |
"src": "2264:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nativeSrc": "2368:2:1", | |
"nodeType": "YulLiteral", | |
"src": "2368:2:1", | |
"type": "", | |
"value": "64" | |
}, | |
{ | |
"name": "newFreePtr", | |
"nativeSrc": "2372:10:1", | |
"nodeType": "YulIdentifier", | |
"src": "2372:10:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "2361:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2361:6:1" | |
}, | |
"nativeSrc": "2361:22:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2361:22:1" | |
}, | |
"nativeSrc": "2361:22:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2361:22:1" | |
} | |
] | |
}, | |
"name": "finalize_allocation", | |
"nativeSrc": "2108:281:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2137:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2137:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "size", | |
"nativeSrc": "2145:4:1", | |
"nodeType": "YulTypedName", | |
"src": "2145:4:1", | |
"type": "" | |
} | |
], | |
"src": "2108:281:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2436:88:1", | |
"nodeType": "YulBlock", | |
"src": "2436:88:1", | |
"statements": [ | |
{ | |
"nativeSrc": "2446:30:1", | |
"nodeType": "YulAssignment", | |
"src": "2446:30:1", | |
"value": { | |
"arguments": [], | |
"functionName": { | |
"name": "allocate_unbounded", | |
"nativeSrc": "2456:18:1", | |
"nodeType": "YulIdentifier", | |
"src": "2456:18:1" | |
}, | |
"nativeSrc": "2456:20:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2456:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2446:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2446:6:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2505:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2505:6:1" | |
}, | |
{ | |
"name": "size", | |
"nativeSrc": "2513:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "2513:4:1" | |
} | |
], | |
"functionName": { | |
"name": "finalize_allocation", | |
"nativeSrc": "2485:19:1", | |
"nodeType": "YulIdentifier", | |
"src": "2485:19:1" | |
}, | |
"nativeSrc": "2485:33:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2485:33:1" | |
}, | |
"nativeSrc": "2485:33:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2485:33:1" | |
} | |
] | |
}, | |
"name": "allocate_memory", | |
"nativeSrc": "2395:129:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "size", | |
"nativeSrc": "2420:4:1", | |
"nodeType": "YulTypedName", | |
"src": "2420:4:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nativeSrc": "2429:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2429:6:1", | |
"type": "" | |
} | |
], | |
"src": "2395:129:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2597:241:1", | |
"nodeType": "YulBlock", | |
"src": "2597:241:1", | |
"statements": [ | |
{ | |
"body": { | |
"nativeSrc": "2702:22:1", | |
"nodeType": "YulBlock", | |
"src": "2702:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nativeSrc": "2704:16:1", | |
"nodeType": "YulIdentifier", | |
"src": "2704:16:1" | |
}, | |
"nativeSrc": "2704:18:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2704:18:1" | |
}, | |
"nativeSrc": "2704:18:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2704:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "2674:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2674:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2682:18:1", | |
"nodeType": "YulLiteral", | |
"src": "2682:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nativeSrc": "2671:2:1", | |
"nodeType": "YulIdentifier", | |
"src": "2671:2:1" | |
}, | |
"nativeSrc": "2671:30:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2671:30:1" | |
}, | |
"nativeSrc": "2668:56:1", | |
"nodeType": "YulIf", | |
"src": "2668:56:1" | |
}, | |
{ | |
"nativeSrc": "2734:37:1", | |
"nodeType": "YulAssignment", | |
"src": "2734:37:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "2764:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2764:6:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nativeSrc": "2742:21:1", | |
"nodeType": "YulIdentifier", | |
"src": "2742:21:1" | |
}, | |
"nativeSrc": "2742:29:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2742:29:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nativeSrc": "2734:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "2734:4:1" | |
} | |
] | |
}, | |
{ | |
"nativeSrc": "2808:23:1", | |
"nodeType": "YulAssignment", | |
"src": "2808:23:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "size", | |
"nativeSrc": "2820:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "2820:4:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2826:4:1", | |
"nodeType": "YulLiteral", | |
"src": "2826:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2816:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2816:3:1" | |
}, | |
"nativeSrc": "2816:15:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2816:15:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nativeSrc": "2808:4:1", | |
"nodeType": "YulIdentifier", | |
"src": "2808:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_allocation_size_t_string_memory_ptr", | |
"nativeSrc": "2530:308:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "length", | |
"nativeSrc": "2581:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2581:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "size", | |
"nativeSrc": "2592:4:1", | |
"nodeType": "YulTypedName", | |
"src": "2592:4:1", | |
"type": "" | |
} | |
], | |
"src": "2530:308:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "2908:82:1", | |
"nodeType": "YulBlock", | |
"src": "2908:82:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "2931:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2931:3:1" | |
}, | |
{ | |
"name": "src", | |
"nativeSrc": "2936:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2936:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "2941:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2941:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldatacopy", | |
"nativeSrc": "2918:12:1", | |
"nodeType": "YulIdentifier", | |
"src": "2918:12:1" | |
}, | |
"nativeSrc": "2918:30:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2918:30:1" | |
}, | |
"nativeSrc": "2918:30:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2918:30:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nativeSrc": "2968:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2968:3:1" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "2973:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2973:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nativeSrc": "2964:3:1", | |
"nodeType": "YulIdentifier", | |
"src": "2964:3:1" | |
}, | |
"nativeSrc": "2964:16:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2964:16:1" | |
}, | |
{ | |
"kind": "number", | |
"nativeSrc": "2982:1:1", | |
"nodeType": "YulLiteral", | |
"src": "2982:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nativeSrc": "2957:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "2957:6:1" | |
}, | |
"nativeSrc": "2957:27:1", | |
"nodeType": "YulFunctionCall", | |
"src": "2957:27:1" | |
}, | |
"nativeSrc": "2957:27:1", | |
"nodeType": "YulExpressionStatement", | |
"src": "2957:27:1" | |
} | |
] | |
}, | |
"name": "copy_calldata_to_memory_with_cleanup", | |
"nativeSrc": "2844:146:1", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nativeSrc": "2890:3:1", | |
"nodeType": "YulTypedName", | |
"src": "2890:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nativeSrc": "2895:3:1", | |
"nodeType": "YulTypedName", | |
"src": "2895:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nativeSrc": "2900:6:1", | |
"nodeType": "YulTypedName", | |
"src": "2900:6:1", | |
"type": "" | |
} | |
], | |
"src": "2844:146:1" | |
}, | |
{ | |
"body": { | |
"nativeSrc": "3080:341:1", | |
"nodeType": "YulBlock", | |
"src": "3080:341:1", | |
"statements": [ | |
{ | |
"nativeSrc": "3090:75:1", | |
"nodeType": "YulAssignment", | |
"src": "3090:75:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nativeSrc": "3157:6:1", | |
"nodeType": "YulIdentifier", | |
"src": "3157:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_allocation_size_t_string_memory_ptr", | |
"nativeSrc": "3115:41:1", | |
"nodeType": "YulIdentifier", | |
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