Skip to content

Instantly share code, notes, and snippets.

@routadu
Created June 18, 2023 08:18
Show Gist options
  • Select an option

  • Save routadu/8ef5bcae76532e118f429d9c19a6d7b8 to your computer and use it in GitHub Desktop.

Select an option

Save routadu/8ef5bcae76532e118f429d9c19a6d7b8 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.18+commit.87f61d96.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity >= 0.4.22 <0.9.0;
library console {
address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);
function _sendLogPayload(bytes memory payload) private view {
uint256 payloadLength = payload.length;
address consoleAddress = CONSOLE_ADDRESS;
assembly {
let payloadStart := add(payload, 32)
let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)
}
}
function log() internal view {
_sendLogPayload(abi.encodeWithSignature("log()"));
}
function logInt(int256 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(int256)", p0));
}
function logUint(uint256 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
}
function logString(string memory p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
}
function logBool(bool p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
}
function logAddress(address p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
}
function logBytes(bytes memory p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
}
function logBytes1(bytes1 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0));
}
function logBytes2(bytes2 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0));
}
function logBytes3(bytes3 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0));
}
function logBytes4(bytes4 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0));
}
function logBytes5(bytes5 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0));
}
function logBytes6(bytes6 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0));
}
function logBytes7(bytes7 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0));
}
function logBytes8(bytes8 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0));
}
function logBytes9(bytes9 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0));
}
function logBytes10(bytes10 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0));
}
function logBytes11(bytes11 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0));
}
function logBytes12(bytes12 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0));
}
function logBytes13(bytes13 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0));
}
function logBytes14(bytes14 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0));
}
function logBytes15(bytes15 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0));
}
function logBytes16(bytes16 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0));
}
function logBytes17(bytes17 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0));
}
function logBytes18(bytes18 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0));
}
function logBytes19(bytes19 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0));
}
function logBytes20(bytes20 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0));
}
function logBytes21(bytes21 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0));
}
function logBytes22(bytes22 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0));
}
function logBytes23(bytes23 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0));
}
function logBytes24(bytes24 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0));
}
function logBytes25(bytes25 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0));
}
function logBytes26(bytes26 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0));
}
function logBytes27(bytes27 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0));
}
function logBytes28(bytes28 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0));
}
function logBytes29(bytes29 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0));
}
function logBytes30(bytes30 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0));
}
function logBytes31(bytes31 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0));
}
function logBytes32(bytes32 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0));
}
function log(uint256 p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
}
function log(string memory p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
}
function log(bool p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
}
function log(address p0) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
}
function log(uint256 p0, uint256 p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256)", p0, p1));
}
function log(uint256 p0, string memory p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string)", p0, p1));
}
function log(uint256 p0, bool p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool)", p0, p1));
}
function log(uint256 p0, address p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address)", p0, p1));
}
function log(string memory p0, uint256 p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256)", p0, p1));
}
function log(string memory p0, string memory p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1));
}
function log(string memory p0, bool p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1));
}
function log(string memory p0, address p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1));
}
function log(bool p0, uint256 p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256)", p0, p1));
}
function log(bool p0, string memory p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1));
}
function log(bool p0, bool p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1));
}
function log(bool p0, address p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1));
}
function log(address p0, uint256 p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256)", p0, p1));
}
function log(address p0, string memory p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1));
}
function log(address p0, bool p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1));
}
function log(address p0, address p1) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1));
}
function log(uint256 p0, uint256 p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address)", p0, p1, p2));
}
function log(uint256 p0, bool p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256)", p0, p1, p2));
}
function log(uint256 p0, bool p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string)", p0, p1, p2));
}
function log(uint256 p0, bool p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool)", p0, p1, p2));
}
function log(uint256 p0, bool p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address)", p0, p1, p2));
}
function log(uint256 p0, address p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256)", p0, p1, p2));
}
function log(uint256 p0, address p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string)", p0, p1, p2));
}
function log(uint256 p0, address p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool)", p0, p1, p2));
}
function log(uint256 p0, address p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address)", p0, p1, p2));
}
function log(string memory p0, string memory p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256)", p0, p1, p2));
}
function log(string memory p0, string memory p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2));
}
function log(string memory p0, string memory p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2));
}
function log(string memory p0, string memory p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2));
}
function log(string memory p0, bool p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256)", p0, p1, p2));
}
function log(string memory p0, bool p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2));
}
function log(string memory p0, bool p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2));
}
function log(string memory p0, bool p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2));
}
function log(string memory p0, address p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256)", p0, p1, p2));
}
function log(string memory p0, address p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2));
}
function log(string memory p0, address p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2));
}
function log(string memory p0, address p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2));
}
function log(bool p0, uint256 p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256)", p0, p1, p2));
}
function log(bool p0, uint256 p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string)", p0, p1, p2));
}
function log(bool p0, uint256 p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool)", p0, p1, p2));
}
function log(bool p0, uint256 p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address)", p0, p1, p2));
}
function log(bool p0, string memory p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256)", p0, p1, p2));
}
function log(bool p0, string memory p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2));
}
function log(bool p0, string memory p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2));
}
function log(bool p0, string memory p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2));
}
function log(bool p0, bool p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256)", p0, p1, p2));
}
function log(bool p0, bool p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2));
}
function log(bool p0, bool p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2));
}
function log(bool p0, bool p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2));
}
function log(bool p0, address p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256)", p0, p1, p2));
}
function log(bool p0, address p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2));
}
function log(bool p0, address p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2));
}
function log(bool p0, address p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2));
}
function log(address p0, uint256 p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256)", p0, p1, p2));
}
function log(address p0, uint256 p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string)", p0, p1, p2));
}
function log(address p0, uint256 p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool)", p0, p1, p2));
}
function log(address p0, uint256 p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address)", p0, p1, p2));
}
function log(address p0, string memory p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256)", p0, p1, p2));
}
function log(address p0, string memory p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2));
}
function log(address p0, string memory p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2));
}
function log(address p0, string memory p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2));
}
function log(address p0, bool p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256)", p0, p1, p2));
}
function log(address p0, bool p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2));
}
function log(address p0, bool p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2));
}
function log(address p0, bool p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2));
}
function log(address p0, address p1, uint256 p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256)", p0, p1, p2));
}
function log(address p0, address p1, string memory p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2));
}
function log(address p0, address p1, bool p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2));
}
function log(address p0, address p1, address p2) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, string memory p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint256)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint256)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint256)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, uint256 p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, string memory p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, bool p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, address p3) internal view {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3));
}
}
{
"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": {}
}
]
}
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.
// 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;
}
}
// 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;
}
}
// 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;
}
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
contract BankAccount{
string private constant ACCOUNT_NO = "ASDE20083634";
int64 private balance = 0;
string private upiID = "solidity@oksbi";
string private ifscCode = "SBIN0002065";
int8 private accountRating = 5;
function getAccountNo() pure public returns (string memory){
return ACCOUNT_NO;
}
function deposit(int32 amount) public{
balance += amount;
}
function withdraw(int32 amount) public returns (int64){
if(amount<balance){
balance -= amount;
return amount;
}
return 0;
}
function viewBalance() public view returns (int64){
return balance;
}
function getUPIID() public view returns (string memory){
return upiID;
}
function getIFSCCode() public view returns (string memory){
return ifscCode;
}
function getAccountRating() public view returns (int8){
return accountRating;
}
function setAccountRating(int8 rating) public{
accountRating = rating;
}
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
contract ECommerce{
// dynamic array
string[] orders;
int16[] numbers = [int16(1),2,3,4,5];
// fixed size array
string[5] addresses;
function example() public {
// push element into a array
numbers.push(10); // [1,2,3,4,5,10]
// update value of element
numbers[5] = 6; // [1,2,3,4,5,6]
// delete an element (default value will override)
delete numbers[3]; // [1,2,3,0,5,10]
numbers.pop(); // [1,2,3,0,5]
// create array in memory
// cannot call push or pop
uint[] memory arr = new uint[](5);
// arr.length to get length
for (uint8 i=0; i<arr.length; i++)
{
arr[i] = i;
}
}
function getOrders() public view returns (string[] memory){
return orders;
}
function newOrder(string memory orderID) public {
orders.push(orderID);
}
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.18;
contract CarCollection{
struct Car {
address owner;
address brand;
string model;
uint year;
uint price;
}
Car[] collection;
function examples() public {
// struct initialized with default values
Car memory genericCar;
collection.push(genericCar);
// initialize struct with positional parameters
// order of parameter needs to be maintained
Car memory car1 = Car(msg.sender,address(0x00),"Prius",2015,500000);
collection.push(car1);
// initialize struct with key value pairs
// order of key value pairs doesn't matter
Car memory car2 = Car({
price:1000000,
model:"City",
brand:address(0x00),
owner:msg.sender,
year:2023});
// delete (reset) struct member
delete car2.owner;
// delete (reset) struct
delete car2;
collection.push(car2);
// initializing struct with memory creates a copy of struct in function memory
// gets deleted after function execution ends
Car memory carFromCollection = collection[1];
// initializing struct with storage maintains a reference of the struct object
// with the array element. Any update made here also updates the object in the
// array element.
Car storage carFromCollection2 = collection[1];
delete carFromCollection;
carFromCollection2.price+=10000;
}
function addCartoCollection(address brand, string memory model, uint year, uint price) public {
Car memory newCar = Car(msg.sender,brand,model,year,price);
collection.push(newCar);
}
function addGenericCar() public {
Car memory newCar;
collection.push(newCar);
}
}
{
"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": {
"array_dataslot_t_string_storage": {
"entryPoint": 471,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 313,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 792,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 607,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 753,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 627,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 947,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 492,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 418,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 917,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 617,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 885,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 371,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 324,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 667,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 508,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 872,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 725,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 521,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 677,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 720,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5231:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:1"
},
"nodeType": "YulFunctionCall",
"src": "87:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:1",
"type": ""
}
],
"src": "7:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "140:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "157:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "160:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "150:6:1"
},
"nodeType": "YulFunctionCall",
"src": "150:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "150:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "254:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "257:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "247:6:1"
},
"nodeType": "YulFunctionCall",
"src": "247:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "247:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "278:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "281:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "271:6:1"
},
"nodeType": "YulFunctionCall",
"src": "271:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "271:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "112:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "326:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "343:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "346:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "336:6:1"
},
"nodeType": "YulFunctionCall",
"src": "336:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "336:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "433:6:1"
},
"nodeType": "YulFunctionCall",
"src": "433:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "433:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "467:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "457:6:1"
},
"nodeType": "YulFunctionCall",
"src": "457:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "457:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "298:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "535:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "545:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "559:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "565:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "555:3:1"
},
"nodeType": "YulFunctionCall",
"src": "555:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "545:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "576:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "606:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "612:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "602:3:1"
},
"nodeType": "YulFunctionCall",
"src": "602:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "580:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "653:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "667:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "681:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "689:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "677:3:1"
},
"nodeType": "YulFunctionCall",
"src": "677:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "667:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "633:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "626:6:1"
},
"nodeType": "YulFunctionCall",
"src": "626:26:1"
},
"nodeType": "YulIf",
"src": "623:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "770:16:1"
},
"nodeType": "YulFunctionCall",
"src": "770:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "770:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "720:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "743:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "751:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "740:2:1"
},
"nodeType": "YulFunctionCall",
"src": "740:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "717:2:1"
},
"nodeType": "YulFunctionCall",
"src": "717:38:1"
},
"nodeType": "YulIf",
"src": "714:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "519:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "528:6:1",
"type": ""
}
],
"src": "484:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "864:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "874:11:1",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "882:3:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "874:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "902:1:1",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "905:3:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "895:6:1"
},
"nodeType": "YulFunctionCall",
"src": "895:14:1"
},
"nodeType": "YulExpressionStatement",
"src": "895:14:1"
},
{
"nodeType": "YulAssignment",
"src": "918:26:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "936:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "926:9:1"
},
"nodeType": "YulFunctionCall",
"src": "926:18:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "918:4:1"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "851:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "859:4:1",
"type": ""
}
],
"src": "810:141:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1001:49:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1011:33:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1029:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1036:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1025:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1025:14:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1041:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1021:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1021:23:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1011:6:1"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "984:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "994:6:1",
"type": ""
}
],
"src": "957:93:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1109:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1119:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "1144:4:1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1150:5:1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1140:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1140:16:1"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "1119:8:1"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "1084:4:1",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1090:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "1100:8:1",
"type": ""
}
],
"src": "1056:107:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1245:317:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1255:35:1",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "1276:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1288:1:1",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1272:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1272:18:1"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "1259:9:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1299:109:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1330:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1341:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1311:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1311:97:1"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "1303:4:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1417:51:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1448:9:1"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1459:8:1"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1429:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1429:39:1"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1417:8:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1477:30:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1490:5:1"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1501:4:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1497:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1497:9:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1486:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1486:21:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1477:5:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1516:40:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1529:5:1"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1540:8:1"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1550:4:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1536:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1536:19:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1526:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1526:30:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1516:6:1"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1206:5:1",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "1213:10:1",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "1225:8:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1238:6:1",
"type": ""
}
],
"src": "1169:393:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1613:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1623:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1634:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1623:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1595:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1605:7:1",
"type": ""
}
],
"src": "1568:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1683:28:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1693:12:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1700:5:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1693:3:1"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1669:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1679:3:1",
"type": ""
}
],
"src": "1651:60:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1777:82:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1787:66:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1845:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1827:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1827:24:1"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "1818:8:1"
},
"nodeType": "YulFunctionCall",
"src": "1818:34:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1800:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1800:53:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "1787:9:1"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1757:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "1767:9:1",
"type": ""
}
],
"src": "1717:142:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1912:28:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1922:12:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1929:5:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1922:3:1"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1898:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1908:3:1",
"type": ""
}
],
"src": "1865:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2022:193:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2032:63:1",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "2087:7:1"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2056:30:1"
},
"nodeType": "YulFunctionCall",
"src": "2056:39:1"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "2036:16:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2111:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2151:4:1"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "2145:5:1"
},
"nodeType": "YulFunctionCall",
"src": "2145:11:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2158:6:1"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "2190:16:1"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "2166:23:1"
},
"nodeType": "YulFunctionCall",
"src": "2166:41:1"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "2117:27:1"
},
"nodeType": "YulFunctionCall",
"src": "2117:91:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "2104:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2104:105:1"
},
"nodeType": "YulExpressionStatement",
"src": "2104:105:1"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "1999:4:1",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2005:6:1",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "2013:7:1",
"type": ""
}
],
"src": "1946:269:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2270:24:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2280:8:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2287:1:1",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "2280:3:1"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "2266:3:1",
"type": ""
}
],
"src": "2221:73:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2353:136:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2363:46:1",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "2377:30:1"
},
"nodeType": "YulFunctionCall",
"src": "2377:32:1"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "2367:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2462:4:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2468:6:1"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "2476:6:1"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2418:43:1"
},
"nodeType": "YulFunctionCall",
"src": "2418:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "2418:65:1"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "2339:4:1",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2345:6:1",
"type": ""
}
],
"src": "2300:189:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:136:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2612:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2656:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2663:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "2626:29:1"
},
"nodeType": "YulFunctionCall",
"src": "2626:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "2626:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2565:5:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2572:3:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2562:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2562:14:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2577:26:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2579:22:1",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2592:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2599:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2588:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2588:13:1"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2579:5:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2559:2:1",
"statements": []
},
"src": "2555:120:1"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "2533:5:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2540:3:1",
"type": ""
}
],
"src": "2495:186:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2766:464:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2792:431:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2806:54:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2854:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "2822:31:1"
},
"nodeType": "YulFunctionCall",
"src": "2822:38:1"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "2810:8:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2873:63:1",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "2896:8:1"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "2924:10:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "2906:17:1"
},
"nodeType": "YulFunctionCall",
"src": "2906:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2892:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2892:44:1"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "2877:11:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3093:27:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3095:23:1",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3110:8:1"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3095:11:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "3077:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3089:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3074:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3074:18:1"
},
"nodeType": "YulIf",
"src": "3071:49:1"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3162:11:1"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3179:8:1"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3207:3:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "3189:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3189:22:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3175:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3175:37:1"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "3133:28:1"
},
"nodeType": "YulFunctionCall",
"src": "3133:80:1"
},
"nodeType": "YulExpressionStatement",
"src": "3133:80:1"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2783:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2788:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2780:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2780:11:1"
},
"nodeType": "YulIf",
"src": "2777:446:1"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2742:5:1",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "2749:3:1",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "2754:10:1",
"type": ""
}
],
"src": "2687:543:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3299:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3309:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "3334:4:1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3340:5:1"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "3330:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3330:16:1"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "3309:8:1"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "3274:4:1",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3280:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "3290:8:1",
"type": ""
}
],
"src": "3236:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3410:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3420:68:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3469:1:1",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "3472:5:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3465:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3465:13:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3484:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3480:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3480:6:1"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "3436:28:1"
},
"nodeType": "YulFunctionCall",
"src": "3436:51:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3432:56:1"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "3424:4:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3497:25:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3511:4:1"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "3517:4:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3507:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3507:15:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3497:6:1"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3387:4:1",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "3393:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "3403:6:1",
"type": ""
}
],
"src": "3359:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3614:214:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3747:37:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3774:4:1"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3780:3:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "3755:18:1"
},
"nodeType": "YulFunctionCall",
"src": "3755:29:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3747:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3793:29:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3804:4:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3814:1:1",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3817:3:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3810:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3810:11:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3801:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3801:21:1"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "3793:4:1"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3595:4:1",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "3601:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "3609:4:1",
"type": ""
}
],
"src": "3533:295:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3925:1303:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3936:51:1",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3983:3:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3950:32:1"
},
"nodeType": "YulFunctionCall",
"src": "3950:37:1"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "3940:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4072:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4074:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4074:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4074:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4044:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4052:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4041:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4041:30:1"
},
"nodeType": "YulIf",
"src": "4038:56:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4104:52:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4150:4:1"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "4144:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4144:11:1"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "4118:25:1"
},
"nodeType": "YulFunctionCall",
"src": "4118:38:1"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "4108:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4249:4:1"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "4255:6:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4263:6:1"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4203:45:1"
},
"nodeType": "YulFunctionCall",
"src": "4203:67:1"
},
"nodeType": "YulExpressionStatement",
"src": "4203:67:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4280:18:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "4284:9:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4308:17:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4321:4:1",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4308:9:1"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4372:611:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4386:37:1",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4405:6:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4417:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4413:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4413:9:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4401:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4401:22:1"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "4390:7:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4437:51:1",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4483:4:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4451:31:1"
},
"nodeType": "YulFunctionCall",
"src": "4451:37:1"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "4441:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4501:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4510:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4505:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4569:163:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4594:6:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4612:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4617:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4608:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4608:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4602:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4602:26:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4587:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4587:42:1"
},
"nodeType": "YulExpressionStatement",
"src": "4587:42:1"
},
{
"nodeType": "YulAssignment",
"src": "4646:24:1",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4660:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4668:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4656:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4656:14:1"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4646:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4687:31:1",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4704:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4715:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4700:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4700:18:1"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4687:9:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4535:1:1"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4538:7:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4532:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4532:14:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4547:21:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4549:17:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4558:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4561:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4554:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4554:12:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4549:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4528:3:1",
"statements": []
},
"src": "4524:208:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4768:156:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4786:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4813:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4818:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4809:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4809:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4803:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4803:26:1"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "4790:9:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4853:6:1"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "4880:9:1"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4895:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4903:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4891:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4891:17:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "4861:18:1"
},
"nodeType": "YulFunctionCall",
"src": "4861:48:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4846:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4846:64:1"
},
"nodeType": "YulExpressionStatement",
"src": "4846:64:1"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4751:7:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4760:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4748:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4748:19:1"
},
"nodeType": "YulIf",
"src": "4745:179:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4944:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4958:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4966:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4954:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4954:14:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4970:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4950:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4950:22:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4937:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4937:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "4937:36:1"
}
]
},
"nodeType": "YulCase",
"src": "4365:618:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4370:1:1",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "5000:222:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5014:14:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5027:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5018:5:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5051:67:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5069:35:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5088:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "5093:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5084:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5084:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5078:5:1"
},
"nodeType": "YulFunctionCall",
"src": "5078:26:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5069:5:1"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5044:6:1"
},
"nodeType": "YulIf",
"src": "5041:77:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5138:4:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5197:5:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5204:6:1"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "5144:52:1"
},
"nodeType": "YulFunctionCall",
"src": "5144:67:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "5131:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5131:81:1"
},
"nodeType": "YulExpressionStatement",
"src": "5131:81:1"
}
]
},
"nodeType": "YulCase",
"src": "4992:230:1",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4345:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4353:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4342:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4342:14:1"
},
"nodeType": "YulSwitch",
"src": "4335:887:1"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "3914:4:1",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3920:3:1",
"type": ""
}
],
"src": "3833:1395:1"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function 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"
}
],
"linkReferences": {},
"object": "60806040526040518060400160405280600c81526020017f4153444532303038333633340000000000000000000000000000000000000000815250600090816200004a9190620003b3565b506000600160006101000a81548167ffffffffffffffff021916908360070b67ffffffffffffffff1602179055506040518060400160405280600e81526020017f736f6c6964697479406f6b73626900000000000000000000000000000000000081525060029081620000be9190620003b3565b506040518060400160405280600b81526020017f5342494e3030303230363500000000000000000000000000000000000000000081525060039081620001059190620003b3565b506005600460006101000a81548160ff021916908360000b60ff1602179055503480156200013257600080fd5b506200049a565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620001bb57607f821691505b602082108103620001d157620001d062000173565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200023b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620001fc565b620002478683620001fc565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002946200028e62000288846200025f565b62000269565b6200025f565b9050919050565b6000819050919050565b620002b08362000273565b620002c8620002bf826200029b565b84845462000209565b825550505050565b600090565b620002df620002d0565b620002ec818484620002a5565b505050565b5b81811015620003145762000308600082620002d5565b600181019050620002f2565b5050565b601f82111562000363576200032d81620001d7565b6200033884620001ec565b8101602085101562000348578190505b620003606200035785620001ec565b830182620002f1565b50505b505050565b600082821c905092915050565b6000620003886000198460080262000368565b1980831691505092915050565b6000620003a3838362000375565b9150826002028217905092915050565b620003be8262000139565b67ffffffffffffffff811115620003da57620003d962000144565b5b620003e68254620001a2565b620003f382828562000318565b600060209050601f8311600181146200042b576000841562000416578287015190505b62000422858262000395565b86555062000492565b601f1984166200043b86620001d7565b60005b8281101562000465578489015182556001820191506020850194506020810190506200043e565b8683101562000485578489015162000481601f89168262000375565b8355505b6001600288020188555050505b505050505050565b61070980620004aa6000396000f3fe608060405234801561001057600080fd5b506004361061007d5760003560e01c8063b2cb685d1161005b578063b2cb685d146100da578063c210be01146100f8578063e333d19e14610116578063e68f3a27146101325761007d565b80633ff1e05b146100825780636b2ff9bd146100a05780637a5dc6af146100bc575b600080fd5b61008a610162565b60405161009791906103bc565b60405180910390f35b6100ba60048036038101906100b59190610415565b610179565b005b6100c46101c6565b6040516100d191906104d2565b60405180910390f35b6100e2610258565b6040516100ef91906104d2565b60405180910390f35b6101006102ea565b60405161010d9190610510565b60405180910390f35b610130600480360381019061012b9190610557565b610301565b005b61014c60048036038101906101479190610415565b610322565b60405161015991906103bc565b60405180910390f35b6000600160009054906101000a900460070b905090565b8060030b600160008282829054906101000a900460070b61019a91906105b3565b92506101000a81548167ffffffffffffffff021916908360070b67ffffffffffffffff16021790555050565b6060600280546101d590610642565b80601f016020809104026020016040519081016040528092919081815260200182805461020190610642565b801561024e5780601f106102235761010080835404028352916020019161024e565b820191906000526020600020905b81548152906001019060200180831161023157829003601f168201915b5050505050905090565b60606003805461026790610642565b80601f016020809104026020016040519081016040528092919081815260200182805461029390610642565b80156102e05780601f106102b5576101008083540402835291602001916102e0565b820191906000526020600020905b8154815290600101906020018083116102c357829003601f168201915b5050505050905090565b6000600460009054906101000a900460000b905090565b80600460006101000a81548160ff021916908360000b60ff16021790555050565b6000600160009054906101000a900460070b60070b8260030b1215610396578160030b600160008282829054906101000a900460070b6103629190610673565b92506101000a81548167ffffffffffffffff021916908360070b67ffffffffffffffff1602179055508160030b905061039b565b600090505b919050565b60008160070b9050919050565b6103b6816103a0565b82525050565b60006020820190506103d160008301846103ad565b92915050565b600080fd5b60008160030b9050919050565b6103f2816103dc565b81146103fd57600080fd5b50565b60008135905061040f816103e9565b92915050565b60006020828403121561042b5761042a6103d7565b5b600061043984828501610400565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561047c578082015181840152602081019050610461565b60008484015250505050565b6000601f19601f8301169050919050565b60006104a482610442565b6104ae818561044d565b93506104be81856020860161045e565b6104c781610488565b840191505092915050565b600060208201905081810360008301526104ec8184610499565b905092915050565b60008160000b9050919050565b61050a816104f4565b82525050565b60006020820190506105256000830184610501565b92915050565b610534816104f4565b811461053f57600080fd5b50565b6000813590506105518161052b565b92915050565b60006020828403121561056d5761056c6103d7565b5b600061057b84828501610542565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006105be826103a0565b91506105c9836103a0565b925082820190507fffffffffffffffffffffffffffffffffffffffffffffffff80000000000000008112677fffffffffffffff8213171561060d5761060c610584565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061065a57607f821691505b60208210810361066d5761066c610613565b5b50919050565b600061067e826103a0565b9150610689836103a0565b92508282039050677fffffffffffffff81137fffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000821217156106cd576106cc610584565b5b9291505056fea26469706673582212200e231b8b8d68c7653b0b1e0b2910813a386b042d7f711610cdb4c3d9bca8554264736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xC DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4153444532303038333633340000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x0 SWAP1 DUP2 PUSH3 0x4A SWAP2 SWAP1 PUSH3 0x3B3 JUMP JUMPDEST POP PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0x7 SIGNEXTEND PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xE DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x736F6C6964697479406F6B736269000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x2 SWAP1 DUP2 PUSH3 0xBE SWAP2 SWAP1 PUSH3 0x3B3 JUMP JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xB DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5342494E30303032303635000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x3 SWAP1 DUP2 PUSH3 0x105 SWAP2 SWAP1 PUSH3 0x3B3 JUMP JUMPDEST POP PUSH1 0x5 PUSH1 0x4 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x0 SIGNEXTEND PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH3 0x132 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH3 0x49A JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x1BB JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x1D1 JUMPI PUSH3 0x1D0 PUSH3 0x173 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH3 0x23B PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x1FC JUMP JUMPDEST PUSH3 0x247 DUP7 DUP4 PUSH3 0x1FC 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 PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x294 PUSH3 0x28E PUSH3 0x288 DUP5 PUSH3 0x25F JUMP JUMPDEST PUSH3 0x269 JUMP JUMPDEST PUSH3 0x25F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x2B0 DUP4 PUSH3 0x273 JUMP JUMPDEST PUSH3 0x2C8 PUSH3 0x2BF DUP3 PUSH3 0x29B JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x209 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH3 0x2DF PUSH3 0x2D0 JUMP JUMPDEST PUSH3 0x2EC DUP2 DUP5 DUP5 PUSH3 0x2A5 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x314 JUMPI PUSH3 0x308 PUSH1 0x0 DUP3 PUSH3 0x2D5 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x2F2 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x363 JUMPI PUSH3 0x32D DUP2 PUSH3 0x1D7 JUMP JUMPDEST PUSH3 0x338 DUP5 PUSH3 0x1EC JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x348 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x360 PUSH3 0x357 DUP6 PUSH3 0x1EC JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x2F1 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x388 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x368 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3A3 DUP4 DUP4 PUSH3 0x375 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x3BE DUP3 PUSH3 0x139 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x3DA JUMPI PUSH3 0x3D9 PUSH3 0x144 JUMP JUMPDEST JUMPDEST PUSH3 0x3E6 DUP3 SLOAD PUSH3 0x1A2 JUMP JUMPDEST PUSH3 0x3F3 DUP3 DUP3 DUP6 PUSH3 0x318 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x42B JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x416 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x422 DUP6 DUP3 PUSH3 0x395 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x492 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x43B DUP7 PUSH3 0x1D7 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x465 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 PUSH3 0x43E JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x485 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x481 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x375 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 PUSH2 0x709 DUP1 PUSH3 0x4AA PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x7D JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB2CB685D GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xB2CB685D EQ PUSH2 0xDA JUMPI DUP1 PUSH4 0xC210BE01 EQ PUSH2 0xF8 JUMPI DUP1 PUSH4 0xE333D19E EQ PUSH2 0x116 JUMPI DUP1 PUSH4 0xE68F3A27 EQ PUSH2 0x132 JUMPI PUSH2 0x7D JUMP JUMPDEST DUP1 PUSH4 0x3FF1E05B EQ PUSH2 0x82 JUMPI DUP1 PUSH4 0x6B2FF9BD EQ PUSH2 0xA0 JUMPI DUP1 PUSH4 0x7A5DC6AF EQ PUSH2 0xBC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x8A PUSH2 0x162 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x97 SWAP2 SWAP1 PUSH2 0x3BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xBA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xB5 SWAP2 SWAP1 PUSH2 0x415 JUMP JUMPDEST PUSH2 0x179 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC4 PUSH2 0x1C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD1 SWAP2 SWAP1 PUSH2 0x4D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE2 PUSH2 0x258 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xEF SWAP2 SWAP1 PUSH2 0x4D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x100 PUSH2 0x2EA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10D SWAP2 SWAP1 PUSH2 0x510 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x130 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12B SWAP2 SWAP1 PUSH2 0x557 JUMP JUMPDEST PUSH2 0x301 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x14C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x147 SWAP2 SWAP1 PUSH2 0x415 JUMP JUMPDEST PUSH2 0x322 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x159 SWAP2 SWAP1 PUSH2 0x3BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x7 SIGNEXTEND SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x3 SIGNEXTEND PUSH1 0x1 PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x7 SIGNEXTEND PUSH2 0x19A SWAP2 SWAP1 PUSH2 0x5B3 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0x7 SIGNEXTEND PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD PUSH2 0x1D5 SWAP1 PUSH2 0x642 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 0x201 SWAP1 PUSH2 0x642 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x24E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x223 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x24E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x231 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x267 SWAP1 PUSH2 0x642 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 0x293 SWAP1 PUSH2 0x642 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2E0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2B5 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2E0 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2C3 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x0 SIGNEXTEND SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x4 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x0 SIGNEXTEND PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x7 SIGNEXTEND PUSH1 0x7 SIGNEXTEND DUP3 PUSH1 0x3 SIGNEXTEND SLT ISZERO PUSH2 0x396 JUMPI DUP2 PUSH1 0x3 SIGNEXTEND PUSH1 0x1 PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x7 SIGNEXTEND PUSH2 0x362 SWAP2 SWAP1 PUSH2 0x673 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0x7 SIGNEXTEND PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH1 0x3 SIGNEXTEND SWAP1 POP PUSH2 0x39B JUMP JUMPDEST PUSH1 0x0 SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x7 SIGNEXTEND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3B6 DUP2 PUSH2 0x3A0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3D1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3AD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x3 SIGNEXTEND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3F2 DUP2 PUSH2 0x3DC JUMP JUMPDEST DUP2 EQ PUSH2 0x3FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x40F DUP2 PUSH2 0x3E9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x42B JUMPI PUSH2 0x42A PUSH2 0x3D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x439 DUP5 DUP3 DUP6 ADD PUSH2 0x400 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x47C JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x461 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4A4 DUP3 PUSH2 0x442 JUMP JUMPDEST PUSH2 0x4AE DUP2 DUP6 PUSH2 0x44D JUMP JUMPDEST SWAP4 POP PUSH2 0x4BE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x45E JUMP JUMPDEST PUSH2 0x4C7 DUP2 PUSH2 0x488 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4EC DUP2 DUP5 PUSH2 0x499 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SIGNEXTEND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x50A DUP2 PUSH2 0x4F4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x525 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x501 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x534 DUP2 PUSH2 0x4F4 JUMP JUMPDEST DUP2 EQ PUSH2 0x53F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x551 DUP2 PUSH2 0x52B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x56D JUMPI PUSH2 0x56C PUSH2 0x3D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x57B DUP5 DUP3 DUP6 ADD PUSH2 0x542 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x5BE DUP3 PUSH2 0x3A0 JUMP JUMPDEST SWAP2 POP PUSH2 0x5C9 DUP4 PUSH2 0x3A0 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000 DUP2 SLT PUSH8 0x7FFFFFFFFFFFFFFF DUP3 SGT OR ISZERO PUSH2 0x60D JUMPI PUSH2 0x60C PUSH2 0x584 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x65A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x66D JUMPI PUSH2 0x66C PUSH2 0x613 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x67E DUP3 PUSH2 0x3A0 JUMP JUMPDEST SWAP2 POP PUSH2 0x689 DUP4 PUSH2 0x3A0 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP PUSH8 0x7FFFFFFFFFFFFFFF DUP2 SGT PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000 DUP3 SLT OR ISZERO PUSH2 0x6CD JUMPI PUSH2 0x6CC PUSH2 0x584 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE 0x23 SHL DUP12 DUP14 PUSH9 0xC7653B0B1E0B291081 GASPRICE CODESIZE PUSH12 0x42D7F711610CDB4C3D9BCA8 SSTORE TIMESTAMP PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "60:986:0:-:0;;;87:41;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;159:1;135:25;;;;;;;;;;;;;;;;;;;;;;169:39;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;215;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;290:1;261:30;;;;;;;;;;;;;;;;;;;;;;60:986;;;;;;;;;;;;7:99:1;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:180::-;160:77;157:1;150:88;257:4;254:1;247:15;281:4;278:1;271:15;298:180;346:77;343:1;336:88;443:4;440:1;433:15;467:4;464:1;457:15;484:320;528:6;565:1;559:4;555:12;545:22;;612:1;606:4;602:12;633:18;623:81;;689:4;681:6;677:17;667:27;;623:81;751:2;743:6;740:14;720:18;717:38;714:84;;770:18;;:::i;:::-;714:84;535:269;484:320;;;:::o;810:141::-;859:4;882:3;874:11;;905:3;902:1;895:14;939:4;936:1;926:18;918:26;;810:141;;;:::o;957:93::-;994:6;1041:2;1036;1029:5;1025:14;1021:23;1011:33;;957:93;;;:::o;1056:107::-;1100:8;1150:5;1144:4;1140:16;1119:37;;1056:107;;;;:::o;1169:393::-;1238:6;1288:1;1276:10;1272:18;1311:97;1341:66;1330:9;1311:97;:::i;:::-;1429:39;1459:8;1448:9;1429:39;:::i;:::-;1417:51;;1501:4;1497:9;1490:5;1486:21;1477:30;;1550:4;1540:8;1536:19;1529:5;1526:30;1516:40;;1245:317;;1169:393;;;;;:::o;1568:77::-;1605:7;1634:5;1623:16;;1568:77;;;:::o;1651:60::-;1679:3;1700:5;1693:12;;1651:60;;;:::o;1717:142::-;1767:9;1800:53;1818:34;1827:24;1845:5;1827:24;:::i;:::-;1818:34;:::i;:::-;1800:53;:::i;:::-;1787:66;;1717:142;;;:::o;1865:75::-;1908:3;1929:5;1922:12;;1865:75;;;:::o;1946:269::-;2056:39;2087:7;2056:39;:::i;:::-;2117:91;2166:41;2190:16;2166:41;:::i;:::-;2158:6;2151:4;2145:11;2117:91;:::i;:::-;2111:4;2104:105;2022:193;1946:269;;;:::o;2221:73::-;2266:3;2221:73;:::o;2300:189::-;2377:32;;:::i;:::-;2418:65;2476:6;2468;2462:4;2418:65;:::i;:::-;2353:136;2300:189;;:::o;2495:186::-;2555:120;2572:3;2565:5;2562:14;2555:120;;;2626:39;2663:1;2656:5;2626:39;:::i;:::-;2599:1;2592:5;2588:13;2579:22;;2555:120;;;2495:186;;:::o;2687:543::-;2788:2;2783:3;2780:11;2777:446;;;2822:38;2854:5;2822:38;:::i;:::-;2906:29;2924:10;2906:29;:::i;:::-;2896:8;2892:44;3089:2;3077:10;3074:18;3071:49;;;3110:8;3095:23;;3071:49;3133:80;3189:22;3207:3;3189:22;:::i;:::-;3179:8;3175:37;3162:11;3133:80;:::i;:::-;2792:431;;2777:446;2687:543;;;:::o;3236:117::-;3290:8;3340:5;3334:4;3330:16;3309:37;;3236:117;;;;:::o;3359:169::-;3403:6;3436:51;3484:1;3480:6;3472:5;3469:1;3465:13;3436:51;:::i;:::-;3432:56;3517:4;3511;3507:15;3497:25;;3410:118;3359:169;;;;:::o;3533:295::-;3609:4;3755:29;3780:3;3774:4;3755:29;:::i;:::-;3747:37;;3817:3;3814:1;3810:11;3804:4;3801:21;3793:29;;3533:295;;;;:::o;3833:1395::-;3950:37;3983:3;3950:37;:::i;:::-;4052:18;4044:6;4041:30;4038:56;;;4074:18;;:::i;:::-;4038:56;4118:38;4150:4;4144:11;4118:38;:::i;:::-;4203:67;4263:6;4255;4249:4;4203:67;:::i;:::-;4297:1;4321:4;4308:17;;4353:2;4345:6;4342:14;4370:1;4365:618;;;;5027:1;5044:6;5041:77;;;5093:9;5088:3;5084:19;5078:26;5069:35;;5041:77;5144:67;5204:6;5197:5;5144:67;:::i;:::-;5138:4;5131:81;5000:222;4335:887;;4365:618;4417:4;4413:9;4405:6;4401:22;4451:37;4483:4;4451:37;:::i;:::-;4510:1;4524:208;4538:7;4535:1;4532:14;4524:208;;;4617:9;4612:3;4608:19;4602:26;4594:6;4587:42;4668:1;4660:6;4656:14;4646:24;;4715:2;4704:9;4700:18;4687:31;;4561:4;4558:1;4554:12;4549:17;;4524:208;;;4760:6;4751:7;4748:19;4745:179;;;4818:9;4813:3;4809:19;4803:26;4861:48;4903:4;4895:6;4891:17;4880:9;4861:48;:::i;:::-;4853:6;4846:64;4768:156;4745:179;4970:1;4966;4958:6;4954:14;4950:22;4944:4;4937:36;4372:611;;;4335:887;;3925:1303;;;3833:1395;;:::o;60:986:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@deposit_26": {
"entryPoint": 377,
"id": 26,
"parameterSlots": 1,
"returnSlots": 0
},
"@getAccountRating_79": {
"entryPoint": 746,
"id": 79,
"parameterSlots": 0,
"returnSlots": 1
},
"@getIFSCCode_71": {
"entryPoint": 600,
"id": 71,
"parameterSlots": 0,
"returnSlots": 1
},
"@getUPIID_63": {
"entryPoint": 454,
"id": 63,
"parameterSlots": 0,
"returnSlots": 1
},
"@setAccountRating_89": {
"entryPoint": 769,
"id": 89,
"parameterSlots": 1,
"returnSlots": 0
},
"@viewBalance_55": {
"entryPoint": 354,
"id": 55,
"parameterSlots": 0,
"returnSlots": 1
},
"@withdraw_47": {
"entryPoint": 802,
"id": 47,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_t_int32": {
"entryPoint": 1024,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_int8": {
"entryPoint": 1346,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_int32": {
"entryPoint": 1045,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_int8": {
"entryPoint": 1367,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_int64_to_t_int64_fromStack": {
"entryPoint": 941,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_int8_to_t_int8_fromStack": {
"entryPoint": 1281,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1177,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_int64__to_t_int64__fromStack_reversed": {
"entryPoint": 956,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_int8__to_t_int8__fromStack_reversed": {
"entryPoint": 1296,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1234,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1090,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1101,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_int64": {
"entryPoint": 1459,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_int64": {
"entryPoint": 1651,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_int32": {
"entryPoint": 988,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_int64": {
"entryPoint": 928,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_int8": {
"entryPoint": 1268,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 1118,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 1602,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1412,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1555,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 983,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1160,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_int32": {
"entryPoint": 1001,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_int8": {
"entryPoint": 1323,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5167:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "50:47:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "60:31:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "82:1:1",
"type": "",
"value": "7"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "85:5:1"
}
],
"functionName": {
"name": "signextend",
"nodeType": "YulIdentifier",
"src": "71:10:1"
},
"nodeType": "YulFunctionCall",
"src": "71:20:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "60:7:1"
}
]
}
]
},
"name": "cleanup_t_int64",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "42:7:1",
"type": ""
}
],
"src": "7:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "164:51:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "181:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "202:5:1"
}
],
"functionName": {
"name": "cleanup_t_int64",
"nodeType": "YulIdentifier",
"src": "186:15:1"
},
"nodeType": "YulFunctionCall",
"src": "186:22:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "174:6:1"
},
"nodeType": "YulFunctionCall",
"src": "174:35:1"
},
"nodeType": "YulExpressionStatement",
"src": "174:35:1"
}
]
},
"name": "abi_encode_t_int64_to_t_int64_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "152:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "159:3:1",
"type": ""
}
],
"src": "103:112:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "315:120:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "325:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "337:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "348:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "333:3:1"
},
"nodeType": "YulFunctionCall",
"src": "333:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "325:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "401:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "414:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "425:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "410:3:1"
},
"nodeType": "YulFunctionCall",
"src": "410:17:1"
}
],
"functionName": {
"name": "abi_encode_t_int64_to_t_int64_fromStack",
"nodeType": "YulIdentifier",
"src": "361:39:1"
},
"nodeType": "YulFunctionCall",
"src": "361:67:1"
},
"nodeType": "YulExpressionStatement",
"src": "361:67:1"
}
]
},
"name": "abi_encode_tuple_t_int64__to_t_int64__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "287:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "299:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "310:4:1",
"type": ""
}
],
"src": "221:214:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "481:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "491:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "507:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "501:5:1"
},
"nodeType": "YulFunctionCall",
"src": "501:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "491:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "474:6:1",
"type": ""
}
],
"src": "441:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "611:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "628:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "631:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "621:6:1"
},
"nodeType": "YulFunctionCall",
"src": "621:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "621:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "522:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "734:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "751:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "754:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "744:6:1"
},
"nodeType": "YulFunctionCall",
"src": "744:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "744:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "645:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "811:47:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "821:31:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "843:1:1",
"type": "",
"value": "3"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "846:5:1"
}
],
"functionName": {
"name": "signextend",
"nodeType": "YulIdentifier",
"src": "832:10:1"
},
"nodeType": "YulFunctionCall",
"src": "832:20:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "821:7:1"
}
]
}
]
},
"name": "cleanup_t_int32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "793:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "803:7:1",
"type": ""
}
],
"src": "768:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "905:77:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "960:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "969:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "972:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "962:6:1"
},
"nodeType": "YulFunctionCall",
"src": "962:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "962:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "928:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "951:5:1"
}
],
"functionName": {
"name": "cleanup_t_int32",
"nodeType": "YulIdentifier",
"src": "935:15:1"
},
"nodeType": "YulFunctionCall",
"src": "935:22:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "925:2:1"
},
"nodeType": "YulFunctionCall",
"src": "925:33:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "918:6:1"
},
"nodeType": "YulFunctionCall",
"src": "918:41:1"
},
"nodeType": "YulIf",
"src": "915:61:1"
}
]
},
"name": "validator_revert_t_int32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "898:5:1",
"type": ""
}
],
"src": "864:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1038:85:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1048:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1070:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1057:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1057:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1048:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1111:5:1"
}
],
"functionName": {
"name": "validator_revert_t_int32",
"nodeType": "YulIdentifier",
"src": "1086:24:1"
},
"nodeType": "YulFunctionCall",
"src": "1086:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "1086:31:1"
}
]
},
"name": "abi_decode_t_int32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1016:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1024:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1032:5:1",
"type": ""
}
],
"src": "988:135:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1193:261:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1239:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1241:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1241:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1241:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1214:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1223:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1210:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1210:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1235:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1206:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1206:32:1"
},
"nodeType": "YulIf",
"src": "1203:119:1"
},
{
"nodeType": "YulBlock",
"src": "1332:115:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1347:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1361:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1351:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1376:61:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1409:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1420:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1405:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1405:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1429:7:1"
}
],
"functionName": {
"name": "abi_decode_t_int32",
"nodeType": "YulIdentifier",
"src": "1386:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1386:51:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1376:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_int32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1163:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1174:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1186:6:1",
"type": ""
}
],
"src": "1129:325:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1519:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1530:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1546:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1540:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1540:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1502:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1512:6:1",
"type": ""
}
],
"src": "1460:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1661:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1678:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1683:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1671:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1671:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "1671:19:1"
},
{
"nodeType": "YulAssignment",
"src": "1699:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1718:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1723:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1714:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1714:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1699:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1633:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1638:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1649:11:1",
"type": ""
}
],
"src": "1565:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1802:184:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1812:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1821:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1816:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1881:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1906:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1911:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1902:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1902:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1925:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1930:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1921:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1921:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1915:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1915:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1895:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1895:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "1895:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1842:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1845:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1839:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1839:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1853:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1855:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1864:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1867:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1860:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1860:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1855:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1835:3:1",
"statements": []
},
"src": "1831:113:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1964:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1969:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1960:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1960:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1978:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1953:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1953:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "1953:27:1"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1784:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1789:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1794:6:1",
"type": ""
}
],
"src": "1740:246:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2040:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2050:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2068:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2075:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2064:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2064:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2084:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2080:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2080:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2060:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2060:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2050:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2023:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2033:6:1",
"type": ""
}
],
"src": "1992:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2192:285:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2202:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2249:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2216:32:1"
},
"nodeType": "YulFunctionCall",
"src": "2216:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2206:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2264:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2330:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2335:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2271:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2271:71:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2264:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2390:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2397:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2386:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2386:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2404:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2409:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2351:34:1"
},
"nodeType": "YulFunctionCall",
"src": "2351:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "2351:65:1"
},
{
"nodeType": "YulAssignment",
"src": "2425:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2436:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2463:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2441:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2441:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2432:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2425:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2173:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2180:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2188:3:1",
"type": ""
}
],
"src": "2100:377:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2601:195:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2611:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2623:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2634:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2619:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2619:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2611:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2658:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2669:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2654:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2654:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2677:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2683:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2673:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2673:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2647:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2647:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "2647:47:1"
},
{
"nodeType": "YulAssignment",
"src": "2703:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2775:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2784:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2711:63:1"
},
"nodeType": "YulFunctionCall",
"src": "2711:78:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2703:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2573:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2585:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2596:4:1",
"type": ""
}
],
"src": "2483:313:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2844:47:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2854:31:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2876:1:1",
"type": "",
"value": "0"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2879:5:1"
}
],
"functionName": {
"name": "signextend",
"nodeType": "YulIdentifier",
"src": "2865:10:1"
},
"nodeType": "YulFunctionCall",
"src": "2865:20:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2854:7:1"
}
]
}
]
},
"name": "cleanup_t_int8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2826:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2836:7:1",
"type": ""
}
],
"src": "2802:89:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2956:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2973:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2993:5:1"
}
],
"functionName": {
"name": "cleanup_t_int8",
"nodeType": "YulIdentifier",
"src": "2978:14:1"
},
"nodeType": "YulFunctionCall",
"src": "2978:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2966:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2966:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "2966:34:1"
}
]
},
"name": "abi_encode_t_int8_to_t_int8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2944:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2951:3:1",
"type": ""
}
],
"src": "2897:109:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3104:118:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3114:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3126:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3137:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3122:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3122:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3114:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3188:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3201:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3212:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3197:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3197:17:1"
}
],
"functionName": {
"name": "abi_encode_t_int8_to_t_int8_fromStack",
"nodeType": "YulIdentifier",
"src": "3150:37:1"
},
"nodeType": "YulFunctionCall",
"src": "3150:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "3150:65:1"
}
]
},
"name": "abi_encode_tuple_t_int8__to_t_int8__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3076:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3088:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3099:4:1",
"type": ""
}
],
"src": "3012:210:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3268:76:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3322:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3331:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3334:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3324:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3324:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3324:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3291:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3313:5:1"
}
],
"functionName": {
"name": "cleanup_t_int8",
"nodeType": "YulIdentifier",
"src": "3298:14:1"
},
"nodeType": "YulFunctionCall",
"src": "3298:21:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3288:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3288:32:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3281:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3281:40:1"
},
"nodeType": "YulIf",
"src": "3278:60:1"
}
]
},
"name": "validator_revert_t_int8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3261:5:1",
"type": ""
}
],
"src": "3228:116:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3399:84:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3409:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3431:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3418:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3418:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3409:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3471:5:1"
}
],
"functionName": {
"name": "validator_revert_t_int8",
"nodeType": "YulIdentifier",
"src": "3447:23:1"
},
"nodeType": "YulFunctionCall",
"src": "3447:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "3447:30:1"
}
]
},
"name": "abi_decode_t_int8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3377:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3385:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3393:5:1",
"type": ""
}
],
"src": "3350:133:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3552:260:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3598:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3600:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3600:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3600:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3573:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3582:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3569:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3569:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3594:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3565:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3565:32:1"
},
"nodeType": "YulIf",
"src": "3562:119:1"
},
{
"nodeType": "YulBlock",
"src": "3691:114:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3706:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3720:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3710:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3735:60:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3767:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3778:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3763:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3763:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3787:7:1"
}
],
"functionName": {
"name": "abi_decode_t_int8",
"nodeType": "YulIdentifier",
"src": "3745:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3745:50:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3735:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_int8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3522:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3533:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3545:6:1",
"type": ""
}
],
"src": "3489:323:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3846:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3863:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3866:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3856:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3856:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3856:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3960:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3963:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3953:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3953:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3953:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3984:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3987:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3977:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3977:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3977:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "3818:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4046:277:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4056:23:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4077:1:1"
}
],
"functionName": {
"name": "cleanup_t_int64",
"nodeType": "YulIdentifier",
"src": "4061:15:1"
},
"nodeType": "YulFunctionCall",
"src": "4061:18:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4056:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4088:23:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4109:1:1"
}
],
"functionName": {
"name": "cleanup_t_int64",
"nodeType": "YulIdentifier",
"src": "4093:15:1"
},
"nodeType": "YulFunctionCall",
"src": "4093:18:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4088:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4120:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4131:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4134:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4127:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4127:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4120:3:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4294:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4296:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4296:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4296:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4169:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4174:18:1",
"type": "",
"value": "0x7fffffffffffffff"
}
],
"functionName": {
"name": "sgt",
"nodeType": "YulIdentifier",
"src": "4165:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4165:28:1"
},
{
"arguments": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4211:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4216:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4207:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4207:76:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4149:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4149:144:1"
},
"nodeType": "YulIf",
"src": "4146:170:1"
}
]
},
"name": "checked_add_t_int64",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4033:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4036:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "4042:3:1",
"type": ""
}
],
"src": "4004:319:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4357:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4374:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4377:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4367:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4367:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "4367:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4471:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4474:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4464:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4464:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4464:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4495:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4498:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4488:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4488:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4488:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "4329:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4566:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4576:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4590:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4596:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4586:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4586:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4576:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4607:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4637:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4643:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4633:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4633:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "4611:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4684:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4698:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4712:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4720:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4708:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4708:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4698:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4664:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4657:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4657:26:1"
},
"nodeType": "YulIf",
"src": "4654:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4787:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4801:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4801:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4801:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4751:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4774:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4782:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4771:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4771:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4748:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4748:38:1"
},
"nodeType": "YulIf",
"src": "4745:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4550:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4559:6:1",
"type": ""
}
],
"src": "4515:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4884:280:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4894:23:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4915:1:1"
}
],
"functionName": {
"name": "cleanup_t_int64",
"nodeType": "YulIdentifier",
"src": "4899:15:1"
},
"nodeType": "YulFunctionCall",
"src": "4899:18:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4894:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4926:23:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4947:1:1"
}
],
"functionName": {
"name": "cleanup_t_int64",
"nodeType": "YulIdentifier",
"src": "4931:15:1"
},
"nodeType": "YulFunctionCall",
"src": "4931:18:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4926:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4958:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4970:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4973:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4966:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4966:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "4958:4:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5135:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5137:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5137:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5137:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "5008:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5014:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5004:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5004:77:1"
},
{
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "5099:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5105:18:1",
"type": "",
"value": "0x7fffffffffffffff"
}
],
"functionName": {
"name": "sgt",
"nodeType": "YulIdentifier",
"src": "5095:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5095:29:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "4988:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4988:146:1"
},
"nodeType": "YulIf",
"src": "4985:172:1"
}
]
},
"name": "checked_sub_t_int64",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4870:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4873:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "4879:4:1",
"type": ""
}
],
"src": "4841:323:1"
}
]
},
"contents": "{\n\n function cleanup_t_int64(value) -> cleaned {\n cleaned := signextend(7, value)\n }\n\n function abi_encode_t_int64_to_t_int64_fromStack(value, pos) {\n mstore(pos, cleanup_t_int64(value))\n }\n\n function abi_encode_tuple_t_int64__to_t_int64__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_int64_to_t_int64_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 cleanup_t_int32(value) -> cleaned {\n cleaned := signextend(3, value)\n }\n\n function validator_revert_t_int32(value) {\n if iszero(eq(value, cleanup_t_int32(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_int32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_int32(value)\n }\n\n function abi_decode_tuple_t_int32(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_int32(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 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 cleanup_t_int8(value) -> cleaned {\n cleaned := signextend(0, value)\n }\n\n function abi_encode_t_int8_to_t_int8_fromStack(value, pos) {\n mstore(pos, cleanup_t_int8(value))\n }\n\n function abi_encode_tuple_t_int8__to_t_int8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_int8_to_t_int8_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_int8(value) {\n if iszero(eq(value, cleanup_t_int8(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_int8(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_int8(value)\n }\n\n function abi_decode_tuple_t_int8(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_int8(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_int64(x, y) -> sum {\n x := cleanup_t_int64(x)\n y := cleanup_t_int64(y)\n sum := add(x, y)\n\n if or(\n sgt(sum, 0x7fffffffffffffff),\n slt(sum, 0xffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000)\n ) { panic_error_0x11() }\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 checked_sub_t_int64(x, y) -> diff {\n x := cleanup_t_int64(x)\n y := cleanup_t_int64(y)\n diff := sub(x, y)\n\n if or(\n slt(diff, 0xffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000),\n sgt(diff, 0x7fffffffffffffff)\n ) { panic_error_0x11() }\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061007d5760003560e01c8063b2cb685d1161005b578063b2cb685d146100da578063c210be01146100f8578063e333d19e14610116578063e68f3a27146101325761007d565b80633ff1e05b146100825780636b2ff9bd146100a05780637a5dc6af146100bc575b600080fd5b61008a610162565b60405161009791906103bc565b60405180910390f35b6100ba60048036038101906100b59190610415565b610179565b005b6100c46101c6565b6040516100d191906104d2565b60405180910390f35b6100e2610258565b6040516100ef91906104d2565b60405180910390f35b6101006102ea565b60405161010d9190610510565b60405180910390f35b610130600480360381019061012b9190610557565b610301565b005b61014c60048036038101906101479190610415565b610322565b60405161015991906103bc565b60405180910390f35b6000600160009054906101000a900460070b905090565b8060030b600160008282829054906101000a900460070b61019a91906105b3565b92506101000a81548167ffffffffffffffff021916908360070b67ffffffffffffffff16021790555050565b6060600280546101d590610642565b80601f016020809104026020016040519081016040528092919081815260200182805461020190610642565b801561024e5780601f106102235761010080835404028352916020019161024e565b820191906000526020600020905b81548152906001019060200180831161023157829003601f168201915b5050505050905090565b60606003805461026790610642565b80601f016020809104026020016040519081016040528092919081815260200182805461029390610642565b80156102e05780601f106102b5576101008083540402835291602001916102e0565b820191906000526020600020905b8154815290600101906020018083116102c357829003601f168201915b5050505050905090565b6000600460009054906101000a900460000b905090565b80600460006101000a81548160ff021916908360000b60ff16021790555050565b6000600160009054906101000a900460070b60070b8260030b1215610396578160030b600160008282829054906101000a900460070b6103629190610673565b92506101000a81548167ffffffffffffffff021916908360070b67ffffffffffffffff1602179055508160030b905061039b565b600090505b919050565b60008160070b9050919050565b6103b6816103a0565b82525050565b60006020820190506103d160008301846103ad565b92915050565b600080fd5b60008160030b9050919050565b6103f2816103dc565b81146103fd57600080fd5b50565b60008135905061040f816103e9565b92915050565b60006020828403121561042b5761042a6103d7565b5b600061043984828501610400565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561047c578082015181840152602081019050610461565b60008484015250505050565b6000601f19601f8301169050919050565b60006104a482610442565b6104ae818561044d565b93506104be81856020860161045e565b6104c781610488565b840191505092915050565b600060208201905081810360008301526104ec8184610499565b905092915050565b60008160000b9050919050565b61050a816104f4565b82525050565b60006020820190506105256000830184610501565b92915050565b610534816104f4565b811461053f57600080fd5b50565b6000813590506105518161052b565b92915050565b60006020828403121561056d5761056c6103d7565b5b600061057b84828501610542565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006105be826103a0565b91506105c9836103a0565b925082820190507fffffffffffffffffffffffffffffffffffffffffffffffff80000000000000008112677fffffffffffffff8213171561060d5761060c610584565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061065a57607f821691505b60208210810361066d5761066c610613565b5b50919050565b600061067e826103a0565b9150610689836103a0565b92508282039050677fffffffffffffff81137fffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000821217156106cd576106cc610584565b5b9291505056fea26469706673582212200e231b8b8d68c7653b0b1e0b2910813a386b042d7f711610cdb4c3d9bca8554264736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x7D JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xB2CB685D GT PUSH2 0x5B JUMPI DUP1 PUSH4 0xB2CB685D EQ PUSH2 0xDA JUMPI DUP1 PUSH4 0xC210BE01 EQ PUSH2 0xF8 JUMPI DUP1 PUSH4 0xE333D19E EQ PUSH2 0x116 JUMPI DUP1 PUSH4 0xE68F3A27 EQ PUSH2 0x132 JUMPI PUSH2 0x7D JUMP JUMPDEST DUP1 PUSH4 0x3FF1E05B EQ PUSH2 0x82 JUMPI DUP1 PUSH4 0x6B2FF9BD EQ PUSH2 0xA0 JUMPI DUP1 PUSH4 0x7A5DC6AF EQ PUSH2 0xBC JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x8A PUSH2 0x162 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x97 SWAP2 SWAP1 PUSH2 0x3BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xBA PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xB5 SWAP2 SWAP1 PUSH2 0x415 JUMP JUMPDEST PUSH2 0x179 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC4 PUSH2 0x1C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD1 SWAP2 SWAP1 PUSH2 0x4D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xE2 PUSH2 0x258 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xEF SWAP2 SWAP1 PUSH2 0x4D2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x100 PUSH2 0x2EA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x10D SWAP2 SWAP1 PUSH2 0x510 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x130 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12B SWAP2 SWAP1 PUSH2 0x557 JUMP JUMPDEST PUSH2 0x301 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x14C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x147 SWAP2 SWAP1 PUSH2 0x415 JUMP JUMPDEST PUSH2 0x322 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x159 SWAP2 SWAP1 PUSH2 0x3BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x7 SIGNEXTEND SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x3 SIGNEXTEND PUSH1 0x1 PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x7 SIGNEXTEND PUSH2 0x19A SWAP2 SWAP1 PUSH2 0x5B3 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0x7 SIGNEXTEND PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x2 DUP1 SLOAD PUSH2 0x1D5 SWAP1 PUSH2 0x642 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 0x201 SWAP1 PUSH2 0x642 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x24E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x223 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x24E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x231 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x267 SWAP1 PUSH2 0x642 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 0x293 SWAP1 PUSH2 0x642 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2E0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2B5 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2E0 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2C3 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x0 SIGNEXTEND SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x4 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0x0 SIGNEXTEND PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x7 SIGNEXTEND PUSH1 0x7 SIGNEXTEND DUP3 PUSH1 0x3 SIGNEXTEND SLT ISZERO PUSH2 0x396 JUMPI DUP2 PUSH1 0x3 SIGNEXTEND PUSH1 0x1 PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0x7 SIGNEXTEND PUSH2 0x362 SWAP2 SWAP1 PUSH2 0x673 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0x7 SIGNEXTEND PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH1 0x3 SIGNEXTEND SWAP1 POP PUSH2 0x39B JUMP JUMPDEST PUSH1 0x0 SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x7 SIGNEXTEND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3B6 DUP2 PUSH2 0x3A0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3D1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3AD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x3 SIGNEXTEND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3F2 DUP2 PUSH2 0x3DC JUMP JUMPDEST DUP2 EQ PUSH2 0x3FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x40F DUP2 PUSH2 0x3E9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x42B JUMPI PUSH2 0x42A PUSH2 0x3D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x439 DUP5 DUP3 DUP6 ADD PUSH2 0x400 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x47C JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x461 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4A4 DUP3 PUSH2 0x442 JUMP JUMPDEST PUSH2 0x4AE DUP2 DUP6 PUSH2 0x44D JUMP JUMPDEST SWAP4 POP PUSH2 0x4BE DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x45E JUMP JUMPDEST PUSH2 0x4C7 DUP2 PUSH2 0x488 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x4EC DUP2 DUP5 PUSH2 0x499 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 SIGNEXTEND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x50A DUP2 PUSH2 0x4F4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x525 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x501 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x534 DUP2 PUSH2 0x4F4 JUMP JUMPDEST DUP2 EQ PUSH2 0x53F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x551 DUP2 PUSH2 0x52B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x56D JUMPI PUSH2 0x56C PUSH2 0x3D7 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x57B DUP5 DUP3 DUP6 ADD PUSH2 0x542 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x5BE DUP3 PUSH2 0x3A0 JUMP JUMPDEST SWAP2 POP PUSH2 0x5C9 DUP4 PUSH2 0x3A0 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000 DUP2 SLT PUSH8 0x7FFFFFFFFFFFFFFF DUP3 SGT OR ISZERO PUSH2 0x60D JUMPI PUSH2 0x60C PUSH2 0x584 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x65A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x66D JUMPI PUSH2 0x66C PUSH2 0x613 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x67E DUP3 PUSH2 0x3A0 JUMP JUMPDEST SWAP2 POP PUSH2 0x689 DUP4 PUSH2 0x3A0 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP PUSH8 0x7FFFFFFFFFFFFFFF DUP2 SGT PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8000000000000000 DUP3 SLT OR ISZERO PUSH2 0x6CD JUMPI PUSH2 0x6CC PUSH2 0x584 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE 0x23 SHL DUP12 DUP14 PUSH9 0xC7653B0B1E0B291081 GASPRICE CODESIZE PUSH12 0x42D7F711610CDB4C3D9BCA8 SSTORE TIMESTAMP PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "60:986:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;571:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;300:74;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;662:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;756:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;856:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;957:86;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;382:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;571:83;615:5;639:7;;;;;;;;;;;632:14;;571:83;:::o;300:74::-;360:6;349:17;;:7;;:17;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;300:74;:::o;662:86::-;703:13;735:5;728:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;662:86;:::o;756:92::-;800:13;832:8;825:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;756:92;:::o;856:93::-;905:4;928:13;;;;;;;;;;;921:20;;856:93;:::o;957:86::-;1029:6;1013:13;;:22;;;;;;;;;;;;;;;;;;;;957:86;:::o;382:181::-;430:5;457:7;;;;;;;;;;;450:14;;:6;:14;;;447:90;;;491:6;480:17;;:7;;:17;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;519:6;512:13;;;;;;447:90;554:1;547:8;;382:181;;;;:::o;7:90:1:-;42:7;85:5;82:1;71:20;60:31;;7:90;;;:::o;103:112::-;186:22;202:5;186:22;:::i;:::-;181:3;174:35;103:112;;:::o;221:214::-;310:4;348:2;337:9;333:18;325:26;;361:67;425:1;414:9;410:17;401:6;361:67;:::i;:::-;221:214;;;;:::o;522:117::-;631:1;628;621:12;768:90;803:7;846:5;843:1;832:20;821:31;;768:90;;;:::o;864:118::-;935:22;951:5;935:22;:::i;:::-;928:5;925:33;915:61;;972:1;969;962:12;915:61;864:118;:::o;988:135::-;1032:5;1070:6;1057:20;1048:29;;1086:31;1111:5;1086:31;:::i;:::-;988:135;;;;:::o;1129:325::-;1186:6;1235:2;1223:9;1214:7;1210:23;1206:32;1203:119;;;1241:79;;:::i;:::-;1203:119;1361:1;1386:51;1429:7;1420:6;1409:9;1405:22;1386:51;:::i;:::-;1376:61;;1332:115;1129:325;;;;:::o;1460:99::-;1512:6;1546:5;1540:12;1530:22;;1460:99;;;:::o;1565:169::-;1649:11;1683:6;1678:3;1671:19;1723:4;1718:3;1714:14;1699:29;;1565:169;;;;:::o;1740:246::-;1821:1;1831:113;1845:6;1842:1;1839:13;1831:113;;;1930:1;1925:3;1921:11;1915:18;1911:1;1906:3;1902:11;1895:39;1867:2;1864:1;1860:10;1855:15;;1831:113;;;1978:1;1969:6;1964:3;1960:16;1953:27;1802:184;1740:246;;;:::o;1992:102::-;2033:6;2084:2;2080:7;2075:2;2068:5;2064:14;2060:28;2050:38;;1992:102;;;:::o;2100:377::-;2188:3;2216:39;2249:5;2216:39;:::i;:::-;2271:71;2335:6;2330:3;2271:71;:::i;:::-;2264:78;;2351:65;2409:6;2404:3;2397:4;2390:5;2386:16;2351:65;:::i;:::-;2441:29;2463:6;2441:29;:::i;:::-;2436:3;2432:39;2425:46;;2192:285;2100:377;;;;:::o;2483:313::-;2596:4;2634:2;2623:9;2619:18;2611:26;;2683:9;2677:4;2673:20;2669:1;2658:9;2654:17;2647:47;2711:78;2784:4;2775:6;2711:78;:::i;:::-;2703:86;;2483:313;;;;:::o;2802:89::-;2836:7;2879:5;2876:1;2865:20;2854:31;;2802:89;;;:::o;2897:109::-;2978:21;2993:5;2978:21;:::i;:::-;2973:3;2966:34;2897:109;;:::o;3012:210::-;3099:4;3137:2;3126:9;3122:18;3114:26;;3150:65;3212:1;3201:9;3197:17;3188:6;3150:65;:::i;:::-;3012:210;;;;:::o;3228:116::-;3298:21;3313:5;3298:21;:::i;:::-;3291:5;3288:32;3278:60;;3334:1;3331;3324:12;3278:60;3228:116;:::o;3350:133::-;3393:5;3431:6;3418:20;3409:29;;3447:30;3471:5;3447:30;:::i;:::-;3350:133;;;;:::o;3489:323::-;3545:6;3594:2;3582:9;3573:7;3569:23;3565:32;3562:119;;;3600:79;;:::i;:::-;3562:119;3720:1;3745:50;3787:7;3778:6;3767:9;3763:22;3745:50;:::i;:::-;3735:60;;3691:114;3489:323;;;;:::o;3818:180::-;3866:77;3863:1;3856:88;3963:4;3960:1;3953:15;3987:4;3984:1;3977:15;4004:319;4042:3;4061:18;4077:1;4061:18;:::i;:::-;4056:23;;4093:18;4109:1;4093:18;:::i;:::-;4088:23;;4134:1;4131;4127:9;4120:16;;4216:66;4211:3;4207:76;4174:18;4169:3;4165:28;4149:144;4146:170;;;4296:18;;:::i;:::-;4146:170;4004:319;;;;:::o;4329:180::-;4377:77;4374:1;4367:88;4474:4;4471:1;4464:15;4498:4;4495:1;4488:15;4515:320;4559:6;4596:1;4590:4;4586:12;4576:22;;4643:1;4637:4;4633:12;4664:18;4654:81;;4720:4;4712:6;4708:17;4698:27;;4654:81;4782:2;4774:6;4771:14;4751:18;4748:38;4745:84;;4801:18;;:::i;:::-;4745:84;4566:269;4515:320;;;:::o;4841:323::-;4879:4;4899:18;4915:1;4899:18;:::i;:::-;4894:23;;4931:18;4947:1;4931:18;:::i;:::-;4926:23;;4973:1;4970;4966:9;4958:17;;5105:18;5099:4;5095:29;5014:66;5008:4;5004:77;4988:146;4985:172;;;5137:18;;:::i;:::-;4985:172;4841:323;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "360200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"deposit(int32)": "infinite",
"getAccountRating()": "2505",
"getIFSCCode()": "infinite",
"getUPIID()": "infinite",
"setAccountRating(int8)": "24733",
"viewBalance()": "2484",
"withdraw(int32)": "infinite"
}
},
"methodIdentifiers": {
"deposit(int32)": "6b2ff9bd",
"getAccountRating()": "c210be01",
"getIFSCCode()": "b2cb685d",
"getUPIID()": "7a5dc6af",
"setAccountRating(int8)": "e333d19e",
"viewBalance()": "3ff1e05b",
"withdraw(int32)": "e68f3a27"
}
},
"abi": [
{
"inputs": [
{
"internalType": "int32",
"name": "amount",
"type": "int32"
}
],
"name": "deposit",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getAccountRating",
"outputs": [
{
"internalType": "int8",
"name": "",
"type": "int8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getIFSCCode",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getUPIID",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "int8",
"name": "rating",
"type": "int8"
}
],
"name": "setAccountRating",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "viewBalance",
"outputs": [
{
"internalType": "int64",
"name": "",
"type": "int64"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "int32",
"name": "amount",
"type": "int32"
}
],
"name": "withdraw",
"outputs": [
{
"internalType": "int64",
"name": "",
"type": "int64"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.18+commit.87f61d96"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "int32",
"name": "amount",
"type": "int32"
}
],
"name": "deposit",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getAccountRating",
"outputs": [
{
"internalType": "int8",
"name": "",
"type": "int8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getIFSCCode",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getUPIID",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "int8",
"name": "rating",
"type": "int8"
}
],
"name": "setAccountRating",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "viewBalance",
"outputs": [
{
"internalType": "int64",
"name": "",
"type": "int64"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "int32",
"name": "amount",
"type": "int32"
}
],
"name": "withdraw",
"outputs": [
{
"internalType": "int64",
"name": "",
"type": "int64"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/4_Contract.sol": "BankAccount"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/4_Contract.sol": {
"keccak256": "0x67531615a4d6f1155933607089ce640da3e46b3f989cb321d3607e00b7c48b41",
"license": "MIT",
"urls": [
"bzz-raw://7cf6bab35f4e0924da34cbf8ae7d49c1e1531bf47995b9864559922d2db9a003",
"dweb:/ipfs/QmUfg4ZitiX3HGmEF14Gyu2jcQsLB7QtHniMsCs47Fpbvc"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610c79806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c8063335d00c21461004657806343e1c7c2146100505780639e73e04d1461005a575b600080fd5b61004e610076565b005b610058610459565b005b610074600480360381019061006f91906108d7565b61054a565b005b61007e61068e565b600081908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600201908161014d9190610b71565b506060820151816003015560808201518160040155505060006040518060a001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016040518060400160405280600581526020017f507269757300000000000000000000000000000000000000000000000000000081525081526020016107df81526020016207a1208152509050600081908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020190816102c59190610b71565b506060820151816003015560808201518160040155505060006040518060a001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016040518060400160405280600481526020017f436974790000000000000000000000000000000000000000000000000000000081525081526020016107e78152602001620f42408152509050600081908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600201908161043d9190610b71565b5060608201518160030155608082015181600401555050505050565b61046161068e565b600081908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020190816105309190610b71565b506060820151816003015560808201518160040155505050565b60006040518060a001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001838152509050600081908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020190816106709190610b71565b50606082015181600301556080820151816004015550505050505050565b6040518060a00160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016060815260200160008152602001600081525090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610728826106fd565b9050919050565b6107388161071d565b811461074357600080fd5b50565b6000813590506107558161072f565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6107ae82610765565b810181811067ffffffffffffffff821117156107cd576107cc610776565b5b80604052505050565b60006107e06106e9565b90506107ec82826107a5565b919050565b600067ffffffffffffffff82111561080c5761080b610776565b5b61081582610765565b9050602081019050919050565b82818337600083830152505050565b600061084461083f846107f1565b6107d6565b9050828152602081018484840111156108605761085f610760565b5b61086b848285610822565b509392505050565b600082601f8301126108885761088761075b565b5b8135610898848260208601610831565b91505092915050565b6000819050919050565b6108b4816108a1565b81146108bf57600080fd5b50565b6000813590506108d1816108ab565b92915050565b600080600080608085870312156108f1576108f06106f3565b5b60006108ff87828801610746565b945050602085013567ffffffffffffffff8111156109205761091f6106f8565b5b61092c87828801610873565b935050604061093d878288016108c2565b925050606061094e878288016108c2565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806109ac57607f821691505b6020821081036109bf576109be610965565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302610a277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826109ea565b610a3186836109ea565b95508019841693508086168417925050509392505050565b6000819050919050565b6000610a6e610a69610a64846108a1565b610a49565b6108a1565b9050919050565b6000819050919050565b610a8883610a53565b610a9c610a9482610a75565b8484546109f7565b825550505050565b600090565b610ab1610aa4565b610abc818484610a7f565b505050565b5b81811015610ae057610ad5600082610aa9565b600181019050610ac2565b5050565b601f821115610b2557610af6816109c5565b610aff846109da565b81016020851015610b0e578190505b610b22610b1a856109da565b830182610ac1565b50505b505050565b600082821c905092915050565b6000610b4860001984600802610b2a565b1980831691505092915050565b6000610b618383610b37565b9150826002028217905092915050565b610b7a8261095a565b67ffffffffffffffff811115610b9357610b92610776565b5b610b9d8254610994565b610ba8828285610ae4565b600060209050601f831160018114610bdb5760008415610bc9578287015190505b610bd38582610b55565b865550610c3b565b601f198416610be9866109c5565b60005b82811015610c1157848901518255600182019150602085019450602081019050610bec565b86831015610c2e5784890151610c2a601f891682610b37565b8355505b6001600288020188555050505b50505050505056fea264697066735822122086e0fd7b4d40b274a8c5237d4e432831196c08da8296301194058435cd0b3bf564736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xC79 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x335D00C2 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x43E1C7C2 EQ PUSH2 0x50 JUMPI DUP1 PUSH4 0x9E73E04D EQ PUSH2 0x5A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4E PUSH2 0x76 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x58 PUSH2 0x459 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x74 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6F SWAP2 SWAP1 PUSH2 0x8D7 JUMP JUMPDEST PUSH2 0x54A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x7E PUSH2 0x68E JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x14D SWAP2 SWAP1 PUSH2 0xB71 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE POP POP PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5072697573000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x7DF DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x7A120 DUP2 MSTORE POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x2C5 SWAP2 SWAP1 PUSH2 0xB71 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE POP POP PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4369747900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x7E7 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0xF4240 DUP2 MSTORE POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x43D SWAP2 SWAP1 PUSH2 0xB71 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH2 0x461 PUSH2 0x68E JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x530 SWAP2 SWAP1 PUSH2 0xB71 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x670 SWAP2 SWAP1 PUSH2 0xB71 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x728 DUP3 PUSH2 0x6FD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x738 DUP2 PUSH2 0x71D JUMP JUMPDEST DUP2 EQ PUSH2 0x743 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x755 DUP2 PUSH2 0x72F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x7AE DUP3 PUSH2 0x765 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x7CD JUMPI PUSH2 0x7CC PUSH2 0x776 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7E0 PUSH2 0x6E9 JUMP JUMPDEST SWAP1 POP PUSH2 0x7EC DUP3 DUP3 PUSH2 0x7A5 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x80C JUMPI PUSH2 0x80B PUSH2 0x776 JUMP JUMPDEST JUMPDEST PUSH2 0x815 DUP3 PUSH2 0x765 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x844 PUSH2 0x83F DUP5 PUSH2 0x7F1 JUMP JUMPDEST PUSH2 0x7D6 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x860 JUMPI PUSH2 0x85F PUSH2 0x760 JUMP JUMPDEST JUMPDEST PUSH2 0x86B DUP5 DUP3 DUP6 PUSH2 0x822 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x888 JUMPI PUSH2 0x887 PUSH2 0x75B JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x898 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x831 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8B4 DUP2 PUSH2 0x8A1 JUMP JUMPDEST DUP2 EQ PUSH2 0x8BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x8D1 DUP2 PUSH2 0x8AB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x8F1 JUMPI PUSH2 0x8F0 PUSH2 0x6F3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x8FF DUP8 DUP3 DUP9 ADD PUSH2 0x746 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x920 JUMPI PUSH2 0x91F PUSH2 0x6F8 JUMP JUMPDEST JUMPDEST PUSH2 0x92C DUP8 DUP3 DUP9 ADD PUSH2 0x873 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x93D DUP8 DUP3 DUP9 ADD PUSH2 0x8C2 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 PUSH2 0x94E DUP8 DUP3 DUP9 ADD PUSH2 0x8C2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x9AC JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x9BF JUMPI PUSH2 0x9BE PUSH2 0x965 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0xA27 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x9EA JUMP JUMPDEST PUSH2 0xA31 DUP7 DUP4 PUSH2 0x9EA 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 PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA6E PUSH2 0xA69 PUSH2 0xA64 DUP5 PUSH2 0x8A1 JUMP JUMPDEST PUSH2 0xA49 JUMP JUMPDEST PUSH2 0x8A1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA88 DUP4 PUSH2 0xA53 JUMP JUMPDEST PUSH2 0xA9C PUSH2 0xA94 DUP3 PUSH2 0xA75 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x9F7 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0xAB1 PUSH2 0xAA4 JUMP JUMPDEST PUSH2 0xABC DUP2 DUP5 DUP5 PUSH2 0xA7F JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xAE0 JUMPI PUSH2 0xAD5 PUSH1 0x0 DUP3 PUSH2 0xAA9 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xAC2 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0xB25 JUMPI PUSH2 0xAF6 DUP2 PUSH2 0x9C5 JUMP JUMPDEST PUSH2 0xAFF DUP5 PUSH2 0x9DA JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0xB0E JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0xB22 PUSH2 0xB1A DUP6 PUSH2 0x9DA JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0xAC1 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB48 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0xB2A JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB61 DUP4 DUP4 PUSH2 0xB37 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB7A DUP3 PUSH2 0x95A JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB93 JUMPI PUSH2 0xB92 PUSH2 0x776 JUMP JUMPDEST JUMPDEST PUSH2 0xB9D DUP3 SLOAD PUSH2 0x994 JUMP JUMPDEST PUSH2 0xBA8 DUP3 DUP3 DUP6 PUSH2 0xAE4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0xBDB JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0xBC9 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0xBD3 DUP6 DUP3 PUSH2 0xB55 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0xC3B JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0xBE9 DUP7 PUSH2 0x9C5 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xC11 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 0xBEC JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0xC2E JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0xC2A PUSH1 0x1F DUP10 AND DUP3 PUSH2 0xB37 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 DUP7 0xE0 REVERT PUSH28 0x4D40B274A8C5237D4E432831196C08DA8296301194058435CD0B3BF5 PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "62:1219:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addCartoCollection_102": {
"entryPoint": 1354,
"id": 102,
"parameterSlots": 4,
"returnSlots": 0
},
"@addGenericCar_116": {
"entryPoint": 1113,
"id": 116,
"parameterSlots": 0,
"returnSlots": 0
},
"@examples_72": {
"entryPoint": 118,
"id": 72,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 2097,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 1862,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 2163,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 2242,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_string_memory_ptrt_uint256t_uint256": {
"entryPoint": 2263,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"allocate_memory": {
"entryPoint": 2006,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 1769,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 2033,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 2501,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 2394,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 2788,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 1821,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1789,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 2209,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 2753,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 2643,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 2929,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 2082,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 2522,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 2452,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 2901,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1957,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 2633,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 2871,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 2405,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1910,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 2677,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1883,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1888,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1784,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1779,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1893,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 2538,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 2858,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 2729,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 2551,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 2687,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 1839,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 2219,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 2724,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:9322:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "404:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "411:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "400:3:1"
},
"nodeType": "YulFunctionCall",
"src": "400:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "511:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "521:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "550:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "532:17:1"
},
"nodeType": "YulFunctionCall",
"src": "532:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "521:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "493:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "503:7:1",
"type": ""
}
],
"src": "466:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "611:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "668:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "677:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "680:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "670:6:1"
},
"nodeType": "YulFunctionCall",
"src": "670:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "670:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "634:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "659:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "641:17:1"
},
"nodeType": "YulFunctionCall",
"src": "641:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "631:2:1"
},
"nodeType": "YulFunctionCall",
"src": "631:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "624:6:1"
},
"nodeType": "YulFunctionCall",
"src": "624:43:1"
},
"nodeType": "YulIf",
"src": "621:63:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "604:5:1",
"type": ""
}
],
"src": "568:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "748:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "758:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "780:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "767:12:1"
},
"nodeType": "YulFunctionCall",
"src": "767:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "758:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "823:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "796:26:1"
},
"nodeType": "YulFunctionCall",
"src": "796:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "796:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "726:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "734:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "742:5:1",
"type": ""
}
],
"src": "696:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "930:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "947:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "950:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "940:6:1"
},
"nodeType": "YulFunctionCall",
"src": "940:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "940:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "841:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1053:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1070:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1073:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1063:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1063:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1063:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "964:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1135:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1145:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1163:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1170:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1159:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1159:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1179:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1175:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1175:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1155:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1155:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1145:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1118:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1128:6:1",
"type": ""
}
],
"src": "1087:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1223:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1240:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1243:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1233:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1233:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "1233:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1337:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1340:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1330:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1330:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1330:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1361:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1364:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1354:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1354:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "1354:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "1195:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1424:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1434:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1456:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1486:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1464:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1464:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1452:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1452:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "1438:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1603:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1605:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1605:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1605:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1546:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1558:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1543:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1543:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1582:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1594:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1579:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1579:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1540:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1540:62:1"
},
"nodeType": "YulIf",
"src": "1537:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1641:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1645:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1634:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1634:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1634:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1410:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1418:4:1",
"type": ""
}
],
"src": "1381:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1709:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1719:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1729:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1729:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1719:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1778:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1786:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1758:19:1"
},
"nodeType": "YulFunctionCall",
"src": "1758:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1758:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1693:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1702:6:1",
"type": ""
}
],
"src": "1668:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1870:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1975:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1977:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1977:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1977:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1947:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1955:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1944:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1944:30:1"
},
"nodeType": "YulIf",
"src": "1941:56:1"
},
{
"nodeType": "YulAssignment",
"src": "2007:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2037:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2015:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2015:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2007:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2081:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2093:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2099:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2089:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2089:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2081:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1854:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1865:4:1",
"type": ""
}
],
"src": "1803:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2181:82:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2204:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2209:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2214:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "2191:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2191:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "2191:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2241:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2246:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2237:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2237:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2255:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2230:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2230:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "2230:27:1"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2163:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2168:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2173:6:1",
"type": ""
}
],
"src": "2117:146:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2353:341:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2363:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2430:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2388:41:1"
},
"nodeType": "YulFunctionCall",
"src": "2388:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2372:15:1"
},
"nodeType": "YulFunctionCall",
"src": "2372:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2363:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2454:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2461:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2447:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2447:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "2447:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2477:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2492:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2499:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2488:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2488:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2481:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2542:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2544:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2544:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2544:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2523:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2528:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2519:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2519:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2537:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2516:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2516:25:1"
},
"nodeType": "YulIf",
"src": "2513:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2671:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2676:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2681:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2634:36:1"
},
"nodeType": "YulFunctionCall",
"src": "2634:54:1"
},
"nodeType": "YulExpressionStatement",
"src": "2634:54:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2326:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2331:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2339:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2347:5:1",
"type": ""
}
],
"src": "2269:425:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2776:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2825:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2827:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2827:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2827:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2804:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2812:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2800:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2800:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2819:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2796:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2796:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2789:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2789:35:1"
},
"nodeType": "YulIf",
"src": "2786:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2917:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2944:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2931:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2931:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2921:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2960:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3021:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3029:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3017:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3017:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3036:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3044:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2969:47:1"
},
"nodeType": "YulFunctionCall",
"src": "2969:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2960:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2754:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2762:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2770:5:1",
"type": ""
}
],
"src": "2714:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3105:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3115:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3126:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3115:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3087:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3097:7:1",
"type": ""
}
],
"src": "3060:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3186:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3243:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3252:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3255:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3245:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3245:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "3245:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3209:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3234:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3216:17:1"
},
"nodeType": "YulFunctionCall",
"src": "3216:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3206:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3206:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3199:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3199:43:1"
},
"nodeType": "YulIf",
"src": "3196:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3179:5:1",
"type": ""
}
],
"src": "3143:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3323:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3333:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3355:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3342:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3342:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3333:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3398:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3371:26:1"
},
"nodeType": "YulFunctionCall",
"src": "3371:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "3371:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3301:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3309:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3317:5:1",
"type": ""
}
],
"src": "3271:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3543:818:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3590:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3592:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3592:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3592:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3564:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3573:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3560:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3560:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3585:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3556:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3556:33:1"
},
"nodeType": "YulIf",
"src": "3553:120:1"
},
{
"nodeType": "YulBlock",
"src": "3683:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3698:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3712:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3702:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3727:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3762:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3773:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3758:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3758:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3782:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3737:20:1"
},
"nodeType": "YulFunctionCall",
"src": "3737:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3727:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3810:288:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3825:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3856:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3867:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3852:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3852:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3839:12:1"
},
"nodeType": "YulFunctionCall",
"src": "3839:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3829:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3918:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3920:77:1"
},
"nodeType": "YulFunctionCall",
"src": "3920:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "3920:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3890:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3898:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3887:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3887:30:1"
},
"nodeType": "YulIf",
"src": "3884:117:1"
},
{
"nodeType": "YulAssignment",
"src": "4015:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4060:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4071:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4056:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4056:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4080:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4025:30:1"
},
"nodeType": "YulFunctionCall",
"src": "4025:63:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4015:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4108:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4123:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4137:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4127:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4153:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4188:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4199:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4184:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4184:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4208:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4163:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4163:53:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4153:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4236:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4251:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4265:2:1",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4255:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4281:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4316:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4327:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4312:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4312:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4336:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4291:20:1"
},
"nodeType": "YulFunctionCall",
"src": "4291:53:1"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4281:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_string_memory_ptrt_uint256t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3489:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3500:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3512:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3520:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3528:6:1",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3536:6:1",
"type": ""
}
],
"src": "3416:945:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4426:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4437:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4453:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4447:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4447:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4437:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4409:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4419:6:1",
"type": ""
}
],
"src": "4367:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4500:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4517:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4520:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4510:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4510:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "4510:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4614:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4617:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4607:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4607:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4607:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4638:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4641:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4631:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4631:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4631:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "4472:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4709:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4719:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4733:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4739:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "4729:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4729:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4719:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4750:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "4780:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4786:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4776:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4776:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "4754:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4827:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4841:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4855:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4863:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4851:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4851:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4841:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4807:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4800:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4800:26:1"
},
"nodeType": "YulIf",
"src": "4797:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4930:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "4944:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4944:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4944:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "4894:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4917:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4925:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4914:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4914:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4891:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4891:38:1"
},
"nodeType": "YulIf",
"src": "4888:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "4693:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4702:6:1",
"type": ""
}
],
"src": "4658:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5038:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5048:11:1",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "5056:3:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5048:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5076:1:1",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "5079:3:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5069:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5069:14:1"
},
"nodeType": "YulExpressionStatement",
"src": "5069:14:1"
},
{
"nodeType": "YulAssignment",
"src": "5092:26:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5110:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5113:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "5100:9:1"
},
"nodeType": "YulFunctionCall",
"src": "5100:18:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5092:4:1"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "5025:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5033:4:1",
"type": ""
}
],
"src": "4984:141:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5175:49:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5185:33:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5203:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5210:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5199:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5199:14:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5215:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5195:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5195:23:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "5185:6:1"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5158:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "5168:6:1",
"type": ""
}
],
"src": "5131:93:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5283:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5293:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "5318:4:1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5324:5:1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "5314:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5314:16:1"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "5293:8:1"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "5258:4:1",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5264:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "5274:8:1",
"type": ""
}
],
"src": "5230:107:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5419:317:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5429:35:1",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "5450:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5462:1:1",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "5446:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5446:18:1"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "5433:9:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5473:109:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "5504:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5515:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "5485:18:1"
},
"nodeType": "YulFunctionCall",
"src": "5485:97:1"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "5477:4:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5591:51:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "5622:9:1"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "5633:8:1"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "5603:18:1"
},
"nodeType": "YulFunctionCall",
"src": "5603:39:1"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "5591:8:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5651:30:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5664:5:1"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "5675:4:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5671:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5671:9:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5660:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5660:21:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5651:5:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5690:40:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5703:5:1"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "5714:8:1"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "5724:4:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5710:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5710:19:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "5700:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5700:30:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "5690:6:1"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5380:5:1",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "5387:10:1",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "5399:8:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "5412:6:1",
"type": ""
}
],
"src": "5343:393:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5774:28:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5784:12:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5791:5:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5784:3:1"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5760:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5770:3:1",
"type": ""
}
],
"src": "5742:60:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5868:82:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5878:66:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5936:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5918:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5918:24:1"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "5909:8:1"
},
"nodeType": "YulFunctionCall",
"src": "5909:34:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5891:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5891:53:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "5878:9:1"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5848:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "5858:9:1",
"type": ""
}
],
"src": "5808:142:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6003:28:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6013:12:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "6020:5:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6013:3:1"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5989:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5999:3:1",
"type": ""
}
],
"src": "5956:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6113:193:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6123:63:1",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "6178:7:1"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "6147:30:1"
},
"nodeType": "YulFunctionCall",
"src": "6147:39:1"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "6127:16:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "6202:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "6242:4:1"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "6236:5:1"
},
"nodeType": "YulFunctionCall",
"src": "6236:11:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6249:6:1"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "6281:16:1"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "6257:23:1"
},
"nodeType": "YulFunctionCall",
"src": "6257:41:1"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "6208:27:1"
},
"nodeType": "YulFunctionCall",
"src": "6208:91:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "6195:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6195:105:1"
},
"nodeType": "YulExpressionStatement",
"src": "6195:105:1"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "6090:4:1",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6096:6:1",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "6104:7:1",
"type": ""
}
],
"src": "6037:269:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6361:24:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6371:8:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6378:1:1",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6371:3:1"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "6357:3:1",
"type": ""
}
],
"src": "6312:73:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6444:136:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6454:46:1",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "6468:30:1"
},
"nodeType": "YulFunctionCall",
"src": "6468:32:1"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "6458:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "6553:4:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6559:6:1"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "6567:6:1"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "6509:43:1"
},
"nodeType": "YulFunctionCall",
"src": "6509:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "6509:65:1"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "6430:4:1",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6436:6:1",
"type": ""
}
],
"src": "6391:189:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6636:136:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6703:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "6747:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6754:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "6717:29:1"
},
"nodeType": "YulFunctionCall",
"src": "6717:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "6717:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "6656:5:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6663:3:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6653:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6653:14:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "6668:26:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6670:22:1",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "6683:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6690:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6679:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6679:13:1"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "6670:5:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "6650:2:1",
"statements": []
},
"src": "6646:120:1"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "6624:5:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6631:3:1",
"type": ""
}
],
"src": "6586:186:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6857:464:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6883:431:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6897:54:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "6945:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "6913:31:1"
},
"nodeType": "YulFunctionCall",
"src": "6913:38:1"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "6901:8:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6964:63:1",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "6987:8:1"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "7015:10:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "6997:17:1"
},
"nodeType": "YulFunctionCall",
"src": "6997:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6983:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6983:44:1"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "6968:11:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7184:27:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7186:23:1",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "7201:8:1"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "7186:11:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "7168:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7180:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7165:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7165:18:1"
},
"nodeType": "YulIf",
"src": "7162:49:1"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "7253:11:1"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "7270:8:1"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "7298:3:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "7280:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7280:22:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7266:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7266:37:1"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "7224:28:1"
},
"nodeType": "YulFunctionCall",
"src": "7224:80:1"
},
"nodeType": "YulExpressionStatement",
"src": "7224:80:1"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "6874:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6879:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6871:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6871:11:1"
},
"nodeType": "YulIf",
"src": "6868:446:1"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "6833:5:1",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "6840:3:1",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "6845:10:1",
"type": ""
}
],
"src": "6778:543:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7390:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7400:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "7425:4:1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7431:5:1"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "7421:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7421:16:1"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "7400:8:1"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "7365:4:1",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7371:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "7381:8:1",
"type": ""
}
],
"src": "7327:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7501:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7511:68:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7560:1:1",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "7563:5:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "7556:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7556:13:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7575:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7571:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7571:6:1"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "7527:28:1"
},
"nodeType": "YulFunctionCall",
"src": "7527:51:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7523:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7523:56:1"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "7515:4:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7588:25:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7602:4:1"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "7608:4:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7598:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7598:15:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7588:6:1"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "7478:4:1",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "7484:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7494:6:1",
"type": ""
}
],
"src": "7450:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7705:214:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7838:37:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7865:4:1"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "7871:3:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "7846:18:1"
},
"nodeType": "YulFunctionCall",
"src": "7846:29:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7838:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7884:29:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "7895:4:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7905:1:1",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "7908:3:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "7901:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7901:11:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7892:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7892:21:1"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "7884:4:1"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "7686:4:1",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "7692:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "7700:4:1",
"type": ""
}
],
"src": "7624:295:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8016:1303:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8027:51:1",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8074:3:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8041:32:1"
},
"nodeType": "YulFunctionCall",
"src": "8041:37:1"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "8031:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8163:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "8165:16:1"
},
"nodeType": "YulFunctionCall",
"src": "8165:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "8165:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8135:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8143:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8132:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8132:30:1"
},
"nodeType": "YulIf",
"src": "8129:56:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8195:52:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8241:4:1"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "8235:5:1"
},
"nodeType": "YulFunctionCall",
"src": "8235:11:1"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "8209:25:1"
},
"nodeType": "YulFunctionCall",
"src": "8209:38:1"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "8199:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8340:4:1"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "8346:6:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8354:6:1"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "8294:45:1"
},
"nodeType": "YulFunctionCall",
"src": "8294:67:1"
},
"nodeType": "YulExpressionStatement",
"src": "8294:67:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8371:18:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8388:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "8375:9:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8399:17:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8412:4:1",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8399:9:1"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "8463:611:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8477:37:1",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8496:6:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8508:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "8504:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8504:9:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8492:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8492:22:1"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "8481:7:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8528:51:1",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8574:4:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "8542:31:1"
},
"nodeType": "YulFunctionCall",
"src": "8542:37:1"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "8532:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8592:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8601:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "8596:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8660:163:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "8685:6:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8703:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8708:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8699:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8699:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8693:5:1"
},
"nodeType": "YulFunctionCall",
"src": "8693:26:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "8678:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8678:42:1"
},
"nodeType": "YulExpressionStatement",
"src": "8678:42:1"
},
{
"nodeType": "YulAssignment",
"src": "8737:24:1",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "8751:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8759:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8747:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8747:14:1"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "8737:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8778:31:1",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8795:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8806:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8791:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8791:18:1"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8778:9:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "8626:1:1"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "8629:7:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8623:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8623:14:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "8638:21:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8640:17:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "8649:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8652:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8645:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8645:12:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "8640:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "8619:3:1",
"statements": []
},
"src": "8615:208:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8859:156:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8877:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8904:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "8909:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8900:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8900:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "8894:5:1"
},
"nodeType": "YulFunctionCall",
"src": "8894:26:1"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "8881:9:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "8944:6:1"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "8971:9:1"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8986:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8994:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "8982:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8982:17:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "8952:18:1"
},
"nodeType": "YulFunctionCall",
"src": "8952:48:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "8937:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8937:64:1"
},
"nodeType": "YulExpressionStatement",
"src": "8937:64:1"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "8842:7:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8851:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8839:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8839:19:1"
},
"nodeType": "YulIf",
"src": "8836:179:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "9035:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "9049:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9057:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "9045:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9045:14:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9061:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9041:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9041:22:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "9028:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9028:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "9028:36:1"
}
]
},
"nodeType": "YulCase",
"src": "8456:618:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8461:1:1",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "9091:222:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9105:14:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9118:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9109:5:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9142:67:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9160:35:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "9179:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "9184:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9175:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9175:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "9169:5:1"
},
"nodeType": "YulFunctionCall",
"src": "9169:26:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9160:5:1"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "9135:6:1"
},
"nodeType": "YulIf",
"src": "9132:77:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "9229:4:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9288:5:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "9295:6:1"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "9235:52:1"
},
"nodeType": "YulFunctionCall",
"src": "9235:67:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "9222:6:1"
},
"nodeType": "YulFunctionCall",
"src": "9222:81:1"
},
"nodeType": "YulExpressionStatement",
"src": "9222:81:1"
}
]
},
"nodeType": "YulCase",
"src": "9083:230:1",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "8436:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8444:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8433:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8433:14:1"
},
"nodeType": "YulSwitch",
"src": "8426:887:1"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "8005:4:1",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8011:3:1",
"type": ""
}
],
"src": "7924:1395: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 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 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 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_addresst_string_memory_ptrt_uint256t_uint256(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { 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 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 let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 96\n\n value3 := 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 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}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100415760003560e01c8063335d00c21461004657806343e1c7c2146100505780639e73e04d1461005a575b600080fd5b61004e610076565b005b610058610459565b005b610074600480360381019061006f91906108d7565b61054a565b005b61007e61068e565b600081908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600201908161014d9190610b71565b506060820151816003015560808201518160040155505060006040518060a001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016040518060400160405280600581526020017f507269757300000000000000000000000000000000000000000000000000000081525081526020016107df81526020016207a1208152509050600081908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020190816102c59190610b71565b506060820151816003015560808201518160040155505060006040518060a001604052803373ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016040518060400160405280600481526020017f436974790000000000000000000000000000000000000000000000000000000081525081526020016107e78152602001620f42408152509050600081908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550604082015181600201908161043d9190610b71565b5060608201518160030155608082015181600401555050505050565b61046161068e565b600081908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020190816105309190610b71565b506060820151816003015560808201518160040155505050565b60006040518060a001604052803373ffffffffffffffffffffffffffffffffffffffff1681526020018673ffffffffffffffffffffffffffffffffffffffff168152602001858152602001848152602001838152509050600081908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020190816106709190610b71565b50606082015181600301556080820151816004015550505050505050565b6040518060a00160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600073ffffffffffffffffffffffffffffffffffffffff1681526020016060815260200160008152602001600081525090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610728826106fd565b9050919050565b6107388161071d565b811461074357600080fd5b50565b6000813590506107558161072f565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6107ae82610765565b810181811067ffffffffffffffff821117156107cd576107cc610776565b5b80604052505050565b60006107e06106e9565b90506107ec82826107a5565b919050565b600067ffffffffffffffff82111561080c5761080b610776565b5b61081582610765565b9050602081019050919050565b82818337600083830152505050565b600061084461083f846107f1565b6107d6565b9050828152602081018484840111156108605761085f610760565b5b61086b848285610822565b509392505050565b600082601f8301126108885761088761075b565b5b8135610898848260208601610831565b91505092915050565b6000819050919050565b6108b4816108a1565b81146108bf57600080fd5b50565b6000813590506108d1816108ab565b92915050565b600080600080608085870312156108f1576108f06106f3565b5b60006108ff87828801610746565b945050602085013567ffffffffffffffff8111156109205761091f6106f8565b5b61092c87828801610873565b935050604061093d878288016108c2565b925050606061094e878288016108c2565b91505092959194509250565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806109ac57607f821691505b6020821081036109bf576109be610965565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302610a277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826109ea565b610a3186836109ea565b95508019841693508086168417925050509392505050565b6000819050919050565b6000610a6e610a69610a64846108a1565b610a49565b6108a1565b9050919050565b6000819050919050565b610a8883610a53565b610a9c610a9482610a75565b8484546109f7565b825550505050565b600090565b610ab1610aa4565b610abc818484610a7f565b505050565b5b81811015610ae057610ad5600082610aa9565b600181019050610ac2565b5050565b601f821115610b2557610af6816109c5565b610aff846109da565b81016020851015610b0e578190505b610b22610b1a856109da565b830182610ac1565b50505b505050565b600082821c905092915050565b6000610b4860001984600802610b2a565b1980831691505092915050565b6000610b618383610b37565b9150826002028217905092915050565b610b7a8261095a565b67ffffffffffffffff811115610b9357610b92610776565b5b610b9d8254610994565b610ba8828285610ae4565b600060209050601f831160018114610bdb5760008415610bc9578287015190505b610bd38582610b55565b865550610c3b565b601f198416610be9866109c5565b60005b82811015610c1157848901518255600182019150602085019450602081019050610bec565b86831015610c2e5784890151610c2a601f891682610b37565b8355505b6001600288020188555050505b50505050505056fea264697066735822122086e0fd7b4d40b274a8c5237d4e432831196c08da8296301194058435cd0b3bf564736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x335D00C2 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x43E1C7C2 EQ PUSH2 0x50 JUMPI DUP1 PUSH4 0x9E73E04D EQ PUSH2 0x5A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4E PUSH2 0x76 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x58 PUSH2 0x459 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x74 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6F SWAP2 SWAP1 PUSH2 0x8D7 JUMP JUMPDEST PUSH2 0x54A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x7E PUSH2 0x68E JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x14D SWAP2 SWAP1 PUSH2 0xB71 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE POP POP PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5072697573000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x7DF DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0x7A120 DUP2 MSTORE POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x2C5 SWAP2 SWAP1 PUSH2 0xB71 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE POP POP PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4369747900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x7E7 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0xF4240 DUP2 MSTORE POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x43D SWAP2 SWAP1 PUSH2 0xB71 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE POP POP POP POP POP JUMP JUMPDEST PUSH2 0x461 PUSH2 0x68E JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x530 SWAP2 SWAP1 PUSH2 0xB71 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD DUP6 DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP2 MSTORE POP SWAP1 POP PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x670 SWAP2 SWAP1 PUSH2 0xB71 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x728 DUP3 PUSH2 0x6FD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x738 DUP2 PUSH2 0x71D JUMP JUMPDEST DUP2 EQ PUSH2 0x743 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x755 DUP2 PUSH2 0x72F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x7AE DUP3 PUSH2 0x765 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x7CD JUMPI PUSH2 0x7CC PUSH2 0x776 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7E0 PUSH2 0x6E9 JUMP JUMPDEST SWAP1 POP PUSH2 0x7EC DUP3 DUP3 PUSH2 0x7A5 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x80C JUMPI PUSH2 0x80B PUSH2 0x776 JUMP JUMPDEST JUMPDEST PUSH2 0x815 DUP3 PUSH2 0x765 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x844 PUSH2 0x83F DUP5 PUSH2 0x7F1 JUMP JUMPDEST PUSH2 0x7D6 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x860 JUMPI PUSH2 0x85F PUSH2 0x760 JUMP JUMPDEST JUMPDEST PUSH2 0x86B DUP5 DUP3 DUP6 PUSH2 0x822 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x888 JUMPI PUSH2 0x887 PUSH2 0x75B JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x898 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x831 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8B4 DUP2 PUSH2 0x8A1 JUMP JUMPDEST DUP2 EQ PUSH2 0x8BF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x8D1 DUP2 PUSH2 0x8AB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x8F1 JUMPI PUSH2 0x8F0 PUSH2 0x6F3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x8FF DUP8 DUP3 DUP9 ADD PUSH2 0x746 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x920 JUMPI PUSH2 0x91F PUSH2 0x6F8 JUMP JUMPDEST JUMPDEST PUSH2 0x92C DUP8 DUP3 DUP9 ADD PUSH2 0x873 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x93D DUP8 DUP3 DUP9 ADD PUSH2 0x8C2 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 PUSH2 0x94E DUP8 DUP3 DUP9 ADD PUSH2 0x8C2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x9AC JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x9BF JUMPI PUSH2 0x9BE PUSH2 0x965 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0xA27 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x9EA JUMP JUMPDEST PUSH2 0xA31 DUP7 DUP4 PUSH2 0x9EA 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 PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA6E PUSH2 0xA69 PUSH2 0xA64 DUP5 PUSH2 0x8A1 JUMP JUMPDEST PUSH2 0xA49 JUMP JUMPDEST PUSH2 0x8A1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA88 DUP4 PUSH2 0xA53 JUMP JUMPDEST PUSH2 0xA9C PUSH2 0xA94 DUP3 PUSH2 0xA75 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x9F7 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0xAB1 PUSH2 0xAA4 JUMP JUMPDEST PUSH2 0xABC DUP2 DUP5 DUP5 PUSH2 0xA7F JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0xAE0 JUMPI PUSH2 0xAD5 PUSH1 0x0 DUP3 PUSH2 0xAA9 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xAC2 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0xB25 JUMPI PUSH2 0xAF6 DUP2 PUSH2 0x9C5 JUMP JUMPDEST PUSH2 0xAFF DUP5 PUSH2 0x9DA JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0xB0E JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0xB22 PUSH2 0xB1A DUP6 PUSH2 0x9DA JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0xAC1 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB48 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0xB2A JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB61 DUP4 DUP4 PUSH2 0xB37 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB7A DUP3 PUSH2 0x95A JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xB93 JUMPI PUSH2 0xB92 PUSH2 0x776 JUMP JUMPDEST JUMPDEST PUSH2 0xB9D DUP3 SLOAD PUSH2 0x994 JUMP JUMPDEST PUSH2 0xBA8 DUP3 DUP3 DUP6 PUSH2 0xAE4 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0xBDB JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0xBC9 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0xBD3 DUP6 DUP3 PUSH2 0xB55 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0xC3B JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0xBE9 DUP7 PUSH2 0x9C5 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0xC11 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 0xBEC JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0xC2E JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0xC2A PUSH1 0x1F DUP10 AND DUP3 PUSH2 0xB37 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 DUP7 0xE0 REVERT PUSH28 0x4D40B274A8C5237D4E432831196C08DA8296301194058435CD0B3BF5 PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "62:1219:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;255:697;;;:::i;:::-;;1173:102;;;:::i;:::-;;960:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;255:697;346:21;;:::i;:::-;378:10;394;378:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;529:15;547:49;;;;;;;;551:10;547:49;;;;;;570:4;547:49;;;;;;;;;;;;;;;;;;;;;;;;;;;584:4;547:49;;;;589:6;547:49;;;529:67;;607:10;623:4;607:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;744:15;762:150;;;;;;;;876:10;762:150;;;;;;850:4;762:150;;;;;;;;;;;;;;;;;;;;;;;;;;;906:4;762:150;;;;787:7;762:150;;;744:168;;923:10;939:4;923:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;282:670;;;255:697::o;1173:102::-;1216:17;;:::i;:::-;1244:10;1260:6;1244:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;1205:70;1173:102::o;960:205::-;1065:17;1085:38;;;;;;;;1089:10;1085:38;;;;;;1100:5;1085:38;;;;;;1106:5;1085:38;;;;1112:4;1085:38;;;;1117:5;1085:38;;;1065:58;;1134:10;1150:6;1134:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;1054:111;960:205;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:117::-;950:1;947;940:12;964:117;1073:1;1070;1063:12;1087:102;1128:6;1179:2;1175:7;1170:2;1163:5;1159:14;1155:28;1145:38;;1087:102;;;:::o;1195:180::-;1243:77;1240:1;1233:88;1340:4;1337:1;1330:15;1364:4;1361:1;1354:15;1381:281;1464:27;1486:4;1464:27;:::i;:::-;1456:6;1452:40;1594:6;1582:10;1579:22;1558:18;1546:10;1543:34;1540:62;1537:88;;;1605:18;;:::i;:::-;1537:88;1645:10;1641:2;1634:22;1424:238;1381:281;;:::o;1668:129::-;1702:6;1729:20;;:::i;:::-;1719:30;;1758:33;1786:4;1778:6;1758:33;:::i;:::-;1668:129;;;:::o;1803:308::-;1865:4;1955:18;1947:6;1944:30;1941:56;;;1977:18;;:::i;:::-;1941:56;2015:29;2037:6;2015:29;:::i;:::-;2007:37;;2099:4;2093;2089:15;2081:23;;1803:308;;;:::o;2117:146::-;2214:6;2209:3;2204;2191:30;2255:1;2246:6;2241:3;2237:16;2230:27;2117:146;;;:::o;2269:425::-;2347:5;2372:66;2388:49;2430:6;2388:49;:::i;:::-;2372:66;:::i;:::-;2363:75;;2461:6;2454:5;2447:21;2499:4;2492:5;2488:16;2537:3;2528:6;2523:3;2519:16;2516:25;2513:112;;;2544:79;;:::i;:::-;2513:112;2634:54;2681:6;2676:3;2671;2634:54;:::i;:::-;2353:341;2269:425;;;;;:::o;2714:340::-;2770:5;2819:3;2812:4;2804:6;2800:17;2796:27;2786:122;;2827:79;;:::i;:::-;2786:122;2944:6;2931:20;2969:79;3044:3;3036:6;3029:4;3021:6;3017:17;2969:79;:::i;:::-;2960:88;;2776:278;2714:340;;;;:::o;3060:77::-;3097:7;3126:5;3115:16;;3060:77;;;:::o;3143:122::-;3216:24;3234:5;3216:24;:::i;:::-;3209:5;3206:35;3196:63;;3255:1;3252;3245:12;3196:63;3143:122;:::o;3271:139::-;3317:5;3355:6;3342:20;3333:29;;3371:33;3398:5;3371:33;:::i;:::-;3271:139;;;;:::o;3416:945::-;3512:6;3520;3528;3536;3585:3;3573:9;3564:7;3560:23;3556:33;3553:120;;;3592:79;;:::i;:::-;3553:120;3712:1;3737:53;3782:7;3773:6;3762:9;3758:22;3737:53;:::i;:::-;3727:63;;3683:117;3867:2;3856:9;3852:18;3839:32;3898:18;3890:6;3887:30;3884:117;;;3920:79;;:::i;:::-;3884:117;4025:63;4080:7;4071:6;4060:9;4056:22;4025:63;:::i;:::-;4015:73;;3810:288;4137:2;4163:53;4208:7;4199:6;4188:9;4184:22;4163:53;:::i;:::-;4153:63;;4108:118;4265:2;4291:53;4336:7;4327:6;4316:9;4312:22;4291:53;:::i;:::-;4281:63;;4236:118;3416:945;;;;;;;:::o;4367:99::-;4419:6;4453:5;4447:12;4437:22;;4367:99;;;:::o;4472:180::-;4520:77;4517:1;4510:88;4617:4;4614:1;4607:15;4641:4;4638:1;4631:15;4658:320;4702:6;4739:1;4733:4;4729:12;4719:22;;4786:1;4780:4;4776:12;4807:18;4797:81;;4863:4;4855:6;4851:17;4841:27;;4797:81;4925:2;4917:6;4914:14;4894:18;4891:38;4888:84;;4944:18;;:::i;:::-;4888:84;4709:269;4658:320;;;:::o;4984:141::-;5033:4;5056:3;5048:11;;5079:3;5076:1;5069:14;5113:4;5110:1;5100:18;5092:26;;4984:141;;;:::o;5131:93::-;5168:6;5215:2;5210;5203:5;5199:14;5195:23;5185:33;;5131:93;;;:::o;5230:107::-;5274:8;5324:5;5318:4;5314:16;5293:37;;5230:107;;;;:::o;5343:393::-;5412:6;5462:1;5450:10;5446:18;5485:97;5515:66;5504:9;5485:97;:::i;:::-;5603:39;5633:8;5622:9;5603:39;:::i;:::-;5591:51;;5675:4;5671:9;5664:5;5660:21;5651:30;;5724:4;5714:8;5710:19;5703:5;5700:30;5690:40;;5419:317;;5343:393;;;;;:::o;5742:60::-;5770:3;5791:5;5784:12;;5742:60;;;:::o;5808:142::-;5858:9;5891:53;5909:34;5918:24;5936:5;5918:24;:::i;:::-;5909:34;:::i;:::-;5891:53;:::i;:::-;5878:66;;5808:142;;;:::o;5956:75::-;5999:3;6020:5;6013:12;;5956:75;;;:::o;6037:269::-;6147:39;6178:7;6147:39;:::i;:::-;6208:91;6257:41;6281:16;6257:41;:::i;:::-;6249:6;6242:4;6236:11;6208:91;:::i;:::-;6202:4;6195:105;6113:193;6037:269;;;:::o;6312:73::-;6357:3;6312:73;:::o;6391:189::-;6468:32;;:::i;:::-;6509:65;6567:6;6559;6553:4;6509:65;:::i;:::-;6444:136;6391:189;;:::o;6586:186::-;6646:120;6663:3;6656:5;6653:14;6646:120;;;6717:39;6754:1;6747:5;6717:39;:::i;:::-;6690:1;6683:5;6679:13;6670:22;;6646:120;;;6586:186;;:::o;6778:543::-;6879:2;6874:3;6871:11;6868:446;;;6913:38;6945:5;6913:38;:::i;:::-;6997:29;7015:10;6997:29;:::i;:::-;6987:8;6983:44;7180:2;7168:10;7165:18;7162:49;;;7201:8;7186:23;;7162:49;7224:80;7280:22;7298:3;7280:22;:::i;:::-;7270:8;7266:37;7253:11;7224:80;:::i;:::-;6883:431;;6868:446;6778:543;;;:::o;7327:117::-;7381:8;7431:5;7425:4;7421:16;7400:37;;7327:117;;;;:::o;7450:169::-;7494:6;7527:51;7575:1;7571:6;7563:5;7560:1;7556:13;7527:51;:::i;:::-;7523:56;7608:4;7602;7598:15;7588:25;;7501:118;7450:169;;;;:::o;7624:295::-;7700:4;7846:29;7871:3;7865:4;7846:29;:::i;:::-;7838:37;;7908:3;7905:1;7901:11;7895:4;7892:21;7884:29;;7624:295;;;;:::o;7924:1395::-;8041:37;8074:3;8041:37;:::i;:::-;8143:18;8135:6;8132:30;8129:56;;;8165:18;;:::i;:::-;8129:56;8209:38;8241:4;8235:11;8209:38;:::i;:::-;8294:67;8354:6;8346;8340:4;8294:67;:::i;:::-;8388:1;8412:4;8399:17;;8444:2;8436:6;8433:14;8461:1;8456:618;;;;9118:1;9135:6;9132:77;;;9184:9;9179:3;9175:19;9169:26;9160:35;;9132:77;9235:67;9295:6;9288:5;9235:67;:::i;:::-;9229:4;9222:81;9091:222;8426:887;;8456:618;8508:4;8504:9;8496:6;8492:22;8542:37;8574:4;8542:37;:::i;:::-;8601:1;8615:208;8629:7;8626:1;8623:14;8615:208;;;8708:9;8703:3;8699:19;8693:26;8685:6;8678:42;8759:1;8751:6;8747:14;8737:24;;8806:2;8795:9;8791:18;8778:31;;8652:4;8649:1;8645:12;8640:17;;8615:208;;;8851:6;8842:7;8839:19;8836:179;;;8909:9;8904:3;8900:19;8894:26;8952:48;8994:4;8986:6;8982:17;8971:9;8952:48;:::i;:::-;8944:6;8937:64;8859:156;8836:179;9061:1;9057;9049:6;9045:14;9041:22;9035:4;9028:36;8463:611;;;8426:887;;8016:1303;;;7924:1395;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "638600",
"executionCost": "670",
"totalCost": "639270"
},
"external": {
"addCartoCollection(address,string,uint256,uint256)": "infinite",
"addGenericCar()": "infinite",
"examples()": "infinite"
}
},
"methodIdentifiers": {
"addCartoCollection(address,string,uint256,uint256)": "9e73e04d",
"addGenericCar()": "43e1c7c2",
"examples()": "335d00c2"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "brand",
"type": "address"
},
{
"internalType": "string",
"name": "model",
"type": "string"
},
{
"internalType": "uint256",
"name": "year",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "price",
"type": "uint256"
}
],
"name": "addCartoCollection",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "addGenericCar",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "examples",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.18+commit.87f61d96"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "brand",
"type": "address"
},
{
"internalType": "string",
"name": "model",
"type": "string"
},
{
"internalType": "uint256",
"name": "year",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "price",
"type": "uint256"
}
],
"name": "addCartoCollection",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "addGenericCar",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "examples",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/6_Structs.sol": "CarCollection"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/6_Structs.sol": {
"keccak256": "0x08055bc6836b8f5856b6817226998770dcbf7c3af253f5a720bbac099582da1d",
"license": "MIT",
"urls": [
"bzz-raw://97dffc88c62e7670ecb3973c5c43dd183709879e79fa03eaf711062ec4e262d3",
"dweb:/ipfs/QmZbjNuDKcn9A1SXGS4sd2XMg53W1aCKAKF66Uf1i16VJq"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60806040526040518060a001604052806001800b60010b8152602001600260010b8152602001600360010b8152602001600460010b8152602001600560010b8152506001906005610051929190610064565b5034801561005e57600080fd5b5061012e565b82805482825590600052602060002090600f016010900481019282156101005791602002820160005b838211156100d057835183826101000a81548161ffff021916908360010b61ffff160217905550926020019260020160208160010104928301926001030261008d565b80156100fe5782816101000a81549061ffff02191690556002016020816001010492830192600103026100d0565b505b50905061010d9190610111565b5090565b5b8082111561012a576000816000905550600101610112565b5090565b610a2e8061013d6000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c8063081ff9aa146100465780632e2dc43e1461006257806354353f2f14610080575b600080fd5b610060600480360381019061005b91906104a1565b61008a565b005b61006a6100c2565b604051610077919061062b565b60405180910390f35b61008861019b565b005b6000819080600181540180825580915050600190039060005260206000200160009091909190915090816100be9190610863565b5050565b60606000805480602002602001604051908101604052809291908181526020016000905b828210156101925783829060005260206000200180546101059061067c565b80601f01602080910402602001604051908101604052809291908181526020018280546101319061067c565b801561017e5780601f106101535761010080835404028352916020019161017e565b820191906000526020600020905b81548152906001019060200180831161016157829003601f168201915b5050505050815260200190600101906100e6565b50505050905090565b6001600a90806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908360010b61ffff16021790555060066001600581548110610200576101ff610935565b5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908360010b61ffff160217905550600160038154811061024757610246610935565b5b90600052602060002090601091828204019190066002026101000a81549061ffff0219169055600180548061027f5761027e610964565b5b60019003818190600052602060002090601091828204019190066002026101000a81549061ffff021916905590556000600567ffffffffffffffff8111156102ca576102c9610376565b5b6040519080825280602002602001820160405280156102f85781602001602082028036833780820191505090505b50905060005b81518160ff161015610343578060ff16828260ff168151811061032457610323610935565b5b602002602001018181525050808061033b906109cf565b9150506102fe565b5050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6103ae82610365565b810181811067ffffffffffffffff821117156103cd576103cc610376565b5b80604052505050565b60006103e0610347565b90506103ec82826103a5565b919050565b600067ffffffffffffffff82111561040c5761040b610376565b5b61041582610365565b9050602081019050919050565b82818337600083830152505050565b600061044461043f846103f1565b6103d6565b9050828152602081018484840111156104605761045f610360565b5b61046b848285610422565b509392505050565b600082601f8301126104885761048761035b565b5b8135610498848260208601610431565b91505092915050565b6000602082840312156104b7576104b6610351565b5b600082013567ffffffffffffffff8111156104d5576104d4610356565b5b6104e184828501610473565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610550578082015181840152602081019050610535565b60008484015250505050565b600061056782610516565b6105718185610521565b9350610581818560208601610532565b61058a81610365565b840191505092915050565b60006105a1838361055c565b905092915050565b6000602082019050919050565b60006105c1826104ea565b6105cb81856104f5565b9350836020820285016105dd85610506565b8060005b8581101561061957848403895281516105fa8582610595565b9450610605836105a9565b925060208a019950506001810190506105e1565b50829750879550505050505092915050565b6000602082019050818103600083015261064581846105b6565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061069457607f821691505b6020821081036106a7576106a661064d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261070f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826106d2565b61071986836106d2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600061076061075b61075684610731565b61073b565b610731565b9050919050565b6000819050919050565b61077a83610745565b61078e61078682610767565b8484546106df565b825550505050565b600090565b6107a3610796565b6107ae818484610771565b505050565b5b818110156107d2576107c760008261079b565b6001810190506107b4565b5050565b601f821115610817576107e8816106ad565b6107f1846106c2565b81016020851015610800578190505b61081461080c856106c2565b8301826107b3565b50505b505050565b600082821c905092915050565b600061083a6000198460080261081c565b1980831691505092915050565b60006108538383610829565b9150826002028217905092915050565b61086c82610516565b67ffffffffffffffff81111561088557610884610376565b5b61088f825461067c565b61089a8282856107d6565b600060209050601f8311600181146108cd57600084156108bb578287015190505b6108c58582610847565b86555061092d565b601f1984166108db866106ad565b60005b82811015610903578489015182556001820191506020850194506020810190506108de565b86831015610920578489015161091c601f891682610829565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600060ff82169050919050565b60006109da826109c2565b915060ff82036109ed576109ec610993565b5b60018201905091905056fea264697066735822122022a448162e4b9a4b5284d11cbdd9e40b584b845e97b225b20b167de4167c240f64736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP1 SIGNEXTEND PUSH1 0x1 SIGNEXTEND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0x1 SIGNEXTEND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0x1 SIGNEXTEND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 PUSH1 0x1 SIGNEXTEND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 PUSH1 0x1 SIGNEXTEND DUP2 MSTORE POP PUSH1 0x1 SWAP1 PUSH1 0x5 PUSH2 0x51 SWAP3 SWAP2 SWAP1 PUSH2 0x64 JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0x5E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x12E JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0xF ADD PUSH1 0x10 SWAP1 DIV DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x100 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD PUSH1 0x0 JUMPDEST DUP4 DUP3 GT ISZERO PUSH2 0xD0 JUMPI DUP4 MLOAD DUP4 DUP3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 SIGNEXTEND PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP SWAP3 PUSH1 0x20 ADD SWAP3 PUSH1 0x2 ADD PUSH1 0x20 DUP2 PUSH1 0x1 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x8D JUMP JUMPDEST DUP1 ISZERO PUSH2 0xFE JUMPI DUP3 DUP2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x2 ADD PUSH1 0x20 DUP2 PUSH1 0x1 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0xD0 JUMP JUMPDEST POP JUMPDEST POP SWAP1 POP PUSH2 0x10D SWAP2 SWAP1 PUSH2 0x111 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x12A JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x112 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0xA2E DUP1 PUSH2 0x13D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x81FF9AA EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x2E2DC43E EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0x54353F2F EQ PUSH2 0x80 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x4A1 JUMP JUMPDEST PUSH2 0x8A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x6A PUSH2 0xC2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x77 SWAP2 SWAP1 PUSH2 0x62B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x88 PUSH2 0x19B JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SWAP1 DUP2 PUSH2 0xBE SWAP2 SWAP1 PUSH2 0x863 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 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 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x192 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x105 SWAP1 PUSH2 0x67C 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 0x131 SWAP1 PUSH2 0x67C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x17E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x153 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x17E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x161 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 0xE6 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x10 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x2 MUL SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 SIGNEXTEND PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x6 PUSH1 0x1 PUSH1 0x5 DUP2 SLOAD DUP2 LT PUSH2 0x200 JUMPI PUSH2 0x1FF PUSH2 0x935 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x10 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x2 MUL PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 SIGNEXTEND PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 DUP2 SLOAD DUP2 LT PUSH2 0x247 JUMPI PUSH2 0x246 PUSH2 0x935 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x10 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x2 MUL PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x1 DUP1 SLOAD DUP1 PUSH2 0x27F JUMPI PUSH2 0x27E PUSH2 0x964 JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x10 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x2 MUL PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE SWAP1 SSTORE PUSH1 0x0 PUSH1 0x5 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2CA JUMPI PUSH2 0x2C9 PUSH2 0x376 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2F8 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x343 JUMPI DUP1 PUSH1 0xFF AND DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x324 JUMPI PUSH2 0x323 PUSH2 0x935 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 DUP1 PUSH2 0x33B SWAP1 PUSH2 0x9CF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x2FE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x3AE DUP3 PUSH2 0x365 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x3CD JUMPI PUSH2 0x3CC PUSH2 0x376 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E0 PUSH2 0x347 JUMP JUMPDEST SWAP1 POP PUSH2 0x3EC DUP3 DUP3 PUSH2 0x3A5 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x40C JUMPI PUSH2 0x40B PUSH2 0x376 JUMP JUMPDEST JUMPDEST PUSH2 0x415 DUP3 PUSH2 0x365 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x444 PUSH2 0x43F DUP5 PUSH2 0x3F1 JUMP JUMPDEST PUSH2 0x3D6 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x460 JUMPI PUSH2 0x45F PUSH2 0x360 JUMP JUMPDEST JUMPDEST PUSH2 0x46B DUP5 DUP3 DUP6 PUSH2 0x422 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x488 JUMPI PUSH2 0x487 PUSH2 0x35B JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x498 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x431 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4B7 JUMPI PUSH2 0x4B6 PUSH2 0x351 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4D5 JUMPI PUSH2 0x4D4 PUSH2 0x356 JUMP JUMPDEST JUMPDEST PUSH2 0x4E1 DUP5 DUP3 DUP6 ADD PUSH2 0x473 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x550 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x535 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x567 DUP3 PUSH2 0x516 JUMP JUMPDEST PUSH2 0x571 DUP2 DUP6 PUSH2 0x521 JUMP JUMPDEST SWAP4 POP PUSH2 0x581 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x532 JUMP JUMPDEST PUSH2 0x58A DUP2 PUSH2 0x365 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5A1 DUP4 DUP4 PUSH2 0x55C JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5C1 DUP3 PUSH2 0x4EA JUMP JUMPDEST PUSH2 0x5CB DUP2 DUP6 PUSH2 0x4F5 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0x5DD DUP6 PUSH2 0x506 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x619 JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0x5FA DUP6 DUP3 PUSH2 0x595 JUMP JUMPDEST SWAP5 POP PUSH2 0x605 DUP4 PUSH2 0x5A9 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x5E1 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x645 DUP2 DUP5 PUSH2 0x5B6 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x694 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x6A7 JUMPI PUSH2 0x6A6 PUSH2 0x64D JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x70F PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x6D2 JUMP JUMPDEST PUSH2 0x719 DUP7 DUP4 PUSH2 0x6D2 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 PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x760 PUSH2 0x75B PUSH2 0x756 DUP5 PUSH2 0x731 JUMP JUMPDEST PUSH2 0x73B JUMP JUMPDEST PUSH2 0x731 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x77A DUP4 PUSH2 0x745 JUMP JUMPDEST PUSH2 0x78E PUSH2 0x786 DUP3 PUSH2 0x767 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x6DF JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x7A3 PUSH2 0x796 JUMP JUMPDEST PUSH2 0x7AE DUP2 DUP5 DUP5 PUSH2 0x771 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x7D2 JUMPI PUSH2 0x7C7 PUSH1 0x0 DUP3 PUSH2 0x79B JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x7B4 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x817 JUMPI PUSH2 0x7E8 DUP2 PUSH2 0x6AD JUMP JUMPDEST PUSH2 0x7F1 DUP5 PUSH2 0x6C2 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x800 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x814 PUSH2 0x80C DUP6 PUSH2 0x6C2 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x7B3 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x83A PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x81C JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x853 DUP4 DUP4 PUSH2 0x829 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x86C DUP3 PUSH2 0x516 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x885 JUMPI PUSH2 0x884 PUSH2 0x376 JUMP JUMPDEST JUMPDEST PUSH2 0x88F DUP3 SLOAD PUSH2 0x67C JUMP JUMPDEST PUSH2 0x89A DUP3 DUP3 DUP6 PUSH2 0x7D6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x8CD JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x8BB JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x8C5 DUP6 DUP3 PUSH2 0x847 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x92D JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x8DB DUP7 PUSH2 0x6AD JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x903 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 0x8DE JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x920 JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x91C PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x829 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 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9DA DUP3 PUSH2 0x9C2 JUMP JUMPDEST SWAP2 POP PUSH1 0xFF DUP3 SUB PUSH2 0x9ED JUMPI PUSH2 0x9EC PUSH2 0x993 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x22 LOG4 BASEFEE AND 0x2E 0x4B SWAP11 0x4B MSTORE DUP5 0xD1 SHR 0xBD 0xD9 0xE4 SIGNEXTEND PC 0x4B DUP5 0x5E SWAP8 0xB2 0x25 0xB2 SIGNEXTEND AND PUSH30 0xE4167C240F64736F6C634300081200330000000000000000000000000000 ",
"sourceMap": "62:968:0:-:0;;;133:36;;;;;;;;158:1;133:36;;;;;;;;161:1;133:36;;;;;;163:1;133:36;;;;;;165:1;133:36;;;;;;167:1;133:36;;;;;;;;;;;;;:::i;:::-;;62:968;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@example_76": {
"entryPoint": 411,
"id": 76,
"parameterSlots": 0,
"returnSlots": 0
},
"@getOrders_85": {
"entryPoint": 194,
"id": 85,
"parameterSlots": 0,
"returnSlots": 1
},
"@newOrder_97": {
"entryPoint": 138,
"id": 97,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1073,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1139,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 1185,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr": {
"entryPoint": 1429,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack": {
"entryPoint": 1462,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr": {
"entryPoint": 1372,
"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": 1579,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 982,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 839,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1009,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr": {
"entryPoint": 1286,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 1709,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr": {
"entryPoint": 1258,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1302,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr": {
"entryPoint": 1449,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack": {
"entryPoint": 1269,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr": {
"entryPoint": 1313,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 2006,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 1841,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 2498,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1971,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1861,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 2147,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 1058,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 1330,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 1730,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1660,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 2119,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 933,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 1851,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint8": {
"entryPoint": 2511,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 2089,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 2451,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1613,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 2404,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 2357,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 886,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1895,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 859,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 864,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 854,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 849,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 869,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 1746,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 2076,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1947,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 1759,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1905,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1942,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:11962:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:1"
},
"nodeType": "YulFunctionCall",
"src": "433:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:1"
},
"nodeType": "YulFunctionCall",
"src": "556:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:1"
},
"nodeType": "YulFunctionCall",
"src": "652:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "668:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:1"
},
"nodeType": "YulFunctionCall",
"src": "648:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:1",
"type": ""
}
],
"src": "580:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:1"
},
"nodeType": "YulFunctionCall",
"src": "726:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:1"
},
"nodeType": "YulFunctionCall",
"src": "823:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:1"
},
"nodeType": "YulFunctionCall",
"src": "847:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:1"
},
"nodeType": "YulFunctionCall",
"src": "957:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:1"
},
"nodeType": "YulFunctionCall",
"src": "945:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:1"
},
"nodeType": "YulIf",
"src": "1030:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:1",
"type": ""
}
],
"src": "874:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:1"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:1",
"type": ""
}
],
"src": "1161:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:1"
},
"nodeType": "YulIf",
"src": "1434:56:1"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:1",
"type": ""
}
],
"src": "1296:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1674:82:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1697:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1702:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1707:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "1684:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1684:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "1684:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1734:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1739:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1730:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1730:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1748:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1723:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1723:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "1723:27:1"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1656:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1661:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1666:6:1",
"type": ""
}
],
"src": "1610:146:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1846:341:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1856:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1923:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1881:41:1"
},
"nodeType": "YulFunctionCall",
"src": "1881:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "1865:15:1"
},
"nodeType": "YulFunctionCall",
"src": "1865:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1856:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1947:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1954:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1940:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1940:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "1940:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1970:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1985:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1992:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1981:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1981:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1974:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2035:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2037:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2037:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2037:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2016:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2021:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2012:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2012:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2030:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2009:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2009:25:1"
},
"nodeType": "YulIf",
"src": "2006:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2164:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2169:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2174:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2127:36:1"
},
"nodeType": "YulFunctionCall",
"src": "2127:54:1"
},
"nodeType": "YulExpressionStatement",
"src": "2127:54:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1819:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1824:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1832:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1840:5:1",
"type": ""
}
],
"src": "1762:425:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2269:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2318:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2320:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2320:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2320:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2297:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2305:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2293:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2293:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2312:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2289:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2289:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2282:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2282:35:1"
},
"nodeType": "YulIf",
"src": "2279:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2410:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2437:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2424:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2424:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2414:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2453:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2514:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2522:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2510:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2510:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2529:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2537:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2462:47:1"
},
"nodeType": "YulFunctionCall",
"src": "2462:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2453:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2247:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2255:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2263:5:1",
"type": ""
}
],
"src": "2207:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2629:433:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2675:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2677:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2677:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2677:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2650:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2659:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2646:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2646:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2671:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2642:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2642:32:1"
},
"nodeType": "YulIf",
"src": "2639:119:1"
},
{
"nodeType": "YulBlock",
"src": "2768:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2783:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2814:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2825:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2810:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2810:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2797:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2797:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2787:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2875:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "2877:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2877:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2877:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2847:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2855:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2844:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2844:30:1"
},
"nodeType": "YulIf",
"src": "2841:117:1"
},
{
"nodeType": "YulAssignment",
"src": "2972:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3017:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3028:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3013:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3013:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3037:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2982:30:1"
},
"nodeType": "YulFunctionCall",
"src": "2982:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2972:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2599:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2610:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2622:6:1",
"type": ""
}
],
"src": "2553:509:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3152:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3163:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3179:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3173:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3173:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3163:6:1"
}
]
}
]
},
"name": "array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3135:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3145:6:1",
"type": ""
}
],
"src": "3068:124:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3319:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3336:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3341:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3329:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3329:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "3329:19:1"
},
{
"nodeType": "YulAssignment",
"src": "3357:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3376:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3381:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3372:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3372:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3357:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3291:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "3307:11:1",
"type": ""
}
],
"src": "3198:194:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3480:60:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3490:11:1",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "3498:3:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3490:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3511:22:1",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "3523:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3528:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3519:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3519:14:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3511:4:1"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "3467:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3475:4:1",
"type": ""
}
],
"src": "3398:142:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3605:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3616:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3632:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3626:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3626:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3616:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3588:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3598:6:1",
"type": ""
}
],
"src": "3546:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3737:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3754:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3759:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3747:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3747:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "3747:19:1"
},
{
"nodeType": "YulAssignment",
"src": "3775:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3794:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3799:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3790:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3790:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3775:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3709:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3714:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "3725:11:1",
"type": ""
}
],
"src": "3651:159:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3878:184:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3888:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3897:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3892:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3957:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3982:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3987:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3978:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3978:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4001:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4006:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3997:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3997:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3991:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3991:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3971:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3971:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "3971:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3918:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3921:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3915:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3915:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3929:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3931:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3940:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3943:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3936:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3936:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3931:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3911:3:1",
"statements": []
},
"src": "3907:113:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4040:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4045:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4036:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4036:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4054:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4029:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4029:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "4029:27:1"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3860:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3865:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3870:6:1",
"type": ""
}
],
"src": "3816:246:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4150:275:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4160:53:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4207:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4174:32:1"
},
"nodeType": "YulFunctionCall",
"src": "4174:39:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4164:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4222:68:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4278:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4283:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4229:48:1"
},
"nodeType": "YulFunctionCall",
"src": "4229:61:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4222:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4338:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4345:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4334:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4334:16:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4352:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4357:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "4299:34:1"
},
"nodeType": "YulFunctionCall",
"src": "4299:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "4299:65:1"
},
{
"nodeType": "YulAssignment",
"src": "4373:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4384:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4411:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "4389:21:1"
},
"nodeType": "YulFunctionCall",
"src": "4389:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4380:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4380:39:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4373:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4131:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4138:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4146:3:1",
"type": ""
}
],
"src": "4068:357:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4531:96:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4541:80:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4609:6:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4617:3:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4555:53:1"
},
"nodeType": "YulFunctionCall",
"src": "4555:66:1"
},
"variableNames": [
{
"name": "updatedPos",
"nodeType": "YulIdentifier",
"src": "4541:10:1"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4504:6:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4512:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nodeType": "YulTypedName",
"src": "4520:10:1",
"type": ""
}
],
"src": "4431:196:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4718:38:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4728:22:1",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "4740:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4745:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4736:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4736:14:1"
},
"variableNames": [
{
"name": "next",
"nodeType": "YulIdentifier",
"src": "4728:4:1"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "4705:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nodeType": "YulTypedName",
"src": "4713:4:1",
"type": ""
}
],
"src": "4633:123:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4934:847:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4944:78:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5016:5:1"
}
],
"functionName": {
"name": "array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4958:57:1"
},
"nodeType": "YulFunctionCall",
"src": "4958:64:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4948:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5031:103:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5122:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5127:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5038:83:1"
},
"nodeType": "YulFunctionCall",
"src": "5038:96:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5031:3:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5143:20:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5160:3:1"
},
"variables": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5147:9:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5172:39:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5188:3:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5197:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5205:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "5193:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5193:17:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5184:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5184:27:1"
},
"variables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5176:4:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5220:81:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5295:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5235:59:1"
},
"nodeType": "YulFunctionCall",
"src": "5235:66:1"
},
"variables": [
{
"name": "baseRef",
"nodeType": "YulTypedName",
"src": "5224:7:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5310:21:1",
"value": {
"name": "baseRef",
"nodeType": "YulIdentifier",
"src": "5324:7:1"
},
"variables": [
{
"name": "srcPtr",
"nodeType": "YulTypedName",
"src": "5314:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5400:336:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5421:3:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5430:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5436:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5426:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5426:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5414:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5414:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "5414:33:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "5460:34:1",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "5487:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5481:5:1"
},
"nodeType": "YulFunctionCall",
"src": "5481:13:1"
},
"variables": [
{
"name": "elementValue0",
"nodeType": "YulTypedName",
"src": "5464:13:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5507:92:1",
"value": {
"arguments": [
{
"name": "elementValue0",
"nodeType": "YulIdentifier",
"src": "5579:13:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5594:4:1"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5515:63:1"
},
"nodeType": "YulFunctionCall",
"src": "5515:84:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5507:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5612:80:1",
"value": {
"arguments": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "5685:6:1"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulIdentifier",
"src": "5622:62:1"
},
"nodeType": "YulFunctionCall",
"src": "5622:70:1"
},
"variableNames": [
{
"name": "srcPtr",
"nodeType": "YulIdentifier",
"src": "5612:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5705:21:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5716:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5721:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5712:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5712:14:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5705:3:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5362:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5365:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5359:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5359:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5373:18:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5375:14:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5384:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5387:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5380:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5380:9:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5375:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5344:14:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5346:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5355:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5350:1:1",
"type": ""
}
]
}
]
},
"src": "5340:396:1"
},
{
"nodeType": "YulAssignment",
"src": "5745:11:1",
"value": {
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5752:4:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5745:3:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5765:10:1",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5772:3:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5765: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",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4913:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4920:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4929:3:1",
"type": ""
}
],
"src": "4790:991:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5955:245:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5965:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5977:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5988:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5973:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5973:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5965:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6012:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6023:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6008:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6008:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6031:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6037:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6027:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6027:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6001:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6001:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "6001:47:1"
},
{
"nodeType": "YulAssignment",
"src": "6057:136:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6179:6:1"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6188: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",
"nodeType": "YulIdentifier",
"src": "6065:113:1"
},
"nodeType": "YulFunctionCall",
"src": "6065:128:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6057: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",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5927:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5939:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5950:4:1",
"type": ""
}
],
"src": "5787:413:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6234:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6251:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6254:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6244:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6244:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "6244:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6348:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6351:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6341:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6341:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6341:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6372:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6375:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6365:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6365:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "6365:15:1"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6206:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6443:269:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6453:22:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6467:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6473:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6463:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6463:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6453:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "6484:38:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6514:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6520:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6510:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6510:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "6488:18:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6561:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6575:27:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6589:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6597:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6585:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6585:17:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6575:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6541:18:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6534:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6534:26:1"
},
"nodeType": "YulIf",
"src": "6531:81:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6664:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6678:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6678:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6678:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6628:18:1"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6651:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6659:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6648:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6648:14:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6625:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6625:38:1"
},
"nodeType": "YulIf",
"src": "6622:84:1"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6427:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6436:6:1",
"type": ""
}
],
"src": "6392:320:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6772:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6782:11:1",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "6790:3:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6782:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6810:1:1",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "6813:3:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6803:6:1"
},
"nodeType": "YulFunctionCall",
"src": "6803:14:1"
},
"nodeType": "YulExpressionStatement",
"src": "6803:14:1"
},
{
"nodeType": "YulAssignment",
"src": "6826:26:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6844:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6847:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "6834:9:1"
},
"nodeType": "YulFunctionCall",
"src": "6834:18:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "6826:4:1"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "6759:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "6767:4:1",
"type": ""
}
],
"src": "6718:141:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6909:49:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6919:33:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6937:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6944:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6933:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6933:14:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6949:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "6929:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6929:23:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "6919:6:1"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6892:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "6902:6:1",
"type": ""
}
],
"src": "6865:93:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7017:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7027:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "7052:4:1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7058:5:1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "7048:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7048:16:1"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "7027:8:1"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "6992:4:1",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6998:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "7008:8:1",
"type": ""
}
],
"src": "6964:107:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7153:317:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7163:35:1",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "7184:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7196:1:1",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "7180:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7180:18:1"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "7167:9:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "7207:109:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "7238:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7249:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "7219:18:1"
},
"nodeType": "YulFunctionCall",
"src": "7219:97:1"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "7211:4:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7325:51:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "7356:9:1"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "7367:8:1"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "7337:18:1"
},
"nodeType": "YulFunctionCall",
"src": "7337:39:1"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "7325:8:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7385:30:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7398:5:1"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "7409:4:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "7405:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7405:9:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7394:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7394:21:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7385:5:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "7424:40:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7437:5:1"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "7448:8:1"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "7458:4:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "7444:3:1"
},
"nodeType": "YulFunctionCall",
"src": "7444:19:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7434:2:1"
},
"nodeType": "YulFunctionCall",
"src": "7434:30:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "7424:6:1"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7114:5:1",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "7121:10:1",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "7133:8:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "7146:6:1",
"type": ""
}
],
"src": "7077:393:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7521:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7531:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "7542:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "7531:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7503:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "7513:7:1",
"type": ""
}
],
"src": "7476:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7591:28:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7601:12:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "7608:5:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "7601:3:1"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7577:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "7587:3:1",
"type": ""
}
],
"src": "7559:60:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7685:82:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7695:66:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7753:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7735:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7735:24:1"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "7726:8:1"
},
"nodeType": "YulFunctionCall",
"src": "7726:34:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "7708:17:1"
},
"nodeType": "YulFunctionCall",
"src": "7708:53:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "7695:9:1"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7665:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "7675:9:1",
"type": ""
}
],
"src": "7625:142:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7820:28:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7830:12:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "7837:5:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "7830:3:1"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7806:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "7816:3:1",
"type": ""
}
],
"src": "7773:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7930:193:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7940:63:1",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "7995:7:1"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "7964:30:1"
},
"nodeType": "YulFunctionCall",
"src": "7964:39:1"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "7944:16:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8019:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8059:4:1"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "8053:5:1"
},
"nodeType": "YulFunctionCall",
"src": "8053:11:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8066:6:1"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "8098:16:1"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "8074:23:1"
},
"nodeType": "YulFunctionCall",
"src": "8074:41:1"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "8025:27:1"
},
"nodeType": "YulFunctionCall",
"src": "8025:91:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "8012:6:1"
},
"nodeType": "YulFunctionCall",
"src": "8012:105:1"
},
"nodeType": "YulExpressionStatement",
"src": "8012:105:1"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "7907:4:1",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7913:6:1",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "7921:7:1",
"type": ""
}
],
"src": "7854:269:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8178:24:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8188:8:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "8195:1:1",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "8188:3:1"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "8174:3:1",
"type": ""
}
],
"src": "8129:73:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8261:136:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8271:46:1",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "8285:30:1"
},
"nodeType": "YulFunctionCall",
"src": "8285:32:1"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "8275:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "8370:4:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8376:6:1"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "8384:6:1"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "8326:43:1"
},
"nodeType": "YulFunctionCall",
"src": "8326:65:1"
},
"nodeType": "YulExpressionStatement",
"src": "8326:65:1"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "8247:4:1",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8253:6:1",
"type": ""
}
],
"src": "8208:189:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8453:136:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8520:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "8564:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8571:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "8534:29:1"
},
"nodeType": "YulFunctionCall",
"src": "8534:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "8534:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "8473:5:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8480:3:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8470:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8470:14:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "8485:26:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8487:22:1",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "8500:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8507:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8496:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8496:13:1"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "8487:5:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "8467:2:1",
"statements": []
},
"src": "8463:120:1"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "8441:5:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8448:3:1",
"type": ""
}
],
"src": "8403:186:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8674:464:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8700:431:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8714:54:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8762:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "8730:31:1"
},
"nodeType": "YulFunctionCall",
"src": "8730:38:1"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "8718:8:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "8781:63:1",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "8804:8:1"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "8832:10:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "8814:17:1"
},
"nodeType": "YulFunctionCall",
"src": "8814:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8800:3:1"
},
"nodeType": "YulFunctionCall",
"src": "8800:44:1"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "8785:11:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9001:27:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9003:23:1",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "9018:8:1"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "9003:11:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "8985:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8997:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "8982:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8982:18:1"
},
"nodeType": "YulIf",
"src": "8979:49:1"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "9070:11:1"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "9087:8:1"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "9115:3:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "9097:17:1"
},
"nodeType": "YulFunctionCall",
"src": "9097:22:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9083:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9083:37:1"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "9041:28:1"
},
"nodeType": "YulFunctionCall",
"src": "9041:80:1"
},
"nodeType": "YulExpressionStatement",
"src": "9041:80:1"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "8691:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8696:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8688:2:1"
},
"nodeType": "YulFunctionCall",
"src": "8688:11:1"
},
"nodeType": "YulIf",
"src": "8685:446:1"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8650:5:1",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "8657:3:1",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "8662:10:1",
"type": ""
}
],
"src": "8595:543:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9207:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9217:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "9242:4:1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9248:5:1"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "9238:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9238:16:1"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "9217:8:1"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "9182:4:1",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9188:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "9198:8:1",
"type": ""
}
],
"src": "9144:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9318:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9328:68:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9377:1:1",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "9380:5:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "9373:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9373:13:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9392:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "9388:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9388:6:1"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "9344:28:1"
},
"nodeType": "YulFunctionCall",
"src": "9344:51:1"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "9340:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9340:56:1"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "9332:4:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9405:25:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9419:4:1"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "9425:4:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "9415:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9415:15:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "9405:6:1"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "9295:4:1",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "9301:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "9311:6:1",
"type": ""
}
],
"src": "9267:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9522:214:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9655:37:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9682:4:1"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "9688:3:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "9663:18:1"
},
"nodeType": "YulFunctionCall",
"src": "9663:29:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9655:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "9701:29:1",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "9712:4:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9722:1:1",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "9725:3:1"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "9718:3:1"
},
"nodeType": "YulFunctionCall",
"src": "9718:11:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "9709:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9709:21:1"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "9701:4:1"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "9503:4:1",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "9509:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "9517:4:1",
"type": ""
}
],
"src": "9441:295:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9833:1303:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9844:51:1",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "9891:3:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9858:32:1"
},
"nodeType": "YulFunctionCall",
"src": "9858:37:1"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "9848:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9980:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "9982:16:1"
},
"nodeType": "YulFunctionCall",
"src": "9982:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "9982:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "9952:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9960:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9949:2:1"
},
"nodeType": "YulFunctionCall",
"src": "9949:30:1"
},
"nodeType": "YulIf",
"src": "9946:56:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10012:52:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "10058:4:1"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "10052:5:1"
},
"nodeType": "YulFunctionCall",
"src": "10052:11:1"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "10026:25:1"
},
"nodeType": "YulFunctionCall",
"src": "10026:38:1"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "10016:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "10157:4:1"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "10163:6:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10171:6:1"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "10111:45:1"
},
"nodeType": "YulFunctionCall",
"src": "10111:67:1"
},
"nodeType": "YulExpressionStatement",
"src": "10111:67:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10188:18:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10205:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "10192:9:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10216:17:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10229:4:1",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10216:9:1"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "10280:611:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10294:37:1",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10313:6:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10325:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "10321:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10321:9:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10309:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10309:22:1"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "10298:7:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10345:51:1",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "10391:4:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "10359:31:1"
},
"nodeType": "YulFunctionCall",
"src": "10359:37:1"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "10349:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10409:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10418:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10413:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10477:163:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "10502:6:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10520:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10525:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10516:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10516:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10510:5:1"
},
"nodeType": "YulFunctionCall",
"src": "10510:26:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "10495:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10495:42:1"
},
"nodeType": "YulExpressionStatement",
"src": "10495:42:1"
},
{
"nodeType": "YulAssignment",
"src": "10554:24:1",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "10568:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10576:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10564:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10564:14:1"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "10554:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10595:31:1",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10612:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10623:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10608:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10608:18:1"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10595:9:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10443:1:1"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "10446:7:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10440:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10440:14:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "10455:21:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10457:17:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10466:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10469:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10462:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10462:12:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10457:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10436:3:1",
"statements": []
},
"src": "10432:208:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10676:156:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10694:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10721:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "10726:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10717:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10717:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10711:5:1"
},
"nodeType": "YulFunctionCall",
"src": "10711:26:1"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "10698:9:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "10761:6:1"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "10788:9:1"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10803:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10811:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10799:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10799:17:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "10769:18:1"
},
"nodeType": "YulFunctionCall",
"src": "10769:48:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "10754:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10754:64:1"
},
"nodeType": "YulExpressionStatement",
"src": "10754:64:1"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "10659:7:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10668:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10656:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10656:19:1"
},
"nodeType": "YulIf",
"src": "10653:179:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "10852:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10866:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10874:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "10862:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10862:14:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10878:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10858:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10858:22:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "10845:6:1"
},
"nodeType": "YulFunctionCall",
"src": "10845:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "10845:36:1"
}
]
},
"nodeType": "YulCase",
"src": "10273:618:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10278:1:1",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "10908:222:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10922:14:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10935:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "10926:5:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10959:67:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10977:35:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10996:3:1"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "11001:9:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10992:3:1"
},
"nodeType": "YulFunctionCall",
"src": "10992:19:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "10986:5:1"
},
"nodeType": "YulFunctionCall",
"src": "10986:26:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "10977:5:1"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10952:6:1"
},
"nodeType": "YulIf",
"src": "10949:77:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "11046:4:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11105:5:1"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "11112:6:1"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "11052:52:1"
},
"nodeType": "YulFunctionCall",
"src": "11052:67:1"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "11039:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11039:81:1"
},
"nodeType": "YulExpressionStatement",
"src": "11039:81:1"
}
]
},
"nodeType": "YulCase",
"src": "10900:230:1",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "10253:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10261:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10250:2:1"
},
"nodeType": "YulFunctionCall",
"src": "10250:14:1"
},
"nodeType": "YulSwitch",
"src": "10243:887:1"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "9822:4:1",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "9828:3:1",
"type": ""
}
],
"src": "9741:1395:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11170:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11187:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11190:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11180:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11180:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "11180:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11284:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11287:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11277:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11277:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "11277:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11308:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11311:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11301:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11301:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "11301:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "11142:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11356:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11373:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11376:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11366:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11366:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "11366:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11470:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11473:4:1",
"type": "",
"value": "0x31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11463:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11463:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "11463:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11494:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11497:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11487:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11487:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "11487:15:1"
}
]
},
"name": "panic_error_0x31",
"nodeType": "YulFunctionDefinition",
"src": "11328:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11542:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11559:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11562:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11552:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11552:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "11552:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11656:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11659:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11649:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11649:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "11649:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11680:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11683:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11673:6:1"
},
"nodeType": "YulFunctionCall",
"src": "11673:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "11673:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "11514:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11743:43:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11753:27:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11768:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11775:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11764:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11764:16:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "11753:7:1"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11725:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "11735:7:1",
"type": ""
}
],
"src": "11700:86:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11833:126:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11843:31:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11868:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "11852:15:1"
},
"nodeType": "YulFunctionCall",
"src": "11852:22:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11843:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11902:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "11904:16:1"
},
"nodeType": "YulFunctionCall",
"src": "11904:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "11904:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11889:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11896:4:1",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11886:2:1"
},
"nodeType": "YulFunctionCall",
"src": "11886:15:1"
},
"nodeType": "YulIf",
"src": "11883:41:1"
},
{
"nodeType": "YulAssignment",
"src": "11933:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11944:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11951:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11940:3:1"
},
"nodeType": "YulFunctionCall",
"src": "11940:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "11933:3:1"
}
]
}
]
},
"name": "increment_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11819:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "11829:3:1",
"type": ""
}
],
"src": "11792:167: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 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_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\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 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(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 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 function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function panic_error_0x31() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x31)\n revert(0, 0x24)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function increment_t_uint8(value) -> ret {\n value := cleanup_t_uint8(value)\n if eq(value, 0xff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100415760003560e01c8063081ff9aa146100465780632e2dc43e1461006257806354353f2f14610080575b600080fd5b610060600480360381019061005b91906104a1565b61008a565b005b61006a6100c2565b604051610077919061062b565b60405180910390f35b61008861019b565b005b6000819080600181540180825580915050600190039060005260206000200160009091909190915090816100be9190610863565b5050565b60606000805480602002602001604051908101604052809291908181526020016000905b828210156101925783829060005260206000200180546101059061067c565b80601f01602080910402602001604051908101604052809291908181526020018280546101319061067c565b801561017e5780601f106101535761010080835404028352916020019161017e565b820191906000526020600020905b81548152906001019060200180831161016157829003601f168201915b5050505050815260200190600101906100e6565b50505050905090565b6001600a90806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908360010b61ffff16021790555060066001600581548110610200576101ff610935565b5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908360010b61ffff160217905550600160038154811061024757610246610935565b5b90600052602060002090601091828204019190066002026101000a81549061ffff0219169055600180548061027f5761027e610964565b5b60019003818190600052602060002090601091828204019190066002026101000a81549061ffff021916905590556000600567ffffffffffffffff8111156102ca576102c9610376565b5b6040519080825280602002602001820160405280156102f85781602001602082028036833780820191505090505b50905060005b81518160ff161015610343578060ff16828260ff168151811061032457610323610935565b5b602002602001018181525050808061033b906109cf565b9150506102fe565b5050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6103ae82610365565b810181811067ffffffffffffffff821117156103cd576103cc610376565b5b80604052505050565b60006103e0610347565b90506103ec82826103a5565b919050565b600067ffffffffffffffff82111561040c5761040b610376565b5b61041582610365565b9050602081019050919050565b82818337600083830152505050565b600061044461043f846103f1565b6103d6565b9050828152602081018484840111156104605761045f610360565b5b61046b848285610422565b509392505050565b600082601f8301126104885761048761035b565b5b8135610498848260208601610431565b91505092915050565b6000602082840312156104b7576104b6610351565b5b600082013567ffffffffffffffff8111156104d5576104d4610356565b5b6104e184828501610473565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610550578082015181840152602081019050610535565b60008484015250505050565b600061056782610516565b6105718185610521565b9350610581818560208601610532565b61058a81610365565b840191505092915050565b60006105a1838361055c565b905092915050565b6000602082019050919050565b60006105c1826104ea565b6105cb81856104f5565b9350836020820285016105dd85610506565b8060005b8581101561061957848403895281516105fa8582610595565b9450610605836105a9565b925060208a019950506001810190506105e1565b50829750879550505050505092915050565b6000602082019050818103600083015261064581846105b6565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061069457607f821691505b6020821081036106a7576106a661064d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261070f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826106d2565b61071986836106d2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600061076061075b61075684610731565b61073b565b610731565b9050919050565b6000819050919050565b61077a83610745565b61078e61078682610767565b8484546106df565b825550505050565b600090565b6107a3610796565b6107ae818484610771565b505050565b5b818110156107d2576107c760008261079b565b6001810190506107b4565b5050565b601f821115610817576107e8816106ad565b6107f1846106c2565b81016020851015610800578190505b61081461080c856106c2565b8301826107b3565b50505b505050565b600082821c905092915050565b600061083a6000198460080261081c565b1980831691505092915050565b60006108538383610829565b9150826002028217905092915050565b61086c82610516565b67ffffffffffffffff81111561088557610884610376565b5b61088f825461067c565b61089a8282856107d6565b600060209050601f8311600181146108cd57600084156108bb578287015190505b6108c58582610847565b86555061092d565b601f1984166108db866106ad565b60005b82811015610903578489015182556001820191506020850194506020810190506108de565b86831015610920578489015161091c601f891682610829565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600060ff82169050919050565b60006109da826109c2565b915060ff82036109ed576109ec610993565b5b60018201905091905056fea264697066735822122022a448162e4b9a4b5284d11cbdd9e40b584b845e97b225b20b167de4167c240f64736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x81FF9AA EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x2E2DC43E EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0x54353F2F EQ PUSH2 0x80 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x4A1 JUMP JUMPDEST PUSH2 0x8A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x6A PUSH2 0xC2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x77 SWAP2 SWAP1 PUSH2 0x62B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x88 PUSH2 0x19B JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SWAP1 DUP2 PUSH2 0xBE SWAP2 SWAP1 PUSH2 0x863 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 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 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x192 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x105 SWAP1 PUSH2 0x67C 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 0x131 SWAP1 PUSH2 0x67C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x17E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x153 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x17E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x161 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 0xE6 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x10 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x2 MUL SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 SIGNEXTEND PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x6 PUSH1 0x1 PUSH1 0x5 DUP2 SLOAD DUP2 LT PUSH2 0x200 JUMPI PUSH2 0x1FF PUSH2 0x935 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x10 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x2 MUL PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 SIGNEXTEND PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 DUP2 SLOAD DUP2 LT PUSH2 0x247 JUMPI PUSH2 0x246 PUSH2 0x935 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x10 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x2 MUL PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x1 DUP1 SLOAD DUP1 PUSH2 0x27F JUMPI PUSH2 0x27E PUSH2 0x964 JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x10 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x2 MUL PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE SWAP1 SSTORE PUSH1 0x0 PUSH1 0x5 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2CA JUMPI PUSH2 0x2C9 PUSH2 0x376 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2F8 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x343 JUMPI DUP1 PUSH1 0xFF AND DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x324 JUMPI PUSH2 0x323 PUSH2 0x935 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 DUP1 PUSH2 0x33B SWAP1 PUSH2 0x9CF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x2FE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x3AE DUP3 PUSH2 0x365 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x3CD JUMPI PUSH2 0x3CC PUSH2 0x376 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E0 PUSH2 0x347 JUMP JUMPDEST SWAP1 POP PUSH2 0x3EC DUP3 DUP3 PUSH2 0x3A5 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x40C JUMPI PUSH2 0x40B PUSH2 0x376 JUMP JUMPDEST JUMPDEST PUSH2 0x415 DUP3 PUSH2 0x365 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x444 PUSH2 0x43F DUP5 PUSH2 0x3F1 JUMP JUMPDEST PUSH2 0x3D6 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x460 JUMPI PUSH2 0x45F PUSH2 0x360 JUMP JUMPDEST JUMPDEST PUSH2 0x46B DUP5 DUP3 DUP6 PUSH2 0x422 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x488 JUMPI PUSH2 0x487 PUSH2 0x35B JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x498 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x431 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4B7 JUMPI PUSH2 0x4B6 PUSH2 0x351 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4D5 JUMPI PUSH2 0x4D4 PUSH2 0x356 JUMP JUMPDEST JUMPDEST PUSH2 0x4E1 DUP5 DUP3 DUP6 ADD PUSH2 0x473 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x550 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x535 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x567 DUP3 PUSH2 0x516 JUMP JUMPDEST PUSH2 0x571 DUP2 DUP6 PUSH2 0x521 JUMP JUMPDEST SWAP4 POP PUSH2 0x581 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x532 JUMP JUMPDEST PUSH2 0x58A DUP2 PUSH2 0x365 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5A1 DUP4 DUP4 PUSH2 0x55C JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5C1 DUP3 PUSH2 0x4EA JUMP JUMPDEST PUSH2 0x5CB DUP2 DUP6 PUSH2 0x4F5 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0x5DD DUP6 PUSH2 0x506 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x619 JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0x5FA DUP6 DUP3 PUSH2 0x595 JUMP JUMPDEST SWAP5 POP PUSH2 0x605 DUP4 PUSH2 0x5A9 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x5E1 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x645 DUP2 DUP5 PUSH2 0x5B6 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x694 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x6A7 JUMPI PUSH2 0x6A6 PUSH2 0x64D JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x70F PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x6D2 JUMP JUMPDEST PUSH2 0x719 DUP7 DUP4 PUSH2 0x6D2 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 PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x760 PUSH2 0x75B PUSH2 0x756 DUP5 PUSH2 0x731 JUMP JUMPDEST PUSH2 0x73B JUMP JUMPDEST PUSH2 0x731 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x77A DUP4 PUSH2 0x745 JUMP JUMPDEST PUSH2 0x78E PUSH2 0x786 DUP3 PUSH2 0x767 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x6DF JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x7A3 PUSH2 0x796 JUMP JUMPDEST PUSH2 0x7AE DUP2 DUP5 DUP5 PUSH2 0x771 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x7D2 JUMPI PUSH2 0x7C7 PUSH1 0x0 DUP3 PUSH2 0x79B JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x7B4 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x817 JUMPI PUSH2 0x7E8 DUP2 PUSH2 0x6AD JUMP JUMPDEST PUSH2 0x7F1 DUP5 PUSH2 0x6C2 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x800 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x814 PUSH2 0x80C DUP6 PUSH2 0x6C2 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x7B3 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x83A PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x81C JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x853 DUP4 DUP4 PUSH2 0x829 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x86C DUP3 PUSH2 0x516 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x885 JUMPI PUSH2 0x884 PUSH2 0x376 JUMP JUMPDEST JUMPDEST PUSH2 0x88F DUP3 SLOAD PUSH2 0x67C JUMP JUMPDEST PUSH2 0x89A DUP3 DUP3 DUP6 PUSH2 0x7D6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x8CD JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x8BB JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x8C5 DUP6 DUP3 PUSH2 0x847 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x92D JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x8DB DUP7 PUSH2 0x6AD JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x903 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 0x8DE JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x920 JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x91C PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x829 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 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9DA DUP3 PUSH2 0x9C2 JUMP JUMPDEST SWAP2 POP PUSH1 0xFF DUP3 SUB PUSH2 0x9ED JUMPI PUSH2 0x9EC PUSH2 0x993 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x22 LOG4 BASEFEE AND 0x2E 0x4B SWAP11 0x4B MSTORE DUP5 0xD1 SHR 0xBD 0xD9 0xE4 SIGNEXTEND PC 0x4B DUP5 0x5E SWAP8 0xB2 0x25 0xB2 SIGNEXTEND AND PUSH30 0xE4167C240F64736F6C634300081200330000000000000000000000000000 ",
"sourceMap": "62:968:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;934:87;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;836:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;232:596;;;:::i;:::-;;934:87;993:6;1005:7;993:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;934:87;:::o;836:90::-;878:15;912:6;905:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;836:90;:::o;232:596::-;309:7;322:2;309:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;405:1;392:7;400:1;392:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;:14;;;;;;;;;;;;;;;;;;;;503:7;511:1;503:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;496:17;;;;;;;;;;;542:7;:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654:17;685:1;674:13;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;654:33;;742:7;737:82;755:3;:10;753:1;:12;;;737:82;;;806:1;797:10;;:3;801:1;797:6;;;;;;;;;;:::i;:::-;;;;;;;:10;;;;;767:3;;;;;:::i;:::-;;;;737:82;;;;258:570;232:596::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:124::-;3145:6;3179:5;3173:12;3163:22;;3068:124;;;:::o;3198:194::-;3307:11;3341:6;3336:3;3329:19;3381:4;3376:3;3372:14;3357:29;;3198:194;;;;:::o;3398:142::-;3475:4;3498:3;3490:11;;3528:4;3523:3;3519:14;3511:22;;3398:142;;;:::o;3546:99::-;3598:6;3632:5;3626:12;3616:22;;3546:99;;;:::o;3651:159::-;3725:11;3759:6;3754:3;3747:19;3799:4;3794:3;3790:14;3775:29;;3651:159;;;;:::o;3816:246::-;3897:1;3907:113;3921:6;3918:1;3915:13;3907:113;;;4006:1;4001:3;3997:11;3991:18;3987:1;3982:3;3978:11;3971:39;3943:2;3940:1;3936:10;3931:15;;3907:113;;;4054:1;4045:6;4040:3;4036:16;4029:27;3878:184;3816:246;;;:::o;4068:357::-;4146:3;4174:39;4207:5;4174:39;:::i;:::-;4229:61;4283:6;4278:3;4229:61;:::i;:::-;4222:68;;4299:65;4357:6;4352:3;4345:4;4338:5;4334:16;4299:65;:::i;:::-;4389:29;4411:6;4389:29;:::i;:::-;4384:3;4380:39;4373:46;;4150:275;4068:357;;;;:::o;4431:196::-;4520:10;4555:66;4617:3;4609:6;4555:66;:::i;:::-;4541:80;;4431:196;;;;:::o;4633:123::-;4713:4;4745;4740:3;4736:14;4728:22;;4633:123;;;:::o;4790:991::-;4929:3;4958:64;5016:5;4958:64;:::i;:::-;5038:96;5127:6;5122:3;5038:96;:::i;:::-;5031:103;;5160:3;5205:4;5197:6;5193:17;5188:3;5184:27;5235:66;5295:5;5235:66;:::i;:::-;5324:7;5355:1;5340:396;5365:6;5362:1;5359:13;5340:396;;;5436:9;5430:4;5426:20;5421:3;5414:33;5487:6;5481:13;5515:84;5594:4;5579:13;5515:84;:::i;:::-;5507:92;;5622:70;5685:6;5622:70;:::i;:::-;5612:80;;5721:4;5716:3;5712:14;5705:21;;5400:336;5387:1;5384;5380:9;5375:14;;5340:396;;;5344:14;5752:4;5745:11;;5772:3;5765:10;;4934:847;;;;;4790:991;;;;:::o;5787:413::-;5950:4;5988:2;5977:9;5973:18;5965:26;;6037:9;6031:4;6027:20;6023:1;6012:9;6008:17;6001:47;6065:128;6188:4;6179:6;6065:128;:::i;:::-;6057:136;;5787:413;;;;:::o;6206:180::-;6254:77;6251:1;6244:88;6351:4;6348:1;6341:15;6375:4;6372:1;6365:15;6392:320;6436:6;6473:1;6467:4;6463:12;6453:22;;6520:1;6514:4;6510:12;6541:18;6531:81;;6597:4;6589:6;6585:17;6575:27;;6531:81;6659:2;6651:6;6648:14;6628:18;6625:38;6622:84;;6678:18;;:::i;:::-;6622:84;6443:269;6392:320;;;:::o;6718:141::-;6767:4;6790:3;6782:11;;6813:3;6810:1;6803:14;6847:4;6844:1;6834:18;6826:26;;6718:141;;;:::o;6865:93::-;6902:6;6949:2;6944;6937:5;6933:14;6929:23;6919:33;;6865:93;;;:::o;6964:107::-;7008:8;7058:5;7052:4;7048:16;7027:37;;6964:107;;;;:::o;7077:393::-;7146:6;7196:1;7184:10;7180:18;7219:97;7249:66;7238:9;7219:97;:::i;:::-;7337:39;7367:8;7356:9;7337:39;:::i;:::-;7325:51;;7409:4;7405:9;7398:5;7394:21;7385:30;;7458:4;7448:8;7444:19;7437:5;7434:30;7424:40;;7153:317;;7077:393;;;;;:::o;7476:77::-;7513:7;7542:5;7531:16;;7476:77;;;:::o;7559:60::-;7587:3;7608:5;7601:12;;7559:60;;;:::o;7625:142::-;7675:9;7708:53;7726:34;7735:24;7753:5;7735:24;:::i;:::-;7726:34;:::i;:::-;7708:53;:::i;:::-;7695:66;;7625:142;;;:::o;7773:75::-;7816:3;7837:5;7830:12;;7773:75;;;:::o;7854:269::-;7964:39;7995:7;7964:39;:::i;:::-;8025:91;8074:41;8098:16;8074:41;:::i;:::-;8066:6;8059:4;8053:11;8025:91;:::i;:::-;8019:4;8012:105;7930:193;7854:269;;;:::o;8129:73::-;8174:3;8129:73;:::o;8208:189::-;8285:32;;:::i;:::-;8326:65;8384:6;8376;8370:4;8326:65;:::i;:::-;8261:136;8208:189;;:::o;8403:186::-;8463:120;8480:3;8473:5;8470:14;8463:120;;;8534:39;8571:1;8564:5;8534:39;:::i;:::-;8507:1;8500:5;8496:13;8487:22;;8463:120;;;8403:186;;:::o;8595:543::-;8696:2;8691:3;8688:11;8685:446;;;8730:38;8762:5;8730:38;:::i;:::-;8814:29;8832:10;8814:29;:::i;:::-;8804:8;8800:44;8997:2;8985:10;8982:18;8979:49;;;9018:8;9003:23;;8979:49;9041:80;9097:22;9115:3;9097:22;:::i;:::-;9087:8;9083:37;9070:11;9041:80;:::i;:::-;8700:431;;8685:446;8595:543;;;:::o;9144:117::-;9198:8;9248:5;9242:4;9238:16;9217:37;;9144:117;;;;:::o;9267:169::-;9311:6;9344:51;9392:1;9388:6;9380:5;9377:1;9373:13;9344:51;:::i;:::-;9340:56;9425:4;9419;9415:15;9405:25;;9318:118;9267:169;;;;:::o;9441:295::-;9517:4;9663:29;9688:3;9682:4;9663:29;:::i;:::-;9655:37;;9725:3;9722:1;9718:11;9712:4;9709:21;9701:29;;9441:295;;;;:::o;9741:1395::-;9858:37;9891:3;9858:37;:::i;:::-;9960:18;9952:6;9949:30;9946:56;;;9982:18;;:::i;:::-;9946:56;10026:38;10058:4;10052:11;10026:38;:::i;:::-;10111:67;10171:6;10163;10157:4;10111:67;:::i;:::-;10205:1;10229:4;10216:17;;10261:2;10253:6;10250:14;10278:1;10273:618;;;;10935:1;10952:6;10949:77;;;11001:9;10996:3;10992:19;10986:26;10977:35;;10949:77;11052:67;11112:6;11105:5;11052:67;:::i;:::-;11046:4;11039:81;10908:222;10243:887;;10273:618;10325:4;10321:9;10313:6;10309:22;10359:37;10391:4;10359:37;:::i;:::-;10418:1;10432:208;10446:7;10443:1;10440:14;10432:208;;;10525:9;10520:3;10516:19;10510:26;10502:6;10495:42;10576:1;10568:6;10564:14;10554:24;;10623:2;10612:9;10608:18;10595:31;;10469:4;10466:1;10462:12;10457:17;;10432:208;;;10668:6;10659:7;10656:19;10653:179;;;10726:9;10721:3;10717:19;10711:26;10769:48;10811:4;10803:6;10799:17;10788:9;10769:48;:::i;:::-;10761:6;10754:64;10676:156;10653:179;10878:1;10874;10866:6;10862:14;10858:22;10852:4;10845:36;10280:611;;;10243:887;;9833:1303;;;9741:1395;;:::o;11142:180::-;11190:77;11187:1;11180:88;11287:4;11284:1;11277:15;11311:4;11308:1;11301:15;11328:180;11376:77;11373:1;11366:88;11473:4;11470:1;11463:15;11497:4;11494:1;11487:15;11514:180;11562:77;11559:1;11552:88;11659:4;11656:1;11649:15;11683:4;11680:1;11673:15;11700:86;11735:7;11775:4;11768:5;11764:16;11753:27;;11700:86;;;:::o;11792:167::-;11829:3;11852:22;11868:5;11852:22;:::i;:::-;11843:31;;11896:4;11889:5;11886:15;11883:41;;11904:18;;:::i;:::-;11883:41;11951:1;11944:5;11940:13;11933:20;;11792:167;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "521200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"example()": "infinite",
"getOrders()": "infinite",
"newOrder(string)": "infinite"
}
},
"methodIdentifiers": {
"example()": "54353f2f",
"getOrders()": "2e2dc43e",
"newOrder(string)": "081ff9aa"
}
},
"abi": [
{
"inputs": [],
"name": "example",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getOrders",
"outputs": [
{
"internalType": "string[]",
"name": "",
"type": "string[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "orderID",
"type": "string"
}
],
"name": "newOrder",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.18+commit.87f61d96"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "example",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getOrders",
"outputs": [
{
"internalType": "string[]",
"name": "",
"type": "string[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "orderID",
"type": "string"
}
],
"name": "newOrder",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/5_Arrays.sol": "ECommerce"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/5_Arrays.sol": {
"keccak256": "0xe42ec70a48eb3c1388298540f90bf2be9427331bec3c055e1a332072ca19eecf",
"license": "MIT",
"urls": [
"bzz-raw://cf6fde88b2b322911ec4eac86d575ef0e3d56b18b466b489c25c3338a4315ee3",
"dweb:/ipfs/Qmc2FFodwyBMg1WJtfg8A7YWP5P6FdaAQk9wDjumMfvtSe"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6080604052348015600f57600080fd5b50603f80601d6000396000f3fe6080604052600080fdfea264697066735822122069c55304f8c3c295ff8475cf8910ff6980df87b8d75b2f104a116729e7b30e9864736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x3F DUP1 PUSH1 0x1D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH10 0xC55304F8C3C295FF8475 0xCF DUP10 LT SELFDESTRUCT PUSH10 0x80DF87B8D75B2F104A11 PUSH8 0x29E7B30E9864736F PUSH13 0x63430008120033000000000000 ",
"sourceMap": "62:156:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600080fdfea264697066735822122069c55304f8c3c295ff8475cf8910ff6980df87b8d75b2f104a116729e7b30e9864736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH10 0xC55304F8C3C295FF8475 0xCF DUP10 LT SELFDESTRUCT PUSH10 0x80DF87B8D75B2F104A11 PUSH8 0x29E7B30E9864736F PUSH13 0x63430008120033000000000000 ",
"sourceMap": "62:156:0:-:0;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "12600",
"executionCost": "66",
"totalCost": "12666"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.18+commit.87f61d96"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/6_Structs.sol": "Structs"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/6_Structs.sol": {
"keccak256": "0x4e69887f518915210f93c85969f1db4dd70d194a3f5c561cbfa7b5db14770081",
"license": "MIT",
"urls": [
"bzz-raw://88a002dab8600f2e5b463517870ff76549969d6fae26487209c5d3bd13af7fd9",
"dweb:/ipfs/QmeYEes3a7QFeT77TB2ocGXN5ZbdELpurLcVjgw523Sxvt"
]
}
},
"version": 1
}
This file has been truncated, but you can view the full file.
{
"id": "846685f984e35d49c11738c0e782b337",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.18",
"solcLongVersion": "0.8.18+commit.87f61d96",
"input": {
"language": "Solidity",
"sources": {
"contracts/5_Arrays.sol": {
"content": "// SPDX-License-Identifier: MIT\r\n\r\npragma solidity 0.8.18;\r\n\r\ncontract ECommerce{\r\n\r\n // dynamic array\r\n string[] orders;\r\n int16[] numbers = [int16(1),2,3,4,5];\r\n\r\n // fixed size array\r\n string[5] addresses; \r\n\r\n function example() public {\r\n\r\n // push element into a array\r\n numbers.push(10); // [1,2,3,4,5,10]\r\n\r\n // update value of element\r\n numbers[5] = 6; // [1,2,3,4,5,6]\r\n\r\n // delete an element (default value will override)\r\n delete numbers[3]; // [1,2,3,0,5,10]\r\n numbers.pop(); // [1,2,3,0,5]\r\n\r\n // create array in memory\r\n // cannot call push or pop\r\n uint[] memory arr = new uint[](5);\r\n\r\n // arr.length to get length\r\n for (uint8 i=0; i<arr.length; i++) \r\n {\r\n arr[i] = i;\r\n }\r\n\r\n }\r\n\r\n function getOrders() public view returns (string[] memory){\r\n return orders;\r\n }\r\n\r\n function newOrder(string memory orderID) public {\r\n orders.push(orderID);\r\n }\r\n\r\n\r\n\r\n}\r\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/5_Arrays.sol": {
"ECommerce": {
"abi": [
{
"inputs": [],
"name": "example",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "getOrders",
"outputs": [
{
"internalType": "string[]",
"name": "",
"type": "string[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "orderID",
"type": "string"
}
],
"name": "newOrder",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/5_Arrays.sol\":62:1030 contract ECommerce{... */\n mstore(0x40, 0x80)\n /* \"contracts/5_Arrays.sol\":133:169 int16[] numbers = [int16(1),2,3,4,5] */\n mload(0x40)\n dup1\n 0xa0\n add\n 0x40\n mstore\n dup1\n /* \"contracts/5_Arrays.sol\":158:159 1 */\n 0x01\n /* \"contracts/5_Arrays.sol\":133:169 int16[] numbers = [int16(1),2,3,4,5] */\n dup1\n signextend\n 0x01\n signextend\n dup2\n mstore\n 0x20\n add\n /* \"contracts/5_Arrays.sol\":161:162 2 */\n 0x02\n /* \"contracts/5_Arrays.sol\":133:169 int16[] numbers = [int16(1),2,3,4,5] */\n 0x01\n signextend\n dup2\n mstore\n 0x20\n add\n /* \"contracts/5_Arrays.sol\":163:164 3 */\n 0x03\n /* \"contracts/5_Arrays.sol\":133:169 int16[] numbers = [int16(1),2,3,4,5] */\n 0x01\n signextend\n dup2\n mstore\n 0x20\n add\n /* \"contracts/5_Arrays.sol\":165:166 4 */\n 0x04\n /* \"contracts/5_Arrays.sol\":133:169 int16[] numbers = [int16(1),2,3,4,5] */\n 0x01\n signextend\n dup2\n mstore\n 0x20\n add\n /* \"contracts/5_Arrays.sol\":167:168 5 */\n 0x05\n /* \"contracts/5_Arrays.sol\":133:169 int16[] numbers = [int16(1),2,3,4,5] */\n 0x01\n signextend\n dup2\n mstore\n pop\n 0x01\n swap1\n 0x05\n tag_1\n swap3\n swap2\n swap1\n tag_2\n jump\t// in\ntag_1:\n pop\n /* \"contracts/5_Arrays.sol\":62:1030 contract ECommerce{... */\n callvalue\n dup1\n iszero\n tag_3\n jumpi\n 0x00\n dup1\n revert\ntag_3:\n pop\n jump(tag_4)\ntag_2:\n dup3\n dup1\n sload\n dup3\n dup3\n sstore\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x0f\n add\n 0x10\n swap1\n div\n dup2\n add\n swap3\n dup3\n iszero\n tag_5\n jumpi\n swap2\n 0x20\n mul\n dup3\n add\n 0x00\ntag_6:\n dup4\n dup3\n gt\n iszero\n tag_7\n jumpi\n dup4\n mload\n dup4\n dup3\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffff\n mul\n not\n and\n swap1\n dup4\n 0x01\n signextend\n 0xffff\n and\n mul\n or\n swap1\n sstore\n pop\n swap3\n 0x20\n add\n swap3\n 0x02\n add\n 0x20\n dup2\n 0x01\n add\n div\n swap3\n dup4\n add\n swap3\n 0x01\n sub\n mul\n jump(tag_6)\ntag_7:\n dup1\n iszero\n tag_8\n jumpi\n dup3\n dup2\n 0x0100\n exp\n dup2\n sload\n swap1\n 0xffff\n mul\n not\n and\n swap1\n sstore\n 0x02\n add\n 0x20\n dup2\n 0x01\n add\n div\n swap3\n dup4\n add\n swap3\n 0x01\n sub\n mul\n jump(tag_7)\ntag_8:\n pop\ntag_5:\n pop\n swap1\n pop\n tag_9\n swap2\n swap1\n tag_10\n jump\t// in\ntag_9:\n pop\n swap1\n jump\t// out\ntag_10:\ntag_11:\n dup1\n dup3\n gt\n iszero\n tag_12\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_11)\ntag_12:\n pop\n swap1\n jump\t// out\ntag_4:\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/5_Arrays.sol\":62:1030 contract ECommerce{... */\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 0x081ff9aa\n eq\n tag_3\n jumpi\n dup1\n 0x2e2dc43e\n eq\n tag_4\n jumpi\n dup1\n 0x54353f2f\n eq\n tag_5\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/5_Arrays.sol\":934:1021 function newOrder(string memory orderID) public {... */\n tag_3:\n tag_6\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_7\n swap2\n swap1\n tag_8\n jump\t// in\n tag_7:\n tag_9\n jump\t// in\n tag_6:\n stop\n /* \"contracts/5_Arrays.sol\":836:926 function getOrders() public view returns (string[] memory){... */\n tag_4:\n tag_10\n tag_11\n jump\t// in\n tag_10:\n mload(0x40)\n tag_12\n swap2\n swap1\n tag_13\n jump\t// in\n tag_12:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/5_Arrays.sol\":232:828 function example() public {... */\n tag_5:\n tag_14\n tag_15\n jump\t// in\n tag_14:\n stop\n /* \"contracts/5_Arrays.sol\":934:1021 function newOrder(string memory orderID) public {... */\n tag_9:\n /* \"contracts/5_Arrays.sol\":993:999 orders */\n 0x00\n /* \"contracts/5_Arrays.sol\":1005:1012 orderID */\n dup2\n /* \"contracts/5_Arrays.sol\":993:1013 orders.push(orderID) */\n swap1\n dup1\n 0x01\n dup2\n sload\n add\n dup1\n dup3\n sstore\n dup1\n swap2\n pop\n pop\n 0x01\n swap1\n sub\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\n swap1\n dup2\n tag_18\n swap2\n swap1\n tag_19\n jump\t// in\n tag_18:\n pop\n /* \"contracts/5_Arrays.sol\":934:1021 function newOrder(string memory orderID) public {... */\n pop\n jump\t// out\n /* \"contracts/5_Arrays.sol\":836:926 function getOrders() public view returns (string[] memory){... */\n tag_11:\n /* \"contracts/5_Arrays.sol\":878:893 string[] memory */\n 0x60\n /* \"contracts/5_Arrays.sol\":912:918 orders */\n 0x00\n /* \"contracts/5_Arrays.sol\":905:918 return orders */\n dup1\n sload\n dup1\n 0x20\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 0x00\n swap1\n tag_21:\n dup3\n dup3\n lt\n iszero\n tag_22\n jumpi\n dup4\n dup3\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n dup1\n sload\n tag_24\n swap1\n tag_25\n jump\t// in\n tag_24:\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_26\n swap1\n tag_25\n jump\t// in\n tag_26:\n dup1\n iszero\n tag_27\n jumpi\n dup1\n 0x1f\n lt\n tag_28\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_27)\n tag_28:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_29:\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_29\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_27:\n pop\n pop\n pop\n pop\n pop\n dup2\n mstore\n 0x20\n add\n swap1\n 0x01\n add\n swap1\n jump(tag_21)\n tag_22:\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"contracts/5_Arrays.sol\":836:926 function getOrders() public view returns (string[] memory){... */\n swap1\n jump\t// out\n /* \"contracts/5_Arrays.sol\":232:828 function example() public {... */\n tag_15:\n /* \"contracts/5_Arrays.sol\":309:316 numbers */\n 0x01\n /* \"contracts/5_Arrays.sol\":322:324 10 */\n 0x0a\n /* \"contracts/5_Arrays.sol\":309:325 numbers.push(10) */\n swap1\n dup1\n 0x01\n dup2\n sload\n add\n dup1\n dup3\n sstore\n dup1\n swap2\n pop\n pop\n 0x01\n swap1\n sub\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x10\n swap2\n dup3\n dup3\n div\n add\n swap2\n swap1\n mod\n 0x02\n mul\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffff\n mul\n not\n and\n swap1\n dup4\n 0x01\n signextend\n 0xffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/5_Arrays.sol\":405:406 6 */\n 0x06\n /* \"contracts/5_Arrays.sol\":392:399 numbers */\n 0x01\n /* \"contracts/5_Arrays.sol\":400:401 5 */\n 0x05\n /* \"contracts/5_Arrays.sol\":392:402 numbers[5] */\n dup2\n sload\n dup2\n lt\n tag_32\n jumpi\n tag_33\n tag_34\n jump\t// in\n tag_33:\n tag_32:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x10\n swap2\n dup3\n dup3\n div\n add\n swap2\n swap1\n mod\n 0x02\n mul\n /* \"contracts/5_Arrays.sol\":392:406 numbers[5] = 6 */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffff\n mul\n not\n and\n swap1\n dup4\n 0x01\n signextend\n 0xffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/5_Arrays.sol\":503:510 numbers */\n 0x01\n /* \"contracts/5_Arrays.sol\":511:512 3 */\n 0x03\n /* \"contracts/5_Arrays.sol\":503:513 numbers[3] */\n dup2\n sload\n dup2\n lt\n tag_36\n jumpi\n tag_37\n tag_34\n jump\t// in\n tag_37:\n tag_36:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x10\n swap2\n dup3\n dup3\n div\n add\n swap2\n swap1\n mod\n 0x02\n mul\n /* \"contracts/5_Arrays.sol\":496:513 delete numbers[3] */\n 0x0100\n exp\n dup2\n sload\n swap1\n 0xffff\n mul\n not\n and\n swap1\n sstore\n /* \"contracts/5_Arrays.sol\":542:549 numbers */\n 0x01\n /* \"contracts/5_Arrays.sol\":542:555 numbers.pop() */\n dup1\n sload\n dup1\n tag_39\n jumpi\n tag_40\n tag_41\n jump\t// in\n tag_40:\n tag_39:\n 0x01\n swap1\n sub\n dup2\n dup2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x10\n swap2\n dup3\n dup3\n div\n add\n swap2\n swap1\n mod\n 0x02\n mul\n 0x0100\n exp\n dup2\n sload\n swap1\n 0xffff\n mul\n not\n and\n swap1\n sstore\n swap1\n sstore\n /* \"contracts/5_Arrays.sol\":654:671 uint[] memory arr */\n 0x00\n /* \"contracts/5_Arrays.sol\":685:686 5 */\n 0x05\n /* \"contracts/5_Arrays.sol\":674:687 new uint[](5) */\n 0xffffffffffffffff\n dup2\n gt\n iszero\n tag_43\n jumpi\n tag_44\n tag_45\n jump\t// in\n tag_44:\n tag_43:\n mload(0x40)\n swap1\n dup1\n dup3\n mstore\n dup1\n 0x20\n mul\n 0x20\n add\n dup3\n add\n 0x40\n mstore\n dup1\n iszero\n tag_46\n jumpi\n dup2\n 0x20\n add\n 0x20\n dup3\n mul\n dup1\n calldatasize\n dup4\n calldatacopy\n dup1\n dup3\n add\n swap2\n pop\n pop\n swap1\n pop\n tag_46:\n pop\n /* \"contracts/5_Arrays.sol\":654:687 uint[] memory arr = new uint[](5) */\n swap1\n pop\n /* \"contracts/5_Arrays.sol\":742:749 uint8 i */\n 0x00\n /* \"contracts/5_Arrays.sol\":737:819 for (uint8 i=0; i<arr.length; i++) ... */\n tag_47:\n /* \"contracts/5_Arrays.sol\":755:758 arr */\n dup2\n /* \"contracts/5_Arrays.sol\":755:765 arr.length */\n mload\n /* \"contracts/5_Arrays.sol\":753:754 i */\n dup2\n /* \"contracts/5_Arrays.sol\":753:765 i<arr.length */\n 0xff\n and\n lt\n /* \"contracts/5_Arrays.sol\":737:819 for (uint8 i=0; i<arr.length; i++) ... */\n iszero\n tag_48\n jumpi\n /* \"contracts/5_Arrays.sol\":806:807 i */\n dup1\n /* \"contracts/5_Arrays.sol\":797:807 arr[i] = i */\n 0xff\n and\n /* \"contracts/5_Arrays.sol\":797:800 arr */\n dup3\n /* \"contracts/5_Arrays.sol\":801:802 i */\n dup3\n /* \"contracts/5_Arrays.sol\":797:803 arr[i] */\n 0xff\n and\n dup2\n mload\n dup2\n lt\n tag_50\n jumpi\n tag_51\n tag_34\n jump\t// in\n tag_51:\n tag_50:\n 0x20\n mul\n 0x20\n add\n add\n /* \"contracts/5_Arrays.sol\":797:807 arr[i] = i */\n dup2\n dup2\n mstore\n pop\n pop\n /* \"contracts/5_Arrays.sol\":767:770 i++ */\n dup1\n dup1\n tag_52\n swap1\n tag_53\n jump\t// in\n tag_52:\n swap2\n pop\n pop\n /* \"contracts/5_Arrays.sol\":737:819 for (uint8 i=0; i<arr.length; i++) ... */\n jump(tag_47)\n tag_48:\n pop\n /* \"contracts/5_Arrays.sol\":258:828 {... */\n pop\n /* \"contracts/5_Arrays.sol\":232:828 function example() public {... */\n jump\t// out\n /* \"#utility.yul\":7:82 */\n tag_54:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_55:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\n tag_56:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:451 */\n tag_57:\n /* \"#utility.yul\":443:444 */\n 0x00\n /* \"#utility.yul\":440:441 */\n dup1\n /* \"#utility.yul\":433:445 */\n revert\n /* \"#utility.yul\":457:574 */\n tag_58:\n /* \"#utility.yul\":566:567 */\n 0x00\n /* \"#utility.yul\":563:564 */\n dup1\n /* \"#utility.yul\":556:568 */\n revert\n /* \"#utility.yul\":580:682 */\n tag_59:\n /* \"#utility.yul\":621:627 */\n 0x00\n /* \"#utility.yul\":672:674 */\n 0x1f\n /* \"#utility.yul\":668:675 */\n not\n /* \"#utility.yul\":663:665 */\n 0x1f\n /* \"#utility.yul\":656:661 */\n dup4\n /* \"#utility.yul\":652:666 */\n add\n /* \"#utility.yul\":648:676 */\n and\n /* \"#utility.yul\":638:676 */\n swap1\n pop\n /* \"#utility.yul\":580:682 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":688:868 */\n tag_45:\n /* \"#utility.yul\":736:813 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":733:734 */\n 0x00\n /* \"#utility.yul\":726:814 */\n mstore\n /* \"#utility.yul\":833:837 */\n 0x41\n /* \"#utility.yul\":830:831 */\n 0x04\n /* \"#utility.yul\":823:838 */\n mstore\n /* \"#utility.yul\":857:861 */\n 0x24\n /* \"#utility.yul\":854:855 */\n 0x00\n /* \"#utility.yul\":847:862 */\n revert\n /* \"#utility.yul\":874:1155 */\n tag_60:\n /* \"#utility.yul\":957:984 */\n tag_104\n /* \"#utility.yul\":979:983 */\n dup3\n /* \"#utility.yul\":957:984 */\n tag_59\n jump\t// in\n tag_104:\n /* \"#utility.yul\":949:955 */\n dup2\n /* \"#utility.yul\":945:985 */\n add\n /* \"#utility.yul\":1087:1093 */\n dup2\n /* \"#utility.yul\":1075:1085 */\n dup2\n /* \"#utility.yul\":1072:1094 */\n lt\n /* \"#utility.yul\":1051:1069 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1039:1049 */\n dup3\n /* \"#utility.yul\":1036:1070 */\n gt\n /* \"#utility.yul\":1033:1095 */\n or\n /* \"#utility.yul\":1030:1118 */\n iszero\n tag_105\n jumpi\n /* \"#utility.yul\":1098:1116 */\n tag_106\n tag_45\n jump\t// in\n tag_106:\n /* \"#utility.yul\":1030:1118 */\n tag_105:\n /* \"#utility.yul\":1138:1148 */\n dup1\n /* \"#utility.yul\":1134:1136 */\n 0x40\n /* \"#utility.yul\":1127:1149 */\n mstore\n /* \"#utility.yul\":917:1155 */\n pop\n /* \"#utility.yul\":874:1155 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1161:1290 */\n tag_61:\n /* \"#utility.yul\":1195:1201 */\n 0x00\n /* \"#utility.yul\":1222:1242 */\n tag_108\n tag_54\n jump\t// in\n tag_108:\n /* \"#utility.yul\":1212:1242 */\n swap1\n pop\n /* \"#utility.yul\":1251:1284 */\n tag_109\n /* \"#utility.yul\":1279:1283 */\n dup3\n /* \"#utility.yul\":1271:1277 */\n dup3\n /* \"#utility.yul\":1251:1284 */\n tag_60\n jump\t// in\n tag_109:\n /* \"#utility.yul\":1161:1290 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1296:1604 */\n tag_62:\n /* \"#utility.yul\":1358:1362 */\n 0x00\n /* \"#utility.yul\":1448:1466 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1440:1446 */\n dup3\n /* \"#utility.yul\":1437:1467 */\n gt\n /* \"#utility.yul\":1434:1490 */\n iszero\n tag_111\n jumpi\n /* \"#utility.yul\":1470:1488 */\n tag_112\n tag_45\n jump\t// in\n tag_112:\n /* \"#utility.yul\":1434:1490 */\n tag_111:\n /* \"#utility.yul\":1508:1537 */\n tag_113\n /* \"#utility.yul\":1530:1536 */\n dup3\n /* \"#utility.yul\":1508:1537 */\n tag_59\n jump\t// in\n tag_113:\n /* \"#utility.yul\":1500:1537 */\n swap1\n pop\n /* \"#utility.yul\":1592:1596 */\n 0x20\n /* \"#utility.yul\":1586:1590 */\n dup2\n /* \"#utility.yul\":1582:1597 */\n add\n /* \"#utility.yul\":1574:1597 */\n swap1\n pop\n /* \"#utility.yul\":1296:1604 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1610:1756 */\n tag_63:\n /* \"#utility.yul\":1707:1713 */\n dup3\n /* \"#utility.yul\":1702:1705 */\n dup2\n /* \"#utility.yul\":1697:1700 */\n dup4\n /* \"#utility.yul\":1684:1714 */\n calldatacopy\n /* \"#utility.yul\":1748:1749 */\n 0x00\n /* \"#utility.yul\":1739:1745 */\n dup4\n /* \"#utility.yul\":1734:1737 */\n dup4\n /* \"#utility.yul\":1730:1746 */\n add\n /* \"#utility.yul\":1723:1750 */\n mstore\n /* \"#utility.yul\":1610:1756 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1762:2187 */\n tag_64:\n /* \"#utility.yul\":1840:1845 */\n 0x00\n /* \"#utility.yul\":1865:1931 */\n tag_116\n /* \"#utility.yul\":1881:1930 */\n tag_117\n /* \"#utility.yul\":1923:1929 */\n dup5\n /* \"#utility.yul\":1881:1930 */\n tag_62\n jump\t// in\n tag_117:\n /* \"#utility.yul\":1865:1931 */\n tag_61\n jump\t// in\n tag_116:\n /* \"#utility.yul\":1856:1931 */\n swap1\n pop\n /* \"#utility.yul\":1954:1960 */\n dup3\n /* \"#utility.yul\":1947:1952 */\n dup2\n /* \"#utility.yul\":1940:1961 */\n mstore\n /* \"#utility.yul\":1992:1996 */\n 0x20\n /* \"#utility.yul\":1985:1990 */\n dup2\n /* \"#utility.yul\":1981:1997 */\n add\n /* \"#utility.yul\":2030:2033 */\n dup5\n /* \"#utility.yul\":2021:2027 */\n dup5\n /* \"#utility.yul\":2016:2019 */\n dup5\n /* \"#utility.yul\":2012:2028 */\n add\n /* \"#utility.yul\":2009:2034 */\n gt\n /* \"#utility.yul\":2006:2118 */\n iszero\n tag_118\n jumpi\n /* \"#utility.yul\":2037:2116 */\n tag_119\n tag_58\n jump\t// in\n tag_119:\n /* \"#utility.yul\":2006:2118 */\n tag_118:\n /* \"#utility.yul\":2127:2181 */\n tag_120\n /* \"#utility.yul\":2174:2180 */\n dup5\n /* \"#utility.yul\":2169:2172 */\n dup3\n /* \"#utility.yul\":2164:2167 */\n dup6\n /* \"#utility.yul\":2127:2181 */\n tag_63\n jump\t// in\n tag_120:\n /* \"#utility.yul\":1846:2187 */\n pop\n /* \"#utility.yul\":1762:2187 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2207:2547 */\n tag_65:\n /* \"#utility.yul\":2263:2268 */\n 0x00\n /* \"#utility.yul\":2312:2315 */\n dup3\n /* \"#utility.yul\":2305:2309 */\n 0x1f\n /* \"#utility.yul\":2297:2303 */\n dup4\n /* \"#utility.yul\":2293:2310 */\n add\n /* \"#utility.yul\":2289:2316 */\n slt\n /* \"#utility.yul\":2279:2401 */\n tag_122\n jumpi\n /* \"#utility.yul\":2320:2399 */\n tag_123\n tag_57\n jump\t// in\n tag_123:\n /* \"#utility.yul\":2279:2401 */\n tag_122:\n /* \"#utility.yul\":2437:2443 */\n dup2\n /* \"#utility.yul\":2424:2444 */\n calldataload\n /* \"#utility.yul\":2462:2541 */\n tag_124\n /* \"#utility.yul\":2537:2540 */\n dup5\n /* \"#utility.yul\":2529:2535 */\n dup3\n /* \"#utility.yul\":2522:2526 */\n 0x20\n /* \"#utility.yul\":2514:2520 */\n dup7\n /* \"#utility.yul\":2510:2527 */\n add\n /* \"#utility.yul\":2462:2541 */\n tag_64\n jump\t// in\n tag_124:\n /* \"#utility.yul\":2453:2541 */\n swap2\n pop\n /* \"#utility.yul\":2269:2547 */\n pop\n /* \"#utility.yul\":2207:2547 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2553:3062 */\n tag_8:\n /* \"#utility.yul\":2622:2628 */\n 0x00\n /* \"#utility.yul\":2671:2673 */\n 0x20\n /* \"#utility.yul\":2659:2668 */\n dup3\n /* \"#utility.yul\":2650:2657 */\n dup5\n /* \"#utility.yul\":2646:2669 */\n sub\n /* \"#utility.yul\":2642:2674 */\n slt\n /* \"#utility.yul\":2639:2758 */\n iszero\n tag_126\n jumpi\n /* \"#utility.yul\":2677:2756 */\n tag_127\n tag_55\n jump\t// in\n tag_127:\n /* \"#utility.yul\":2639:2758 */\n tag_126:\n /* \"#utility.yul\":2825:2826 */\n 0x00\n /* \"#utility.yul\":2814:2823 */\n dup3\n /* \"#utility.yul\":2810:2827 */\n add\n /* \"#utility.yul\":2797:2828 */\n calldataload\n /* \"#utility.yul\":2855:2873 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2847:2853 */\n dup2\n /* \"#utility.yul\":2844:2874 */\n gt\n /* \"#utility.yul\":2841:2958 */\n iszero\n tag_128\n jumpi\n /* \"#utility.yul\":2877:2956 */\n tag_129\n tag_56\n jump\t// in\n tag_129:\n /* \"#utility.yul\":2841:2958 */\n tag_128:\n /* \"#utility.yul\":2982:3045 */\n tag_130\n /* \"#utility.yul\":3037:3044 */\n dup5\n /* \"#utility.yul\":3028:3034 */\n dup3\n /* \"#utility.yul\":3017:3026 */\n dup6\n /* \"#utility.yul\":3013:3035 */\n add\n /* \"#utility.yul\":2982:3045 */\n tag_65\n jump\t// in\n tag_130:\n /* \"#utility.yul\":2972:3045 */\n swap2\n pop\n /* \"#utility.yul\":2768:3055 */\n pop\n /* \"#utility.yul\":2553:3062 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3068:3192 */\n tag_66:\n /* \"#utility.yul\":3145:3151 */\n 0x00\n /* \"#utility.yul\":3179:3184 */\n dup2\n /* \"#utility.yul\":3173:3185 */\n mload\n /* \"#utility.yul\":3163:3185 */\n swap1\n pop\n /* \"#utility.yul\":3068:3192 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3198:3392 */\n tag_67:\n /* \"#utility.yul\":3307:3318 */\n 0x00\n /* \"#utility.yul\":3341:3347 */\n dup3\n /* \"#utility.yul\":3336:3339 */\n dup3\n /* \"#utility.yul\":3329:3348 */\n mstore\n /* \"#utility.yul\":3381:3385 */\n 0x20\n /* \"#utility.yul\":3376:3379 */\n dup3\n /* \"#utility.yul\":3372:3386 */\n add\n /* \"#utility.yul\":3357:3386 */\n swap1\n pop\n /* \"#utility.yul\":3198:3392 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3398:3540 */\n tag_68:\n /* \"#utility.yul\":3475:3479 */\n 0x00\n /* \"#utility.yul\":3498:3501 */\n dup2\n /* \"#utility.yul\":3490:3501 */\n swap1\n pop\n /* \"#utility.yul\":3528:3532 */\n 0x20\n /* \"#utility.yul\":3523:3526 */\n dup3\n /* \"#utility.yul\":3519:3533 */\n add\n /* \"#utility.yul\":3511:3533 */\n swap1\n pop\n /* \"#utility.yul\":3398:3540 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3546:3645 */\n tag_69:\n /* \"#utility.yul\":3598:3604 */\n 0x00\n /* \"#utility.yul\":3632:3637 */\n dup2\n /* \"#utility.yul\":3626:3638 */\n mload\n /* \"#utility.yul\":3616:3638 */\n swap1\n pop\n /* \"#utility.yul\":3546:3645 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3651:3810 */\n tag_70:\n /* \"#utility.yul\":3725:3736 */\n 0x00\n /* \"#utility.yul\":3759:3765 */\n dup3\n /* \"#utility.yul\":3754:3757 */\n dup3\n /* \"#utility.yul\":3747:3766 */\n mstore\n /* \"#utility.yul\":3799:3803 */\n 0x20\n /* \"#utility.yul\":3794:3797 */\n dup3\n /* \"#utility.yul\":3790:3804 */\n add\n /* \"#utility.yul\":3775:3804 */\n swap1\n pop\n /* \"#utility.yul\":3651:3810 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3816:4062 */\n tag_71:\n /* \"#utility.yul\":3897:3898 */\n 0x00\n /* \"#utility.yul\":3907:4020 */\n tag_137:\n /* \"#utility.yul\":3921:3927 */\n dup4\n /* \"#utility.yul\":3918:3919 */\n dup2\n /* \"#utility.yul\":3915:3928 */\n lt\n /* \"#utility.yul\":3907:4020 */\n iszero\n tag_139\n jumpi\n /* \"#utility.yul\":4006:4007 */\n dup1\n /* \"#utility.yul\":4001:4004 */\n dup3\n /* \"#utility.yul\":3997:4008 */\n add\n /* \"#utility.yul\":3991:4009 */\n mload\n /* \"#utility.yul\":3987:3988 */\n dup2\n /* \"#utility.yul\":3982:3985 */\n dup5\n /* \"#utility.yul\":3978:3989 */\n add\n /* \"#utility.yul\":3971:4010 */\n mstore\n /* \"#utility.yul\":3943:3945 */\n 0x20\n /* \"#utility.yul\":3940:3941 */\n dup2\n /* \"#utility.yul\":3936:3946 */\n add\n /* \"#utility.yul\":3931:3946 */\n swap1\n pop\n /* \"#utility.yul\":3907:4020 */\n jump(tag_137)\n tag_139:\n /* \"#utility.yul\":4054:4055 */\n 0x00\n /* \"#utility.yul\":4045:4051 */\n dup5\n /* \"#utility.yul\":4040:4043 */\n dup5\n /* \"#utility.yul\":4036:4052 */\n add\n /* \"#utility.yul\":4029:4056 */\n mstore\n /* \"#utility.yul\":3878:4062 */\n pop\n /* \"#utility.yul\":3816:4062 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4068:4425 */\n tag_72:\n /* \"#utility.yul\":4146:4149 */\n 0x00\n /* \"#utility.yul\":4174:4213 */\n tag_141\n /* \"#utility.yul\":4207:4212 */\n dup3\n /* \"#utility.yul\":4174:4213 */\n tag_69\n jump\t// in\n tag_141:\n /* \"#utility.yul\":4229:4290 */\n tag_142\n /* \"#utility.yul\":4283:4289 */\n dup2\n /* \"#utility.yul\":4278:4281 */\n dup6\n /* \"#utility.yul\":4229:4290 */\n tag_70\n jump\t// in\n tag_142:\n /* \"#utility.yul\":4222:4290 */\n swap4\n pop\n /* \"#utility.yul\":4299:4364 */\n tag_143\n /* \"#utility.yul\":4357:4363 */\n dup2\n /* \"#utility.yul\":4352:4355 */\n dup6\n /* \"#utility.yul\":4345:4349 */\n 0x20\n /* \"#utility.yul\":4338:4343 */\n dup7\n /* \"#utility.yul\":4334:4350 */\n add\n /* \"#utility.yul\":4299:4364 */\n tag_71\n jump\t// in\n tag_143:\n /* \"#utility.yul\":4389:4418 */\n tag_144\n /* \"#utility.yul\":4411:4417 */\n dup2\n /* \"#utility.yul\":4389:4418 */\n tag_59\n jump\t// in\n tag_144:\n /* \"#utility.yul\":4384:4387 */\n dup5\n /* \"#utility.yul\":4380:4419 */\n add\n /* \"#utility.yul\":4373:4419 */\n swap2\n pop\n /* \"#utility.yul\":4150:4425 */\n pop\n /* \"#utility.yul\":4068:4425 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4431:4627 */\n tag_73:\n /* \"#utility.yul\":4520:4530 */\n 0x00\n /* \"#utility.yul\":4555:4621 */\n tag_146\n /* \"#utility.yul\":4617:4620 */\n dup4\n /* \"#utility.yul\":4609:4615 */\n dup4\n /* \"#utility.yul\":4555:4621 */\n tag_72\n jump\t// in\n tag_146:\n /* \"#utility.yul\":4541:4621 */\n swap1\n pop\n /* \"#utility.yul\":4431:4627 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4633:4756 */\n tag_74:\n /* \"#utility.yul\":4713:4717 */\n 0x00\n /* \"#utility.yul\":4745:4749 */\n 0x20\n /* \"#utility.yul\":4740:4743 */\n dup3\n /* \"#utility.yul\":4736:4750 */\n add\n /* \"#utility.yul\":4728:4750 */\n swap1\n pop\n /* \"#utility.yul\":4633:4756 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4790:5781 */\n tag_75:\n /* \"#utility.yul\":4929:4932 */\n 0x00\n /* \"#utility.yul\":4958:5022 */\n tag_149\n /* \"#utility.yul\":5016:5021 */\n dup3\n /* \"#utility.yul\":4958:5022 */\n tag_66\n jump\t// in\n tag_149:\n /* \"#utility.yul\":5038:5134 */\n tag_150\n /* \"#utility.yul\":5127:5133 */\n dup2\n /* \"#utility.yul\":5122:5125 */\n dup6\n /* \"#utility.yul\":5038:5134 */\n tag_67\n jump\t// in\n tag_150:\n /* \"#utility.yul\":5031:5134 */\n swap4\n pop\n /* \"#utility.yul\":5160:5163 */\n dup4\n /* \"#utility.yul\":5205:5209 */\n 0x20\n /* \"#utility.yul\":5197:5203 */\n dup3\n /* \"#utility.yul\":5193:5210 */\n mul\n /* \"#utility.yul\":5188:5191 */\n dup6\n /* \"#utility.yul\":5184:5211 */\n add\n /* \"#utility.yul\":5235:5301 */\n tag_151\n /* \"#utility.yul\":5295:5300 */\n dup6\n /* \"#utility.yul\":5235:5301 */\n tag_68\n jump\t// in\n tag_151:\n /* \"#utility.yul\":5324:5331 */\n dup1\n /* \"#utility.yul\":5355:5356 */\n 0x00\n /* \"#utility.yul\":5340:5736 */\n tag_152:\n /* \"#utility.yul\":5365:5371 */\n dup6\n /* \"#utility.yul\":5362:5363 */\n dup2\n /* \"#utility.yul\":5359:5372 */\n lt\n /* \"#utility.yul\":5340:5736 */\n iszero\n tag_154\n jumpi\n /* \"#utility.yul\":5436:5445 */\n dup5\n /* \"#utility.yul\":5430:5434 */\n dup5\n /* \"#utility.yul\":5426:5446 */\n sub\n /* \"#utility.yul\":5421:5424 */\n dup10\n /* \"#utility.yul\":5414:5447 */\n mstore\n /* \"#utility.yul\":5487:5493 */\n dup2\n /* \"#utility.yul\":5481:5494 */\n mload\n /* \"#utility.yul\":5515:5599 */\n tag_155\n /* \"#utility.yul\":5594:5598 */\n dup6\n /* \"#utility.yul\":5579:5592 */\n dup3\n /* \"#utility.yul\":5515:5599 */\n tag_73\n jump\t// in\n tag_155:\n /* \"#utility.yul\":5507:5599 */\n swap5\n pop\n /* \"#utility.yul\":5622:5692 */\n tag_156\n /* \"#utility.yul\":5685:5691 */\n dup4\n /* \"#utility.yul\":5622:5692 */\n tag_74\n jump\t// in\n tag_156:\n /* \"#utility.yul\":5612:5692 */\n swap3\n pop\n /* \"#utility.yul\":5721:5725 */\n 0x20\n /* \"#utility.yul\":5716:5719 */\n dup11\n /* \"#utility.yul\":5712:5726 */\n add\n /* \"#utility.yul\":5705:5726 */\n swap10\n pop\n /* \"#utility.yul\":5400:5736 */\n pop\n /* \"#utility.yul\":5387:5388 */\n 0x01\n /* \"#utility.yul\":5384:5385 */\n dup2\n /* \"#utility.yul\":5380:5389 */\n add\n /* \"#utility.yul\":5375:5389 */\n swap1\n pop\n /* \"#utility.yul\":5340:5736 */\n jump(tag_152)\n tag_154:\n /* \"#utility.yul\":5344:5358 */\n pop\n /* \"#utility.yul\":5752:5756 */\n dup3\n /* \"#utility.yul\":5745:5756 */\n swap8\n pop\n /* \"#utility.yul\":5772:5775 */\n dup8\n /* \"#utility.yul\":5765:5775 */\n swap6\n pop\n /* \"#utility.yul\":4934:5781 */\n pop\n pop\n pop\n pop\n pop\n /* \"#utility.yul\":4790:5781 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5787:6200 */\n tag_13:\n /* \"#utility.yul\":5950:5954 */\n 0x00\n /* \"#utility.yul\":5988:5990 */\n 0x20\n /* \"#utility.yul\":5977:5986 */\n dup3\n /* \"#utility.yul\":5973:5991 */\n add\n /* \"#utility.yul\":5965:5991 */\n swap1\n pop\n /* \"#utility.yul\":6037:6046 */\n dup2\n /* \"#utility.yul\":6031:6035 */\n dup2\n /* \"#utility.yul\":6027:6047 */\n sub\n /* \"#utility.yul\":6023:6024 */\n 0x00\n /* \"#utility.yul\":6012:6021 */\n dup4\n /* \"#utility.yul\":6008:6025 */\n add\n /* \"#utility.yul\":6001:6048 */\n mstore\n /* \"#utility.yul\":6065:6193 */\n tag_158\n /* \"#utility.yul\":6188:6192 */\n dup2\n /* \"#utility.yul\":6179:6185 */\n dup5\n /* \"#utility.yul\":6065:6193 */\n tag_75\n jump\t// in\n tag_158:\n /* \"#utility.yul\":6057:6193 */\n swap1\n pop\n /* \"#utility.yul\":5787:6200 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6206:6386 */\n tag_76:\n /* \"#utility.yul\":6254:6331 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6251:6252 */\n 0x00\n /* \"#utility.yul\":6244:6332 */\n mstore\n /* \"#utility.yul\":6351:6355 */\n 0x22\n /* \"#utility.yul\":6348:6349 */\n 0x04\n /* \"#utility.yul\":6341:6356 */\n mstore\n /* \"#utility.yul\":6375:6379 */\n 0x24\n /* \"#utility.yul\":6372:6373 */\n 0x00\n /* \"#utility.yul\":6365:6380 */\n revert\n /* \"#utility.yul\":6392:6712 */\n tag_25:\n /* \"#utility.yul\":6436:6442 */\n 0x00\n /* \"#utility.yul\":6473:6474 */\n 0x02\n /* \"#utility.yul\":6467:6471 */\n dup3\n /* \"#utility.yul\":6463:6475 */\n div\n /* \"#utility.yul\":6453:6475 */\n swap1\n pop\n /* \"#utility.yul\":6520:6521 */\n 0x01\n /* \"#utility.yul\":6514:6518 */\n dup3\n /* \"#utility.yul\":6510:6522 */\n and\n /* \"#utility.yul\":6541:6559 */\n dup1\n /* \"#utility.yul\":6531:6612 */\n tag_161\n jumpi\n /* \"#utility.yul\":6597:6601 */\n 0x7f\n /* \"#utility.yul\":6589:6595 */\n dup3\n /* \"#utility.yul\":6585:6602 */\n and\n /* \"#utility.yul\":6575:6602 */\n swap2\n pop\n /* \"#utility.yul\":6531:6612 */\n tag_161:\n /* \"#utility.yul\":6659:6661 */\n 0x20\n /* \"#utility.yul\":6651:6657 */\n dup3\n /* \"#utility.yul\":6648:6662 */\n lt\n /* \"#utility.yul\":6628:6646 */\n dup2\n /* \"#utility.yul\":6625:6663 */\n sub\n /* \"#utility.yul\":6622:6706 */\n tag_162\n jumpi\n /* \"#utility.yul\":6678:6696 */\n tag_163\n tag_76\n jump\t// in\n tag_163:\n /* \"#utility.yul\":6622:6706 */\n tag_162:\n /* \"#utility.yul\":6443:6712 */\n pop\n /* \"#utility.yul\":6392:6712 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6718:6859 */\n tag_77:\n /* \"#utility.yul\":6767:6771 */\n 0x00\n /* \"#utility.yul\":6790:6793 */\n dup2\n /* \"#utility.yul\":6782:6793 */\n swap1\n pop\n /* \"#utility.yul\":6813:6816 */\n dup2\n /* \"#utility.yul\":6810:6811 */\n 0x00\n /* \"#utility.yul\":6803:6817 */\n mstore\n /* \"#utility.yul\":6847:6851 */\n 0x20\n /* \"#utility.yul\":6844:6845 */\n 0x00\n /* \"#utility.yul\":6834:6852 */\n keccak256\n /* \"#utility.yul\":6826:6852 */\n swap1\n pop\n /* \"#utility.yul\":6718:6859 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6865:6958 */\n tag_78:\n /* \"#utility.yul\":6902:6908 */\n 0x00\n /* \"#utility.yul\":6949:6951 */\n 0x20\n /* \"#utility.yul\":6944:6946 */\n 0x1f\n /* \"#utility.yul\":6937:6942 */\n dup4\n /* \"#utility.yul\":6933:6947 */\n add\n /* \"#utility.yul\":6929:6952 */\n div\n /* \"#utility.yul\":6919:6952 */\n swap1\n pop\n /* \"#utility.yul\":6865:6958 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6964:7071 */\n tag_79:\n /* \"#utility.yul\":7008:7016 */\n 0x00\n /* \"#utility.yul\":7058:7063 */\n dup3\n /* \"#utility.yul\":7052:7056 */\n dup3\n /* \"#utility.yul\":7048:7064 */\n shl\n /* \"#utility.yul\":7027:7064 */\n swap1\n pop\n /* \"#utility.yul\":6964:7071 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7077:7470 */\n tag_80:\n /* \"#utility.yul\":7146:7152 */\n 0x00\n /* \"#utility.yul\":7196:7197 */\n 0x08\n /* \"#utility.yul\":7184:7194 */\n dup4\n /* \"#utility.yul\":7180:7198 */\n mul\n /* \"#utility.yul\":7219:7316 */\n tag_168\n /* \"#utility.yul\":7249:7315 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":7238:7247 */\n dup3\n /* \"#utility.yul\":7219:7316 */\n tag_79\n jump\t// in\n tag_168:\n /* \"#utility.yul\":7337:7376 */\n tag_169\n /* \"#utility.yul\":7367:7375 */\n dup7\n /* \"#utility.yul\":7356:7365 */\n dup4\n /* \"#utility.yul\":7337:7376 */\n tag_79\n jump\t// in\n tag_169:\n /* \"#utility.yul\":7325:7376 */\n swap6\n pop\n /* \"#utility.yul\":7409:7413 */\n dup1\n /* \"#utility.yul\":7405:7414 */\n not\n /* \"#utility.yul\":7398:7403 */\n dup5\n /* \"#utility.yul\":7394:7415 */\n and\n /* \"#utility.yul\":7385:7415 */\n swap4\n pop\n /* \"#utility.yul\":7458:7462 */\n dup1\n /* \"#utility.yul\":7448:7456 */\n dup7\n /* \"#utility.yul\":7444:7463 */\n and\n /* \"#utility.yul\":7437:7442 */\n dup5\n /* \"#utility.yul\":7434:7464 */\n or\n /* \"#utility.yul\":7424:7464 */\n swap3\n pop\n /* \"#utility.yul\":7153:7470 */\n pop\n pop\n /* \"#utility.yul\":7077:7470 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7476:7553 */\n tag_81:\n /* \"#utility.yul\":7513:7520 */\n 0x00\n /* \"#utility.yul\":7542:7547 */\n dup2\n /* \"#utility.yul\":7531:7547 */\n swap1\n pop\n /* \"#utility.yul\":7476:7553 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7559:7619 */\n tag_82:\n /* \"#utility.yul\":7587:7590 */\n 0x00\n /* \"#utility.yul\":7608:7613 */\n dup2\n /* \"#utility.yul\":7601:7613 */\n swap1\n pop\n /* \"#utility.yul\":7559:7619 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7625:7767 */\n tag_83:\n /* \"#utility.yul\":7675:7684 */\n 0x00\n /* \"#utility.yul\":7708:7761 */\n tag_173\n /* \"#utility.yul\":7726:7760 */\n tag_174\n /* \"#utility.yul\":7735:7759 */\n tag_175\n /* \"#utility.yul\":7753:7758 */\n dup5\n /* \"#utility.yul\":7735:7759 */\n tag_81\n jump\t// in\n tag_175:\n /* \"#utility.yul\":7726:7760 */\n tag_82\n jump\t// in\n tag_174:\n /* \"#utility.yul\":7708:7761 */\n tag_81\n jump\t// in\n tag_173:\n /* \"#utility.yul\":7695:7761 */\n swap1\n pop\n /* \"#utility.yul\":7625:7767 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7773:7848 */\n tag_84:\n /* \"#utility.yul\":7816:7819 */\n 0x00\n /* \"#utility.yul\":7837:7842 */\n dup2\n /* \"#utility.yul\":7830:7842 */\n swap1\n pop\n /* \"#utility.yul\":7773:7848 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7854:8123 */\n tag_85:\n /* \"#utility.yul\":7964:8003 */\n tag_178\n /* \"#utility.yul\":7995:8002 */\n dup4\n /* \"#utility.yul\":7964:8003 */\n tag_83\n jump\t// in\n tag_178:\n /* \"#utility.yul\":8025:8116 */\n tag_179\n /* \"#utility.yul\":8074:8115 */\n tag_180\n /* \"#utility.yul\":8098:8114 */\n dup3\n /* \"#utility.yul\":8074:8115 */\n tag_84\n jump\t// in\n tag_180:\n /* \"#utility.yul\":8066:8072 */\n dup5\n /* \"#utility.yul\":8059:8063 */\n dup5\n /* \"#utility.yul\":8053:8064 */\n sload\n /* \"#utility.yul\":8025:8116 */\n tag_80\n jump\t// in\n tag_179:\n /* \"#utility.yul\":8019:8023 */\n dup3\n /* \"#utility.yul\":8012:8117 */\n sstore\n /* \"#utility.yul\":7930:8123 */\n pop\n /* \"#utility.yul\":7854:8123 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8129:8202 */\n tag_86:\n /* \"#utility.yul\":8174:8177 */\n 0x00\n /* \"#utility.yul\":8129:8202 */\n swap1\n jump\t// out\n /* \"#utility.yul\":8208:8397 */\n tag_87:\n /* \"#utility.yul\":8285:8317 */\n tag_183\n tag_86\n jump\t// in\n tag_183:\n /* \"#utility.yul\":8326:8391 */\n tag_184\n /* \"#utility.yul\":8384:8390 */\n dup2\n /* \"#utility.yul\":8376:8382 */\n dup5\n /* \"#utility.yul\":8370:8374 */\n dup5\n /* \"#utility.yul\":8326:8391 */\n tag_85\n jump\t// in\n tag_184:\n /* \"#utility.yul\":8261:8397 */\n pop\n /* \"#utility.yul\":8208:8397 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8403:8589 */\n tag_88:\n /* \"#utility.yul\":8463:8583 */\n tag_186:\n /* \"#utility.yul\":8480:8483 */\n dup2\n /* \"#utility.yul\":8473:8478 */\n dup2\n /* \"#utility.yul\":8470:8484 */\n lt\n /* \"#utility.yul\":8463:8583 */\n iszero\n tag_188\n jumpi\n /* \"#utility.yul\":8534:8573 */\n tag_189\n /* \"#utility.yul\":8571:8572 */\n 0x00\n /* \"#utility.yul\":8564:8569 */\n dup3\n /* \"#utility.yul\":8534:8573 */\n tag_87\n jump\t// in\n tag_189:\n /* \"#utility.yul\":8507:8508 */\n 0x01\n /* \"#utility.yul\":8500:8505 */\n dup2\n /* \"#utility.yul\":8496:8509 */\n add\n /* \"#utility.yul\":8487:8509 */\n swap1\n pop\n /* \"#utility.yul\":8463:8583 */\n jump(tag_186)\n tag_188:\n /* \"#utility.yul\":8403:8589 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8595:9138 */\n tag_89:\n /* \"#utility.yul\":8696:8698 */\n 0x1f\n /* \"#utility.yul\":8691:8694 */\n dup3\n /* \"#utility.yul\":8688:8699 */\n gt\n /* \"#utility.yul\":8685:9131 */\n iszero\n tag_191\n jumpi\n /* \"#utility.yul\":8730:8768 */\n tag_192\n /* \"#utility.yul\":8762:8767 */\n dup2\n /* \"#utility.yul\":8730:8768 */\n tag_77\n jump\t// in\n tag_192:\n /* \"#utility.yul\":8814:8843 */\n tag_193\n /* \"#utility.yul\":8832:8842 */\n dup5\n /* \"#utility.yul\":8814:8843 */\n tag_78\n jump\t// in\n tag_193:\n /* \"#utility.yul\":8804:8812 */\n dup2\n /* \"#utility.yul\":8800:8844 */\n add\n /* \"#utility.yul\":8997:8999 */\n 0x20\n /* \"#utility.yul\":8985:8995 */\n dup6\n /* \"#utility.yul\":8982:9000 */\n lt\n /* \"#utility.yul\":8979:9028 */\n iszero\n tag_194\n jumpi\n /* \"#utility.yul\":9018:9026 */\n dup2\n /* \"#utility.yul\":9003:9026 */\n swap1\n pop\n /* \"#utility.yul\":8979:9028 */\n tag_194:\n /* \"#utility.yul\":9041:9121 */\n tag_195\n /* \"#utility.yul\":9097:9119 */\n tag_196\n /* \"#utility.yul\":9115:9118 */\n dup6\n /* \"#utility.yul\":9097:9119 */\n tag_78\n jump\t// in\n tag_196:\n /* \"#utility.yul\":9087:9095 */\n dup4\n /* \"#utility.yul\":9083:9120 */\n add\n /* \"#utility.yul\":9070:9081 */\n dup3\n /* \"#utility.yul\":9041:9121 */\n tag_88\n jump\t// in\n tag_195:\n /* \"#utility.yul\":8700:9131 */\n pop\n pop\n /* \"#utility.yul\":8685:9131 */\n tag_191:\n /* \"#utility.yul\":8595:9138 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9144:9261 */\n tag_90:\n /* \"#utility.yul\":9198:9206 */\n 0x00\n /* \"#utility.yul\":9248:9253 */\n dup3\n /* \"#utility.yul\":9242:9246 */\n dup3\n /* \"#utility.yul\":9238:9254 */\n shr\n /* \"#utility.yul\":9217:9254 */\n swap1\n pop\n /* \"#utility.yul\":9144:9261 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9267:9436 */\n tag_91:\n /* \"#utility.yul\":9311:9317 */\n 0x00\n /* \"#utility.yul\":9344:9395 */\n tag_199\n /* \"#utility.yul\":9392:9393 */\n 0x00\n /* \"#utility.yul\":9388:9394 */\n not\n /* \"#utility.yul\":9380:9385 */\n dup5\n /* \"#utility.yul\":9377:9378 */\n 0x08\n /* \"#utility.yul\":9373:9386 */\n mul\n /* \"#utility.yul\":9344:9395 */\n tag_90\n jump\t// in\n tag_199:\n /* \"#utility.yul\":9340:9396 */\n not\n /* \"#utility.yul\":9425:9429 */\n dup1\n /* \"#utility.yul\":9419:9423 */\n dup4\n /* \"#utility.yul\":9415:9430 */\n and\n /* \"#utility.yul\":9405:9430 */\n swap2\n pop\n /* \"#utility.yul\":9318:9436 */\n pop\n /* \"#utility.yul\":9267:9436 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9441:9736 */\n tag_92:\n /* \"#utility.yul\":9517:9521 */\n 0x00\n /* \"#utility.yul\":9663:9692 */\n tag_201\n /* \"#utility.yul\":9688:9691 */\n dup4\n /* \"#utility.yul\":9682:9686 */\n dup4\n /* \"#utility.yul\":9663:9692 */\n tag_91\n jump\t// in\n tag_201:\n /* \"#utility.yul\":9655:9692 */\n swap2\n pop\n /* \"#utility.yul\":9725:9728 */\n dup3\n /* \"#utility.yul\":9722:9723 */\n 0x02\n /* \"#utility.yul\":9718:9729 */\n mul\n /* \"#utility.yul\":9712:9716 */\n dup3\n /* \"#utility.yul\":9709:9730 */\n or\n /* \"#utility.yul\":9701:9730 */\n swap1\n pop\n /* \"#utility.yul\":9441:9736 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9741:11136 */\n tag_19:\n /* \"#utility.yul\":9858:9895 */\n tag_203\n /* \"#utility.yul\":9891:9894 */\n dup3\n /* \"#utility.yul\":9858:9895 */\n tag_69\n jump\t// in\n tag_203:\n /* \"#utility.yul\":9960:9978 */\n 0xffffffffffffffff\n /* \"#utility.yul\":9952:9958 */\n dup2\n /* \"#utility.yul\":9949:9979 */\n gt\n /* \"#utility.yul\":9946:10002 */\n iszero\n tag_204\n jumpi\n /* \"#utility.yul\":9982:10000 */\n tag_205\n tag_45\n jump\t// in\n tag_205:\n /* \"#utility.yul\":9946:10002 */\n tag_204:\n /* \"#utility.yul\":10026:10064 */\n tag_206\n /* \"#utility.yul\":10058:10062 */\n dup3\n /* \"#utility.yul\":10052:10063 */\n sload\n /* \"#utility.yul\":10026:10064 */\n tag_25\n jump\t// in\n tag_206:\n /* \"#utility.yul\":10111:10178 */\n tag_207\n /* \"#utility.yul\":10171:10177 */\n dup3\n /* \"#utility.yul\":10163:10169 */\n dup3\n /* \"#utility.yul\":10157:10161 */\n dup6\n /* \"#utility.yul\":10111:10178 */\n tag_89\n jump\t// in\n tag_207:\n /* \"#utility.yul\":10205:10206 */\n 0x00\n /* \"#utility.yul\":10229:10233 */\n 0x20\n /* \"#utility.yul\":10216:10233 */\n swap1\n pop\n /* \"#utility.yul\":10261:10263 */\n 0x1f\n /* \"#utility.yul\":10253:10259 */\n dup4\n /* \"#utility.yul\":10250:10264 */\n gt\n /* \"#utility.yul\":10278:10279 */\n 0x01\n /* \"#utility.yul\":10273:10891 */\n dup2\n eq\n tag_209\n jumpi\n /* \"#utility.yul\":10935:10936 */\n 0x00\n /* \"#utility.yul\":10952:10958 */\n dup5\n /* \"#utility.yul\":10949:11026 */\n iszero\n tag_210\n jumpi\n /* \"#utility.yul\":11001:11010 */\n dup3\n /* \"#utility.yul\":10996:10999 */\n dup8\n /* \"#utility.yul\":10992:11011 */\n add\n /* \"#utility.yul\":10986:11012 */\n mload\n /* \"#utility.yul\":10977:11012 */\n swap1\n pop\n /* \"#utility.yul\":10949:11026 */\n tag_210:\n /* \"#utility.yul\":11052:11119 */\n tag_211\n /* \"#utility.yul\":11112:11118 */\n dup6\n /* \"#utility.yul\":11105:11110 */\n dup3\n /* \"#utility.yul\":11052:11119 */\n tag_92\n jump\t// in\n tag_211:\n /* \"#utility.yul\":11046:11050 */\n dup7\n /* \"#utility.yul\":11039:11120 */\n sstore\n /* \"#utility.yul\":10908:11130 */\n pop\n /* \"#utility.yul\":10243:11130 */\n jump(tag_208)\n /* \"#utility.yul\":10273:10891 */\n tag_209:\n /* \"#utility.yul\":10325:10329 */\n 0x1f\n /* \"#utility.yul\":10321:10330 */\n not\n /* \"#utility.yul\":10313:10319 */\n dup5\n /* \"#utility.yul\":10309:10331 */\n and\n /* \"#utility.yul\":10359:10396 */\n tag_212\n /* \"#utility.yul\":10391:10395 */\n dup7\n /* \"#utility.yul\":10359:10396 */\n tag_77\n jump\t// in\n tag_212:\n /* \"#utility.yul\":10418:10419 */\n 0x00\n /* \"#utility.yul\":10432:10640 */\n tag_213:\n /* \"#utility.yul\":10446:10453 */\n dup3\n /* \"#utility.yul\":10443:10444 */\n dup2\n /* \"#utility.yul\":10440:10454 */\n lt\n /* \"#utility.yul\":10432:10640 */\n iszero\n tag_215\n jumpi\n /* \"#utility.yul\":10525:10534 */\n dup5\n /* \"#utility.yul\":10520:10523 */\n dup10\n /* \"#utility.yul\":10516:10535 */\n add\n /* \"#utility.yul\":10510:10536 */\n mload\n /* \"#utility.yul\":10502:10508 */\n dup3\n /* \"#utility.yul\":10495:10537 */\n sstore\n /* \"#utility.yul\":10576:10577 */\n 0x01\n /* \"#utility.yul\":10568:10574 */\n dup3\n /* \"#utility.yul\":10564:10578 */\n add\n /* \"#utility.yul\":10554:10578 */\n swap2\n pop\n /* \"#utility.yul\":10623:10625 */\n 0x20\n /* \"#utility.yul\":10612:10621 */\n dup6\n /* \"#utility.yul\":10608:10626 */\n add\n /* \"#utility.yul\":10595:10626 */\n swap5\n pop\n /* \"#utility.yul\":10469:10473 */\n 0x20\n /* \"#utility.yul\":10466:10467 */\n dup2\n /* \"#utility.yul\":10462:10474 */\n add\n /* \"#utility.yul\":10457:10474 */\n swap1\n pop\n /* \"#utility.yul\":10432:10640 */\n jump(tag_213)\n tag_215:\n /* \"#utility.yul\":10668:10674 */\n dup7\n /* \"#utility.yul\":10659:10666 */\n dup4\n /* \"#utility.yul\":10656:10675 */\n lt\n /* \"#utility.yul\":10653:10832 */\n iszero\n tag_216\n jumpi\n /* \"#utility.yul\":10726:10735 */\n dup5\n /* \"#utility.yul\":10721:10724 */\n dup10\n /* \"#utility.yul\":10717:10736 */\n add\n /* \"#utility.yul\":10711:10737 */\n mload\n /* \"#utility.yul\":10769:10817 */\n tag_217\n /* \"#utility.yul\":10811:10815 */\n 0x1f\n /* \"#utility.yul\":10803:10809 */\n dup10\n /* \"#utility.yul\":10799:10816 */\n and\n /* \"#utility.yul\":10788:10797 */\n dup3\n /* \"#utility.yul\":10769:10817 */\n tag_91\n jump\t// in\n tag_217:\n /* \"#utility.yul\":10761:10767 */\n dup4\n /* \"#utility.yul\":10754:10818 */\n sstore\n /* \"#utility.yul\":10676:10832 */\n pop\n /* \"#utility.yul\":10653:10832 */\n tag_216:\n /* \"#utility.yul\":10878:10879 */\n 0x01\n /* \"#utility.yul\":10874:10875 */\n 0x02\n /* \"#utility.yul\":10866:10872 */\n dup9\n /* \"#utility.yul\":10862:10876 */\n mul\n /* \"#utility.yul\":10858:10880 */\n add\n /* \"#utility.yul\":10852:10856 */\n dup9\n /* \"#utility.yul\":10845:10881 */\n sstore\n /* \"#utility.yul\":10280:10891 */\n pop\n pop\n pop\n /* \"#utility.yul\":10243:11130 */\n tag_208:\n pop\n /* \"#utility.yul\":9833:11136 */\n pop\n pop\n pop\n /* \"#utility.yul\":9741:11136 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11142:11322 */\n tag_34:\n /* \"#utility.yul\":11190:11267 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":11187:11188 */\n 0x00\n /* \"#utility.yul\":11180:11268 */\n mstore\n /* \"#utility.yul\":11287:11291 */\n 0x32\n /* \"#utility.yul\":11284:11285 */\n 0x04\n /* \"#utility.yul\":11277:11292 */\n mstore\n /* \"#utility.yul\":11311:11315 */\n 0x24\n /* \"#utility.yul\":11308:11309 */\n 0x00\n /* \"#utility.yul\":11301:11316 */\n revert\n /* \"#utility.yul\":11328:11508 */\n tag_41:\n /* \"#utility.yul\":11376:11453 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":11373:11374 */\n 0x00\n /* \"#utility.yul\":11366:11454 */\n mstore\n /* \"#utility.yul\":11473:11477 */\n 0x31\n /* \"#utility.yul\":11470:11471 */\n 0x04\n /* \"#utility.yul\":11463:11478 */\n mstore\n /* \"#utility.yul\":11497:11501 */\n 0x24\n /* \"#utility.yul\":11494:11495 */\n 0x00\n /* \"#utility.yul\":11487:11502 */\n revert\n /* \"#utility.yul\":11514:11694 */\n tag_93:\n /* \"#utility.yul\":11562:11639 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":11559:11560 */\n 0x00\n /* \"#utility.yul\":11552:11640 */\n mstore\n /* \"#utility.yul\":11659:11663 */\n 0x11\n /* \"#utility.yul\":11656:11657 */\n 0x04\n /* \"#utility.yul\":11649:11664 */\n mstore\n /* \"#utility.yul\":11683:11687 */\n 0x24\n /* \"#utility.yul\":11680:11681 */\n 0x00\n /* \"#utility.yul\":11673:11688 */\n revert\n /* \"#utility.yul\":11700:11786 */\n tag_94:\n /* \"#utility.yul\":11735:11742 */\n 0x00\n /* \"#utility.yul\":11775:11779 */\n 0xff\n /* \"#utility.yul\":11768:11773 */\n dup3\n /* \"#utility.yul\":11764:11780 */\n and\n /* \"#utility.yul\":11753:11780 */\n swap1\n pop\n /* \"#utility.yul\":11700:11786 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11792:11959 */\n tag_53:\n /* \"#utility.yul\":11829:11832 */\n 0x00\n /* \"#utility.yul\":11852:11874 */\n tag_223\n /* \"#utility.yul\":11868:11873 */\n dup3\n /* \"#utility.yul\":11852:11874 */\n tag_94\n jump\t// in\n tag_223:\n /* \"#utility.yul\":11843:11874 */\n swap2\n pop\n /* \"#utility.yul\":11896:11900 */\n 0xff\n /* \"#utility.yul\":11889:11894 */\n dup3\n /* \"#utility.yul\":11886:11901 */\n sub\n /* \"#utility.yul\":11883:11924 */\n tag_224\n jumpi\n /* \"#utility.yul\":11904:11922 */\n tag_225\n tag_93\n jump\t// in\n tag_225:\n /* \"#utility.yul\":11883:11924 */\n tag_224:\n /* \"#utility.yul\":11951:11952 */\n 0x01\n /* \"#utility.yul\":11944:11949 */\n dup3\n /* \"#utility.yul\":11940:11953 */\n add\n /* \"#utility.yul\":11933:11953 */\n swap1\n pop\n /* \"#utility.yul\":11792:11959 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122022a448162e4b9a4b5284d11cbdd9e40b584b845e97b225b20b167de4167c240f64736f6c63430008120033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "60806040526040518060a001604052806001800b60010b8152602001600260010b8152602001600360010b8152602001600460010b8152602001600560010b8152506001906005610051929190610064565b5034801561005e57600080fd5b5061012e565b82805482825590600052602060002090600f016010900481019282156101005791602002820160005b838211156100d057835183826101000a81548161ffff021916908360010b61ffff160217905550926020019260020160208160010104928301926001030261008d565b80156100fe5782816101000a81549061ffff02191690556002016020816001010492830192600103026100d0565b505b50905061010d9190610111565b5090565b5b8082111561012a576000816000905550600101610112565b5090565b610a2e8061013d6000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c8063081ff9aa146100465780632e2dc43e1461006257806354353f2f14610080575b600080fd5b610060600480360381019061005b91906104a1565b61008a565b005b61006a6100c2565b604051610077919061062b565b60405180910390f35b61008861019b565b005b6000819080600181540180825580915050600190039060005260206000200160009091909190915090816100be9190610863565b5050565b60606000805480602002602001604051908101604052809291908181526020016000905b828210156101925783829060005260206000200180546101059061067c565b80601f01602080910402602001604051908101604052809291908181526020018280546101319061067c565b801561017e5780601f106101535761010080835404028352916020019161017e565b820191906000526020600020905b81548152906001019060200180831161016157829003601f168201915b5050505050815260200190600101906100e6565b50505050905090565b6001600a90806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908360010b61ffff16021790555060066001600581548110610200576101ff610935565b5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908360010b61ffff160217905550600160038154811061024757610246610935565b5b90600052602060002090601091828204019190066002026101000a81549061ffff0219169055600180548061027f5761027e610964565b5b60019003818190600052602060002090601091828204019190066002026101000a81549061ffff021916905590556000600567ffffffffffffffff8111156102ca576102c9610376565b5b6040519080825280602002602001820160405280156102f85781602001602082028036833780820191505090505b50905060005b81518160ff161015610343578060ff16828260ff168151811061032457610323610935565b5b602002602001018181525050808061033b906109cf565b9150506102fe565b5050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6103ae82610365565b810181811067ffffffffffffffff821117156103cd576103cc610376565b5b80604052505050565b60006103e0610347565b90506103ec82826103a5565b919050565b600067ffffffffffffffff82111561040c5761040b610376565b5b61041582610365565b9050602081019050919050565b82818337600083830152505050565b600061044461043f846103f1565b6103d6565b9050828152602081018484840111156104605761045f610360565b5b61046b848285610422565b509392505050565b600082601f8301126104885761048761035b565b5b8135610498848260208601610431565b91505092915050565b6000602082840312156104b7576104b6610351565b5b600082013567ffffffffffffffff8111156104d5576104d4610356565b5b6104e184828501610473565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610550578082015181840152602081019050610535565b60008484015250505050565b600061056782610516565b6105718185610521565b9350610581818560208601610532565b61058a81610365565b840191505092915050565b60006105a1838361055c565b905092915050565b6000602082019050919050565b60006105c1826104ea565b6105cb81856104f5565b9350836020820285016105dd85610506565b8060005b8581101561061957848403895281516105fa8582610595565b9450610605836105a9565b925060208a019950506001810190506105e1565b50829750879550505050505092915050565b6000602082019050818103600083015261064581846105b6565b905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061069457607f821691505b6020821081036106a7576106a661064d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261070f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826106d2565b61071986836106d2565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600061076061075b61075684610731565b61073b565b610731565b9050919050565b6000819050919050565b61077a83610745565b61078e61078682610767565b8484546106df565b825550505050565b600090565b6107a3610796565b6107ae818484610771565b505050565b5b818110156107d2576107c760008261079b565b6001810190506107b4565b5050565b601f821115610817576107e8816106ad565b6107f1846106c2565b81016020851015610800578190505b61081461080c856106c2565b8301826107b3565b50505b505050565b600082821c905092915050565b600061083a6000198460080261081c565b1980831691505092915050565b60006108538383610829565b9150826002028217905092915050565b61086c82610516565b67ffffffffffffffff81111561088557610884610376565b5b61088f825461067c565b61089a8282856107d6565b600060209050601f8311600181146108cd57600084156108bb578287015190505b6108c58582610847565b86555061092d565b601f1984166108db866106ad565b60005b82811015610903578489015182556001820191506020850194506020810190506108de565b86831015610920578489015161091c601f891682610829565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600060ff82169050919050565b60006109da826109c2565b915060ff82036109ed576109ec610993565b5b60018201905091905056fea264697066735822122022a448162e4b9a4b5284d11cbdd9e40b584b845e97b225b20b167de4167c240f64736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP1 SIGNEXTEND PUSH1 0x1 SIGNEXTEND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 PUSH1 0x1 SIGNEXTEND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 PUSH1 0x1 SIGNEXTEND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 PUSH1 0x1 SIGNEXTEND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x5 PUSH1 0x1 SIGNEXTEND DUP2 MSTORE POP PUSH1 0x1 SWAP1 PUSH1 0x5 PUSH2 0x51 SWAP3 SWAP2 SWAP1 PUSH2 0x64 JUMP JUMPDEST POP CALLVALUE DUP1 ISZERO PUSH2 0x5E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x12E JUMP JUMPDEST DUP3 DUP1 SLOAD DUP3 DUP3 SSTORE SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0xF ADD PUSH1 0x10 SWAP1 DIV DUP2 ADD SWAP3 DUP3 ISZERO PUSH2 0x100 JUMPI SWAP2 PUSH1 0x20 MUL DUP3 ADD PUSH1 0x0 JUMPDEST DUP4 DUP3 GT ISZERO PUSH2 0xD0 JUMPI DUP4 MLOAD DUP4 DUP3 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 SIGNEXTEND PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP SWAP3 PUSH1 0x20 ADD SWAP3 PUSH1 0x2 ADD PUSH1 0x20 DUP2 PUSH1 0x1 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0x8D JUMP JUMPDEST DUP1 ISZERO PUSH2 0xFE JUMPI DUP3 DUP2 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x2 ADD PUSH1 0x20 DUP2 PUSH1 0x1 ADD DIV SWAP3 DUP4 ADD SWAP3 PUSH1 0x1 SUB MUL PUSH2 0xD0 JUMP JUMPDEST POP JUMPDEST POP SWAP1 POP PUSH2 0x10D SWAP2 SWAP1 PUSH2 0x111 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x12A JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x112 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH2 0xA2E DUP1 PUSH2 0x13D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x81FF9AA EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x2E2DC43E EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0x54353F2F EQ PUSH2 0x80 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x4A1 JUMP JUMPDEST PUSH2 0x8A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x6A PUSH2 0xC2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x77 SWAP2 SWAP1 PUSH2 0x62B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x88 PUSH2 0x19B JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SWAP1 DUP2 PUSH2 0xBE SWAP2 SWAP1 PUSH2 0x863 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 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 PUSH1 0x0 SWAP1 JUMPDEST DUP3 DUP3 LT ISZERO PUSH2 0x192 JUMPI DUP4 DUP3 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP1 SLOAD PUSH2 0x105 SWAP1 PUSH2 0x67C 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 0x131 SWAP1 PUSH2 0x67C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x17E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x153 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x17E JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x161 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 0xE6 JUMP JUMPDEST POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0xA SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x10 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x2 MUL SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 SIGNEXTEND PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x6 PUSH1 0x1 PUSH1 0x5 DUP2 SLOAD DUP2 LT PUSH2 0x200 JUMPI PUSH2 0x1FF PUSH2 0x935 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x10 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x2 MUL PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH2 0xFFFF MUL NOT AND SWAP1 DUP4 PUSH1 0x1 SIGNEXTEND PUSH2 0xFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 DUP2 SLOAD DUP2 LT PUSH2 0x247 JUMPI PUSH2 0x246 PUSH2 0x935 JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x10 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x2 MUL PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE PUSH1 0x1 DUP1 SLOAD DUP1 PUSH2 0x27F JUMPI PUSH2 0x27E PUSH2 0x964 JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x10 SWAP2 DUP3 DUP3 DIV ADD SWAP2 SWAP1 MOD PUSH1 0x2 MUL PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH2 0xFFFF MUL NOT AND SWAP1 SSTORE SWAP1 SSTORE PUSH1 0x0 PUSH1 0x5 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2CA JUMPI PUSH2 0x2C9 PUSH2 0x376 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x2F8 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP2 MLOAD DUP2 PUSH1 0xFF AND LT ISZERO PUSH2 0x343 JUMPI DUP1 PUSH1 0xFF AND DUP3 DUP3 PUSH1 0xFF AND DUP2 MLOAD DUP2 LT PUSH2 0x324 JUMPI PUSH2 0x323 PUSH2 0x935 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 DUP2 MSTORE POP POP DUP1 DUP1 PUSH2 0x33B SWAP1 PUSH2 0x9CF JUMP JUMPDEST SWAP2 POP POP PUSH2 0x2FE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x3AE DUP3 PUSH2 0x365 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x3CD JUMPI PUSH2 0x3CC PUSH2 0x376 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3E0 PUSH2 0x347 JUMP JUMPDEST SWAP1 POP PUSH2 0x3EC DUP3 DUP3 PUSH2 0x3A5 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x40C JUMPI PUSH2 0x40B PUSH2 0x376 JUMP JUMPDEST JUMPDEST PUSH2 0x415 DUP3 PUSH2 0x365 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x444 PUSH2 0x43F DUP5 PUSH2 0x3F1 JUMP JUMPDEST PUSH2 0x3D6 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x460 JUMPI PUSH2 0x45F PUSH2 0x360 JUMP JUMPDEST JUMPDEST PUSH2 0x46B DUP5 DUP3 DUP6 PUSH2 0x422 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x488 JUMPI PUSH2 0x487 PUSH2 0x35B JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x498 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x431 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x4B7 JUMPI PUSH2 0x4B6 PUSH2 0x351 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x4D5 JUMPI PUSH2 0x4D4 PUSH2 0x356 JUMP JUMPDEST JUMPDEST PUSH2 0x4E1 DUP5 DUP3 DUP6 ADD PUSH2 0x473 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x550 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x535 JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x567 DUP3 PUSH2 0x516 JUMP JUMPDEST PUSH2 0x571 DUP2 DUP6 PUSH2 0x521 JUMP JUMPDEST SWAP4 POP PUSH2 0x581 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x532 JUMP JUMPDEST PUSH2 0x58A DUP2 PUSH2 0x365 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5A1 DUP4 DUP4 PUSH2 0x55C JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5C1 DUP3 PUSH2 0x4EA JUMP JUMPDEST PUSH2 0x5CB DUP2 DUP6 PUSH2 0x4F5 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0x5DD DUP6 PUSH2 0x506 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0x619 JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0x5FA DUP6 DUP3 PUSH2 0x595 JUMP JUMPDEST SWAP5 POP PUSH2 0x605 DUP4 PUSH2 0x5A9 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x5E1 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x645 DUP2 DUP5 PUSH2 0x5B6 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x694 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x6A7 JUMPI PUSH2 0x6A6 PUSH2 0x64D JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH2 0x70F PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x6D2 JUMP JUMPDEST PUSH2 0x719 DUP7 DUP4 PUSH2 0x6D2 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 PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x760 PUSH2 0x75B PUSH2 0x756 DUP5 PUSH2 0x731 JUMP JUMPDEST PUSH2 0x73B JUMP JUMPDEST PUSH2 0x731 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x77A DUP4 PUSH2 0x745 JUMP JUMPDEST PUSH2 0x78E PUSH2 0x786 DUP3 PUSH2 0x767 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x6DF JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x7A3 PUSH2 0x796 JUMP JUMPDEST PUSH2 0x7AE DUP2 DUP5 DUP5 PUSH2 0x771 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x7D2 JUMPI PUSH2 0x7C7 PUSH1 0x0 DUP3 PUSH2 0x79B JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x7B4 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x817 JUMPI PUSH2 0x7E8 DUP2 PUSH2 0x6AD JUMP JUMPDEST PUSH2 0x7F1 DUP5 PUSH2 0x6C2 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x800 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x814 PUSH2 0x80C DUP6 PUSH2 0x6C2 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x7B3 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x83A PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x81C JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x853 DUP4 DUP4 PUSH2 0x829 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x86C DUP3 PUSH2 0x516 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x885 JUMPI PUSH2 0x884 PUSH2 0x376 JUMP JUMPDEST JUMPDEST PUSH2 0x88F DUP3 SLOAD PUSH2 0x67C JUMP JUMPDEST PUSH2 0x89A DUP3 DUP3 DUP6 PUSH2 0x7D6 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x8CD JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x8BB JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x8C5 DUP6 DUP3 PUSH2 0x847 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x92D JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x8DB DUP7 PUSH2 0x6AD JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x903 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 0x8DE JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x920 JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x91C PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x829 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 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9DA DUP3 PUSH2 0x9C2 JUMP JUMPDEST SWAP2 POP PUSH1 0xFF DUP3 SUB PUSH2 0x9ED JUMPI PUSH2 0x9EC PUSH2 0x993 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x22 LOG4 BASEFEE AND 0x2E 0x4B SWAP11 0x4B MSTORE DUP5 0xD1 SHR 0xBD 0xD9 0xE4 SIGNEXTEND PC 0x4B DUP5 0x5E SWAP8 0xB2 0x25 0xB2 SIGNEXTEND AND PUSH30 0xE4167C240F64736F6C634300081200330000000000000000000000000000 ",
"sourceMap": "62:968:0:-:0;;;133:36;;;;;;;;158:1;133:36;;;;;;;;161:1;133:36;;;;;;163:1;133:36;;;;;;165:1;133:36;;;;;;167:1;133:36;;;;;;;;;;;;;:::i;:::-;;62:968;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@example_76": {
"entryPoint": 411,
"id": 76,
"parameterSlots": 0,
"returnSlots": 0
},
"@getOrders_85": {
"entryPoint": 194,
"id": 85,
"parameterSlots": 0,
"returnSlots": 1
},
"@newOrder_97": {
"entryPoint": 138,
"id": 97,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 1073,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 1139,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptr": {
"entryPoint": 1185,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encodeUpdatedPos_t_string_memory_ptr_to_t_string_memory_ptr": {
"entryPoint": 1429,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_array$_t_string_memory_ptr_$dyn_memory_ptr_to_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack": {
"entryPoint": 1462,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr": {
"entryPoint": 1372,
"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": 1579,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 982,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 839,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 1009,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr": {
"entryPoint": 1286,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 1709,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr": {
"entryPoint": 1258,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1302,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_nextElement_t_array$_t_string_memory_ptr_$dyn_memory_ptr": {
"entryPoint": 1449,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack": {
"entryPoint": 1269,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr": {
"entryPoint": 1313,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 2006,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 1841,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 2498,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1971,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1861,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 2147,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 1058,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 1330,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 1730,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1660,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 2119,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 933,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 1851,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint8": {
"entryPoint": 2511,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 2089,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 2451,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1613,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 2404,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 2357,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 886,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1895,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 859,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 864,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 854,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 849,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 869,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 1746,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 2076,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1947,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 1759,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1905,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1942,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:11962:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "423:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "433:6:1"
},
"nodeType": "YulFunctionCall",
"src": "433:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "433:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "334:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "546:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "566:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "556:6:1"
},
"nodeType": "YulFunctionCall",
"src": "556:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "556:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "457:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "628:54:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "638:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "656:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "663:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "652:3:1"
},
"nodeType": "YulFunctionCall",
"src": "652:14:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "672:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "668:3:1"
},
"nodeType": "YulFunctionCall",
"src": "668:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "648:3:1"
},
"nodeType": "YulFunctionCall",
"src": "648:28:1"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "638:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "621:6:1",
"type": ""
}
],
"src": "580:102:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "716:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "733:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "736:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "726:6:1"
},
"nodeType": "YulFunctionCall",
"src": "726:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "726:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "830:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "833:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "823:6:1"
},
"nodeType": "YulFunctionCall",
"src": "823:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "823:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "854:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "857:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "847:6:1"
},
"nodeType": "YulFunctionCall",
"src": "847:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "847:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "688:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "917:238:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "927:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "949:6:1"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "979:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:1"
},
"nodeType": "YulFunctionCall",
"src": "957:27:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "945:3:1"
},
"nodeType": "YulFunctionCall",
"src": "945:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "931:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1096:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1098:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1098:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1098:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1039:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1051:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1036:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1036:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1075:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1087:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1072:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1072:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1033:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1033:62:1"
},
"nodeType": "YulIf",
"src": "1030:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1134:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1138:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1127:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1127:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1127:22:1"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "903:6:1",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "911:4:1",
"type": ""
}
],
"src": "874:281:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:88:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "1222:18:1"
},
"nodeType": "YulFunctionCall",
"src": "1222:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1212:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1271:6:1"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1279:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "1251:19:1"
},
"nodeType": "YulFunctionCall",
"src": "1251:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1251:33:1"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1186:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1195:6:1",
"type": ""
}
],
"src": "1161:129:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1363:241:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1468:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1470:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1470:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1470:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1440:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1448:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1437:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1437:30:1"
},
"nodeType": "YulIf",
"src": "1434:56:1"
},
{
"nodeType": "YulAssignment",
"src": "1500:37:1",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1530:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "1508:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1508:29:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1500:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1574:23:1",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1586:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1592:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1582:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1582:15:1"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1574:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1347:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1358:4:1",
"type": ""
}
],
"src": "1296:308:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1674:82:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1697:3:1"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1702:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1707:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "1684:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1684:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "1684:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1734:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1739:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1730:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1730:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1748:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1723:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1723:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "1723:27:1"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1656:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1661:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1666:6:1",
"type": ""
}
],
"src": "1610:146:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1846:341:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1856:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1923:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1881:41:1"
},
"nodeType": "YulFunctionCall",
"src": "1881:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "1865:15:1"
},
"nodeType": "YulFunctionCall",
"src": "1865:66:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1856:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1947:5:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1954:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1940:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1940:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "1940:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1970:27:1",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1985:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1992:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1981:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1981:16:1"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1974:3:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2035:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "2037:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2037:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2037:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2016:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2021:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2012:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2012:16:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2030:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2009:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2009:25:1"
},
"nodeType": "YulIf",
"src": "2006:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2164:3:1"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2169:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2174:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2127:36:1"
},
"nodeType": "YulFunctionCall",
"src": "2127:54:1"
},
"nodeType": "YulExpressionStatement",
"src": "2127:54:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1819:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1824:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1832:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1840:5:1",
"type": ""
}
],
"src": "1762:425:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2269:278:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2318:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "2320:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2320:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2320:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2297:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2305:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2293:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2293:17:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2312:3:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2289:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2289:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2282:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2282:35:1"
},
"nodeType": "YulIf",
"src": "2279:122:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2410:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2437:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2424:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2424:20:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2414:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2453:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2514:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2522:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2510:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2510:17:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2529:6:1"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2537:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2462:47:1"
},
"nodeType": "YulFunctionCall",
"src": "2462:79:1"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2453:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2247:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2255:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2263:5:1",
"type": ""
}
],
"src": "2207:340:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2629:433:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2675:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2677:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2677:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2677:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2650:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2659:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2646:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2646:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2671:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2642:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2642:32:1"
},
"nodeType": "YulIf",
"src": "2639:119:1"
},
{
"nodeType": "YulBlock",
"src": "2768:287:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2783:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2814:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2825:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2810:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2810:17:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2797:12:1"
},
"nodeType": "YulFunctionCall",
"src": "2797:31:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2787:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2875:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "2877:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2877:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2877:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2847:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2855:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2844:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2844:30:1"
},
"nodeType": "YulIf",
"src": "2841:117:1"
},
{
"nodeType": "YulAssignment",
"src": "2972:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3017:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3028:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3013:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3013:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3037:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2982:30:1"
},
"nodeType": "YulFunctionCall",
"src": "2982:63:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2972:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2599:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2610:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2622:6:1",
"type": ""
}
],
"src": "2553:509:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3152:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3163:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3179:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3173:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3173:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3163:6:1"
}
]
}
]
},
"name": "array_length_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3135:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3145:6:1",
"type": ""
}
],
"src": "3068:124:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3319:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3336:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3341:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3329:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3329:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "3329:19:1"
},
{
"nodeType": "YulAssignment",
"src": "3357:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3376:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3381:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3372:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3372:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3357:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_string_memory_ptr_$dyn_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3291:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3296:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "3307:11:1",
"type": ""
}
],
"src": "3198:194:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3480:60:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3490:11:1",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "3498:3:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3490:4:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3511:22:1",
"value": {
"arguments": [
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "3523:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3528:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3519:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3519:14:1"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3511:4:1"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_string_memory_ptr_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "3467:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3475:4:1",
"type": ""
}
],
"src": "3398:142:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3605:40:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3616:22:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3632:5:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3626:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3626:12:1"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3616:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3588:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3598:6:1",
"type": ""
}
],
"src": "3546:99:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3737:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3754:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3759:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3747:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3747:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "3747:19:1"
},
{
"nodeType": "YulAssignment",
"src": "3775:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3794:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3799:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3790:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3790:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3775:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3709:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3714:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "3725:11:1",
"type": ""
}
],
"src": "3651:159:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3878:184:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3888:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3897:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3892:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3957:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3982:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3987:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3978:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3978:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4001:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4006:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3997:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3997:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3991:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3991:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3971:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3971:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "3971:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3918:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3921:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3915:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3915:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3929:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3931:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3940:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3943:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3936:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3936:10:1"
},
"variableNames": [
{
"name": "i",
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