Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save qxrein/23821ab0681ae008eccd07d669314a7a to your computer and use it in GitHub Desktop.
Save qxrein/23821ab0681ae008eccd07d669314a7a 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.27+commit.40a35a09.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)
pragma solidity ^0.8.20;
import {IAccessControl} from "./IAccessControl.sol";
import {Context} from "../utils/Context.sol";
import {ERC165} from "../utils/introspection/ERC165.sol";
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address account => bool) hasRole;
bytes32 adminRole;
}
mapping(bytes32 role => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
modifier onlyRole(bytes32 role) {
_checkRole(role);
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view virtual returns (bool) {
return _roles[role].hasRole[account];
}
/**
* @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`
* is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.
*/
function _checkRole(bytes32 role) internal view virtual {
_checkRole(role, _msgSender());
}
function _checkRole(bytes32 role, address account) internal view virtual {
if (!hasRole(role, account)) {
revert AccessControlUnauthorizedAccount(account, role);
}
}
function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {
return _roles[role].adminRole;
}
function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
function renounceRole(bytes32 role, address callerConfirmation) public virtual {
if (callerConfirmation != _msgSender()) {
revert AccessControlBadConfirmation();
}
_revokeRole(role, callerConfirmation);
}
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
function _grantRole(bytes32 role, address account) internal virtual returns (bool) {
if (!hasRole(role, account)) {
_roles[role].hasRole[account] = true;
emit RoleGranted(role, account, _msgSender());
return true;
} else {
return false;
}
}
function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {
if (hasRole(role, account)) {
_roles[role].hasRole[account] = false;
emit RoleRevoked(role, account, _msgSender());
return true;
} else {
return false;
}
}
}
{
"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": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"DEFAULT_ADMIN_ROLE()": "a217fddf",
"getRoleAdmin(bytes32)": "248a9ca3",
"grantRole(bytes32,address)": "2f2ff15d",
"hasRole(bytes32,address)": "91d14854",
"renounceRole(bytes32,address)": "36568abe",
"revokeRole(bytes32,address)": "d547741f",
"supportsInterface(bytes4)": "01ffc9a7"
}
},
"abi": [
{
"inputs": [],
"name": "AccessControlBadConfirmation",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "bytes32",
"name": "neededRole",
"type": "bytes32"
}
],
"name": "AccessControlUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "previousAdminRole",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "newAdminRole",
"type": "bytes32"
}
],
"name": "RoleAdminChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleGranted",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleRevoked",
"type": "event"
},
{
"inputs": [],
"name": "DEFAULT_ADMIN_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
}
],
"name": "getRoleAdmin",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "grantRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "hasRole",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "callerConfirmation",
"type": "address"
}
],
"name": "renounceRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "revokeRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.27+commit.40a35a09"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "AccessControlBadConfirmation",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "bytes32",
"name": "neededRole",
"type": "bytes32"
}
],
"name": "AccessControlUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "previousAdminRole",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "newAdminRole",
"type": "bytes32"
}
],
"name": "RoleAdminChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleGranted",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleRevoked",
"type": "event"
},
{
"inputs": [],
"name": "DEFAULT_ADMIN_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
}
],
"name": "getRoleAdmin",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "grantRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "hasRole",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "callerConfirmation",
"type": "address"
}
],
"name": "renounceRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "revokeRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"errors": {
"AccessControlBadConfirmation()": [
{
"details": "The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}."
}
],
"AccessControlUnauthorizedAccount(address,bytes32)": [
{
"details": "The `account` is missing a role."
}
]
},
"events": {
"RoleAdminChanged(bytes32,bytes32,bytes32)": {
"details": "Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this."
},
"RoleGranted(bytes32,address,address)": {
"details": "Emitted when `account` is granted `role`. `sender` is the account that originated the contract call, an admin role bearer except when using {AccessControl-_setupRole}."
},
"RoleRevoked(bytes32,address,address)": {
"details": "Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call: - if using `revokeRole`, it is the admin role bearer - if using `renounceRole`, it is the role bearer (i.e. `account`)"
}
},
"kind": "dev",
"methods": {
"getRoleAdmin(bytes32)": {
"details": "Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {AccessControl-_setRoleAdmin}."
},
"grantRole(bytes32,address)": {
"details": "Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role."
},
"hasRole(bytes32,address)": {
"details": "Returns `true` if `account` has been granted `role`."
},
"renounceRole(bytes32,address)": {
"details": "Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`."
},
"revokeRole(bytes32,address)": {
"details": "Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts/access/AccessControl.sol": "AccessControl"
},
"evmVersion": "cancun",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts/access/AccessControl.sol": {
"keccak256": "0xb90ee968f687b47fab28e7e82284d2899e631205cff648881a5c9206629af45d",
"license": "MIT",
"urls": [
"bzz-raw://644d1b2d5e150d2363fb88871e365ebdbbd95b48e427b6c9382f2d06766f0dd9",
"dweb:/ipfs/QmcAjy2dRr1k6TXia12uYNfdAXXBBQyNp3pCi9PypHoL7w"
]
},
".deps/npm/@openzeppelin/contracts/access/IAccessControl.sol": {
"keccak256": "0xb6b36edd6a2999fd243ff226d6cbf84bd71af2432bbd0dfe19392996a1d9cb41",
"license": "MIT",
"urls": [
"bzz-raw://1fd2f35495652e57e3f99bc6c510bc5f7dd398a176ea2e72d8ed730aebc6ca26",
"dweb:/ipfs/QmTQV6X4gkikTib49cho5iDX3JvSQbdsoEChoDwrk3CbbH"
]
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2",
"license": "MIT",
"urls": [
"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12",
"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF"
]
},
".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0x9e8778b14317ba9e256c30a76fd6c32b960af621987f56069e1e819c77c6a133",
"license": "MIT",
"urls": [
"bzz-raw://1777404f1dcd0fac188e55a288724ec3c67b45288e49cc64723e95e702b49ab8",
"dweb:/ipfs/QmZFdC626GButBApwDUvvTnUzdinevC3B24d7yyh57XkiA"
]
},
".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x4296879f55019b23e135000eb36896057e7101fb7fb859c5ef690cf14643757b",
"license": "MIT",
"urls": [
"bzz-raw://87b3541437c8c443ccd36795e56a338ed12855eec17f8da624511b8d1a7e14df",
"dweb:/ipfs/QmeJQCtZrQjtJLr6u7ZHWeH3pBnjtLWzvRrKViAi7UZqxL"
]
}
},
"version": 1
}
{
"id": "d6f970fb89fc10c8e29c2ff0f323cab8",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.27",
"solcLongVersion": "0.8.27+commit.40a35a09",
"input": {
"language": "Solidity",
"sources": {
".deps/npm/@openzeppelin/contracts/access/AccessControl.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/AccessControl.sol)\n\npragma solidity ^0.8.20;\n\nimport {IAccessControl} from \"./IAccessControl.sol\";\nimport {Context} from \"../utils/Context.sol\";\nimport {ERC165} from \"../utils/introspection/ERC165.sol\";\n\n\nabstract contract AccessControl is Context, IAccessControl, ERC165 {\n struct RoleData {\n mapping(address account => bool) hasRole;\n bytes32 adminRole;\n }\n\n mapping(bytes32 role => RoleData) private _roles;\n\n bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;\n\n\n modifier onlyRole(bytes32 role) {\n _checkRole(role);\n _;\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev Returns `true` if `account` has been granted `role`.\n */\n function hasRole(bytes32 role, address account) public view virtual returns (bool) {\n return _roles[role].hasRole[account];\n }\n\n /**\n * @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`\n * is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier.\n */\n function _checkRole(bytes32 role) internal view virtual {\n _checkRole(role, _msgSender());\n }\n\n\n function _checkRole(bytes32 role, address account) internal view virtual {\n if (!hasRole(role, account)) {\n revert AccessControlUnauthorizedAccount(account, role);\n }\n }\n\n function getRoleAdmin(bytes32 role) public view virtual returns (bytes32) {\n return _roles[role].adminRole;\n }\n\n\n function grantRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {\n _grantRole(role, account);\n }\n\n function revokeRole(bytes32 role, address account) public virtual onlyRole(getRoleAdmin(role)) {\n _revokeRole(role, account);\n }\n\n\n function renounceRole(bytes32 role, address callerConfirmation) public virtual {\n if (callerConfirmation != _msgSender()) {\n revert AccessControlBadConfirmation();\n }\n\n _revokeRole(role, callerConfirmation);\n }\n\n\n function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {\n bytes32 previousAdminRole = getRoleAdmin(role);\n _roles[role].adminRole = adminRole;\n emit RoleAdminChanged(role, previousAdminRole, adminRole);\n }\n\n\n function _grantRole(bytes32 role, address account) internal virtual returns (bool) {\n if (!hasRole(role, account)) {\n _roles[role].hasRole[account] = true;\n emit RoleGranted(role, account, _msgSender());\n return true;\n } else {\n return false;\n }\n }\n\n function _revokeRole(bytes32 role, address account) internal virtual returns (bool) {\n if (hasRole(role, account)) {\n _roles[role].hasRole[account] = false;\n emit RoleRevoked(role, account, _msgSender());\n return true;\n } else {\n return false;\n }\n }\n}\n"
},
".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC165} from \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n */\nabstract contract ERC165 is IERC165 {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {\n return interfaceId == type(IERC165).interfaceId;\n }\n}\n"
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n\n function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n"
},
".deps/npm/@openzeppelin/contracts/access/IAccessControl.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev External interface of AccessControl declared to support ERC165 detection.\n */\ninterface IAccessControl {\n /**\n * @dev The `account` is missing a role.\n */\n error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);\n\n /**\n * @dev The caller of a function is not the expected one.\n *\n * NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\n */\n error AccessControlBadConfirmation();\n\n /**\n * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`\n *\n * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite\n * {RoleAdminChanged} not being emitted signaling this.\n */\n event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);\n\n /**\n * @dev Emitted when `account` is granted `role`.\n *\n * `sender` is the account that originated the contract call, an admin role\n * bearer except when using {AccessControl-_setupRole}.\n */\n event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);\n\n /**\n * @dev Emitted when `account` is revoked `role`.\n *\n * `sender` is the account that originated the contract call:\n * - if using `revokeRole`, it is the admin role bearer\n * - if using `renounceRole`, it is the role bearer (i.e. `account`)\n */\n event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);\n\n /**\n * @dev Returns `true` if `account` has been granted `role`.\n */\n function hasRole(bytes32 role, address account) external view returns (bool);\n\n /**\n * @dev Returns the admin role that controls `role`. See {grantRole} and\n * {revokeRole}.\n *\n * To change a role's admin, use {AccessControl-_setRoleAdmin}.\n */\n function getRoleAdmin(bytes32 role) external view returns (bytes32);\n\n /**\n * @dev Grants `role` to `account`.\n *\n * If `account` had not been already granted `role`, emits a {RoleGranted}\n * event.\n *\n * Requirements:\n *\n * - the caller must have ``role``'s admin role.\n */\n function grantRole(bytes32 role, address account) external;\n\n /**\n * @dev Revokes `role` from `account`.\n *\n * If `account` had been granted `role`, emits a {RoleRevoked} event.\n *\n * Requirements:\n *\n * - the caller must have ``role``'s admin role.\n */\n function revokeRole(bytes32 role, address account) external;\n\n /**\n * @dev Revokes `role` from the calling account.\n *\n * Roles are often managed via {grantRole} and {revokeRole}: this function's\n * purpose is to provide a mechanism for accounts to lose their privileges\n * if they are compromised (such as when a trusted device is misplaced).\n *\n * If the calling account had been granted `role`, emits a {RoleRevoked}\n * event.\n *\n * Requirements:\n *\n * - the caller must be `callerConfirmation`.\n */\n function renounceRole(bytes32 role, address callerConfirmation) external;\n}\n"
},
".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
},
"remappings": []
}
},
"output": {
"contracts": {
".deps/npm/@openzeppelin/contracts/access/AccessControl.sol": {
"AccessControl": {
"abi": [
{
"inputs": [],
"name": "AccessControlBadConfirmation",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "bytes32",
"name": "neededRole",
"type": "bytes32"
}
],
"name": "AccessControlUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "previousAdminRole",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "newAdminRole",
"type": "bytes32"
}
],
"name": "RoleAdminChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleGranted",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleRevoked",
"type": "event"
},
{
"inputs": [],
"name": "DEFAULT_ADMIN_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
}
],
"name": "getRoleAdmin",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "grantRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "hasRole",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "callerConfirmation",
"type": "address"
}
],
"name": "renounceRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "revokeRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"errors": {
"AccessControlBadConfirmation()": [
{
"details": "The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}."
}
],
"AccessControlUnauthorizedAccount(address,bytes32)": [
{
"details": "The `account` is missing a role."
}
]
},
"events": {
"RoleAdminChanged(bytes32,bytes32,bytes32)": {
"details": "Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this."
},
"RoleGranted(bytes32,address,address)": {
"details": "Emitted when `account` is granted `role`. `sender` is the account that originated the contract call, an admin role bearer except when using {AccessControl-_setupRole}."
},
"RoleRevoked(bytes32,address,address)": {
"details": "Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call: - if using `revokeRole`, it is the admin role bearer - if using `renounceRole`, it is the role bearer (i.e. `account`)"
}
},
"kind": "dev",
"methods": {
"getRoleAdmin(bytes32)": {
"details": "Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {AccessControl-_setRoleAdmin}."
},
"grantRole(bytes32,address)": {
"details": "Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role."
},
"hasRole(bytes32,address)": {
"details": "Returns `true` if `account` has been granted `role`."
},
"renounceRole(bytes32,address)": {
"details": "Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`."
},
"revokeRole(bytes32,address)": {
"details": "Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"DEFAULT_ADMIN_ROLE()": "a217fddf",
"getRoleAdmin(bytes32)": "248a9ca3",
"grantRole(bytes32,address)": "2f2ff15d",
"hasRole(bytes32,address)": "91d14854",
"renounceRole(bytes32,address)": "36568abe",
"revokeRole(bytes32,address)": "d547741f",
"supportsInterface(bytes4)": "01ffc9a7"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"DEFAULT_ADMIN_ROLE\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}]},\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call, an admin role bearer except when using {AccessControl-_setupRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call: - if using `revokeRole`, it is the admin role bearer - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {AccessControl-_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role.\"},\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts/access/AccessControl.sol\":\"AccessControl\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts/access/AccessControl.sol\":{\"keccak256\":\"0xb90ee968f687b47fab28e7e82284d2899e631205cff648881a5c9206629af45d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://644d1b2d5e150d2363fb88871e365ebdbbd95b48e427b6c9382f2d06766f0dd9\",\"dweb:/ipfs/QmcAjy2dRr1k6TXia12uYNfdAXXBBQyNp3pCi9PypHoL7w\"]},\".deps/npm/@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xb6b36edd6a2999fd243ff226d6cbf84bd71af2432bbd0dfe19392996a1d9cb41\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1fd2f35495652e57e3f99bc6c510bc5f7dd398a176ea2e72d8ed730aebc6ca26\",\"dweb:/ipfs/QmTQV6X4gkikTib49cho5iDX3JvSQbdsoEChoDwrk3CbbH\"]},\".deps/npm/@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]},\".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x9e8778b14317ba9e256c30a76fd6c32b960af621987f56069e1e819c77c6a133\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1777404f1dcd0fac188e55a288724ec3c67b45288e49cc64723e95e702b49ab8\",\"dweb:/ipfs/QmZFdC626GButBApwDUvvTnUzdinevC3B24d7yyh57XkiA\"]},\".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x4296879f55019b23e135000eb36896057e7101fb7fb859c5ef690cf14643757b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://87b3541437c8c443ccd36795e56a338ed12855eec17f8da624511b8d1a7e14df\",\"dweb:/ipfs/QmeJQCtZrQjtJLr6u7ZHWeH3pBnjtLWzvRrKViAi7UZqxL\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 25,
"contract": ".deps/npm/@openzeppelin/contracts/access/AccessControl.sol:AccessControl",
"label": "_roles",
"offset": 0,
"slot": "0",
"type": "t_mapping(t_bytes32,t_struct(RoleData)20_storage)"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
},
"t_bool": {
"encoding": "inplace",
"label": "bool",
"numberOfBytes": "1"
},
"t_bytes32": {
"encoding": "inplace",
"label": "bytes32",
"numberOfBytes": "32"
},
"t_mapping(t_address,t_bool)": {
"encoding": "mapping",
"key": "t_address",
"label": "mapping(address => bool)",
"numberOfBytes": "32",
"value": "t_bool"
},
"t_mapping(t_bytes32,t_struct(RoleData)20_storage)": {
"encoding": "mapping",
"key": "t_bytes32",
"label": "mapping(bytes32 => struct AccessControl.RoleData)",
"numberOfBytes": "32",
"value": "t_struct(RoleData)20_storage"
},
"t_struct(RoleData)20_storage": {
"encoding": "inplace",
"label": "struct AccessControl.RoleData",
"members": [
{
"astId": 17,
"contract": ".deps/npm/@openzeppelin/contracts/access/AccessControl.sol:AccessControl",
"label": "hasRole",
"offset": 0,
"slot": "0",
"type": "t_mapping(t_address,t_bool)"
},
{
"astId": 19,
"contract": ".deps/npm/@openzeppelin/contracts/access/AccessControl.sol:AccessControl",
"label": "adminRole",
"offset": 0,
"slot": "1",
"type": "t_bytes32"
}
],
"numberOfBytes": "64"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
".deps/npm/@openzeppelin/contracts/access/IAccessControl.sol": {
"IAccessControl": {
"abi": [
{
"inputs": [],
"name": "AccessControlBadConfirmation",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "bytes32",
"name": "neededRole",
"type": "bytes32"
}
],
"name": "AccessControlUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "previousAdminRole",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "newAdminRole",
"type": "bytes32"
}
],
"name": "RoleAdminChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleGranted",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleRevoked",
"type": "event"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
}
],
"name": "getRoleAdmin",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "grantRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "hasRole",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "callerConfirmation",
"type": "address"
}
],
"name": "renounceRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "revokeRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "External interface of AccessControl declared to support ERC165 detection.",
"errors": {
"AccessControlBadConfirmation()": [
{
"details": "The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}."
}
],
"AccessControlUnauthorizedAccount(address,bytes32)": [
{
"details": "The `account` is missing a role."
}
]
},
"events": {
"RoleAdminChanged(bytes32,bytes32,bytes32)": {
"details": "Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this."
},
"RoleGranted(bytes32,address,address)": {
"details": "Emitted when `account` is granted `role`. `sender` is the account that originated the contract call, an admin role bearer except when using {AccessControl-_setupRole}."
},
"RoleRevoked(bytes32,address,address)": {
"details": "Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call: - if using `revokeRole`, it is the admin role bearer - if using `renounceRole`, it is the role bearer (i.e. `account`)"
}
},
"kind": "dev",
"methods": {
"getRoleAdmin(bytes32)": {
"details": "Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {AccessControl-_setRoleAdmin}."
},
"grantRole(bytes32,address)": {
"details": "Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role."
},
"hasRole(bytes32,address)": {
"details": "Returns `true` if `account` has been granted `role`."
},
"renounceRole(bytes32,address)": {
"details": "Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`."
},
"revokeRole(bytes32,address)": {
"details": "Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"getRoleAdmin(bytes32)": "248a9ca3",
"grantRole(bytes32,address)": "2f2ff15d",
"hasRole(bytes32,address)": "91d14854",
"renounceRole(bytes32,address)": "36568abe",
"revokeRole(bytes32,address)": "d547741f"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"AccessControlBadConfirmation\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"bytes32\",\"name\":\"neededRole\",\"type\":\"bytes32\"}],\"name\":\"AccessControlUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"previousAdminRole\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"newAdminRole\",\"type\":\"bytes32\"}],\"name\":\"RoleAdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleGranted\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"RoleRevoked\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"}],\"name\":\"getRoleAdmin\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"grantRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"hasRole\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"callerConfirmation\",\"type\":\"address\"}],\"name\":\"renounceRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"role\",\"type\":\"bytes32\"},{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"revokeRole\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"External interface of AccessControl declared to support ERC165 detection.\",\"errors\":{\"AccessControlBadConfirmation()\":[{\"details\":\"The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.\"}],\"AccessControlUnauthorizedAccount(address,bytes32)\":[{\"details\":\"The `account` is missing a role.\"}]},\"events\":{\"RoleAdminChanged(bytes32,bytes32,bytes32)\":{\"details\":\"Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this.\"},\"RoleGranted(bytes32,address,address)\":{\"details\":\"Emitted when `account` is granted `role`. `sender` is the account that originated the contract call, an admin role bearer except when using {AccessControl-_setupRole}.\"},\"RoleRevoked(bytes32,address,address)\":{\"details\":\"Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call: - if using `revokeRole`, it is the admin role bearer - if using `renounceRole`, it is the role bearer (i.e. `account`)\"}},\"kind\":\"dev\",\"methods\":{\"getRoleAdmin(bytes32)\":{\"details\":\"Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {AccessControl-_setRoleAdmin}.\"},\"grantRole(bytes32,address)\":{\"details\":\"Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role.\"},\"hasRole(bytes32,address)\":{\"details\":\"Returns `true` if `account` has been granted `role`.\"},\"renounceRole(bytes32,address)\":{\"details\":\"Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`.\"},\"revokeRole(bytes32,address)\":{\"details\":\"Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts/access/IAccessControl.sol\":\"IAccessControl\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts/access/IAccessControl.sol\":{\"keccak256\":\"0xb6b36edd6a2999fd243ff226d6cbf84bd71af2432bbd0dfe19392996a1d9cb41\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1fd2f35495652e57e3f99bc6c510bc5f7dd398a176ea2e72d8ed730aebc6ca26\",\"dweb:/ipfs/QmTQV6X4gkikTib49cho5iDX3JvSQbdsoEChoDwrk3CbbH\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"Context": {
"abi": [],
"devdoc": {
"details": "Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Provides information about the current execution context, including the sender of the transaction and its data. While these are generally available via msg.sender and msg.data, they should not be accessed in such a direct manner, since when dealing with meta-transactions the account sending and paying for execution may not be the actual sender (as far as an application is concerned). This contract is only required for intermediate, library-like contracts.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"ERC165": {
"abi": [
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of the {IERC165} interface. Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ```",
"kind": "dev",
"methods": {
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"supportsInterface(bytes4)": "01ffc9a7"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Implementation of the {IERC165} interface. Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check for the additional interface id that will be supported. For example: ```solidity function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); } ```\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"See {IERC165-supportsInterface}.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol\":\"ERC165\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol\":{\"keccak256\":\"0x9e8778b14317ba9e256c30a76fd6c32b960af621987f56069e1e819c77c6a133\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1777404f1dcd0fac188e55a288724ec3c67b45288e49cc64723e95e702b49ab8\",\"dweb:/ipfs/QmZFdC626GButBApwDUvvTnUzdinevC3B24d7yyh57XkiA\"]},\".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x4296879f55019b23e135000eb36896057e7101fb7fb859c5ef690cf14643757b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://87b3541437c8c443ccd36795e56a338ed12855eec17f8da624511b8d1a7e14df\",\"dweb:/ipfs/QmeJQCtZrQjtJLr6u7ZHWeH3pBnjtLWzvRrKViAi7UZqxL\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"IERC165": {
"abi": [
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Interface of the ERC165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[EIP]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.",
"kind": "dev",
"methods": {
"supportsInterface(bytes4)": {
"details": "Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"supportsInterface(bytes4)": "01ffc9a7"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.27+commit.40a35a09\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"bytes4\",\"name\":\"interfaceId\",\"type\":\"bytes4\"}],\"name\":\"supportsInterface\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Interface of the ERC165 standard, as defined in the https://eips.ethereum.org/EIPS/eip-165[EIP]. Implementers can declare support of contract interfaces, which can then be queried by others ({ERC165Checker}). For an implementation, see {ERC165}.\",\"kind\":\"dev\",\"methods\":{\"supportsInterface(bytes4)\":{\"details\":\"Returns true if this contract implements the interface defined by `interfaceId`. See the corresponding https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] to learn more about how these ids are created. This function call must use less than 30 000 gas.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol\":\"IERC165\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol\":{\"keccak256\":\"0x4296879f55019b23e135000eb36896057e7101fb7fb859c5ef690cf14643757b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://87b3541437c8c443ccd36795e56a338ed12855eec17f8da624511b8d1a7e14df\",\"dweb:/ipfs/QmeJQCtZrQjtJLr6u7ZHWeH3pBnjtLWzvRrKViAi7UZqxL\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
".deps/npm/@openzeppelin/contracts/access/AccessControl.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts/access/AccessControl.sol",
"exportedSymbols": {
"AccessControl": [
285
],
"Context": [
398
],
"ERC165": [
422
],
"IAccessControl": [
368
]
},
"id": 286,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".20"
],
"nodeType": "PragmaDirective",
"src": "108:24:0"
},
{
"absolutePath": ".deps/npm/@openzeppelin/contracts/access/IAccessControl.sol",
"file": "./IAccessControl.sol",
"id": 3,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 286,
"sourceUnit": 369,
"src": "134:52:0",
"symbolAliases": [
{
"foreign": {
"id": 2,
"name": "IAccessControl",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 368,
"src": "142:14:0",
"typeDescriptions": {}
},
"nameLocation": "-1:-1:-1"
}
],
"unitAlias": ""
},
{
"absolutePath": ".deps/npm/@openzeppelin/contracts/utils/Context.sol",
"file": "../utils/Context.sol",
"id": 5,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 286,
"sourceUnit": 399,
"src": "187:45:0",
"symbolAliases": [
{
"foreign": {
"id": 4,
"name": "Context",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 398,
"src": "195:7:0",
"typeDescriptions": {}
},
"nameLocation": "-1:-1:-1"
}
],
"unitAlias": ""
},
{
"absolutePath": ".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol",
"file": "../utils/introspection/ERC165.sol",
"id": 7,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 286,
"sourceUnit": 423,
"src": "233:57:0",
"symbolAliases": [
{
"foreign": {
"id": 6,
"name": "ERC165",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 422,
"src": "241:6:0",
"typeDescriptions": {}
},
"nameLocation": "-1:-1:-1"
}
],
"unitAlias": ""
},
{
"abstract": true,
"baseContracts": [
{
"baseName": {
"id": 8,
"name": "Context",
"nameLocations": [
"328:7:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 398,
"src": "328:7:0"
},
"id": 9,
"nodeType": "InheritanceSpecifier",
"src": "328:7:0"
},
{
"baseName": {
"id": 10,
"name": "IAccessControl",
"nameLocations": [
"337:14:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 368,
"src": "337:14:0"
},
"id": 11,
"nodeType": "InheritanceSpecifier",
"src": "337:14:0"
},
{
"baseName": {
"id": 12,
"name": "ERC165",
"nameLocations": [
"353:6:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 422,
"src": "353:6:0"
},
"id": 13,
"nodeType": "InheritanceSpecifier",
"src": "353:6:0"
}
],
"canonicalName": "AccessControl",
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 285,
"linearizedBaseContracts": [
285,
422,
434,
368,
398
],
"name": "AccessControl",
"nameLocation": "311:13:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"canonicalName": "AccessControl.RoleData",
"id": 20,
"members": [
{
"constant": false,
"id": 17,
"mutability": "mutable",
"name": "hasRole",
"nameLocation": "425:7:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "392:40:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_bool_$",
"typeString": "mapping(address => bool)"
},
"typeName": {
"id": 16,
"keyName": "account",
"keyNameLocation": "408:7:0",
"keyType": {
"id": 14,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "400:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "Mapping",
"src": "392:32:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_bool_$",
"typeString": "mapping(address => bool)"
},
"valueName": "",
"valueNameLocation": "-1:-1:-1",
"valueType": {
"id": 15,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "419:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 19,
"mutability": "mutable",
"name": "adminRole",
"nameLocation": "450:9:0",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "442:17:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 18,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "442:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
}
],
"name": "RoleData",
"nameLocation": "373:8:0",
"nodeType": "StructDefinition",
"scope": 285,
"src": "366:100:0",
"visibility": "public"
},
{
"constant": false,
"id": 25,
"mutability": "mutable",
"name": "_roles",
"nameLocation": "514:6:0",
"nodeType": "VariableDeclaration",
"scope": 285,
"src": "472:48:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_bytes32_$_t_struct$_RoleData_$20_storage_$",
"typeString": "mapping(bytes32 => struct AccessControl.RoleData)"
},
"typeName": {
"id": 24,
"keyName": "role",
"keyNameLocation": "488:4:0",
"keyType": {
"id": 21,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "480:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"nodeType": "Mapping",
"src": "472:33:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_bytes32_$_t_struct$_RoleData_$20_storage_$",
"typeString": "mapping(bytes32 => struct AccessControl.RoleData)"
},
"valueName": "",
"valueNameLocation": "-1:-1:-1",
"valueType": {
"id": 23,
"nodeType": "UserDefinedTypeName",
"pathNode": {
"id": 22,
"name": "RoleData",
"nameLocations": [
"496:8:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 20,
"src": "496:8:0"
},
"referencedDeclaration": 20,
"src": "496:8:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_RoleData_$20_storage_ptr",
"typeString": "struct AccessControl.RoleData"
}
}
},
"visibility": "private"
},
{
"constant": true,
"functionSelector": "a217fddf",
"id": 28,
"mutability": "constant",
"name": "DEFAULT_ADMIN_ROLE",
"nameLocation": "551:18:0",
"nodeType": "VariableDeclaration",
"scope": 285,
"src": "527:49:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 26,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "527:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"value": {
"hexValue": "30783030",
"id": 27,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "572:4:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0x00"
},
"visibility": "public"
},
{
"body": {
"id": 37,
"nodeType": "Block",
"src": "616:44:0",
"statements": [
{
"expression": {
"arguments": [
{
"id": 33,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 30,
"src": "637:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
],
"id": 32,
"name": "_checkRole",
"nodeType": "Identifier",
"overloadedDeclarations": [
91,
111
],
"referencedDeclaration": 91,
"src": "626:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$_t_bytes32_$returns$__$",
"typeString": "function (bytes32) view"
}
},
"id": 34,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "626:16:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 35,
"nodeType": "ExpressionStatement",
"src": "626:16:0"
},
{
"id": 36,
"nodeType": "PlaceholderStatement",
"src": "652:1:0"
}
]
},
"id": 38,
"name": "onlyRole",
"nameLocation": "593:8:0",
"nodeType": "ModifierDefinition",
"parameters": {
"id": 31,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 30,
"mutability": "mutable",
"name": "role",
"nameLocation": "610:4:0",
"nodeType": "VariableDeclaration",
"scope": 38,
"src": "602:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 29,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "602:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
}
],
"src": "601:14:0"
},
"src": "584:76:0",
"virtual": false,
"visibility": "internal"
},
{
"baseFunctions": [
421
],
"body": {
"id": 59,
"nodeType": "Block",
"src": "818:111:0",
"statements": [
{
"expression": {
"commonType": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"id": 57,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"commonType": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
},
"id": 52,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"id": 47,
"name": "interfaceId",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 41,
"src": "835:11:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
},
"nodeType": "BinaryOperation",
"operator": "==",
"rightExpression": {
"expression": {
"arguments": [
{
"id": 49,
"name": "IAccessControl",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 368,
"src": "855:14:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_contract$_IAccessControl_$368_$",
"typeString": "type(contract IAccessControl)"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_type$_t_contract$_IAccessControl_$368_$",
"typeString": "type(contract IAccessControl)"
}
],
"id": 48,
"name": "type",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967269,
"src": "850:4:0",
"typeDescriptions": {
"typeIdentifier": "t_function_metatype_pure$__$returns$__$",
"typeString": "function () pure"
}
},
"id": 50,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "850:20:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_magic_meta_type_t_contract$_IAccessControl_$368",
"typeString": "type(contract IAccessControl)"
}
},
"id": 51,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "871:11:0",
"memberName": "interfaceId",
"nodeType": "MemberAccess",
"src": "850:32:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
},
"src": "835:47:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"nodeType": "BinaryOperation",
"operator": "||",
"rightExpression": {
"arguments": [
{
"id": 55,
"name": "interfaceId",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 41,
"src": "910:11:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
],
"expression": {
"id": 53,
"name": "super",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967271,
"src": "886:5:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_super$_AccessControl_$285_$",
"typeString": "type(contract super AccessControl)"
}
},
"id": 54,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "892:17:0",
"memberName": "supportsInterface",
"nodeType": "MemberAccess",
"referencedDeclaration": 421,
"src": "886:23:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$_t_bytes4_$returns$_t_bool_$",
"typeString": "function (bytes4) view returns (bool)"
}
},
"id": 56,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "886:36:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"src": "835:87:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"functionReturnParameters": 46,
"id": 58,
"nodeType": "Return",
"src": "828:94:0"
}
]
},
"documentation": {
"id": 39,
"nodeType": "StructuredDocumentation",
"src": "666:56:0",
"text": " @dev See {IERC165-supportsInterface}."
},
"functionSelector": "01ffc9a7",
"id": 60,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "supportsInterface",
"nameLocation": "736:17:0",
"nodeType": "FunctionDefinition",
"overrides": {
"id": 43,
"nodeType": "OverrideSpecifier",
"overrides": [],
"src": "794:8:0"
},
"parameters": {
"id": 42,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 41,
"mutability": "mutable",
"name": "interfaceId",
"nameLocation": "761:11:0",
"nodeType": "VariableDeclaration",
"scope": 60,
"src": "754:18:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
},
"typeName": {
"id": 40,
"name": "bytes4",
"nodeType": "ElementaryTypeName",
"src": "754:6:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
},
"visibility": "internal"
}
],
"src": "753:20:0"
},
"returnParameters": {
"id": 46,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 45,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 60,
"src": "812:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 44,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "812:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "811:6:0"
},
"scope": 285,
"src": "727:202:0",
"stateMutability": "view",
"virtual": true,
"visibility": "public"
},
{
"baseFunctions": [
335
],
"body": {
"id": 77,
"nodeType": "Block",
"src": "1099:53:0",
"statements": [
{
"expression": {
"baseExpression": {
"expression": {
"baseExpression": {
"id": 70,
"name": "_roles",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 25,
"src": "1116:6:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_bytes32_$_t_struct$_RoleData_$20_storage_$",
"typeString": "mapping(bytes32 => struct AccessControl.RoleData storage ref)"
}
},
"id": 72,
"indexExpression": {
"id": 71,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 63,
"src": "1123:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "1116:12:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_RoleData_$20_storage",
"typeString": "struct AccessControl.RoleData storage ref"
}
},
"id": 73,
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"memberLocation": "1129:7:0",
"memberName": "hasRole",
"nodeType": "MemberAccess",
"referencedDeclaration": 17,
"src": "1116:20:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_bool_$",
"typeString": "mapping(address => bool)"
}
},
"id": 75,
"indexExpression": {
"id": 74,
"name": "account",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 65,
"src": "1137:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "1116:29:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"functionReturnParameters": 69,
"id": 76,
"nodeType": "Return",
"src": "1109:36:0"
}
]
},
"documentation": {
"id": 61,
"nodeType": "StructuredDocumentation",
"src": "935:76:0",
"text": " @dev Returns `true` if `account` has been granted `role`."
},
"functionSelector": "91d14854",
"id": 78,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "hasRole",
"nameLocation": "1025:7:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 66,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 63,
"mutability": "mutable",
"name": "role",
"nameLocation": "1041:4:0",
"nodeType": "VariableDeclaration",
"scope": 78,
"src": "1033:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 62,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "1033:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 65,
"mutability": "mutable",
"name": "account",
"nameLocation": "1055:7:0",
"nodeType": "VariableDeclaration",
"scope": 78,
"src": "1047:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 64,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1047:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1032:31:0"
},
"returnParameters": {
"id": 69,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 68,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 78,
"src": "1093:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 67,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "1093:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "1092:6:0"
},
"scope": 285,
"src": "1016:136:0",
"stateMutability": "view",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 90,
"nodeType": "Block",
"src": "1417:47:0",
"statements": [
{
"expression": {
"arguments": [
{
"id": 85,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 81,
"src": "1438:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
{
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 86,
"name": "_msgSender",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 380,
"src": "1444:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 87,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1444:12:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 84,
"name": "_checkRole",
"nodeType": "Identifier",
"overloadedDeclarations": [
91,
111
],
"referencedDeclaration": 111,
"src": "1427:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$_t_bytes32_$_t_address_$returns$__$",
"typeString": "function (bytes32,address) view"
}
},
"id": 88,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1427:30:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 89,
"nodeType": "ExpressionStatement",
"src": "1427:30:0"
}
]
},
"documentation": {
"id": 79,
"nodeType": "StructuredDocumentation",
"src": "1158:198:0",
"text": " @dev Reverts with an {AccessControlUnauthorizedAccount} error if `_msgSender()`\n is missing `role`. Overriding this function changes the behavior of the {onlyRole} modifier."
},
"id": 91,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_checkRole",
"nameLocation": "1370:10:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 82,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 81,
"mutability": "mutable",
"name": "role",
"nameLocation": "1389:4:0",
"nodeType": "VariableDeclaration",
"scope": 91,
"src": "1381:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 80,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "1381:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
}
],
"src": "1380:14:0"
},
"returnParameters": {
"id": 83,
"nodeType": "ParameterList",
"parameters": [],
"src": "1417:0:0"
},
"scope": 285,
"src": "1361:103:0",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
},
{
"body": {
"id": 110,
"nodeType": "Block",
"src": "1544:124:0",
"statements": [
{
"condition": {
"id": 102,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"nodeType": "UnaryOperation",
"operator": "!",
"prefix": true,
"src": "1558:23:0",
"subExpression": {
"arguments": [
{
"id": 99,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 93,
"src": "1567:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
{
"id": 100,
"name": "account",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 95,
"src": "1573:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 98,
"name": "hasRole",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 78,
"src": "1559:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$",
"typeString": "function (bytes32,address) view returns (bool)"
}
},
"id": 101,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1559:22:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 109,
"nodeType": "IfStatement",
"src": "1554:108:0",
"trueBody": {
"id": 108,
"nodeType": "Block",
"src": "1583:79:0",
"statements": [
{
"errorCall": {
"arguments": [
{
"id": 104,
"name": "account",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 95,
"src": "1637:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"id": 105,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 93,
"src": "1646:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
],
"id": 103,
"name": "AccessControlUnauthorizedAccount",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 295,
"src": "1604:32:0",
"typeDescriptions": {
"typeIdentifier": "t_function_error_pure$_t_address_$_t_bytes32_$returns$_t_error_$",
"typeString": "function (address,bytes32) pure returns (error)"
}
},
"id": 106,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1604:47:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_error",
"typeString": "error"
}
},
"id": 107,
"nodeType": "RevertStatement",
"src": "1597:54:0"
}
]
}
}
]
},
"id": 111,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_checkRole",
"nameLocation": "1480:10:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 96,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 93,
"mutability": "mutable",
"name": "role",
"nameLocation": "1499:4:0",
"nodeType": "VariableDeclaration",
"scope": 111,
"src": "1491:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 92,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "1491:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 95,
"mutability": "mutable",
"name": "account",
"nameLocation": "1513:7:0",
"nodeType": "VariableDeclaration",
"scope": 111,
"src": "1505:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 94,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1505:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1490:31:0"
},
"returnParameters": {
"id": 97,
"nodeType": "ParameterList",
"parameters": [],
"src": "1544:0:0"
},
"scope": 285,
"src": "1471:197:0",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
},
{
"baseFunctions": [
343
],
"body": {
"id": 123,
"nodeType": "Block",
"src": "1748:46:0",
"statements": [
{
"expression": {
"expression": {
"baseExpression": {
"id": 118,
"name": "_roles",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 25,
"src": "1765:6:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_bytes32_$_t_struct$_RoleData_$20_storage_$",
"typeString": "mapping(bytes32 => struct AccessControl.RoleData storage ref)"
}
},
"id": 120,
"indexExpression": {
"id": 119,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 113,
"src": "1772:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "1765:12:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_RoleData_$20_storage",
"typeString": "struct AccessControl.RoleData storage ref"
}
},
"id": 121,
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"memberLocation": "1778:9:0",
"memberName": "adminRole",
"nodeType": "MemberAccess",
"referencedDeclaration": 19,
"src": "1765:22:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"functionReturnParameters": 117,
"id": 122,
"nodeType": "Return",
"src": "1758:29:0"
}
]
},
"functionSelector": "248a9ca3",
"id": 124,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "getRoleAdmin",
"nameLocation": "1683:12:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 114,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 113,
"mutability": "mutable",
"name": "role",
"nameLocation": "1704:4:0",
"nodeType": "VariableDeclaration",
"scope": 124,
"src": "1696:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 112,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "1696:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
}
],
"src": "1695:14:0"
},
"returnParameters": {
"id": 117,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 116,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 124,
"src": "1739:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 115,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "1739:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
}
],
"src": "1738:9:0"
},
"scope": 285,
"src": "1674:120:0",
"stateMutability": "view",
"virtual": true,
"visibility": "public"
},
{
"baseFunctions": [
351
],
"body": {
"id": 141,
"nodeType": "Block",
"src": "1895:42:0",
"statements": [
{
"expression": {
"arguments": [
{
"id": 137,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 126,
"src": "1916:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
{
"id": 138,
"name": "account",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 128,
"src": "1922:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 136,
"name": "_grantRole",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 247,
"src": "1905:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$",
"typeString": "function (bytes32,address) returns (bool)"
}
},
"id": 139,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1905:25:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 140,
"nodeType": "ExpressionStatement",
"src": "1905:25:0"
}
]
},
"functionSelector": "2f2ff15d",
"id": 142,
"implemented": true,
"kind": "function",
"modifiers": [
{
"arguments": [
{
"arguments": [
{
"id": 132,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 126,
"src": "1888:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
],
"id": 131,
"name": "getRoleAdmin",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 124,
"src": "1875:12:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$",
"typeString": "function (bytes32) view returns (bytes32)"
}
},
"id": 133,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1875:18:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
}
],
"id": 134,
"kind": "modifierInvocation",
"modifierName": {
"id": 130,
"name": "onlyRole",
"nameLocations": [
"1866:8:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 38,
"src": "1866:8:0"
},
"nodeType": "ModifierInvocation",
"src": "1866:28:0"
}
],
"name": "grantRole",
"nameLocation": "1810:9:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 129,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 126,
"mutability": "mutable",
"name": "role",
"nameLocation": "1828:4:0",
"nodeType": "VariableDeclaration",
"scope": 142,
"src": "1820:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 125,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "1820:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 128,
"mutability": "mutable",
"name": "account",
"nameLocation": "1842:7:0",
"nodeType": "VariableDeclaration",
"scope": 142,
"src": "1834:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 127,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1834:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1819:31:0"
},
"returnParameters": {
"id": 135,
"nodeType": "ParameterList",
"parameters": [],
"src": "1895:0:0"
},
"scope": 285,
"src": "1801:136:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "public"
},
{
"baseFunctions": [
359
],
"body": {
"id": 159,
"nodeType": "Block",
"src": "2038:43:0",
"statements": [
{
"expression": {
"arguments": [
{
"id": 155,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 144,
"src": "2060:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
{
"id": 156,
"name": "account",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 146,
"src": "2066:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 154,
"name": "_revokeRole",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 284,
"src": "2048:11:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$",
"typeString": "function (bytes32,address) returns (bool)"
}
},
"id": 157,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2048:26:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 158,
"nodeType": "ExpressionStatement",
"src": "2048:26:0"
}
]
},
"functionSelector": "d547741f",
"id": 160,
"implemented": true,
"kind": "function",
"modifiers": [
{
"arguments": [
{
"arguments": [
{
"id": 150,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 144,
"src": "2031:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
],
"id": 149,
"name": "getRoleAdmin",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 124,
"src": "2018:12:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$",
"typeString": "function (bytes32) view returns (bytes32)"
}
},
"id": 151,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2018:18:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
}
],
"id": 152,
"kind": "modifierInvocation",
"modifierName": {
"id": 148,
"name": "onlyRole",
"nameLocations": [
"2009:8:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 38,
"src": "2009:8:0"
},
"nodeType": "ModifierInvocation",
"src": "2009:28:0"
}
],
"name": "revokeRole",
"nameLocation": "1952:10:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 147,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 144,
"mutability": "mutable",
"name": "role",
"nameLocation": "1971:4:0",
"nodeType": "VariableDeclaration",
"scope": 160,
"src": "1963:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 143,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "1963:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 146,
"mutability": "mutable",
"name": "account",
"nameLocation": "1985:7:0",
"nodeType": "VariableDeclaration",
"scope": 160,
"src": "1977:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 145,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1977:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1962:31:0"
},
"returnParameters": {
"id": 153,
"nodeType": "ParameterList",
"parameters": [],
"src": "2038:0:0"
},
"scope": 285,
"src": "1943:138:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "public"
},
{
"baseFunctions": [
367
],
"body": {
"id": 181,
"nodeType": "Block",
"src": "2167:166:0",
"statements": [
{
"condition": {
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 170,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"id": 167,
"name": "callerConfirmation",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 164,
"src": "2181:18:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "!=",
"rightExpression": {
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 168,
"name": "_msgSender",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 380,
"src": "2203:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 169,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2203:12:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "2181:34:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 175,
"nodeType": "IfStatement",
"src": "2177:102:0",
"trueBody": {
"id": 174,
"nodeType": "Block",
"src": "2217:62:0",
"statements": [
{
"errorCall": {
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 171,
"name": "AccessControlBadConfirmation",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 298,
"src": "2238:28:0",
"typeDescriptions": {
"typeIdentifier": "t_function_error_pure$__$returns$_t_error_$",
"typeString": "function () pure returns (error)"
}
},
"id": 172,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2238:30:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_error",
"typeString": "error"
}
},
"id": 173,
"nodeType": "RevertStatement",
"src": "2231:37:0"
}
]
}
},
{
"expression": {
"arguments": [
{
"id": 177,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 162,
"src": "2301:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
{
"id": 178,
"name": "callerConfirmation",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 164,
"src": "2307:18:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 176,
"name": "_revokeRole",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 284,
"src": "2289:11:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_bytes32_$_t_address_$returns$_t_bool_$",
"typeString": "function (bytes32,address) returns (bool)"
}
},
"id": 179,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2289:37:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 180,
"nodeType": "ExpressionStatement",
"src": "2289:37:0"
}
]
},
"functionSelector": "36568abe",
"id": 182,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "renounceRole",
"nameLocation": "2097:12:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 165,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 162,
"mutability": "mutable",
"name": "role",
"nameLocation": "2118:4:0",
"nodeType": "VariableDeclaration",
"scope": 182,
"src": "2110:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 161,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "2110:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 164,
"mutability": "mutable",
"name": "callerConfirmation",
"nameLocation": "2132:18:0",
"nodeType": "VariableDeclaration",
"scope": 182,
"src": "2124:26:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 163,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2124:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "2109:42:0"
},
"returnParameters": {
"id": 166,
"nodeType": "ParameterList",
"parameters": [],
"src": "2167:0:0"
},
"scope": 285,
"src": "2088:245:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 208,
"nodeType": "Block",
"src": "2413:174:0",
"statements": [
{
"assignments": [
190
],
"declarations": [
{
"constant": false,
"id": 190,
"mutability": "mutable",
"name": "previousAdminRole",
"nameLocation": "2431:17:0",
"nodeType": "VariableDeclaration",
"scope": 208,
"src": "2423:25:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 189,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "2423:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
}
],
"id": 194,
"initialValue": {
"arguments": [
{
"id": 192,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 184,
"src": "2464:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
],
"id": 191,
"name": "getRoleAdmin",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 124,
"src": "2451:12:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$_t_bytes32_$returns$_t_bytes32_$",
"typeString": "function (bytes32) view returns (bytes32)"
}
},
"id": 193,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2451:18:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"nodeType": "VariableDeclarationStatement",
"src": "2423:46:0"
},
{
"expression": {
"id": 200,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"expression": {
"baseExpression": {
"id": 195,
"name": "_roles",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 25,
"src": "2479:6:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_bytes32_$_t_struct$_RoleData_$20_storage_$",
"typeString": "mapping(bytes32 => struct AccessControl.RoleData storage ref)"
}
},
"id": 197,
"indexExpression": {
"id": 196,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 184,
"src": "2486:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "2479:12:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_RoleData_$20_storage",
"typeString": "struct AccessControl.RoleData storage ref"
}
},
"id": 198,
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"memberLocation": "2492:9:0",
"memberName": "adminRole",
"nodeType": "MemberAccess",
"referencedDeclaration": 19,
"src": "2479:22:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"id": 199,
"name": "adminRole",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 186,
"src": "2504:9:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"src": "2479:34:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"id": 201,
"nodeType": "ExpressionStatement",
"src": "2479:34:0"
},
{
"eventCall": {
"arguments": [
{
"id": 203,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 184,
"src": "2545:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
{
"id": 204,
"name": "previousAdminRole",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 190,
"src": "2551:17:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
{
"id": 205,
"name": "adminRole",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 186,
"src": "2570:9:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
],
"id": 202,
"name": "RoleAdminChanged",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 307,
"src": "2528:16:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_bytes32_$_t_bytes32_$_t_bytes32_$returns$__$",
"typeString": "function (bytes32,bytes32,bytes32)"
}
},
"id": 206,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2528:52:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 207,
"nodeType": "EmitStatement",
"src": "2523:57:0"
}
]
},
"id": 209,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_setRoleAdmin",
"nameLocation": "2349:13:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 187,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 184,
"mutability": "mutable",
"name": "role",
"nameLocation": "2371:4:0",
"nodeType": "VariableDeclaration",
"scope": 209,
"src": "2363:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 183,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "2363:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 186,
"mutability": "mutable",
"name": "adminRole",
"nameLocation": "2385:9:0",
"nodeType": "VariableDeclaration",
"scope": 209,
"src": "2377:17:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 185,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "2377:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
}
],
"src": "2362:33:0"
},
"returnParameters": {
"id": 188,
"nodeType": "ParameterList",
"parameters": [],
"src": "2413:0:0"
},
"scope": 285,
"src": "2340:247:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "internal"
},
{
"body": {
"id": 246,
"nodeType": "Block",
"src": "2677:233:0",
"statements": [
{
"condition": {
"id": 222,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"nodeType": "UnaryOperation",
"operator": "!",
"prefix": true,
"src": "2691:23:0",
"subExpression": {
"arguments": [
{
"id": 219,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 211,
"src": "2700:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
{
"id": 220,
"name": "account",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 213,
"src": "2706:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 218,
"name": "hasRole",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 78,
"src": "2692:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$",
"typeString": "function (bytes32,address) view returns (bool)"
}
},
"id": 221,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2692:22:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"falseBody": {
"id": 244,
"nodeType": "Block",
"src": "2867:37:0",
"statements": [
{
"expression": {
"hexValue": "66616c7365",
"id": 242,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2888:5:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "false"
},
"functionReturnParameters": 217,
"id": 243,
"nodeType": "Return",
"src": "2881:12:0"
}
]
},
"id": 245,
"nodeType": "IfStatement",
"src": "2687:217:0",
"trueBody": {
"id": 241,
"nodeType": "Block",
"src": "2716:145:0",
"statements": [
{
"expression": {
"id": 230,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"baseExpression": {
"expression": {
"baseExpression": {
"id": 223,
"name": "_roles",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 25,
"src": "2730:6:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_bytes32_$_t_struct$_RoleData_$20_storage_$",
"typeString": "mapping(bytes32 => struct AccessControl.RoleData storage ref)"
}
},
"id": 225,
"indexExpression": {
"id": 224,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 211,
"src": "2737:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "2730:12:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_RoleData_$20_storage",
"typeString": "struct AccessControl.RoleData storage ref"
}
},
"id": 226,
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"memberLocation": "2743:7:0",
"memberName": "hasRole",
"nodeType": "MemberAccess",
"referencedDeclaration": 17,
"src": "2730:20:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_bool_$",
"typeString": "mapping(address => bool)"
}
},
"id": 228,
"indexExpression": {
"id": 227,
"name": "account",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 213,
"src": "2751:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "2730:29:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"hexValue": "74727565",
"id": 229,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2762:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "true"
},
"src": "2730:36:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 231,
"nodeType": "ExpressionStatement",
"src": "2730:36:0"
},
{
"eventCall": {
"arguments": [
{
"id": 233,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 211,
"src": "2797:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
{
"id": 234,
"name": "account",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 213,
"src": "2803:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 235,
"name": "_msgSender",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 380,
"src": "2812:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 236,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2812:12:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 232,
"name": "RoleGranted",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 316,
"src": "2785:11:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$returns$__$",
"typeString": "function (bytes32,address,address)"
}
},
"id": 237,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2785:40:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 238,
"nodeType": "EmitStatement",
"src": "2780:45:0"
},
{
"expression": {
"hexValue": "74727565",
"id": 239,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2846:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "true"
},
"functionReturnParameters": 217,
"id": 240,
"nodeType": "Return",
"src": "2839:11:0"
}
]
}
}
]
},
"id": 247,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_grantRole",
"nameLocation": "2603:10:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 214,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 211,
"mutability": "mutable",
"name": "role",
"nameLocation": "2622:4:0",
"nodeType": "VariableDeclaration",
"scope": 247,
"src": "2614:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 210,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "2614:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 213,
"mutability": "mutable",
"name": "account",
"nameLocation": "2636:7:0",
"nodeType": "VariableDeclaration",
"scope": 247,
"src": "2628:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 212,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2628:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "2613:31:0"
},
"returnParameters": {
"id": 217,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 216,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 247,
"src": "2671:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 215,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "2671:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "2670:6:0"
},
"scope": 285,
"src": "2594:316:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "internal"
},
{
"body": {
"id": 283,
"nodeType": "Block",
"src": "3000:233:0",
"statements": [
{
"condition": {
"arguments": [
{
"id": 257,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 249,
"src": "3022:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
{
"id": 258,
"name": "account",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 251,
"src": "3028:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 256,
"name": "hasRole",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 78,
"src": "3014:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$_t_bytes32_$_t_address_$returns$_t_bool_$",
"typeString": "function (bytes32,address) view returns (bool)"
}
},
"id": 259,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3014:22:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"falseBody": {
"id": 281,
"nodeType": "Block",
"src": "3190:37:0",
"statements": [
{
"expression": {
"hexValue": "66616c7365",
"id": 279,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "3211:5:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "false"
},
"functionReturnParameters": 255,
"id": 280,
"nodeType": "Return",
"src": "3204:12:0"
}
]
},
"id": 282,
"nodeType": "IfStatement",
"src": "3010:217:0",
"trueBody": {
"id": 278,
"nodeType": "Block",
"src": "3038:146:0",
"statements": [
{
"expression": {
"id": 267,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"baseExpression": {
"expression": {
"baseExpression": {
"id": 260,
"name": "_roles",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 25,
"src": "3052:6:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_bytes32_$_t_struct$_RoleData_$20_storage_$",
"typeString": "mapping(bytes32 => struct AccessControl.RoleData storage ref)"
}
},
"id": 262,
"indexExpression": {
"id": 261,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 249,
"src": "3059:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "3052:12:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_RoleData_$20_storage",
"typeString": "struct AccessControl.RoleData storage ref"
}
},
"id": 263,
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"memberLocation": "3065:7:0",
"memberName": "hasRole",
"nodeType": "MemberAccess",
"referencedDeclaration": 17,
"src": "3052:20:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_bool_$",
"typeString": "mapping(address => bool)"
}
},
"id": 265,
"indexExpression": {
"id": 264,
"name": "account",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 251,
"src": "3073:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "3052:29:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"hexValue": "66616c7365",
"id": 266,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "3084:5:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "false"
},
"src": "3052:37:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 268,
"nodeType": "ExpressionStatement",
"src": "3052:37:0"
},
{
"eventCall": {
"arguments": [
{
"id": 270,
"name": "role",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 249,
"src": "3120:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
{
"id": 271,
"name": "account",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 251,
"src": "3126:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 272,
"name": "_msgSender",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 380,
"src": "3135:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 273,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3135:12:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 269,
"name": "RoleRevoked",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 325,
"src": "3108:11:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_bytes32_$_t_address_$_t_address_$returns$__$",
"typeString": "function (bytes32,address,address)"
}
},
"id": 274,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3108:40:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 275,
"nodeType": "EmitStatement",
"src": "3103:45:0"
},
{
"expression": {
"hexValue": "74727565",
"id": 276,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "3169:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "true"
},
"functionReturnParameters": 255,
"id": 277,
"nodeType": "Return",
"src": "3162:11:0"
}
]
}
}
]
},
"id": 284,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_revokeRole",
"nameLocation": "2925:11:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 252,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 249,
"mutability": "mutable",
"name": "role",
"nameLocation": "2945:4:0",
"nodeType": "VariableDeclaration",
"scope": 284,
"src": "2937:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 248,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "2937:7:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 251,
"mutability": "mutable",
"name": "account",
"nameLocation": "2959:7:0",
"nodeType": "VariableDeclaration",
"scope": 284,
"src": "2951:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 250,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2951:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "2936:31:0"
},
"returnParameters": {
"id": 255,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 254,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 284,
"src": "2994:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 253,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "2994:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "2993:6:0"
},
"scope": 285,
"src": "2916:317:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "internal"
}
],
"scope": 286,
"src": "293:2942:0",
"usedErrors": [
295,
298
],
"usedEvents": [
307,
316,
325
]
}
],
"src": "108:3128:0"
},
"id": 0
},
".deps/npm/@openzeppelin/contracts/access/IAccessControl.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts/access/IAccessControl.sol",
"exportedSymbols": {
"IAccessControl": [
368
]
},
"id": 369,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 287,
"literals": [
"solidity",
"^",
"0.8",
".20"
],
"nodeType": "PragmaDirective",
"src": "109:24:1"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "IAccessControl",
"contractDependencies": [],
"contractKind": "interface",
"documentation": {
"id": 288,
"nodeType": "StructuredDocumentation",
"src": "135:89:1",
"text": " @dev External interface of AccessControl declared to support ERC165 detection."
},
"fullyImplemented": false,
"id": 368,
"linearizedBaseContracts": [
368
],
"name": "IAccessControl",
"nameLocation": "235:14:1",
"nodeType": "ContractDefinition",
"nodes": [
{
"documentation": {
"id": 289,
"nodeType": "StructuredDocumentation",
"src": "256:56:1",
"text": " @dev The `account` is missing a role."
},
"errorSelector": "e2517d3f",
"id": 295,
"name": "AccessControlUnauthorizedAccount",
"nameLocation": "323:32:1",
"nodeType": "ErrorDefinition",
"parameters": {
"id": 294,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 291,
"mutability": "mutable",
"name": "account",
"nameLocation": "364:7:1",
"nodeType": "VariableDeclaration",
"scope": 295,
"src": "356:15:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 290,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "356:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 293,
"mutability": "mutable",
"name": "neededRole",
"nameLocation": "381:10:1",
"nodeType": "VariableDeclaration",
"scope": 295,
"src": "373:18:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 292,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "373:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
}
],
"src": "355:37:1"
},
"src": "317:76:1"
},
{
"documentation": {
"id": 296,
"nodeType": "StructuredDocumentation",
"src": "399:148:1",
"text": " @dev The caller of a function is not the expected one.\n NOTE: Don't confuse with {AccessControlUnauthorizedAccount}."
},
"errorSelector": "6697b232",
"id": 298,
"name": "AccessControlBadConfirmation",
"nameLocation": "558:28:1",
"nodeType": "ErrorDefinition",
"parameters": {
"id": 297,
"nodeType": "ParameterList",
"parameters": [],
"src": "586:2:1"
},
"src": "552:37:1"
},
{
"anonymous": false,
"documentation": {
"id": 299,
"nodeType": "StructuredDocumentation",
"src": "595:254:1",
"text": " @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`\n `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite\n {RoleAdminChanged} not being emitted signaling this."
},
"eventSelector": "bd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff",
"id": 307,
"name": "RoleAdminChanged",
"nameLocation": "860:16:1",
"nodeType": "EventDefinition",
"parameters": {
"id": 306,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 301,
"indexed": true,
"mutability": "mutable",
"name": "role",
"nameLocation": "893:4:1",
"nodeType": "VariableDeclaration",
"scope": 307,
"src": "877:20:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 300,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "877:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 303,
"indexed": true,
"mutability": "mutable",
"name": "previousAdminRole",
"nameLocation": "915:17:1",
"nodeType": "VariableDeclaration",
"scope": 307,
"src": "899:33:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 302,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "899:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 305,
"indexed": true,
"mutability": "mutable",
"name": "newAdminRole",
"nameLocation": "950:12:1",
"nodeType": "VariableDeclaration",
"scope": 307,
"src": "934:28:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 304,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "934:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
}
],
"src": "876:87:1"
},
"src": "854:110:1"
},
{
"anonymous": false,
"documentation": {
"id": 308,
"nodeType": "StructuredDocumentation",
"src": "970:212:1",
"text": " @dev Emitted when `account` is granted `role`.\n `sender` is the account that originated the contract call, an admin role\n bearer except when using {AccessControl-_setupRole}."
},
"eventSelector": "2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d",
"id": 316,
"name": "RoleGranted",
"nameLocation": "1193:11:1",
"nodeType": "EventDefinition",
"parameters": {
"id": 315,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 310,
"indexed": true,
"mutability": "mutable",
"name": "role",
"nameLocation": "1221:4:1",
"nodeType": "VariableDeclaration",
"scope": 316,
"src": "1205:20:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 309,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "1205:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 312,
"indexed": true,
"mutability": "mutable",
"name": "account",
"nameLocation": "1243:7:1",
"nodeType": "VariableDeclaration",
"scope": 316,
"src": "1227:23:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 311,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1227:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 314,
"indexed": true,
"mutability": "mutable",
"name": "sender",
"nameLocation": "1268:6:1",
"nodeType": "VariableDeclaration",
"scope": 316,
"src": "1252:22:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 313,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1252:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1204:71:1"
},
"src": "1187:89:1"
},
{
"anonymous": false,
"documentation": {
"id": 317,
"nodeType": "StructuredDocumentation",
"src": "1282:275:1",
"text": " @dev Emitted when `account` is revoked `role`.\n `sender` is the account that originated the contract call:\n - if using `revokeRole`, it is the admin role bearer\n - if using `renounceRole`, it is the role bearer (i.e. `account`)"
},
"eventSelector": "f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b",
"id": 325,
"name": "RoleRevoked",
"nameLocation": "1568:11:1",
"nodeType": "EventDefinition",
"parameters": {
"id": 324,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 319,
"indexed": true,
"mutability": "mutable",
"name": "role",
"nameLocation": "1596:4:1",
"nodeType": "VariableDeclaration",
"scope": 325,
"src": "1580:20:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 318,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "1580:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 321,
"indexed": true,
"mutability": "mutable",
"name": "account",
"nameLocation": "1618:7:1",
"nodeType": "VariableDeclaration",
"scope": 325,
"src": "1602:23:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 320,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1602:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 323,
"indexed": true,
"mutability": "mutable",
"name": "sender",
"nameLocation": "1643:6:1",
"nodeType": "VariableDeclaration",
"scope": 325,
"src": "1627:22:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 322,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1627:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1579:71:1"
},
"src": "1562:89:1"
},
{
"documentation": {
"id": 326,
"nodeType": "StructuredDocumentation",
"src": "1657:76:1",
"text": " @dev Returns `true` if `account` has been granted `role`."
},
"functionSelector": "91d14854",
"id": 335,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "hasRole",
"nameLocation": "1747:7:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 331,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 328,
"mutability": "mutable",
"name": "role",
"nameLocation": "1763:4:1",
"nodeType": "VariableDeclaration",
"scope": 335,
"src": "1755:12:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 327,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "1755:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 330,
"mutability": "mutable",
"name": "account",
"nameLocation": "1777:7:1",
"nodeType": "VariableDeclaration",
"scope": 335,
"src": "1769:15:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 329,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1769:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1754:31:1"
},
"returnParameters": {
"id": 334,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 333,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 335,
"src": "1809:4:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 332,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "1809:4:1",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "1808:6:1"
},
"scope": 368,
"src": "1738:77:1",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 336,
"nodeType": "StructuredDocumentation",
"src": "1821:184:1",
"text": " @dev Returns the admin role that controls `role`. See {grantRole} and\n {revokeRole}.\n To change a role's admin, use {AccessControl-_setRoleAdmin}."
},
"functionSelector": "248a9ca3",
"id": 343,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "getRoleAdmin",
"nameLocation": "2019:12:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 339,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 338,
"mutability": "mutable",
"name": "role",
"nameLocation": "2040:4:1",
"nodeType": "VariableDeclaration",
"scope": 343,
"src": "2032:12:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 337,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "2032:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
}
],
"src": "2031:14:1"
},
"returnParameters": {
"id": 342,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 341,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 343,
"src": "2069:7:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 340,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "2069:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
}
],
"src": "2068:9:1"
},
"scope": 368,
"src": "2010:68:1",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 344,
"nodeType": "StructuredDocumentation",
"src": "2084:239:1",
"text": " @dev Grants `role` to `account`.\n If `account` had not been already granted `role`, emits a {RoleGranted}\n event.\n Requirements:\n - the caller must have ``role``'s admin role."
},
"functionSelector": "2f2ff15d",
"id": 351,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "grantRole",
"nameLocation": "2337:9:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 349,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 346,
"mutability": "mutable",
"name": "role",
"nameLocation": "2355:4:1",
"nodeType": "VariableDeclaration",
"scope": 351,
"src": "2347:12:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 345,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "2347:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 348,
"mutability": "mutable",
"name": "account",
"nameLocation": "2369:7:1",
"nodeType": "VariableDeclaration",
"scope": 351,
"src": "2361:15:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 347,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2361:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "2346:31:1"
},
"returnParameters": {
"id": 350,
"nodeType": "ParameterList",
"parameters": [],
"src": "2386:0:1"
},
"scope": 368,
"src": "2328:59:1",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 352,
"nodeType": "StructuredDocumentation",
"src": "2393:223:1",
"text": " @dev Revokes `role` from `account`.\n If `account` had been granted `role`, emits a {RoleRevoked} event.\n Requirements:\n - the caller must have ``role``'s admin role."
},
"functionSelector": "d547741f",
"id": 359,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "revokeRole",
"nameLocation": "2630:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 357,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 354,
"mutability": "mutable",
"name": "role",
"nameLocation": "2649:4:1",
"nodeType": "VariableDeclaration",
"scope": 359,
"src": "2641:12:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 353,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "2641:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 356,
"mutability": "mutable",
"name": "account",
"nameLocation": "2663:7:1",
"nodeType": "VariableDeclaration",
"scope": 359,
"src": "2655:15:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 355,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2655:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "2640:31:1"
},
"returnParameters": {
"id": 358,
"nodeType": "ParameterList",
"parameters": [],
"src": "2680:0:1"
},
"scope": 368,
"src": "2621:60:1",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
},
{
"documentation": {
"id": 360,
"nodeType": "StructuredDocumentation",
"src": "2687:491:1",
"text": " @dev Revokes `role` from the calling account.\n Roles are often managed via {grantRole} and {revokeRole}: this function's\n purpose is to provide a mechanism for accounts to lose their privileges\n if they are compromised (such as when a trusted device is misplaced).\n If the calling account had been granted `role`, emits a {RoleRevoked}\n event.\n Requirements:\n - the caller must be `callerConfirmation`."
},
"functionSelector": "36568abe",
"id": 367,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "renounceRole",
"nameLocation": "3192:12:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 365,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 362,
"mutability": "mutable",
"name": "role",
"nameLocation": "3213:4:1",
"nodeType": "VariableDeclaration",
"scope": 367,
"src": "3205:12:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
},
"typeName": {
"id": 361,
"name": "bytes32",
"nodeType": "ElementaryTypeName",
"src": "3205:7:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes32",
"typeString": "bytes32"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 364,
"mutability": "mutable",
"name": "callerConfirmation",
"nameLocation": "3227:18:1",
"nodeType": "VariableDeclaration",
"scope": 367,
"src": "3219:26:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 363,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "3219:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "3204:42:1"
},
"returnParameters": {
"id": 366,
"nodeType": "ParameterList",
"parameters": [],
"src": "3255:0:1"
},
"scope": 368,
"src": "3183:73:1",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "external"
}
],
"scope": 369,
"src": "225:3033:1",
"usedErrors": [
295,
298
],
"usedEvents": [
307,
316,
325
]
}
],
"src": "109:3150:1"
},
"id": 1
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts/utils/Context.sol",
"exportedSymbols": {
"Context": [
398
]
},
"id": 399,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 370,
"literals": [
"solidity",
"^",
"0.8",
".20"
],
"nodeType": "PragmaDirective",
"src": "101:24:2"
},
{
"abstract": true,
"baseContracts": [],
"canonicalName": "Context",
"contractDependencies": [],
"contractKind": "contract",
"documentation": {
"id": 371,
"nodeType": "StructuredDocumentation",
"src": "127:496:2",
"text": " @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."
},
"fullyImplemented": true,
"id": 398,
"linearizedBaseContracts": [
398
],
"name": "Context",
"nameLocation": "642:7:2",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 379,
"nodeType": "Block",
"src": "718:34:2",
"statements": [
{
"expression": {
"expression": {
"id": 376,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "735:3:2",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 377,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "739:6:2",
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "735:10:2",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"functionReturnParameters": 375,
"id": 378,
"nodeType": "Return",
"src": "728:17:2"
}
]
},
"id": 380,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_msgSender",
"nameLocation": "665:10:2",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 372,
"nodeType": "ParameterList",
"parameters": [],
"src": "675:2:2"
},
"returnParameters": {
"id": 375,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 374,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 380,
"src": "709:7:2",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 373,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "709:7:2",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "708:9:2"
},
"scope": 398,
"src": "656:96:2",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
},
{
"body": {
"id": 388,
"nodeType": "Block",
"src": "825:32:2",
"statements": [
{
"expression": {
"expression": {
"id": 385,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "842:3:2",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 386,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "846:4:2",
"memberName": "data",
"nodeType": "MemberAccess",
"src": "842:8:2",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes calldata"
}
},
"functionReturnParameters": 384,
"id": 387,
"nodeType": "Return",
"src": "835:15:2"
}
]
},
"id": 389,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_msgData",
"nameLocation": "767:8:2",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 381,
"nodeType": "ParameterList",
"parameters": [],
"src": "775:2:2"
},
"returnParameters": {
"id": 384,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 383,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 389,
"src": "809:14:2",
"stateVariable": false,
"storageLocation": "calldata",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 382,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "809:5:2",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "808:16:2"
},
"scope": 398,
"src": "758:99:2",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
},
{
"body": {
"id": 396,
"nodeType": "Block",
"src": "935:25:2",
"statements": [
{
"expression": {
"hexValue": "30",
"id": 394,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "952:1:2",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
},
"functionReturnParameters": 393,
"id": 395,
"nodeType": "Return",
"src": "945:8:2"
}
]
},
"id": 397,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_contextSuffixLength",
"nameLocation": "872:20:2",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 390,
"nodeType": "ParameterList",
"parameters": [],
"src": "892:2:2"
},
"returnParameters": {
"id": 393,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 392,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 397,
"src": "926:7:2",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 391,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "926:7:2",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "925:9:2"
},
"scope": 398,
"src": "863:97:2",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
}
],
"scope": 399,
"src": "624:338:2",
"usedErrors": [],
"usedEvents": []
}
],
"src": "101:862:2"
},
"id": 2
},
".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol",
"exportedSymbols": {
"ERC165": [
422
],
"IERC165": [
434
]
},
"id": 423,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 400,
"literals": [
"solidity",
"^",
"0.8",
".20"
],
"nodeType": "PragmaDirective",
"src": "114:24:3"
},
{
"absolutePath": ".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol",
"file": "./IERC165.sol",
"id": 402,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 423,
"sourceUnit": 435,
"src": "140:38:3",
"symbolAliases": [
{
"foreign": {
"id": 401,
"name": "IERC165",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 434,
"src": "148:7:3",
"typeDescriptions": {}
},
"nameLocation": "-1:-1:-1"
}
],
"unitAlias": ""
},
{
"abstract": true,
"baseContracts": [
{
"baseName": {
"id": 404,
"name": "IERC165",
"nameLocations": [
"687:7:3"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 434,
"src": "687:7:3"
},
"id": 405,
"nodeType": "InheritanceSpecifier",
"src": "687:7:3"
}
],
"canonicalName": "ERC165",
"contractDependencies": [],
"contractKind": "contract",
"documentation": {
"id": 403,
"nodeType": "StructuredDocumentation",
"src": "180:478:3",
"text": " @dev Implementation of the {IERC165} interface.\n Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n for the additional interface id that will be supported. For example:\n ```solidity\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n }\n ```"
},
"fullyImplemented": true,
"id": 422,
"linearizedBaseContracts": [
422,
434
],
"name": "ERC165",
"nameLocation": "677:6:3",
"nodeType": "ContractDefinition",
"nodes": [
{
"baseFunctions": [
433
],
"body": {
"id": 420,
"nodeType": "Block",
"src": "844:64:3",
"statements": [
{
"expression": {
"commonType": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
},
"id": 418,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"id": 413,
"name": "interfaceId",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 408,
"src": "861:11:3",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
},
"nodeType": "BinaryOperation",
"operator": "==",
"rightExpression": {
"expression": {
"arguments": [
{
"id": 415,
"name": "IERC165",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 434,
"src": "881:7:3",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_contract$_IERC165_$434_$",
"typeString": "type(contract IERC165)"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_type$_t_contract$_IERC165_$434_$",
"typeString": "type(contract IERC165)"
}
],
"id": 414,
"name": "type",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967269,
"src": "876:4:3",
"typeDescriptions": {
"typeIdentifier": "t_function_metatype_pure$__$returns$__$",
"typeString": "function () pure"
}
},
"id": 416,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "876:13:3",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_magic_meta_type_t_contract$_IERC165_$434",
"typeString": "type(contract IERC165)"
}
},
"id": 417,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"memberLocation": "890:11:3",
"memberName": "interfaceId",
"nodeType": "MemberAccess",
"src": "876:25:3",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
},
"src": "861:40:3",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"functionReturnParameters": 412,
"id": 419,
"nodeType": "Return",
"src": "854:47:3"
}
]
},
"documentation": {
"id": 406,
"nodeType": "StructuredDocumentation",
"src": "701:56:3",
"text": " @dev See {IERC165-supportsInterface}."
},
"functionSelector": "01ffc9a7",
"id": 421,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "supportsInterface",
"nameLocation": "771:17:3",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 409,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 408,
"mutability": "mutable",
"name": "interfaceId",
"nameLocation": "796:11:3",
"nodeType": "VariableDeclaration",
"scope": 421,
"src": "789:18:3",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
},
"typeName": {
"id": 407,
"name": "bytes4",
"nodeType": "ElementaryTypeName",
"src": "789:6:3",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
},
"visibility": "internal"
}
],
"src": "788:20:3"
},
"returnParameters": {
"id": 412,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 411,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 421,
"src": "838:4:3",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 410,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "838:4:3",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "837:6:3"
},
"scope": 422,
"src": "762:146:3",
"stateMutability": "view",
"virtual": true,
"visibility": "public"
}
],
"scope": 423,
"src": "659:251:3",
"usedErrors": [],
"usedEvents": []
}
],
"src": "114:797:3"
},
"id": 3
},
".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol",
"exportedSymbols": {
"IERC165": [
434
]
},
"id": 435,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 424,
"literals": [
"solidity",
"^",
"0.8",
".20"
],
"nodeType": "PragmaDirective",
"src": "115:24:4"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "IERC165",
"contractDependencies": [],
"contractKind": "interface",
"documentation": {
"id": 425,
"nodeType": "StructuredDocumentation",
"src": "141:279:4",
"text": " @dev Interface of the ERC165 standard, as defined in the\n https://eips.ethereum.org/EIPS/eip-165[EIP].\n Implementers can declare support of contract interfaces, which can then be\n queried by others ({ERC165Checker}).\n For an implementation, see {ERC165}."
},
"fullyImplemented": false,
"id": 434,
"linearizedBaseContracts": [
434
],
"name": "IERC165",
"nameLocation": "431:7:4",
"nodeType": "ContractDefinition",
"nodes": [
{
"documentation": {
"id": 426,
"nodeType": "StructuredDocumentation",
"src": "445:340:4",
"text": " @dev Returns true if this contract implements the interface defined by\n `interfaceId`. See the corresponding\n https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n to learn more about how these ids are created.\n This function call must use less than 30 000 gas."
},
"functionSelector": "01ffc9a7",
"id": 433,
"implemented": false,
"kind": "function",
"modifiers": [],
"name": "supportsInterface",
"nameLocation": "799:17:4",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 429,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 428,
"mutability": "mutable",
"name": "interfaceId",
"nameLocation": "824:11:4",
"nodeType": "VariableDeclaration",
"scope": 433,
"src": "817:18:4",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
},
"typeName": {
"id": 427,
"name": "bytes4",
"nodeType": "ElementaryTypeName",
"src": "817:6:4",
"typeDescriptions": {
"typeIdentifier": "t_bytes4",
"typeString": "bytes4"
}
},
"visibility": "internal"
}
],
"src": "816:20:4"
},
"returnParameters": {
"id": 432,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 431,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 433,
"src": "860:4:4",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 430,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "860:4:4",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "859:6:4"
},
"scope": 434,
"src": "790:76:4",
"stateMutability": "view",
"virtual": false,
"visibility": "external"
}
],
"scope": 435,
"src": "421:447:4",
"usedErrors": [],
"usedEvents": []
}
],
"src": "115:754:4"
},
"id": 4
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/IAccessControl.sol)
pragma solidity ^0.8.20;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev The `account` is missing a role.
*/
error AccessControlUnauthorizedAccount(address account, bytes32 neededRole);
/**
* @dev The caller of a function is not the expected one.
*
* NOTE: Don't confuse with {AccessControlUnauthorizedAccount}.
*/
error AccessControlBadConfirmation();
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `callerConfirmation`.
*/
function renounceRole(bytes32 role, address callerConfirmation) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol)
pragma solidity ^0.8.20;
import {IERC165} from "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;
library console {
address constant CONSOLE_ADDRESS =
0x000000000000000000636F6e736F6c652e6c6f67;
function _sendLogPayloadImplementation(bytes memory payload) internal view {
address consoleAddress = CONSOLE_ADDRESS;
/// @solidity memory-safe-assembly
assembly {
pop(
staticcall(
gas(),
consoleAddress,
add(payload, 32),
mload(payload),
0,
0
)
)
}
}
function _castToPure(
function(bytes memory) internal view fnIn
) internal pure returns (function(bytes memory) pure fnOut) {
assembly {
fnOut := fnIn
}
}
function _sendLogPayload(bytes memory payload) internal pure {
_castToPure(_sendLogPayloadImplementation)(payload);
}
function log() internal pure {
_sendLogPayload(abi.encodeWithSignature("log()"));
}
function logInt(int256 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(int256)", p0));
}
function logUint(uint256 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
}
function logString(string memory p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
}
function logBool(bool p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
}
function logAddress(address p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
}
function logBytes(bytes memory p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
}
function logBytes1(bytes1 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0));
}
function logBytes2(bytes2 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0));
}
function logBytes3(bytes3 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0));
}
function logBytes4(bytes4 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0));
}
function logBytes5(bytes5 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0));
}
function logBytes6(bytes6 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0));
}
function logBytes7(bytes7 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0));
}
function logBytes8(bytes8 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0));
}
function logBytes9(bytes9 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0));
}
function logBytes10(bytes10 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0));
}
function logBytes11(bytes11 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0));
}
function logBytes12(bytes12 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0));
}
function logBytes13(bytes13 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0));
}
function logBytes14(bytes14 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0));
}
function logBytes15(bytes15 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0));
}
function logBytes16(bytes16 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0));
}
function logBytes17(bytes17 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0));
}
function logBytes18(bytes18 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0));
}
function logBytes19(bytes19 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0));
}
function logBytes20(bytes20 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0));
}
function logBytes21(bytes21 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0));
}
function logBytes22(bytes22 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0));
}
function logBytes23(bytes23 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0));
}
function logBytes24(bytes24 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0));
}
function logBytes25(bytes25 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0));
}
function logBytes26(bytes26 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0));
}
function logBytes27(bytes27 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0));
}
function logBytes28(bytes28 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0));
}
function logBytes29(bytes29 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0));
}
function logBytes30(bytes30 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0));
}
function logBytes31(bytes31 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0));
}
function logBytes32(bytes32 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0));
}
function log(uint256 p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256)", p0));
}
function log(string memory p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
}
function log(bool p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
}
function log(address p0) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
}
function log(uint256 p0, uint256 p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256)", p0, p1));
}
function log(uint256 p0, string memory p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string)", p0, p1));
}
function log(uint256 p0, bool p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool)", p0, p1));
}
function log(uint256 p0, address p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address)", p0, p1));
}
function log(string memory p0, uint256 p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256)", p0, p1));
}
function log(string memory p0, string memory p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1));
}
function log(string memory p0, bool p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1));
}
function log(string memory p0, address p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1));
}
function log(bool p0, uint256 p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256)", p0, p1));
}
function log(bool p0, string memory p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1));
}
function log(bool p0, bool p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1));
}
function log(bool p0, address p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1));
}
function log(address p0, uint256 p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256)", p0, p1));
}
function log(address p0, string memory p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1));
}
function log(address p0, bool p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1));
}
function log(address p0, address p1) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1));
}
function log(uint256 p0, uint256 p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool)", p0, p1, p2));
}
function log(uint256 p0, string memory p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address)", p0, p1, p2));
}
function log(uint256 p0, bool p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256)", p0, p1, p2));
}
function log(uint256 p0, bool p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string)", p0, p1, p2));
}
function log(uint256 p0, bool p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool)", p0, p1, p2));
}
function log(uint256 p0, bool p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address)", p0, p1, p2));
}
function log(uint256 p0, address p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256)", p0, p1, p2));
}
function log(uint256 p0, address p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string)", p0, p1, p2));
}
function log(uint256 p0, address p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool)", p0, p1, p2));
}
function log(uint256 p0, address p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool)", p0, p1, p2));
}
function log(string memory p0, uint256 p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address)", p0, p1, p2));
}
function log(string memory p0, string memory p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,uint256)", p0, p1, p2));
}
function log(string memory p0, string memory p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2));
}
function log(string memory p0, string memory p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2));
}
function log(string memory p0, string memory p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2));
}
function log(string memory p0, bool p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256)", p0, p1, p2));
}
function log(string memory p0, bool p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2));
}
function log(string memory p0, bool p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2));
}
function log(string memory p0, bool p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2));
}
function log(string memory p0, address p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256)", p0, p1, p2));
}
function log(string memory p0, address p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2));
}
function log(string memory p0, address p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2));
}
function log(string memory p0, address p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2));
}
function log(bool p0, uint256 p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256)", p0, p1, p2));
}
function log(bool p0, uint256 p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string)", p0, p1, p2));
}
function log(bool p0, uint256 p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool)", p0, p1, p2));
}
function log(bool p0, uint256 p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address)", p0, p1, p2));
}
function log(bool p0, string memory p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256)", p0, p1, p2));
}
function log(bool p0, string memory p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2));
}
function log(bool p0, string memory p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2));
}
function log(bool p0, string memory p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2));
}
function log(bool p0, bool p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256)", p0, p1, p2));
}
function log(bool p0, bool p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2));
}
function log(bool p0, bool p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2));
}
function log(bool p0, bool p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2));
}
function log(bool p0, address p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256)", p0, p1, p2));
}
function log(bool p0, address p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2));
}
function log(bool p0, address p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2));
}
function log(bool p0, address p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2));
}
function log(address p0, uint256 p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256)", p0, p1, p2));
}
function log(address p0, uint256 p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string)", p0, p1, p2));
}
function log(address p0, uint256 p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool)", p0, p1, p2));
}
function log(address p0, uint256 p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address)", p0, p1, p2));
}
function log(address p0, string memory p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256)", p0, p1, p2));
}
function log(address p0, string memory p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2));
}
function log(address p0, string memory p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2));
}
function log(address p0, string memory p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2));
}
function log(address p0, bool p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256)", p0, p1, p2));
}
function log(address p0, bool p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2));
}
function log(address p0, bool p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2));
}
function log(address p0, bool p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2));
}
function log(address p0, address p1, uint256 p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256)", p0, p1, p2));
}
function log(address p0, address p1, string memory p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2));
}
function log(address p0, address p1, bool p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2));
}
function log(address p0, address p1, address p2) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2));
}
function log(uint256 p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, uint256 p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, uint256 p2, address p3) internal pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, string memory p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, bool p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,address)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,uint256)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,string)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,bool)", p0, p1, p2, p3));
}
function log(uint256 p0, address p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, uint256 p2, address p3) internal pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, uint256 p1, address p2, address p3) internal pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, uint256 p2, address p3) internal pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, bool p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, uint256 p2, address p3) internal pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3));
}
function log(string memory p0, address p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,string)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, uint256 p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, uint256 p2, address p3) internal pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, string memory p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, bool p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint256)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3));
}
function log(bool p0, address p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,address)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,string)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,bool)", p0, p1, p2, p3));
}
function log(address p0, uint256 p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, uint256 p2, address p3) internal pure {
_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 pure {
_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 pure {
_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 pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3));
}
function log(address p0, string memory p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3));
}
function log(address p0, bool p1, address p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, uint256 p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, uint256 p3) internal pure {
_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 pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, string memory p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, bool p2, address p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, uint256 p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint256)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, string memory p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, bool p3) internal pure {
_sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3));
}
function log(address p0, address p1, address p2, address p3) internal pure {
_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: MIT
pragma solidity ^0.8.4;
contract DocumentStorage {
struct Document {
bytes32 hash;
address owner;
bool isVerified;
}
mapping(bytes32 => Document) public documents;
event NewDocument(bytes32 indexed hash, address indexed owner);
event DocumentVerified(bytes32 indexed hash);
function addDocument(bytes32 _hash) public {
require(documents[_hash].hash == 0, "Document already exists");
require(msg.sender == msg.sender, "Only the owner can add a document");
documents[_hash] = Document(_hash, msg.sender, false);
emit NewDocument(_hash, msg.sender);
}
function verifyDocument(bytes32 _hash) public {
require(documents[_hash].hash != 0, "Document does not exist");
require(msg.sender == msg.sender, "Only the owner can verify a document");
documents[_hash].isVerified = true;
emit DocumentVerified(_hash);
}
function getDocument(bytes32 _hash) public view returns (bytes32, address, bool) {
return (documents[_hash].hash, documents[_hash].owner, documents[_hash].isVerified);
}
}
{
"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": {
"@_504": {
"entryPoint": null,
"id": 504,
"parameterSlots": 0,
"returnSlots": 0
},
"@_grantRole_256": {
"entryPoint": 70,
"id": 256,
"parameterSlots": 2,
"returnSlots": 1
},
"@_msgSender_390": {
"entryPoint": 414,
"id": 390,
"parameterSlots": 0,
"returnSlots": 1
},
"@hasRole_80": {
"entryPoint": 315,
"id": 80,
"parameterSlots": 2,
"returnSlots": 1
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b506100407fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217753361004660201b60201c565b506101a5565b5f610057838361013b60201b60201c565b6101315760015f808581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506100ce61019e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610135565b5f90505b92915050565b5f805f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f33905090565b6116c2806101b25f395ff3fe6080604052600436106100c1575f3560e01c80638e27cb251161007e578063a217fddf11610058578063a217fddf14610277578063d547741f146102a1578063e8083863146102c9578063fc528482146102f1576100c1565b80638e27cb25146101f757806391d148541461021f5780639979ef451461025b576100c1565b806301ffc9a7146100c5578063248a9ca3146101015780632f2ff15d1461013d57806336568abe14610165578063571a26a01461018d57806375b238fc146101cd575b5f80fd5b3480156100d0575f80fd5b506100eb60048036038101906100e69190610e07565b61031b565b6040516100f89190610e4c565b60405180910390f35b34801561010c575f80fd5b5061012760048036038101906101229190610e98565b610394565b6040516101349190610ed2565b60405180910390f35b348015610148575f80fd5b50610163600480360381019061015e9190610f45565b6103b0565b005b348015610170575f80fd5b5061018b60048036038101906101869190610f45565b6103d2565b005b348015610198575f80fd5b506101b360048036038101906101ae9190610fb6565b61044d565b6040516101c495949392919061106f565b60405180910390f35b3480156101d8575f80fd5b506101e1610530565b6040516101ee9190610ed2565b60405180910390f35b348015610202575f80fd5b5061021d60048036038101906102189190611128565b610554565b005b34801561022a575f80fd5b5061024560048036038101906102409190610f45565b6106fe565b6040516102529190610e4c565b60405180910390f35b61027560048036038101906102709190610fb6565b610761565b005b348015610282575f80fd5b5061028b610958565b6040516102989190610ed2565b60405180910390f35b3480156102ac575f80fd5b506102c760048036038101906102c29190610f45565b61095e565b005b3480156102d4575f80fd5b506102ef60048036038101906102ea9190610fb6565b610980565b005b3480156102fc575f80fd5b50610305610afd565b6040516103129190611173565b60405180910390f35b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038d575061038c82610b03565b5b9050919050565b5f805f8381526020019081526020015f20600101549050919050565b6103b982610394565b6103c281610b6c565b6103cc8383610b80565b50505050565b6103da610c69565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461043e576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6104488282610c70565b505050565b6002602052805f5260405f205f91509050805f015490806001018054610472906111b9565b80601f016020809104026020016040519081016040528092919081815260200182805461049e906111b9565b80156104e95780601f106104c0576101008083540402835291602001916104e9565b820191905f5260205f20905b8154815290600101906020018083116104cc57829003601f168201915b505050505090806002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806003015490806004015f9054906101000a900460ff16905085565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561057e81610b6c565b6040518060a00160405280600154815260200184848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f8201169050808301925050505050505081526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f81526020015f151581525060025f60015481526020019081526020015f205f820151815f0155602082015181600101908161063291906113b3565b506040820151816002015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015f6101000a81548160ff0219169083151502179055509050507f84dbbe572fcd8281f88fbf55359ad5039443609c2304288d3c8816dd3bb9fc2160015484846040516106da939291906114bc565b60405180910390a160015f8154809291906106f490611519565b9190505550505050565b5f805f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f60025f8381526020019081526020015f209050806003015434116107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b2906115aa565b60405180910390fd5b806004015f9054906101000a900460ff161561080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390611612565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16816002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108ce57806002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc826003015490811502906040515f60405180830381858888f193505050501580156108cc573d5f803e3d5ffd5b505b33816002015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503481600301819055507f558a0d5d5468d74b0db24c74eb348b42271c2ebb4c9e953ced38aaed95fa436182333460405161094c93929190611630565b60405180910390a15050565b5f801b81565b61096782610394565b61097081610b6c565b61097a8383610c70565b50505050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756109aa81610b6c565b5f60025f8481526020019081526020015f209050806004015f9054906101000a900460ff1615610a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0690611612565b60405180910390fd5b6001816004015f6101000a81548160ff021916908315150217905550806002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc826003015490811502906040515f60405180830381858888f19350505050158015610a95573d5f803e3d5ffd5b507f4d9113a1377d665eaa1f9168a9c9080f2e488cb820b10149de3d6d2e0f2780c783826002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168360030154604051610af093929190611630565b60405180910390a1505050565b60015481565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610b7d81610b78610c69565b610d59565b50565b5f610b8b83836106fe565b610c5f5760015f808581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610bfc610c69565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610c63565b5f90505b92915050565b5f33905090565b5f610c7b83836106fe565b15610d4f575f805f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610cec610c69565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050610d53565b5f90505b92915050565b610d6382826106fe565b610da65780826040517fe2517d3f000000000000000000000000000000000000000000000000000000008152600401610d9d929190611665565b60405180910390fd5b5050565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b610de681610db2565b8114610df0575f80fd5b50565b5f81359050610e0181610ddd565b92915050565b5f60208284031215610e1c57610e1b610daa565b5b5f610e2984828501610df3565b91505092915050565b5f8115159050919050565b610e4681610e32565b82525050565b5f602082019050610e5f5f830184610e3d565b92915050565b5f819050919050565b610e7781610e65565b8114610e81575f80fd5b50565b5f81359050610e9281610e6e565b92915050565b5f60208284031215610ead57610eac610daa565b5b5f610eba84828501610e84565b91505092915050565b610ecc81610e65565b82525050565b5f602082019050610ee55f830184610ec3565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f1482610eeb565b9050919050565b610f2481610f0a565b8114610f2e575f80fd5b50565b5f81359050610f3f81610f1b565b92915050565b5f8060408385031215610f5b57610f5a610daa565b5b5f610f6885828601610e84565b9250506020610f7985828601610f31565b9150509250929050565b5f819050919050565b610f9581610f83565b8114610f9f575f80fd5b50565b5f81359050610fb081610f8c565b92915050565b5f60208284031215610fcb57610fca610daa565b5b5f610fd884828501610fa2565b91505092915050565b610fea81610f83565b82525050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61103282610ff0565b61103c8185610ffa565b935061104c81856020860161100a565b61105581611018565b840191505092915050565b61106981610f0a565b82525050565b5f60a0820190506110825f830188610fe1565b81810360208301526110948187611028565b90506110a36040830186611060565b6110b06060830185610fe1565b6110bd6080830184610e3d565b9695505050505050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126110e8576110e76110c7565b5b8235905067ffffffffffffffff811115611105576111046110cb565b5b602083019150836001820283011115611121576111206110cf565b5b9250929050565b5f806020838503121561113e5761113d610daa565b5b5f83013567ffffffffffffffff81111561115b5761115a610dae565b5b611167858286016110d3565b92509250509250929050565b5f6020820190506111865f830184610fe1565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806111d057607f821691505b6020821081036111e3576111e261118c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026112727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611237565b61127c8683611237565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6112b76112b26112ad84610f83565b611294565b610f83565b9050919050565b5f819050919050565b6112d08361129d565b6112e46112dc826112be565b848454611243565b825550505050565b5f90565b6112f86112ec565b6113038184846112c7565b505050565b5b818110156113265761131b5f826112f0565b600181019050611309565b5050565b601f82111561136b5761133c81611216565b61134584611228565b81016020851015611354578190505b61136861136085611228565b830182611308565b50505b505050565b5f82821c905092915050565b5f61138b5f1984600802611370565b1980831691505092915050565b5f6113a3838361137c565b9150826002028217905092915050565b6113bc82610ff0565b67ffffffffffffffff8111156113d5576113d46111e9565b5b6113df82546111b9565b6113ea82828561132a565b5f60209050601f83116001811461141b575f8415611409578287015190505b6114138582611398565b86555061147a565b601f19841661142986611216565b5f5b828110156114505784890151825560018201915060208501945060208101905061142b565b8683101561146d5784890151611469601f89168261137c565b8355505b6001600288020188555050505b505050505050565b828183375f83830152505050565b5f61149b8385610ffa565b93506114a8838584611482565b6114b183611018565b840190509392505050565b5f6040820190506114cf5f830186610fe1565b81810360208301526114e2818486611490565b9050949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61152382610f83565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611555576115546114ec565b5b600182019050919050565b7f42696420746f6f206c6f770000000000000000000000000000000000000000005f82015250565b5f611594600b83610ffa565b915061159f82611560565b602082019050919050565b5f6020820190508181035f8301526115c181611588565b9050919050565b7f41756374696f6e20616c72656164792066696e616c697a6564000000000000005f82015250565b5f6115fc601983610ffa565b9150611607826115c8565b602082019050919050565b5f6020820190508181035f830152611629816115f0565b9050919050565b5f6060820190506116435f830186610fe1565b6116506020830185611060565b61165d6040830184610fe1565b949350505050565b5f6040820190506116785f830185611060565b6116856020830184610ec3565b939250505056fea2646970667358221220dafadab73a20cfaadc54cd8359905fa7ca052d11394c7a820c7be51b9489b94164736f6c634300081a0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x40 PUSH32 0xA49807205CE4D355092EF5A8A18F56E8913CF4A201FBE287825B095693C21775 CALLER PUSH2 0x46 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH2 0x1A5 JUMP JUMPDEST PUSH0 PUSH2 0x57 DUP4 DUP4 PUSH2 0x13B PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x131 JUMPI PUSH1 0x1 PUSH0 DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0xCE PUSH2 0x19E PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x1 SWAP1 POP PUSH2 0x135 JUMP JUMPDEST PUSH0 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x16C2 DUP1 PUSH2 0x1B2 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC1 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8E27CB25 GT PUSH2 0x7E JUMPI DUP1 PUSH4 0xA217FDDF GT PUSH2 0x58 JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x277 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x2A1 JUMPI DUP1 PUSH4 0xE8083863 EQ PUSH2 0x2C9 JUMPI DUP1 PUSH4 0xFC528482 EQ PUSH2 0x2F1 JUMPI PUSH2 0xC1 JUMP JUMPDEST DUP1 PUSH4 0x8E27CB25 EQ PUSH2 0x1F7 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x21F JUMPI DUP1 PUSH4 0x9979EF45 EQ PUSH2 0x25B JUMPI PUSH2 0xC1 JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xC5 JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x13D JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x165 JUMPI DUP1 PUSH4 0x571A26A0 EQ PUSH2 0x18D JUMPI DUP1 PUSH4 0x75B238FC EQ PUSH2 0x1CD JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD0 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xEB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE6 SWAP2 SWAP1 PUSH2 0xE07 JUMP JUMPDEST PUSH2 0x31B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0xE4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x127 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x122 SWAP2 SWAP1 PUSH2 0xE98 JUMP JUMPDEST PUSH2 0x394 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0xED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x148 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x163 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x15E SWAP2 SWAP1 PUSH2 0xF45 JUMP JUMPDEST PUSH2 0x3B0 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x170 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x18B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x186 SWAP2 SWAP1 PUSH2 0xF45 JUMP JUMPDEST PUSH2 0x3D2 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x198 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x1B3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AE SWAP2 SWAP1 PUSH2 0xFB6 JUMP JUMPDEST PUSH2 0x44D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C4 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x106F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D8 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x1E1 PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1EE SWAP2 SWAP1 PUSH2 0xED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x202 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x21D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x218 SWAP2 SWAP1 PUSH2 0x1128 JUMP JUMPDEST PUSH2 0x554 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x22A JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x245 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x240 SWAP2 SWAP1 PUSH2 0xF45 JUMP JUMPDEST PUSH2 0x6FE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x252 SWAP2 SWAP1 PUSH2 0xE4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x275 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x270 SWAP2 SWAP1 PUSH2 0xFB6 JUMP JUMPDEST PUSH2 0x761 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x282 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0x958 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x298 SWAP2 SWAP1 PUSH2 0xED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2AC JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C2 SWAP2 SWAP1 PUSH2 0xF45 JUMP JUMPDEST PUSH2 0x95E JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D4 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x2EF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2EA SWAP2 SWAP1 PUSH2 0xFB6 JUMP JUMPDEST PUSH2 0x980 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FC JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0xAFD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x312 SWAP2 SWAP1 PUSH2 0x1173 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 PUSH32 0x7965DB0B00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x38D JUMPI POP PUSH2 0x38C DUP3 PUSH2 0xB03 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3B9 DUP3 PUSH2 0x394 JUMP JUMPDEST PUSH2 0x3C2 DUP2 PUSH2 0xB6C JUMP JUMPDEST PUSH2 0x3CC DUP4 DUP4 PUSH2 0xB80 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x3DA PUSH2 0xC69 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x43E JUMPI PUSH1 0x40 MLOAD PUSH32 0x6697B23200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x448 DUP3 DUP3 PUSH2 0xC70 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x20 MSTORE DUP1 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH0 SWAP2 POP SWAP1 POP DUP1 PUSH0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x472 SWAP1 PUSH2 0x11B9 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 0x49E SWAP1 PUSH2 0x11B9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4E9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4C0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4E9 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x4CC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x3 ADD SLOAD SWAP1 DUP1 PUSH1 0x4 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP DUP6 JUMP JUMPDEST PUSH32 0xA49807205CE4D355092EF5A8A18F56E8913CF4A201FBE287825B095693C21775 DUP2 JUMP JUMPDEST PUSH32 0xA49807205CE4D355092EF5A8A18F56E8913CF4A201FBE287825B095693C21775 PUSH2 0x57E DUP2 PUSH2 0xB6C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP5 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 DUP2 DUP5 ADD MSTORE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND SWAP1 POP DUP1 DUP4 ADD SWAP3 POP POP POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE POP PUSH1 0x2 PUSH0 PUSH1 0x1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x632 SWAP2 SWAP1 PUSH2 0x13B3 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH32 0x84DBBE572FCD8281F88FBF55359AD5039443609C2304288D3C8816DD3BB9FC21 PUSH1 0x1 SLOAD DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0x6DA SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x14BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x6F4 SWAP1 PUSH2 0x1519 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SWAP1 POP DUP1 PUSH1 0x3 ADD SLOAD CALLVALUE GT PUSH2 0x7BB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7B2 SWAP1 PUSH2 0x15AA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x4 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x80C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x803 SWAP1 PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x8CE JUMPI DUP1 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP3 PUSH1 0x3 ADD SLOAD SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x8CC JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP JUMPDEST CALLER DUP2 PUSH1 0x2 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP CALLVALUE DUP2 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP PUSH32 0x558A0D5D5468D74B0DB24C74EB348B42271C2EBB4C9E953CED38AAED95FA4361 DUP3 CALLER CALLVALUE PUSH1 0x40 MLOAD PUSH2 0x94C SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1630 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST PUSH0 DUP1 SHL DUP2 JUMP JUMPDEST PUSH2 0x967 DUP3 PUSH2 0x394 JUMP JUMPDEST PUSH2 0x970 DUP2 PUSH2 0xB6C JUMP JUMPDEST PUSH2 0x97A DUP4 DUP4 PUSH2 0xC70 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0xA49807205CE4D355092EF5A8A18F56E8913CF4A201FBE287825B095693C21775 PUSH2 0x9AA DUP2 PUSH2 0xB6C JUMP JUMPDEST PUSH0 PUSH1 0x2 PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SWAP1 POP DUP1 PUSH1 0x4 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xA0F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA06 SWAP1 PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP1 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP3 PUSH1 0x3 ADD SLOAD SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0xA95 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP PUSH32 0x4D9113A1377D665EAA1F9168A9C9080F2E488CB820B10149DE3D6D2E0F2780C7 DUP4 DUP3 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x3 ADD SLOAD PUSH1 0x40 MLOAD PUSH2 0xAF0 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1630 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD DUP2 JUMP JUMPDEST PUSH0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB7D DUP2 PUSH2 0xB78 PUSH2 0xC69 JUMP JUMPDEST PUSH2 0xD59 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0xB8B DUP4 DUP4 PUSH2 0x6FE JUMP JUMPDEST PUSH2 0xC5F JUMPI PUSH1 0x1 PUSH0 DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0xBFC PUSH2 0xC69 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x1 SWAP1 POP PUSH2 0xC63 JUMP JUMPDEST PUSH0 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xC7B DUP4 DUP4 PUSH2 0x6FE JUMP JUMPDEST ISZERO PUSH2 0xD4F JUMPI PUSH0 DUP1 PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0xCEC PUSH2 0xC69 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x1 SWAP1 POP PUSH2 0xD53 JUMP JUMPDEST PUSH0 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD63 DUP3 DUP3 PUSH2 0x6FE JUMP JUMPDEST PUSH2 0xDA6 JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH32 0xE2517D3F00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD9D SWAP3 SWAP2 SWAP1 PUSH2 0x1665 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDE6 DUP2 PUSH2 0xDB2 JUMP JUMPDEST DUP2 EQ PUSH2 0xDF0 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE01 DUP2 PUSH2 0xDDD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE1C JUMPI PUSH2 0xE1B PUSH2 0xDAA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xE29 DUP5 DUP3 DUP6 ADD PUSH2 0xDF3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE46 DUP2 PUSH2 0xE32 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xE5F PUSH0 DUP4 ADD DUP5 PUSH2 0xE3D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE77 DUP2 PUSH2 0xE65 JUMP JUMPDEST DUP2 EQ PUSH2 0xE81 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE92 DUP2 PUSH2 0xE6E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xEAD JUMPI PUSH2 0xEAC PUSH2 0xDAA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xEBA DUP5 DUP3 DUP6 ADD PUSH2 0xE84 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xECC DUP2 PUSH2 0xE65 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEE5 PUSH0 DUP4 ADD DUP5 PUSH2 0xEC3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xF14 DUP3 PUSH2 0xEEB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF24 DUP2 PUSH2 0xF0A JUMP JUMPDEST DUP2 EQ PUSH2 0xF2E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xF3F DUP2 PUSH2 0xF1B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF5B JUMPI PUSH2 0xF5A PUSH2 0xDAA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xF68 DUP6 DUP3 DUP7 ADD PUSH2 0xE84 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xF79 DUP6 DUP3 DUP7 ADD PUSH2 0xF31 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF95 DUP2 PUSH2 0xF83 JUMP JUMPDEST DUP2 EQ PUSH2 0xF9F JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFB0 DUP2 PUSH2 0xF8C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFCB JUMPI PUSH2 0xFCA PUSH2 0xDAA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xFD8 DUP5 DUP3 DUP6 ADD PUSH2 0xFA2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xFEA DUP2 PUSH2 0xF83 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1032 DUP3 PUSH2 0xFF0 JUMP JUMPDEST PUSH2 0x103C DUP2 DUP6 PUSH2 0xFFA JUMP JUMPDEST SWAP4 POP PUSH2 0x104C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x100A JUMP JUMPDEST PUSH2 0x1055 DUP2 PUSH2 0x1018 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1069 DUP2 PUSH2 0xF0A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x1082 PUSH0 DUP4 ADD DUP9 PUSH2 0xFE1 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1094 DUP2 DUP8 PUSH2 0x1028 JUMP JUMPDEST SWAP1 POP PUSH2 0x10A3 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x1060 JUMP JUMPDEST PUSH2 0x10B0 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0xFE1 JUMP JUMPDEST PUSH2 0x10BD PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0xE3D JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x10E8 JUMPI PUSH2 0x10E7 PUSH2 0x10C7 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1105 JUMPI PUSH2 0x1104 PUSH2 0x10CB JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x1121 JUMPI PUSH2 0x1120 PUSH2 0x10CF JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x113E JUMPI PUSH2 0x113D PUSH2 0xDAA JUMP JUMPDEST JUMPDEST PUSH0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x115B JUMPI PUSH2 0x115A PUSH2 0xDAE JUMP JUMPDEST JUMPDEST PUSH2 0x1167 DUP6 DUP3 DUP7 ADD PUSH2 0x10D3 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1186 PUSH0 DUP4 ADD DUP5 PUSH2 0xFE1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x11D0 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x11E3 JUMPI PUSH2 0x11E2 PUSH2 0x118C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x1272 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x1237 JUMP JUMPDEST PUSH2 0x127C DUP7 DUP4 PUSH2 0x1237 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x12B7 PUSH2 0x12B2 PUSH2 0x12AD DUP5 PUSH2 0xF83 JUMP JUMPDEST PUSH2 0x1294 JUMP JUMPDEST PUSH2 0xF83 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x12D0 DUP4 PUSH2 0x129D JUMP JUMPDEST PUSH2 0x12E4 PUSH2 0x12DC DUP3 PUSH2 0x12BE JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x1243 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x12F8 PUSH2 0x12EC JUMP JUMPDEST PUSH2 0x1303 DUP2 DUP5 DUP5 PUSH2 0x12C7 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1326 JUMPI PUSH2 0x131B PUSH0 DUP3 PUSH2 0x12F0 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x1309 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x136B JUMPI PUSH2 0x133C DUP2 PUSH2 0x1216 JUMP JUMPDEST PUSH2 0x1345 DUP5 PUSH2 0x1228 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x1354 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x1368 PUSH2 0x1360 DUP6 PUSH2 0x1228 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x1308 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x138B PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x1370 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x13A3 DUP4 DUP4 PUSH2 0x137C JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x13BC DUP3 PUSH2 0xFF0 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x13D5 JUMPI PUSH2 0x13D4 PUSH2 0x11E9 JUMP JUMPDEST JUMPDEST PUSH2 0x13DF DUP3 SLOAD PUSH2 0x11B9 JUMP JUMPDEST PUSH2 0x13EA DUP3 DUP3 DUP6 PUSH2 0x132A JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x141B JUMPI PUSH0 DUP5 ISZERO PUSH2 0x1409 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x1413 DUP6 DUP3 PUSH2 0x1398 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x147A JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x1429 DUP7 PUSH2 0x1216 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1450 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 0x142B JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x146D JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x1469 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x137C 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 DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x149B DUP4 DUP6 PUSH2 0xFFA JUMP JUMPDEST SWAP4 POP PUSH2 0x14A8 DUP4 DUP6 DUP5 PUSH2 0x1482 JUMP JUMPDEST PUSH2 0x14B1 DUP4 PUSH2 0x1018 JUMP JUMPDEST DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x14CF PUSH0 DUP4 ADD DUP7 PUSH2 0xFE1 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x14E2 DUP2 DUP5 DUP7 PUSH2 0x1490 JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x1523 DUP3 PUSH2 0xF83 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x1555 JUMPI PUSH2 0x1554 PUSH2 0x14EC JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x42696420746F6F206C6F77000000000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1594 PUSH1 0xB DUP4 PUSH2 0xFFA JUMP JUMPDEST SWAP2 POP PUSH2 0x159F DUP3 PUSH2 0x1560 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x15C1 DUP2 PUSH2 0x1588 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x41756374696F6E20616C72656164792066696E616C697A656400000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x15FC PUSH1 0x19 DUP4 PUSH2 0xFFA JUMP JUMPDEST SWAP2 POP PUSH2 0x1607 DUP3 PUSH2 0x15C8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1629 DUP2 PUSH2 0x15F0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x1643 PUSH0 DUP4 ADD DUP7 PUSH2 0xFE1 JUMP JUMPDEST PUSH2 0x1650 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x1060 JUMP JUMPDEST PUSH2 0x165D PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0xFE1 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x1678 PUSH0 DUP4 ADD DUP6 PUSH2 0x1060 JUMP JUMPDEST PUSH2 0x1685 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xEC3 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDA STATICCALL 0xDA 0xB7 GASPRICE KECCAK256 0xCF 0xAA 0xDC SLOAD 0xCD DUP4 MSIZE SWAP1 PUSH0 0xA7 0xCA SDIV 0x2D GT CODECOPY 0x4C PUSH27 0x820C7BE51B9489B94164736F6C634300081A003300000000000000 ",
"sourceMap": "117:1837:5:-:0;;;683:65;;;;;;;;;;707:34;194:23;730:10;707;;;:34;;:::i;:::-;;117:1837;;6179:316:0;6256:4;6277:22;6285:4;6291:7;6277;;;:22;;:::i;:::-;6272:217;;6347:4;6315:6;:12;6322:4;6315:12;;;;;;;;;;;:20;;:29;6336:7;6315:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;6397:12;:10;;;:12;;:::i;:::-;6370:40;;6388:7;6370:40;;6382:4;6370:40;;;;;;;;;;6431:4;6424:11;;;;6272:217;6473:5;6466:12;;6179:316;;;;;:::o;2854:136::-;2931:4;2954:6;:12;2961:4;2954:12;;;;;;;;;;;:20;;:29;2975:7;2954:29;;;;;;;;;;;;;;;;;;;;;;;;;2947:36;;2854:136;;;;:::o;656:96:2:-;709:7;735:10;728:17;;656:96;:::o;117:1837:5:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@ADMIN_ROLE_454": {
"entryPoint": 1328,
"id": 454,
"parameterSlots": 0,
"returnSlots": 0
},
"@DEFAULT_ADMIN_ROLE_29": {
"entryPoint": 2392,
"id": 29,
"parameterSlots": 0,
"returnSlots": 0
},
"@_checkRole_114": {
"entryPoint": 3417,
"id": 114,
"parameterSlots": 2,
"returnSlots": 0
},
"@_checkRole_93": {
"entryPoint": 2924,
"id": 93,
"parameterSlots": 1,
"returnSlots": 0
},
"@_grantRole_256": {
"entryPoint": 2944,
"id": 256,
"parameterSlots": 2,
"returnSlots": 1
},
"@_msgSender_390": {
"entryPoint": 3177,
"id": 390,
"parameterSlots": 0,
"returnSlots": 1
},
"@_revokeRole_294": {
"entryPoint": 3184,
"id": 294,
"parameterSlots": 2,
"returnSlots": 1
},
"@auctions_472": {
"entryPoint": 1101,
"id": 472,
"parameterSlots": 0,
"returnSlots": 0
},
"@createAuction_536": {
"entryPoint": 1364,
"id": 536,
"parameterSlots": 2,
"returnSlots": 0
},
"@finalizeAuction_653": {
"entryPoint": 2432,
"id": 653,
"parameterSlots": 1,
"returnSlots": 0
},
"@getRoleAdmin_128": {
"entryPoint": 916,
"id": 128,
"parameterSlots": 1,
"returnSlots": 1
},
"@grantRole_147": {
"entryPoint": 944,
"id": 147,
"parameterSlots": 2,
"returnSlots": 0
},
"@hasRole_80": {
"entryPoint": 1790,
"id": 80,
"parameterSlots": 2,
"returnSlots": 1
},
"@nextAuctionId_467": {
"entryPoint": 2813,
"id": 467,
"parameterSlots": 0,
"returnSlots": 0
},
"@placeBid_606": {
"entryPoint": 1889,
"id": 606,
"parameterSlots": 1,
"returnSlots": 0
},
"@renounceRole_189": {
"entryPoint": 978,
"id": 189,
"parameterSlots": 2,
"returnSlots": 0
},
"@revokeRole_166": {
"entryPoint": 2398,
"id": 166,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_431": {
"entryPoint": 2819,
"id": 431,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_62": {
"entryPoint": 795,
"id": 62,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 3889,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes32": {
"entryPoint": 3716,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 3571,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_calldata_ptr": {
"entryPoint": 4307,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_t_uint256": {
"entryPoint": 4002,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes32": {
"entryPoint": 3736,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes32t_address": {
"entryPoint": 3909,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 3591,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_calldata_ptr": {
"entryPoint": 4392,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 4022,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 4192,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 3645,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_fromStack": {
"entryPoint": 3779,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5264,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 4136,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_13e75ff1b0a6ca9bca87c24c1936118dd10a3ec174f359ad2a8c3d901173470e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5512,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_18d31d1b8c03c839b7b8aa017d8aedb244f75bc4aeba4a5312cdf09289f17f05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5616,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 4065,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed": {
"entryPoint": 5733,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 3660,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
"entryPoint": 3794,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_13e75ff1b0a6ca9bca87c24c1936118dd10a3ec174f359ad2a8c3d901173470e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5546,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_18d31d1b8c03c839b7b8aa017d8aedb244f75bc4aeba4a5312cdf09289f17f05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5650,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 4467,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_address_t_uint256__to_t_uint256_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 5680,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_calldata_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5308,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_string_memory_ptr_t_address_t_uint256_t_bool__to_t_uint256_t_string_memory_ptr_t_address_t_uint256_t_bool__fromStack_reversed": {
"entryPoint": 4207,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 4630,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 4080,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 4090,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 4906,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 3850,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 3634,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 3685,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 3506,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 3819,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 3971,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 4872,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 4765,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 5043,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 5250,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 4106,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 4648,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 4537,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 5016,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 4756,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 5401,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 4988,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 5356,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 4492,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 4585,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 4798,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490": {
"entryPoint": 4299,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 4295,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef": {
"entryPoint": 4303,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 3502,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 3498,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 4120,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 4663,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 4976,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 4848,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"store_literal_in_memory_13e75ff1b0a6ca9bca87c24c1936118dd10a3ec174f359ad2a8c3d901173470e": {
"entryPoint": 5472,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_18d31d1b8c03c839b7b8aa017d8aedb244f75bc4aeba4a5312cdf09289f17f05": {
"entryPoint": 5576,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 4675,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 4807,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 3867,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes32": {
"entryPoint": 3694,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 3549,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 3980,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 4844,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:16996:6",
"nodeType": "YulBlock",
"src": "0:16996:6",
"statements": [
{
"body": {
"nativeSrc": "47:35:6",
"nodeType": "YulBlock",
"src": "47:35:6",
"statements": [
{
"nativeSrc": "57:19:6",
"nodeType": "YulAssignment",
"src": "57:19:6",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "73:2:6",
"nodeType": "YulLiteral",
"src": "73:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "67:5:6",
"nodeType": "YulIdentifier",
"src": "67:5:6"
},
"nativeSrc": "67:9:6",
"nodeType": "YulFunctionCall",
"src": "67:9:6"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "57:6:6",
"nodeType": "YulIdentifier",
"src": "57:6:6"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "7:75:6",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "40:6:6",
"nodeType": "YulTypedName",
"src": "40:6:6",
"type": ""
}
],
"src": "7:75:6"
},
{
"body": {
"nativeSrc": "177:28:6",
"nodeType": "YulBlock",
"src": "177:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "194:1:6",
"nodeType": "YulLiteral",
"src": "194:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "197:1:6",
"nodeType": "YulLiteral",
"src": "197:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "187:6:6",
"nodeType": "YulIdentifier",
"src": "187:6:6"
},
"nativeSrc": "187:12:6",
"nodeType": "YulFunctionCall",
"src": "187:12:6"
},
"nativeSrc": "187:12:6",
"nodeType": "YulExpressionStatement",
"src": "187:12:6"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "88:117:6",
"nodeType": "YulFunctionDefinition",
"src": "88:117:6"
},
{
"body": {
"nativeSrc": "300:28:6",
"nodeType": "YulBlock",
"src": "300:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "317:1:6",
"nodeType": "YulLiteral",
"src": "317:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "320:1:6",
"nodeType": "YulLiteral",
"src": "320:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "310:6:6",
"nodeType": "YulIdentifier",
"src": "310:6:6"
},
"nativeSrc": "310:12:6",
"nodeType": "YulFunctionCall",
"src": "310:12:6"
},
"nativeSrc": "310:12:6",
"nodeType": "YulExpressionStatement",
"src": "310:12:6"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "211:117:6",
"nodeType": "YulFunctionDefinition",
"src": "211:117:6"
},
{
"body": {
"nativeSrc": "378:105:6",
"nodeType": "YulBlock",
"src": "378:105:6",
"statements": [
{
"nativeSrc": "388:89:6",
"nodeType": "YulAssignment",
"src": "388:89:6",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "403:5:6",
"nodeType": "YulIdentifier",
"src": "403:5:6"
},
{
"kind": "number",
"nativeSrc": "410:66:6",
"nodeType": "YulLiteral",
"src": "410:66:6",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nativeSrc": "399:3:6",
"nodeType": "YulIdentifier",
"src": "399:3:6"
},
"nativeSrc": "399:78:6",
"nodeType": "YulFunctionCall",
"src": "399:78:6"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "388:7:6",
"nodeType": "YulIdentifier",
"src": "388:7:6"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nativeSrc": "334:149:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "360:5:6",
"nodeType": "YulTypedName",
"src": "360:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "370:7:6",
"nodeType": "YulTypedName",
"src": "370:7:6",
"type": ""
}
],
"src": "334:149:6"
},
{
"body": {
"nativeSrc": "531:78:6",
"nodeType": "YulBlock",
"src": "531:78:6",
"statements": [
{
"body": {
"nativeSrc": "587:16:6",
"nodeType": "YulBlock",
"src": "587:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "596:1:6",
"nodeType": "YulLiteral",
"src": "596:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "599:1:6",
"nodeType": "YulLiteral",
"src": "599:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "589:6:6",
"nodeType": "YulIdentifier",
"src": "589:6:6"
},
"nativeSrc": "589:12:6",
"nodeType": "YulFunctionCall",
"src": "589:12:6"
},
"nativeSrc": "589:12:6",
"nodeType": "YulExpressionStatement",
"src": "589:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "554:5:6",
"nodeType": "YulIdentifier",
"src": "554:5:6"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "578:5:6",
"nodeType": "YulIdentifier",
"src": "578:5:6"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nativeSrc": "561:16:6",
"nodeType": "YulIdentifier",
"src": "561:16:6"
},
"nativeSrc": "561:23:6",
"nodeType": "YulFunctionCall",
"src": "561:23:6"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "551:2:6",
"nodeType": "YulIdentifier",
"src": "551:2:6"
},
"nativeSrc": "551:34:6",
"nodeType": "YulFunctionCall",
"src": "551:34:6"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "544:6:6",
"nodeType": "YulIdentifier",
"src": "544:6:6"
},
"nativeSrc": "544:42:6",
"nodeType": "YulFunctionCall",
"src": "544:42:6"
},
"nativeSrc": "541:62:6",
"nodeType": "YulIf",
"src": "541:62:6"
}
]
},
"name": "validator_revert_t_bytes4",
"nativeSrc": "489:120:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "524:5:6",
"nodeType": "YulTypedName",
"src": "524:5:6",
"type": ""
}
],
"src": "489:120:6"
},
{
"body": {
"nativeSrc": "666:86:6",
"nodeType": "YulBlock",
"src": "666:86:6",
"statements": [
{
"nativeSrc": "676:29:6",
"nodeType": "YulAssignment",
"src": "676:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "698:6:6",
"nodeType": "YulIdentifier",
"src": "698:6:6"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "685:12:6",
"nodeType": "YulIdentifier",
"src": "685:12:6"
},
"nativeSrc": "685:20:6",
"nodeType": "YulFunctionCall",
"src": "685:20:6"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "676:5:6",
"nodeType": "YulIdentifier",
"src": "676:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "740:5:6",
"nodeType": "YulIdentifier",
"src": "740:5:6"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nativeSrc": "714:25:6",
"nodeType": "YulIdentifier",
"src": "714:25:6"
},
"nativeSrc": "714:32:6",
"nodeType": "YulFunctionCall",
"src": "714:32:6"
},
"nativeSrc": "714:32:6",
"nodeType": "YulExpressionStatement",
"src": "714:32:6"
}
]
},
"name": "abi_decode_t_bytes4",
"nativeSrc": "615:137:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "644:6:6",
"nodeType": "YulTypedName",
"src": "644:6:6",
"type": ""
},
{
"name": "end",
"nativeSrc": "652:3:6",
"nodeType": "YulTypedName",
"src": "652:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "660:5:6",
"nodeType": "YulTypedName",
"src": "660:5:6",
"type": ""
}
],
"src": "615:137:6"
},
{
"body": {
"nativeSrc": "823:262:6",
"nodeType": "YulBlock",
"src": "823:262:6",
"statements": [
{
"body": {
"nativeSrc": "869:83:6",
"nodeType": "YulBlock",
"src": "869:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "871:77:6",
"nodeType": "YulIdentifier",
"src": "871:77:6"
},
"nativeSrc": "871:79:6",
"nodeType": "YulFunctionCall",
"src": "871:79:6"
},
"nativeSrc": "871:79:6",
"nodeType": "YulExpressionStatement",
"src": "871:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "844:7:6",
"nodeType": "YulIdentifier",
"src": "844:7:6"
},
{
"name": "headStart",
"nativeSrc": "853:9:6",
"nodeType": "YulIdentifier",
"src": "853:9:6"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "840:3:6",
"nodeType": "YulIdentifier",
"src": "840:3:6"
},
"nativeSrc": "840:23:6",
"nodeType": "YulFunctionCall",
"src": "840:23:6"
},
{
"kind": "number",
"nativeSrc": "865:2:6",
"nodeType": "YulLiteral",
"src": "865:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "836:3:6",
"nodeType": "YulIdentifier",
"src": "836:3:6"
},
"nativeSrc": "836:32:6",
"nodeType": "YulFunctionCall",
"src": "836:32:6"
},
"nativeSrc": "833:119:6",
"nodeType": "YulIf",
"src": "833:119:6"
},
{
"nativeSrc": "962:116:6",
"nodeType": "YulBlock",
"src": "962:116:6",
"statements": [
{
"nativeSrc": "977:15:6",
"nodeType": "YulVariableDeclaration",
"src": "977:15:6",
"value": {
"kind": "number",
"nativeSrc": "991:1:6",
"nodeType": "YulLiteral",
"src": "991:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "981:6:6",
"nodeType": "YulTypedName",
"src": "981:6:6",
"type": ""
}
]
},
{
"nativeSrc": "1006:62:6",
"nodeType": "YulAssignment",
"src": "1006:62:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1040:9:6",
"nodeType": "YulIdentifier",
"src": "1040:9:6"
},
{
"name": "offset",
"nativeSrc": "1051:6:6",
"nodeType": "YulIdentifier",
"src": "1051:6:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1036:3:6",
"nodeType": "YulIdentifier",
"src": "1036:3:6"
},
"nativeSrc": "1036:22:6",
"nodeType": "YulFunctionCall",
"src": "1036:22:6"
},
{
"name": "dataEnd",
"nativeSrc": "1060:7:6",
"nodeType": "YulIdentifier",
"src": "1060:7:6"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nativeSrc": "1016:19:6",
"nodeType": "YulIdentifier",
"src": "1016:19:6"
},
"nativeSrc": "1016:52:6",
"nodeType": "YulFunctionCall",
"src": "1016:52:6"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "1006:6:6",
"nodeType": "YulIdentifier",
"src": "1006:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nativeSrc": "758:327:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "793:9:6",
"nodeType": "YulTypedName",
"src": "793:9:6",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "804:7:6",
"nodeType": "YulTypedName",
"src": "804:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "816:6:6",
"nodeType": "YulTypedName",
"src": "816:6:6",
"type": ""
}
],
"src": "758:327:6"
},
{
"body": {
"nativeSrc": "1133:48:6",
"nodeType": "YulBlock",
"src": "1133:48:6",
"statements": [
{
"nativeSrc": "1143:32:6",
"nodeType": "YulAssignment",
"src": "1143:32:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1168:5:6",
"nodeType": "YulIdentifier",
"src": "1168:5:6"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "1161:6:6",
"nodeType": "YulIdentifier",
"src": "1161:6:6"
},
"nativeSrc": "1161:13:6",
"nodeType": "YulFunctionCall",
"src": "1161:13:6"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "1154:6:6",
"nodeType": "YulIdentifier",
"src": "1154:6:6"
},
"nativeSrc": "1154:21:6",
"nodeType": "YulFunctionCall",
"src": "1154:21:6"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1143:7:6",
"nodeType": "YulIdentifier",
"src": "1143:7:6"
}
]
}
]
},
"name": "cleanup_t_bool",
"nativeSrc": "1091:90:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1115:5:6",
"nodeType": "YulTypedName",
"src": "1115:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1125:7:6",
"nodeType": "YulTypedName",
"src": "1125:7:6",
"type": ""
}
],
"src": "1091:90:6"
},
{
"body": {
"nativeSrc": "1246:50:6",
"nodeType": "YulBlock",
"src": "1246:50:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1263:3:6",
"nodeType": "YulIdentifier",
"src": "1263:3:6"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1283:5:6",
"nodeType": "YulIdentifier",
"src": "1283:5:6"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nativeSrc": "1268:14:6",
"nodeType": "YulIdentifier",
"src": "1268:14:6"
},
"nativeSrc": "1268:21:6",
"nodeType": "YulFunctionCall",
"src": "1268:21:6"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1256:6:6",
"nodeType": "YulIdentifier",
"src": "1256:6:6"
},
"nativeSrc": "1256:34:6",
"nodeType": "YulFunctionCall",
"src": "1256:34:6"
},
"nativeSrc": "1256:34:6",
"nodeType": "YulExpressionStatement",
"src": "1256:34:6"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nativeSrc": "1187:109:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1234:5:6",
"nodeType": "YulTypedName",
"src": "1234:5:6",
"type": ""
},
{
"name": "pos",
"nativeSrc": "1241:3:6",
"nodeType": "YulTypedName",
"src": "1241:3:6",
"type": ""
}
],
"src": "1187:109:6"
},
{
"body": {
"nativeSrc": "1394:118:6",
"nodeType": "YulBlock",
"src": "1394:118:6",
"statements": [
{
"nativeSrc": "1404:26:6",
"nodeType": "YulAssignment",
"src": "1404:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "1416:9:6",
"nodeType": "YulIdentifier",
"src": "1416:9:6"
},
{
"kind": "number",
"nativeSrc": "1427:2:6",
"nodeType": "YulLiteral",
"src": "1427:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1412:3:6",
"nodeType": "YulIdentifier",
"src": "1412:3:6"
},
"nativeSrc": "1412:18:6",
"nodeType": "YulFunctionCall",
"src": "1412:18:6"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1404:4:6",
"nodeType": "YulIdentifier",
"src": "1404:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "1478:6:6",
"nodeType": "YulIdentifier",
"src": "1478:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1491:9:6",
"nodeType": "YulIdentifier",
"src": "1491:9:6"
},
{
"kind": "number",
"nativeSrc": "1502:1:6",
"nodeType": "YulLiteral",
"src": "1502:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1487:3:6",
"nodeType": "YulIdentifier",
"src": "1487:3:6"
},
"nativeSrc": "1487:17:6",
"nodeType": "YulFunctionCall",
"src": "1487:17:6"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nativeSrc": "1440:37:6",
"nodeType": "YulIdentifier",
"src": "1440:37:6"
},
"nativeSrc": "1440:65:6",
"nodeType": "YulFunctionCall",
"src": "1440:65:6"
},
"nativeSrc": "1440:65:6",
"nodeType": "YulExpressionStatement",
"src": "1440:65:6"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nativeSrc": "1302:210:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1366:9:6",
"nodeType": "YulTypedName",
"src": "1366:9:6",
"type": ""
},
{
"name": "value0",
"nativeSrc": "1378:6:6",
"nodeType": "YulTypedName",
"src": "1378:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "1389:4:6",
"nodeType": "YulTypedName",
"src": "1389:4:6",
"type": ""
}
],
"src": "1302:210:6"
},
{
"body": {
"nativeSrc": "1563:32:6",
"nodeType": "YulBlock",
"src": "1563:32:6",
"statements": [
{
"nativeSrc": "1573:16:6",
"nodeType": "YulAssignment",
"src": "1573:16:6",
"value": {
"name": "value",
"nativeSrc": "1584:5:6",
"nodeType": "YulIdentifier",
"src": "1584:5:6"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1573:7:6",
"nodeType": "YulIdentifier",
"src": "1573:7:6"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nativeSrc": "1518:77:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1545:5:6",
"nodeType": "YulTypedName",
"src": "1545:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1555:7:6",
"nodeType": "YulTypedName",
"src": "1555:7:6",
"type": ""
}
],
"src": "1518:77:6"
},
{
"body": {
"nativeSrc": "1644:79:6",
"nodeType": "YulBlock",
"src": "1644:79:6",
"statements": [
{
"body": {
"nativeSrc": "1701:16:6",
"nodeType": "YulBlock",
"src": "1701:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1710:1:6",
"nodeType": "YulLiteral",
"src": "1710:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1713:1:6",
"nodeType": "YulLiteral",
"src": "1713:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1703:6:6",
"nodeType": "YulIdentifier",
"src": "1703:6:6"
},
"nativeSrc": "1703:12:6",
"nodeType": "YulFunctionCall",
"src": "1703:12:6"
},
"nativeSrc": "1703:12:6",
"nodeType": "YulExpressionStatement",
"src": "1703:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1667:5:6",
"nodeType": "YulIdentifier",
"src": "1667:5:6"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1692:5:6",
"nodeType": "YulIdentifier",
"src": "1692:5:6"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nativeSrc": "1674:17:6",
"nodeType": "YulIdentifier",
"src": "1674:17:6"
},
"nativeSrc": "1674:24:6",
"nodeType": "YulFunctionCall",
"src": "1674:24:6"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "1664:2:6",
"nodeType": "YulIdentifier",
"src": "1664:2:6"
},
"nativeSrc": "1664:35:6",
"nodeType": "YulFunctionCall",
"src": "1664:35:6"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "1657:6:6",
"nodeType": "YulIdentifier",
"src": "1657:6:6"
},
"nativeSrc": "1657:43:6",
"nodeType": "YulFunctionCall",
"src": "1657:43:6"
},
"nativeSrc": "1654:63:6",
"nodeType": "YulIf",
"src": "1654:63:6"
}
]
},
"name": "validator_revert_t_bytes32",
"nativeSrc": "1601:122:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1637:5:6",
"nodeType": "YulTypedName",
"src": "1637:5:6",
"type": ""
}
],
"src": "1601:122:6"
},
{
"body": {
"nativeSrc": "1781:87:6",
"nodeType": "YulBlock",
"src": "1781:87:6",
"statements": [
{
"nativeSrc": "1791:29:6",
"nodeType": "YulAssignment",
"src": "1791:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "1813:6:6",
"nodeType": "YulIdentifier",
"src": "1813:6:6"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "1800:12:6",
"nodeType": "YulIdentifier",
"src": "1800:12:6"
},
"nativeSrc": "1800:20:6",
"nodeType": "YulFunctionCall",
"src": "1800:20:6"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "1791:5:6",
"nodeType": "YulIdentifier",
"src": "1791:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "1856:5:6",
"nodeType": "YulIdentifier",
"src": "1856:5:6"
}
],
"functionName": {
"name": "validator_revert_t_bytes32",
"nativeSrc": "1829:26:6",
"nodeType": "YulIdentifier",
"src": "1829:26:6"
},
"nativeSrc": "1829:33:6",
"nodeType": "YulFunctionCall",
"src": "1829:33:6"
},
"nativeSrc": "1829:33:6",
"nodeType": "YulExpressionStatement",
"src": "1829:33:6"
}
]
},
"name": "abi_decode_t_bytes32",
"nativeSrc": "1729:139:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "1759:6:6",
"nodeType": "YulTypedName",
"src": "1759:6:6",
"type": ""
},
{
"name": "end",
"nativeSrc": "1767:3:6",
"nodeType": "YulTypedName",
"src": "1767:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "1775:5:6",
"nodeType": "YulTypedName",
"src": "1775:5:6",
"type": ""
}
],
"src": "1729:139:6"
},
{
"body": {
"nativeSrc": "1940:263:6",
"nodeType": "YulBlock",
"src": "1940:263:6",
"statements": [
{
"body": {
"nativeSrc": "1986:83:6",
"nodeType": "YulBlock",
"src": "1986:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1988:77:6",
"nodeType": "YulIdentifier",
"src": "1988:77:6"
},
"nativeSrc": "1988:79:6",
"nodeType": "YulFunctionCall",
"src": "1988:79:6"
},
"nativeSrc": "1988:79:6",
"nodeType": "YulExpressionStatement",
"src": "1988:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "1961:7:6",
"nodeType": "YulIdentifier",
"src": "1961:7:6"
},
{
"name": "headStart",
"nativeSrc": "1970:9:6",
"nodeType": "YulIdentifier",
"src": "1970:9:6"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1957:3:6",
"nodeType": "YulIdentifier",
"src": "1957:3:6"
},
"nativeSrc": "1957:23:6",
"nodeType": "YulFunctionCall",
"src": "1957:23:6"
},
{
"kind": "number",
"nativeSrc": "1982:2:6",
"nodeType": "YulLiteral",
"src": "1982:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "1953:3:6",
"nodeType": "YulIdentifier",
"src": "1953:3:6"
},
"nativeSrc": "1953:32:6",
"nodeType": "YulFunctionCall",
"src": "1953:32:6"
},
"nativeSrc": "1950:119:6",
"nodeType": "YulIf",
"src": "1950:119:6"
},
{
"nativeSrc": "2079:117:6",
"nodeType": "YulBlock",
"src": "2079:117:6",
"statements": [
{
"nativeSrc": "2094:15:6",
"nodeType": "YulVariableDeclaration",
"src": "2094:15:6",
"value": {
"kind": "number",
"nativeSrc": "2108:1:6",
"nodeType": "YulLiteral",
"src": "2108:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "2098:6:6",
"nodeType": "YulTypedName",
"src": "2098:6:6",
"type": ""
}
]
},
{
"nativeSrc": "2123:63:6",
"nodeType": "YulAssignment",
"src": "2123:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2158:9:6",
"nodeType": "YulIdentifier",
"src": "2158:9:6"
},
{
"name": "offset",
"nativeSrc": "2169:6:6",
"nodeType": "YulIdentifier",
"src": "2169:6:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2154:3:6",
"nodeType": "YulIdentifier",
"src": "2154:3:6"
},
"nativeSrc": "2154:22:6",
"nodeType": "YulFunctionCall",
"src": "2154:22:6"
},
{
"name": "dataEnd",
"nativeSrc": "2178:7:6",
"nodeType": "YulIdentifier",
"src": "2178:7:6"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nativeSrc": "2133:20:6",
"nodeType": "YulIdentifier",
"src": "2133:20:6"
},
"nativeSrc": "2133:53:6",
"nodeType": "YulFunctionCall",
"src": "2133:53:6"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "2123:6:6",
"nodeType": "YulIdentifier",
"src": "2123:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes32",
"nativeSrc": "1874:329:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1910:9:6",
"nodeType": "YulTypedName",
"src": "1910:9:6",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "1921:7:6",
"nodeType": "YulTypedName",
"src": "1921:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "1933:6:6",
"nodeType": "YulTypedName",
"src": "1933:6:6",
"type": ""
}
],
"src": "1874:329:6"
},
{
"body": {
"nativeSrc": "2274:53:6",
"nodeType": "YulBlock",
"src": "2274:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2291:3:6",
"nodeType": "YulIdentifier",
"src": "2291:3:6"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2314:5:6",
"nodeType": "YulIdentifier",
"src": "2314:5:6"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nativeSrc": "2296:17:6",
"nodeType": "YulIdentifier",
"src": "2296:17:6"
},
"nativeSrc": "2296:24:6",
"nodeType": "YulFunctionCall",
"src": "2296:24:6"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2284:6:6",
"nodeType": "YulIdentifier",
"src": "2284:6:6"
},
"nativeSrc": "2284:37:6",
"nodeType": "YulFunctionCall",
"src": "2284:37:6"
},
"nativeSrc": "2284:37:6",
"nodeType": "YulExpressionStatement",
"src": "2284:37:6"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "2209:118:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2262:5:6",
"nodeType": "YulTypedName",
"src": "2262:5:6",
"type": ""
},
{
"name": "pos",
"nativeSrc": "2269:3:6",
"nodeType": "YulTypedName",
"src": "2269:3:6",
"type": ""
}
],
"src": "2209:118:6"
},
{
"body": {
"nativeSrc": "2431:124:6",
"nodeType": "YulBlock",
"src": "2431:124:6",
"statements": [
{
"nativeSrc": "2441:26:6",
"nodeType": "YulAssignment",
"src": "2441:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "2453:9:6",
"nodeType": "YulIdentifier",
"src": "2453:9:6"
},
{
"kind": "number",
"nativeSrc": "2464:2:6",
"nodeType": "YulLiteral",
"src": "2464:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2449:3:6",
"nodeType": "YulIdentifier",
"src": "2449:3:6"
},
"nativeSrc": "2449:18:6",
"nodeType": "YulFunctionCall",
"src": "2449:18:6"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "2441:4:6",
"nodeType": "YulIdentifier",
"src": "2441:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "2521:6:6",
"nodeType": "YulIdentifier",
"src": "2521:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2534:9:6",
"nodeType": "YulIdentifier",
"src": "2534:9:6"
},
{
"kind": "number",
"nativeSrc": "2545:1:6",
"nodeType": "YulLiteral",
"src": "2545:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2530:3:6",
"nodeType": "YulIdentifier",
"src": "2530:3:6"
},
"nativeSrc": "2530:17:6",
"nodeType": "YulFunctionCall",
"src": "2530:17:6"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "2477:43:6",
"nodeType": "YulIdentifier",
"src": "2477:43:6"
},
"nativeSrc": "2477:71:6",
"nodeType": "YulFunctionCall",
"src": "2477:71:6"
},
"nativeSrc": "2477:71:6",
"nodeType": "YulExpressionStatement",
"src": "2477:71:6"
}
]
},
"name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
"nativeSrc": "2333:222:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "2403:9:6",
"nodeType": "YulTypedName",
"src": "2403:9:6",
"type": ""
},
{
"name": "value0",
"nativeSrc": "2415:6:6",
"nodeType": "YulTypedName",
"src": "2415:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "2426:4:6",
"nodeType": "YulTypedName",
"src": "2426:4:6",
"type": ""
}
],
"src": "2333:222:6"
},
{
"body": {
"nativeSrc": "2606:81:6",
"nodeType": "YulBlock",
"src": "2606:81:6",
"statements": [
{
"nativeSrc": "2616:65:6",
"nodeType": "YulAssignment",
"src": "2616:65:6",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "2631:5:6",
"nodeType": "YulIdentifier",
"src": "2631:5:6"
},
{
"kind": "number",
"nativeSrc": "2638:42:6",
"nodeType": "YulLiteral",
"src": "2638:42:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "2627:3:6",
"nodeType": "YulIdentifier",
"src": "2627:3:6"
},
"nativeSrc": "2627:54:6",
"nodeType": "YulFunctionCall",
"src": "2627:54:6"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "2616:7:6",
"nodeType": "YulIdentifier",
"src": "2616:7:6"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "2561:126:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2588:5:6",
"nodeType": "YulTypedName",
"src": "2588:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "2598:7:6",
"nodeType": "YulTypedName",
"src": "2598:7:6",
"type": ""
}
],
"src": "2561:126:6"
},
{
"body": {
"nativeSrc": "2738:51:6",
"nodeType": "YulBlock",
"src": "2738:51:6",
"statements": [
{
"nativeSrc": "2748:35:6",
"nodeType": "YulAssignment",
"src": "2748:35:6",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "2777:5:6",
"nodeType": "YulIdentifier",
"src": "2777:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "2759:17:6",
"nodeType": "YulIdentifier",
"src": "2759:17:6"
},
"nativeSrc": "2759:24:6",
"nodeType": "YulFunctionCall",
"src": "2759:24:6"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "2748:7:6",
"nodeType": "YulIdentifier",
"src": "2748:7:6"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "2693:96:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2720:5:6",
"nodeType": "YulTypedName",
"src": "2720:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "2730:7:6",
"nodeType": "YulTypedName",
"src": "2730:7:6",
"type": ""
}
],
"src": "2693:96:6"
},
{
"body": {
"nativeSrc": "2838:79:6",
"nodeType": "YulBlock",
"src": "2838:79:6",
"statements": [
{
"body": {
"nativeSrc": "2895:16:6",
"nodeType": "YulBlock",
"src": "2895:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "2904:1:6",
"nodeType": "YulLiteral",
"src": "2904:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "2907:1:6",
"nodeType": "YulLiteral",
"src": "2907:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "2897:6:6",
"nodeType": "YulIdentifier",
"src": "2897:6:6"
},
"nativeSrc": "2897:12:6",
"nodeType": "YulFunctionCall",
"src": "2897:12:6"
},
"nativeSrc": "2897:12:6",
"nodeType": "YulExpressionStatement",
"src": "2897:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "2861:5:6",
"nodeType": "YulIdentifier",
"src": "2861:5:6"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2886:5:6",
"nodeType": "YulIdentifier",
"src": "2886:5:6"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "2868:17:6",
"nodeType": "YulIdentifier",
"src": "2868:17:6"
},
"nativeSrc": "2868:24:6",
"nodeType": "YulFunctionCall",
"src": "2868:24:6"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "2858:2:6",
"nodeType": "YulIdentifier",
"src": "2858:2:6"
},
"nativeSrc": "2858:35:6",
"nodeType": "YulFunctionCall",
"src": "2858:35:6"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2851:6:6",
"nodeType": "YulIdentifier",
"src": "2851:6:6"
},
"nativeSrc": "2851:43:6",
"nodeType": "YulFunctionCall",
"src": "2851:43:6"
},
"nativeSrc": "2848:63:6",
"nodeType": "YulIf",
"src": "2848:63:6"
}
]
},
"name": "validator_revert_t_address",
"nativeSrc": "2795:122:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2831:5:6",
"nodeType": "YulTypedName",
"src": "2831:5:6",
"type": ""
}
],
"src": "2795:122:6"
},
{
"body": {
"nativeSrc": "2975:87:6",
"nodeType": "YulBlock",
"src": "2975:87:6",
"statements": [
{
"nativeSrc": "2985:29:6",
"nodeType": "YulAssignment",
"src": "2985:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3007:6:6",
"nodeType": "YulIdentifier",
"src": "3007:6:6"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "2994:12:6",
"nodeType": "YulIdentifier",
"src": "2994:12:6"
},
"nativeSrc": "2994:20:6",
"nodeType": "YulFunctionCall",
"src": "2994:20:6"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "2985:5:6",
"nodeType": "YulIdentifier",
"src": "2985:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "3050:5:6",
"nodeType": "YulIdentifier",
"src": "3050:5:6"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nativeSrc": "3023:26:6",
"nodeType": "YulIdentifier",
"src": "3023:26:6"
},
"nativeSrc": "3023:33:6",
"nodeType": "YulFunctionCall",
"src": "3023:33:6"
},
"nativeSrc": "3023:33:6",
"nodeType": "YulExpressionStatement",
"src": "3023:33:6"
}
]
},
"name": "abi_decode_t_address",
"nativeSrc": "2923:139:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "2953:6:6",
"nodeType": "YulTypedName",
"src": "2953:6:6",
"type": ""
},
{
"name": "end",
"nativeSrc": "2961:3:6",
"nodeType": "YulTypedName",
"src": "2961:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "2969:5:6",
"nodeType": "YulTypedName",
"src": "2969:5:6",
"type": ""
}
],
"src": "2923:139:6"
},
{
"body": {
"nativeSrc": "3151:391:6",
"nodeType": "YulBlock",
"src": "3151:391:6",
"statements": [
{
"body": {
"nativeSrc": "3197:83:6",
"nodeType": "YulBlock",
"src": "3197:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "3199:77:6",
"nodeType": "YulIdentifier",
"src": "3199:77:6"
},
"nativeSrc": "3199:79:6",
"nodeType": "YulFunctionCall",
"src": "3199:79:6"
},
"nativeSrc": "3199:79:6",
"nodeType": "YulExpressionStatement",
"src": "3199:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "3172:7:6",
"nodeType": "YulIdentifier",
"src": "3172:7:6"
},
{
"name": "headStart",
"nativeSrc": "3181:9:6",
"nodeType": "YulIdentifier",
"src": "3181:9:6"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3168:3:6",
"nodeType": "YulIdentifier",
"src": "3168:3:6"
},
"nativeSrc": "3168:23:6",
"nodeType": "YulFunctionCall",
"src": "3168:23:6"
},
{
"kind": "number",
"nativeSrc": "3193:2:6",
"nodeType": "YulLiteral",
"src": "3193:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3164:3:6",
"nodeType": "YulIdentifier",
"src": "3164:3:6"
},
"nativeSrc": "3164:32:6",
"nodeType": "YulFunctionCall",
"src": "3164:32:6"
},
"nativeSrc": "3161:119:6",
"nodeType": "YulIf",
"src": "3161:119:6"
},
{
"nativeSrc": "3290:117:6",
"nodeType": "YulBlock",
"src": "3290:117:6",
"statements": [
{
"nativeSrc": "3305:15:6",
"nodeType": "YulVariableDeclaration",
"src": "3305:15:6",
"value": {
"kind": "number",
"nativeSrc": "3319:1:6",
"nodeType": "YulLiteral",
"src": "3319:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "3309:6:6",
"nodeType": "YulTypedName",
"src": "3309:6:6",
"type": ""
}
]
},
{
"nativeSrc": "3334:63:6",
"nodeType": "YulAssignment",
"src": "3334:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3369:9:6",
"nodeType": "YulIdentifier",
"src": "3369:9:6"
},
{
"name": "offset",
"nativeSrc": "3380:6:6",
"nodeType": "YulIdentifier",
"src": "3380:6:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3365:3:6",
"nodeType": "YulIdentifier",
"src": "3365:3:6"
},
"nativeSrc": "3365:22:6",
"nodeType": "YulFunctionCall",
"src": "3365:22:6"
},
{
"name": "dataEnd",
"nativeSrc": "3389:7:6",
"nodeType": "YulIdentifier",
"src": "3389:7:6"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nativeSrc": "3344:20:6",
"nodeType": "YulIdentifier",
"src": "3344:20:6"
},
"nativeSrc": "3344:53:6",
"nodeType": "YulFunctionCall",
"src": "3344:53:6"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "3334:6:6",
"nodeType": "YulIdentifier",
"src": "3334:6:6"
}
]
}
]
},
{
"nativeSrc": "3417:118:6",
"nodeType": "YulBlock",
"src": "3417:118:6",
"statements": [
{
"nativeSrc": "3432:16:6",
"nodeType": "YulVariableDeclaration",
"src": "3432:16:6",
"value": {
"kind": "number",
"nativeSrc": "3446:2:6",
"nodeType": "YulLiteral",
"src": "3446:2:6",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "3436:6:6",
"nodeType": "YulTypedName",
"src": "3436:6:6",
"type": ""
}
]
},
{
"nativeSrc": "3462:63:6",
"nodeType": "YulAssignment",
"src": "3462:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3497:9:6",
"nodeType": "YulIdentifier",
"src": "3497:9:6"
},
{
"name": "offset",
"nativeSrc": "3508:6:6",
"nodeType": "YulIdentifier",
"src": "3508:6:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3493:3:6",
"nodeType": "YulIdentifier",
"src": "3493:3:6"
},
"nativeSrc": "3493:22:6",
"nodeType": "YulFunctionCall",
"src": "3493:22:6"
},
{
"name": "dataEnd",
"nativeSrc": "3517:7:6",
"nodeType": "YulIdentifier",
"src": "3517:7:6"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "3472:20:6",
"nodeType": "YulIdentifier",
"src": "3472:20:6"
},
"nativeSrc": "3472:53:6",
"nodeType": "YulFunctionCall",
"src": "3472:53:6"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "3462:6:6",
"nodeType": "YulIdentifier",
"src": "3462:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes32t_address",
"nativeSrc": "3068:474:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3113:9:6",
"nodeType": "YulTypedName",
"src": "3113:9:6",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "3124:7:6",
"nodeType": "YulTypedName",
"src": "3124:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "3136:6:6",
"nodeType": "YulTypedName",
"src": "3136:6:6",
"type": ""
},
{
"name": "value1",
"nativeSrc": "3144:6:6",
"nodeType": "YulTypedName",
"src": "3144:6:6",
"type": ""
}
],
"src": "3068:474:6"
},
{
"body": {
"nativeSrc": "3593:32:6",
"nodeType": "YulBlock",
"src": "3593:32:6",
"statements": [
{
"nativeSrc": "3603:16:6",
"nodeType": "YulAssignment",
"src": "3603:16:6",
"value": {
"name": "value",
"nativeSrc": "3614:5:6",
"nodeType": "YulIdentifier",
"src": "3614:5:6"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "3603:7:6",
"nodeType": "YulIdentifier",
"src": "3603:7:6"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "3548:77:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3575:5:6",
"nodeType": "YulTypedName",
"src": "3575:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "3585:7:6",
"nodeType": "YulTypedName",
"src": "3585:7:6",
"type": ""
}
],
"src": "3548:77:6"
},
{
"body": {
"nativeSrc": "3674:79:6",
"nodeType": "YulBlock",
"src": "3674:79:6",
"statements": [
{
"body": {
"nativeSrc": "3731:16:6",
"nodeType": "YulBlock",
"src": "3731:16:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3740:1:6",
"nodeType": "YulLiteral",
"src": "3740:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "3743:1:6",
"nodeType": "YulLiteral",
"src": "3743:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "3733:6:6",
"nodeType": "YulIdentifier",
"src": "3733:6:6"
},
"nativeSrc": "3733:12:6",
"nodeType": "YulFunctionCall",
"src": "3733:12:6"
},
"nativeSrc": "3733:12:6",
"nodeType": "YulExpressionStatement",
"src": "3733:12:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "3697:5:6",
"nodeType": "YulIdentifier",
"src": "3697:5:6"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "3722:5:6",
"nodeType": "YulIdentifier",
"src": "3722:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "3704:17:6",
"nodeType": "YulIdentifier",
"src": "3704:17:6"
},
"nativeSrc": "3704:24:6",
"nodeType": "YulFunctionCall",
"src": "3704:24:6"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "3694:2:6",
"nodeType": "YulIdentifier",
"src": "3694:2:6"
},
"nativeSrc": "3694:35:6",
"nodeType": "YulFunctionCall",
"src": "3694:35:6"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "3687:6:6",
"nodeType": "YulIdentifier",
"src": "3687:6:6"
},
"nativeSrc": "3687:43:6",
"nodeType": "YulFunctionCall",
"src": "3687:43:6"
},
"nativeSrc": "3684:63:6",
"nodeType": "YulIf",
"src": "3684:63:6"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "3631:122:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3667:5:6",
"nodeType": "YulTypedName",
"src": "3667:5:6",
"type": ""
}
],
"src": "3631:122:6"
},
{
"body": {
"nativeSrc": "3811:87:6",
"nodeType": "YulBlock",
"src": "3811:87:6",
"statements": [
{
"nativeSrc": "3821:29:6",
"nodeType": "YulAssignment",
"src": "3821:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3843:6:6",
"nodeType": "YulIdentifier",
"src": "3843:6:6"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "3830:12:6",
"nodeType": "YulIdentifier",
"src": "3830:12:6"
},
"nativeSrc": "3830:20:6",
"nodeType": "YulFunctionCall",
"src": "3830:20:6"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "3821:5:6",
"nodeType": "YulIdentifier",
"src": "3821:5:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "3886:5:6",
"nodeType": "YulIdentifier",
"src": "3886:5:6"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "3859:26:6",
"nodeType": "YulIdentifier",
"src": "3859:26:6"
},
"nativeSrc": "3859:33:6",
"nodeType": "YulFunctionCall",
"src": "3859:33:6"
},
"nativeSrc": "3859:33:6",
"nodeType": "YulExpressionStatement",
"src": "3859:33:6"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "3759:139:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "3789:6:6",
"nodeType": "YulTypedName",
"src": "3789:6:6",
"type": ""
},
{
"name": "end",
"nativeSrc": "3797:3:6",
"nodeType": "YulTypedName",
"src": "3797:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "3805:5:6",
"nodeType": "YulTypedName",
"src": "3805:5:6",
"type": ""
}
],
"src": "3759:139:6"
},
{
"body": {
"nativeSrc": "3970:263:6",
"nodeType": "YulBlock",
"src": "3970:263:6",
"statements": [
{
"body": {
"nativeSrc": "4016:83:6",
"nodeType": "YulBlock",
"src": "4016:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "4018:77:6",
"nodeType": "YulIdentifier",
"src": "4018:77:6"
},
"nativeSrc": "4018:79:6",
"nodeType": "YulFunctionCall",
"src": "4018:79:6"
},
"nativeSrc": "4018:79:6",
"nodeType": "YulExpressionStatement",
"src": "4018:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "3991:7:6",
"nodeType": "YulIdentifier",
"src": "3991:7:6"
},
{
"name": "headStart",
"nativeSrc": "4000:9:6",
"nodeType": "YulIdentifier",
"src": "4000:9:6"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3987:3:6",
"nodeType": "YulIdentifier",
"src": "3987:3:6"
},
"nativeSrc": "3987:23:6",
"nodeType": "YulFunctionCall",
"src": "3987:23:6"
},
{
"kind": "number",
"nativeSrc": "4012:2:6",
"nodeType": "YulLiteral",
"src": "4012:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3983:3:6",
"nodeType": "YulIdentifier",
"src": "3983:3:6"
},
"nativeSrc": "3983:32:6",
"nodeType": "YulFunctionCall",
"src": "3983:32:6"
},
"nativeSrc": "3980:119:6",
"nodeType": "YulIf",
"src": "3980:119:6"
},
{
"nativeSrc": "4109:117:6",
"nodeType": "YulBlock",
"src": "4109:117:6",
"statements": [
{
"nativeSrc": "4124:15:6",
"nodeType": "YulVariableDeclaration",
"src": "4124:15:6",
"value": {
"kind": "number",
"nativeSrc": "4138:1:6",
"nodeType": "YulLiteral",
"src": "4138:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4128:6:6",
"nodeType": "YulTypedName",
"src": "4128:6:6",
"type": ""
}
]
},
{
"nativeSrc": "4153:63:6",
"nodeType": "YulAssignment",
"src": "4153:63:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4188:9:6",
"nodeType": "YulIdentifier",
"src": "4188:9:6"
},
{
"name": "offset",
"nativeSrc": "4199:6:6",
"nodeType": "YulIdentifier",
"src": "4199:6:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4184:3:6",
"nodeType": "YulIdentifier",
"src": "4184:3:6"
},
"nativeSrc": "4184:22:6",
"nodeType": "YulFunctionCall",
"src": "4184:22:6"
},
{
"name": "dataEnd",
"nativeSrc": "4208:7:6",
"nodeType": "YulIdentifier",
"src": "4208:7:6"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "4163:20:6",
"nodeType": "YulIdentifier",
"src": "4163:20:6"
},
"nativeSrc": "4163:53:6",
"nodeType": "YulFunctionCall",
"src": "4163:53:6"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "4153:6:6",
"nodeType": "YulIdentifier",
"src": "4153:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nativeSrc": "3904:329:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3940:9:6",
"nodeType": "YulTypedName",
"src": "3940:9:6",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "3951:7:6",
"nodeType": "YulTypedName",
"src": "3951:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "3963:6:6",
"nodeType": "YulTypedName",
"src": "3963:6:6",
"type": ""
}
],
"src": "3904:329:6"
},
{
"body": {
"nativeSrc": "4304:53:6",
"nodeType": "YulBlock",
"src": "4304:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4321:3:6",
"nodeType": "YulIdentifier",
"src": "4321:3:6"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "4344:5:6",
"nodeType": "YulIdentifier",
"src": "4344:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "4326:17:6",
"nodeType": "YulIdentifier",
"src": "4326:17:6"
},
"nativeSrc": "4326:24:6",
"nodeType": "YulFunctionCall",
"src": "4326:24:6"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4314:6:6",
"nodeType": "YulIdentifier",
"src": "4314:6:6"
},
"nativeSrc": "4314:37:6",
"nodeType": "YulFunctionCall",
"src": "4314:37:6"
},
"nativeSrc": "4314:37:6",
"nodeType": "YulExpressionStatement",
"src": "4314:37:6"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "4239:118:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4292:5:6",
"nodeType": "YulTypedName",
"src": "4292:5:6",
"type": ""
},
{
"name": "pos",
"nativeSrc": "4299:3:6",
"nodeType": "YulTypedName",
"src": "4299:3:6",
"type": ""
}
],
"src": "4239:118:6"
},
{
"body": {
"nativeSrc": "4422:40:6",
"nodeType": "YulBlock",
"src": "4422:40:6",
"statements": [
{
"nativeSrc": "4433:22:6",
"nodeType": "YulAssignment",
"src": "4433:22:6",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "4449:5:6",
"nodeType": "YulIdentifier",
"src": "4449:5:6"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4443:5:6",
"nodeType": "YulIdentifier",
"src": "4443:5:6"
},
"nativeSrc": "4443:12:6",
"nodeType": "YulFunctionCall",
"src": "4443:12:6"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "4433:6:6",
"nodeType": "YulIdentifier",
"src": "4433:6:6"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "4363:99:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4405:5:6",
"nodeType": "YulTypedName",
"src": "4405:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "4415:6:6",
"nodeType": "YulTypedName",
"src": "4415:6:6",
"type": ""
}
],
"src": "4363:99:6"
},
{
"body": {
"nativeSrc": "4564:73:6",
"nodeType": "YulBlock",
"src": "4564:73:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4581:3:6",
"nodeType": "YulIdentifier",
"src": "4581:3:6"
},
{
"name": "length",
"nativeSrc": "4586:6:6",
"nodeType": "YulIdentifier",
"src": "4586:6:6"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4574:6:6",
"nodeType": "YulIdentifier",
"src": "4574:6:6"
},
"nativeSrc": "4574:19:6",
"nodeType": "YulFunctionCall",
"src": "4574:19:6"
},
"nativeSrc": "4574:19:6",
"nodeType": "YulExpressionStatement",
"src": "4574:19:6"
},
{
"nativeSrc": "4602:29:6",
"nodeType": "YulAssignment",
"src": "4602:29:6",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4621:3:6",
"nodeType": "YulIdentifier",
"src": "4621:3:6"
},
{
"kind": "number",
"nativeSrc": "4626:4:6",
"nodeType": "YulLiteral",
"src": "4626:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4617:3:6",
"nodeType": "YulIdentifier",
"src": "4617:3:6"
},
"nativeSrc": "4617:14:6",
"nodeType": "YulFunctionCall",
"src": "4617:14:6"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "4602:11:6",
"nodeType": "YulIdentifier",
"src": "4602:11:6"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "4468:169:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "4536:3:6",
"nodeType": "YulTypedName",
"src": "4536:3:6",
"type": ""
},
{
"name": "length",
"nativeSrc": "4541:6:6",
"nodeType": "YulTypedName",
"src": "4541:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "4552:11:6",
"nodeType": "YulTypedName",
"src": "4552:11:6",
"type": ""
}
],
"src": "4468:169:6"
},
{
"body": {
"nativeSrc": "4705:77:6",
"nodeType": "YulBlock",
"src": "4705:77:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "4722:3:6",
"nodeType": "YulIdentifier",
"src": "4722:3:6"
},
{
"name": "src",
"nativeSrc": "4727:3:6",
"nodeType": "YulIdentifier",
"src": "4727:3:6"
},
{
"name": "length",
"nativeSrc": "4732:6:6",
"nodeType": "YulIdentifier",
"src": "4732:6:6"
}
],
"functionName": {
"name": "mcopy",
"nativeSrc": "4716:5:6",
"nodeType": "YulIdentifier",
"src": "4716:5:6"
},
"nativeSrc": "4716:23:6",
"nodeType": "YulFunctionCall",
"src": "4716:23:6"
},
"nativeSrc": "4716:23:6",
"nodeType": "YulExpressionStatement",
"src": "4716:23:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "4759:3:6",
"nodeType": "YulIdentifier",
"src": "4759:3:6"
},
{
"name": "length",
"nativeSrc": "4764:6:6",
"nodeType": "YulIdentifier",
"src": "4764:6:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4755:3:6",
"nodeType": "YulIdentifier",
"src": "4755:3:6"
},
"nativeSrc": "4755:16:6",
"nodeType": "YulFunctionCall",
"src": "4755:16:6"
},
{
"kind": "number",
"nativeSrc": "4773:1:6",
"nodeType": "YulLiteral",
"src": "4773:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4748:6:6",
"nodeType": "YulIdentifier",
"src": "4748:6:6"
},
"nativeSrc": "4748:27:6",
"nodeType": "YulFunctionCall",
"src": "4748:27:6"
},
"nativeSrc": "4748:27:6",
"nodeType": "YulExpressionStatement",
"src": "4748:27:6"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "4643:139:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "4687:3:6",
"nodeType": "YulTypedName",
"src": "4687:3:6",
"type": ""
},
{
"name": "dst",
"nativeSrc": "4692:3:6",
"nodeType": "YulTypedName",
"src": "4692:3:6",
"type": ""
},
{
"name": "length",
"nativeSrc": "4697:6:6",
"nodeType": "YulTypedName",
"src": "4697:6:6",
"type": ""
}
],
"src": "4643:139:6"
},
{
"body": {
"nativeSrc": "4836:54:6",
"nodeType": "YulBlock",
"src": "4836:54:6",
"statements": [
{
"nativeSrc": "4846:38:6",
"nodeType": "YulAssignment",
"src": "4846:38:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "4864:5:6",
"nodeType": "YulIdentifier",
"src": "4864:5:6"
},
{
"kind": "number",
"nativeSrc": "4871:2:6",
"nodeType": "YulLiteral",
"src": "4871:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4860:3:6",
"nodeType": "YulIdentifier",
"src": "4860:3:6"
},
"nativeSrc": "4860:14:6",
"nodeType": "YulFunctionCall",
"src": "4860:14:6"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "4880:2:6",
"nodeType": "YulLiteral",
"src": "4880:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "4876:3:6",
"nodeType": "YulIdentifier",
"src": "4876:3:6"
},
"nativeSrc": "4876:7:6",
"nodeType": "YulFunctionCall",
"src": "4876:7:6"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4856:3:6",
"nodeType": "YulIdentifier",
"src": "4856:3:6"
},
"nativeSrc": "4856:28:6",
"nodeType": "YulFunctionCall",
"src": "4856:28:6"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "4846:6:6",
"nodeType": "YulIdentifier",
"src": "4846:6:6"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "4788:102:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4819:5:6",
"nodeType": "YulTypedName",
"src": "4819:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "4829:6:6",
"nodeType": "YulTypedName",
"src": "4829:6:6",
"type": ""
}
],
"src": "4788:102:6"
},
{
"body": {
"nativeSrc": "4988:285:6",
"nodeType": "YulBlock",
"src": "4988:285:6",
"statements": [
{
"nativeSrc": "4998:53:6",
"nodeType": "YulVariableDeclaration",
"src": "4998:53:6",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "5045:5:6",
"nodeType": "YulIdentifier",
"src": "5045:5:6"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "5012:32:6",
"nodeType": "YulIdentifier",
"src": "5012:32:6"
},
"nativeSrc": "5012:39:6",
"nodeType": "YulFunctionCall",
"src": "5012:39:6"
},
"variables": [
{
"name": "length",
"nativeSrc": "5002:6:6",
"nodeType": "YulTypedName",
"src": "5002:6:6",
"type": ""
}
]
},
{
"nativeSrc": "5060:78:6",
"nodeType": "YulAssignment",
"src": "5060:78:6",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5126:3:6",
"nodeType": "YulIdentifier",
"src": "5126:3:6"
},
{
"name": "length",
"nativeSrc": "5131:6:6",
"nodeType": "YulIdentifier",
"src": "5131:6:6"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "5067:58:6",
"nodeType": "YulIdentifier",
"src": "5067:58:6"
},
"nativeSrc": "5067:71:6",
"nodeType": "YulFunctionCall",
"src": "5067:71:6"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "5060:3:6",
"nodeType": "YulIdentifier",
"src": "5060:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "5186:5:6",
"nodeType": "YulIdentifier",
"src": "5186:5:6"
},
{
"kind": "number",
"nativeSrc": "5193:4:6",
"nodeType": "YulLiteral",
"src": "5193:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5182:3:6",
"nodeType": "YulIdentifier",
"src": "5182:3:6"
},
"nativeSrc": "5182:16:6",
"nodeType": "YulFunctionCall",
"src": "5182:16:6"
},
{
"name": "pos",
"nativeSrc": "5200:3:6",
"nodeType": "YulIdentifier",
"src": "5200:3:6"
},
{
"name": "length",
"nativeSrc": "5205:6:6",
"nodeType": "YulIdentifier",
"src": "5205:6:6"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "5147:34:6",
"nodeType": "YulIdentifier",
"src": "5147:34:6"
},
"nativeSrc": "5147:65:6",
"nodeType": "YulFunctionCall",
"src": "5147:65:6"
},
"nativeSrc": "5147:65:6",
"nodeType": "YulExpressionStatement",
"src": "5147:65:6"
},
{
"nativeSrc": "5221:46:6",
"nodeType": "YulAssignment",
"src": "5221:46:6",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5232:3:6",
"nodeType": "YulIdentifier",
"src": "5232:3:6"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "5259:6:6",
"nodeType": "YulIdentifier",
"src": "5259:6:6"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "5237:21:6",
"nodeType": "YulIdentifier",
"src": "5237:21:6"
},
"nativeSrc": "5237:29:6",
"nodeType": "YulFunctionCall",
"src": "5237:29:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5228:3:6",
"nodeType": "YulIdentifier",
"src": "5228:3:6"
},
"nativeSrc": "5228:39:6",
"nodeType": "YulFunctionCall",
"src": "5228:39:6"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "5221:3:6",
"nodeType": "YulIdentifier",
"src": "5221:3:6"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "4896:377:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4969:5:6",
"nodeType": "YulTypedName",
"src": "4969:5:6",
"type": ""
},
{
"name": "pos",
"nativeSrc": "4976:3:6",
"nodeType": "YulTypedName",
"src": "4976:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "4984:3:6",
"nodeType": "YulTypedName",
"src": "4984:3:6",
"type": ""
}
],
"src": "4896:377:6"
},
{
"body": {
"nativeSrc": "5344:53:6",
"nodeType": "YulBlock",
"src": "5344:53:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5361:3:6",
"nodeType": "YulIdentifier",
"src": "5361:3:6"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "5384:5:6",
"nodeType": "YulIdentifier",
"src": "5384:5:6"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "5366:17:6",
"nodeType": "YulIdentifier",
"src": "5366:17:6"
},
"nativeSrc": "5366:24:6",
"nodeType": "YulFunctionCall",
"src": "5366:24:6"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5354:6:6",
"nodeType": "YulIdentifier",
"src": "5354:6:6"
},
"nativeSrc": "5354:37:6",
"nodeType": "YulFunctionCall",
"src": "5354:37:6"
},
"nativeSrc": "5354:37:6",
"nodeType": "YulExpressionStatement",
"src": "5354:37:6"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "5279:118:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5332:5:6",
"nodeType": "YulTypedName",
"src": "5332:5:6",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5339:3:6",
"nodeType": "YulTypedName",
"src": "5339:3:6",
"type": ""
}
],
"src": "5279:118:6"
},
{
"body": {
"nativeSrc": "5627:519:6",
"nodeType": "YulBlock",
"src": "5627:519:6",
"statements": [
{
"nativeSrc": "5637:27:6",
"nodeType": "YulAssignment",
"src": "5637:27:6",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "5649:9:6",
"nodeType": "YulIdentifier",
"src": "5649:9:6"
},
{
"kind": "number",
"nativeSrc": "5660:3:6",
"nodeType": "YulLiteral",
"src": "5660:3:6",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5645:3:6",
"nodeType": "YulIdentifier",
"src": "5645:3:6"
},
"nativeSrc": "5645:19:6",
"nodeType": "YulFunctionCall",
"src": "5645:19:6"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5637:4:6",
"nodeType": "YulIdentifier",
"src": "5637:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "5718:6:6",
"nodeType": "YulIdentifier",
"src": "5718:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5731:9:6",
"nodeType": "YulIdentifier",
"src": "5731:9:6"
},
{
"kind": "number",
"nativeSrc": "5742:1:6",
"nodeType": "YulLiteral",
"src": "5742:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5727:3:6",
"nodeType": "YulIdentifier",
"src": "5727:3:6"
},
"nativeSrc": "5727:17:6",
"nodeType": "YulFunctionCall",
"src": "5727:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "5674:43:6",
"nodeType": "YulIdentifier",
"src": "5674:43:6"
},
"nativeSrc": "5674:71:6",
"nodeType": "YulFunctionCall",
"src": "5674:71:6"
},
"nativeSrc": "5674:71:6",
"nodeType": "YulExpressionStatement",
"src": "5674:71:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5766:9:6",
"nodeType": "YulIdentifier",
"src": "5766:9:6"
},
{
"kind": "number",
"nativeSrc": "5777:2:6",
"nodeType": "YulLiteral",
"src": "5777:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5762:3:6",
"nodeType": "YulIdentifier",
"src": "5762:3:6"
},
"nativeSrc": "5762:18:6",
"nodeType": "YulFunctionCall",
"src": "5762:18:6"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "5786:4:6",
"nodeType": "YulIdentifier",
"src": "5786:4:6"
},
{
"name": "headStart",
"nativeSrc": "5792:9:6",
"nodeType": "YulIdentifier",
"src": "5792:9:6"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "5782:3:6",
"nodeType": "YulIdentifier",
"src": "5782:3:6"
},
"nativeSrc": "5782:20:6",
"nodeType": "YulFunctionCall",
"src": "5782:20:6"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5755:6:6",
"nodeType": "YulIdentifier",
"src": "5755:6:6"
},
"nativeSrc": "5755:48:6",
"nodeType": "YulFunctionCall",
"src": "5755:48:6"
},
"nativeSrc": "5755:48:6",
"nodeType": "YulExpressionStatement",
"src": "5755:48:6"
},
{
"nativeSrc": "5812:86:6",
"nodeType": "YulAssignment",
"src": "5812:86:6",
"value": {
"arguments": [
{
"name": "value1",
"nativeSrc": "5884:6:6",
"nodeType": "YulIdentifier",
"src": "5884:6:6"
},
{
"name": "tail",
"nativeSrc": "5893:4:6",
"nodeType": "YulIdentifier",
"src": "5893:4:6"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "5820:63:6",
"nodeType": "YulIdentifier",
"src": "5820:63:6"
},
"nativeSrc": "5820:78:6",
"nodeType": "YulFunctionCall",
"src": "5820:78:6"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5812:4:6",
"nodeType": "YulIdentifier",
"src": "5812:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nativeSrc": "5952:6:6",
"nodeType": "YulIdentifier",
"src": "5952:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5965:9:6",
"nodeType": "YulIdentifier",
"src": "5965:9:6"
},
{
"kind": "number",
"nativeSrc": "5976:2:6",
"nodeType": "YulLiteral",
"src": "5976:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5961:3:6",
"nodeType": "YulIdentifier",
"src": "5961:3:6"
},
"nativeSrc": "5961:18:6",
"nodeType": "YulFunctionCall",
"src": "5961:18:6"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "5908:43:6",
"nodeType": "YulIdentifier",
"src": "5908:43:6"
},
"nativeSrc": "5908:72:6",
"nodeType": "YulFunctionCall",
"src": "5908:72:6"
},
"nativeSrc": "5908:72:6",
"nodeType": "YulExpressionStatement",
"src": "5908:72:6"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nativeSrc": "6034:6:6",
"nodeType": "YulIdentifier",
"src": "6034:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6047:9:6",
"nodeType": "YulIdentifier",
"src": "6047:9:6"
},
{
"kind": "number",
"nativeSrc": "6058:2:6",
"nodeType": "YulLiteral",
"src": "6058:2:6",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6043:3:6",
"nodeType": "YulIdentifier",
"src": "6043:3:6"
},
"nativeSrc": "6043:18:6",
"nodeType": "YulFunctionCall",
"src": "6043:18:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "5990:43:6",
"nodeType": "YulIdentifier",
"src": "5990:43:6"
},
"nativeSrc": "5990:72:6",
"nodeType": "YulFunctionCall",
"src": "5990:72:6"
},
"nativeSrc": "5990:72:6",
"nodeType": "YulExpressionStatement",
"src": "5990:72:6"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nativeSrc": "6110:6:6",
"nodeType": "YulIdentifier",
"src": "6110:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6123:9:6",
"nodeType": "YulIdentifier",
"src": "6123:9:6"
},
{
"kind": "number",
"nativeSrc": "6134:3:6",
"nodeType": "YulLiteral",
"src": "6134:3:6",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6119:3:6",
"nodeType": "YulIdentifier",
"src": "6119:3:6"
},
"nativeSrc": "6119:19:6",
"nodeType": "YulFunctionCall",
"src": "6119:19:6"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nativeSrc": "6072:37:6",
"nodeType": "YulIdentifier",
"src": "6072:37:6"
},
"nativeSrc": "6072:67:6",
"nodeType": "YulFunctionCall",
"src": "6072:67:6"
},
"nativeSrc": "6072:67:6",
"nodeType": "YulExpressionStatement",
"src": "6072:67:6"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_memory_ptr_t_address_t_uint256_t_bool__to_t_uint256_t_string_memory_ptr_t_address_t_uint256_t_bool__fromStack_reversed",
"nativeSrc": "5403:743:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5567:9:6",
"nodeType": "YulTypedName",
"src": "5567:9:6",
"type": ""
},
{
"name": "value4",
"nativeSrc": "5579:6:6",
"nodeType": "YulTypedName",
"src": "5579:6:6",
"type": ""
},
{
"name": "value3",
"nativeSrc": "5587:6:6",
"nodeType": "YulTypedName",
"src": "5587:6:6",
"type": ""
},
{
"name": "value2",
"nativeSrc": "5595:6:6",
"nodeType": "YulTypedName",
"src": "5595:6:6",
"type": ""
},
{
"name": "value1",
"nativeSrc": "5603:6:6",
"nodeType": "YulTypedName",
"src": "5603:6:6",
"type": ""
},
{
"name": "value0",
"nativeSrc": "5611:6:6",
"nodeType": "YulTypedName",
"src": "5611:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "5622:4:6",
"nodeType": "YulTypedName",
"src": "5622:4:6",
"type": ""
}
],
"src": "5403:743:6"
},
{
"body": {
"nativeSrc": "6241:28:6",
"nodeType": "YulBlock",
"src": "6241:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6258:1:6",
"nodeType": "YulLiteral",
"src": "6258:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6261:1:6",
"nodeType": "YulLiteral",
"src": "6261:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6251:6:6",
"nodeType": "YulIdentifier",
"src": "6251:6:6"
},
"nativeSrc": "6251:12:6",
"nodeType": "YulFunctionCall",
"src": "6251:12:6"
},
"nativeSrc": "6251:12:6",
"nodeType": "YulExpressionStatement",
"src": "6251:12:6"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "6152:117:6",
"nodeType": "YulFunctionDefinition",
"src": "6152:117:6"
},
{
"body": {
"nativeSrc": "6364:28:6",
"nodeType": "YulBlock",
"src": "6364:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6381:1:6",
"nodeType": "YulLiteral",
"src": "6381:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6384:1:6",
"nodeType": "YulLiteral",
"src": "6384:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6374:6:6",
"nodeType": "YulIdentifier",
"src": "6374:6:6"
},
"nativeSrc": "6374:12:6",
"nodeType": "YulFunctionCall",
"src": "6374:12:6"
},
"nativeSrc": "6374:12:6",
"nodeType": "YulExpressionStatement",
"src": "6374:12:6"
}
]
},
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nativeSrc": "6275:117:6",
"nodeType": "YulFunctionDefinition",
"src": "6275:117:6"
},
{
"body": {
"nativeSrc": "6487:28:6",
"nodeType": "YulBlock",
"src": "6487:28:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6504:1:6",
"nodeType": "YulLiteral",
"src": "6504:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6507:1:6",
"nodeType": "YulLiteral",
"src": "6507:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6497:6:6",
"nodeType": "YulIdentifier",
"src": "6497:6:6"
},
"nativeSrc": "6497:12:6",
"nodeType": "YulFunctionCall",
"src": "6497:12:6"
},
"nativeSrc": "6497:12:6",
"nodeType": "YulExpressionStatement",
"src": "6497:12:6"
}
]
},
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nativeSrc": "6398:117:6",
"nodeType": "YulFunctionDefinition",
"src": "6398:117:6"
},
{
"body": {
"nativeSrc": "6610:478:6",
"nodeType": "YulBlock",
"src": "6610:478:6",
"statements": [
{
"body": {
"nativeSrc": "6659:83:6",
"nodeType": "YulBlock",
"src": "6659:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "6661:77:6",
"nodeType": "YulIdentifier",
"src": "6661:77:6"
},
"nativeSrc": "6661:79:6",
"nodeType": "YulFunctionCall",
"src": "6661:79:6"
},
"nativeSrc": "6661:79:6",
"nodeType": "YulExpressionStatement",
"src": "6661:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "6638:6:6",
"nodeType": "YulIdentifier",
"src": "6638:6:6"
},
{
"kind": "number",
"nativeSrc": "6646:4:6",
"nodeType": "YulLiteral",
"src": "6646:4:6",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6634:3:6",
"nodeType": "YulIdentifier",
"src": "6634:3:6"
},
"nativeSrc": "6634:17:6",
"nodeType": "YulFunctionCall",
"src": "6634:17:6"
},
{
"name": "end",
"nativeSrc": "6653:3:6",
"nodeType": "YulIdentifier",
"src": "6653:3:6"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "6630:3:6",
"nodeType": "YulIdentifier",
"src": "6630:3:6"
},
"nativeSrc": "6630:27:6",
"nodeType": "YulFunctionCall",
"src": "6630:27:6"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "6623:6:6",
"nodeType": "YulIdentifier",
"src": "6623:6:6"
},
"nativeSrc": "6623:35:6",
"nodeType": "YulFunctionCall",
"src": "6623:35:6"
},
"nativeSrc": "6620:122:6",
"nodeType": "YulIf",
"src": "6620:122:6"
},
{
"nativeSrc": "6751:30:6",
"nodeType": "YulAssignment",
"src": "6751:30:6",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "6774:6:6",
"nodeType": "YulIdentifier",
"src": "6774:6:6"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "6761:12:6",
"nodeType": "YulIdentifier",
"src": "6761:12:6"
},
"nativeSrc": "6761:20:6",
"nodeType": "YulFunctionCall",
"src": "6761:20:6"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "6751:6:6",
"nodeType": "YulIdentifier",
"src": "6751:6:6"
}
]
},
{
"body": {
"nativeSrc": "6824:83:6",
"nodeType": "YulBlock",
"src": "6824:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490",
"nativeSrc": "6826:77:6",
"nodeType": "YulIdentifier",
"src": "6826:77:6"
},
"nativeSrc": "6826:79:6",
"nodeType": "YulFunctionCall",
"src": "6826:79:6"
},
"nativeSrc": "6826:79:6",
"nodeType": "YulExpressionStatement",
"src": "6826:79:6"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nativeSrc": "6796:6:6",
"nodeType": "YulIdentifier",
"src": "6796:6:6"
},
{
"kind": "number",
"nativeSrc": "6804:18:6",
"nodeType": "YulLiteral",
"src": "6804:18:6",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "6793:2:6",
"nodeType": "YulIdentifier",
"src": "6793:2:6"
},
"nativeSrc": "6793:30:6",
"nodeType": "YulFunctionCall",
"src": "6793:30:6"
},
"nativeSrc": "6790:117:6",
"nodeType": "YulIf",
"src": "6790:117:6"
},
{
"nativeSrc": "6916:29:6",
"nodeType": "YulAssignment",
"src": "6916:29:6",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "6932:6:6",
"nodeType": "YulIdentifier",
"src": "6932:6:6"
},
{
"kind": "number",
"nativeSrc": "6940:4:6",
"nodeType": "YulLiteral",
"src": "6940:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6928:3:6",
"nodeType": "YulIdentifier",
"src": "6928:3:6"
},
"nativeSrc": "6928:17:6",
"nodeType": "YulFunctionCall",
"src": "6928:17:6"
},
"variableNames": [
{
"name": "arrayPos",
"nativeSrc": "6916:8:6",
"nodeType": "YulIdentifier",
"src": "6916:8:6"
}
]
},
{
"body": {
"nativeSrc": "6999:83:6",
"nodeType": "YulBlock",
"src": "6999:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nativeSrc": "7001:77:6",
"nodeType": "YulIdentifier",
"src": "7001:77:6"
},
"nativeSrc": "7001:79:6",
"nodeType": "YulFunctionCall",
"src": "7001:79:6"
},
"nativeSrc": "7001:79:6",
"nodeType": "YulExpressionStatement",
"src": "7001:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "arrayPos",
"nativeSrc": "6964:8:6",
"nodeType": "YulIdentifier",
"src": "6964:8:6"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "6978:6:6",
"nodeType": "YulIdentifier",
"src": "6978:6:6"
},
{
"kind": "number",
"nativeSrc": "6986:4:6",
"nodeType": "YulLiteral",
"src": "6986:4:6",
"type": "",
"value": "0x01"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "6974:3:6",
"nodeType": "YulIdentifier",
"src": "6974:3:6"
},
"nativeSrc": "6974:17:6",
"nodeType": "YulFunctionCall",
"src": "6974:17:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6960:3:6",
"nodeType": "YulIdentifier",
"src": "6960:3:6"
},
"nativeSrc": "6960:32:6",
"nodeType": "YulFunctionCall",
"src": "6960:32:6"
},
{
"name": "end",
"nativeSrc": "6994:3:6",
"nodeType": "YulIdentifier",
"src": "6994:3:6"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "6957:2:6",
"nodeType": "YulIdentifier",
"src": "6957:2:6"
},
"nativeSrc": "6957:41:6",
"nodeType": "YulFunctionCall",
"src": "6957:41:6"
},
"nativeSrc": "6954:128:6",
"nodeType": "YulIf",
"src": "6954:128:6"
}
]
},
"name": "abi_decode_t_string_calldata_ptr",
"nativeSrc": "6535:553:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "6577:6:6",
"nodeType": "YulTypedName",
"src": "6577:6:6",
"type": ""
},
{
"name": "end",
"nativeSrc": "6585:3:6",
"nodeType": "YulTypedName",
"src": "6585:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nativeSrc": "6593:8:6",
"nodeType": "YulTypedName",
"src": "6593:8:6",
"type": ""
},
{
"name": "length",
"nativeSrc": "6603:6:6",
"nodeType": "YulTypedName",
"src": "6603:6:6",
"type": ""
}
],
"src": "6535:553:6"
},
{
"body": {
"nativeSrc": "7180:443:6",
"nodeType": "YulBlock",
"src": "7180:443:6",
"statements": [
{
"body": {
"nativeSrc": "7226:83:6",
"nodeType": "YulBlock",
"src": "7226:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "7228:77:6",
"nodeType": "YulIdentifier",
"src": "7228:77:6"
},
"nativeSrc": "7228:79:6",
"nodeType": "YulFunctionCall",
"src": "7228:79:6"
},
"nativeSrc": "7228:79:6",
"nodeType": "YulExpressionStatement",
"src": "7228:79:6"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "7201:7:6",
"nodeType": "YulIdentifier",
"src": "7201:7:6"
},
{
"name": "headStart",
"nativeSrc": "7210:9:6",
"nodeType": "YulIdentifier",
"src": "7210:9:6"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "7197:3:6",
"nodeType": "YulIdentifier",
"src": "7197:3:6"
},
"nativeSrc": "7197:23:6",
"nodeType": "YulFunctionCall",
"src": "7197:23:6"
},
{
"kind": "number",
"nativeSrc": "7222:2:6",
"nodeType": "YulLiteral",
"src": "7222:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "7193:3:6",
"nodeType": "YulIdentifier",
"src": "7193:3:6"
},
"nativeSrc": "7193:32:6",
"nodeType": "YulFunctionCall",
"src": "7193:32:6"
},
"nativeSrc": "7190:119:6",
"nodeType": "YulIf",
"src": "7190:119:6"
},
{
"nativeSrc": "7319:297:6",
"nodeType": "YulBlock",
"src": "7319:297:6",
"statements": [
{
"nativeSrc": "7334:45:6",
"nodeType": "YulVariableDeclaration",
"src": "7334:45:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7365:9:6",
"nodeType": "YulIdentifier",
"src": "7365:9:6"
},
{
"kind": "number",
"nativeSrc": "7376:1:6",
"nodeType": "YulLiteral",
"src": "7376:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7361:3:6",
"nodeType": "YulIdentifier",
"src": "7361:3:6"
},
"nativeSrc": "7361:17:6",
"nodeType": "YulFunctionCall",
"src": "7361:17:6"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "7348:12:6",
"nodeType": "YulIdentifier",
"src": "7348:12:6"
},
"nativeSrc": "7348:31:6",
"nodeType": "YulFunctionCall",
"src": "7348:31:6"
},
"variables": [
{
"name": "offset",
"nativeSrc": "7338:6:6",
"nodeType": "YulTypedName",
"src": "7338:6:6",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "7426:83:6",
"nodeType": "YulBlock",
"src": "7426:83:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "7428:77:6",
"nodeType": "YulIdentifier",
"src": "7428:77:6"
},
"nativeSrc": "7428:79:6",
"nodeType": "YulFunctionCall",
"src": "7428:79:6"
},
"nativeSrc": "7428:79:6",
"nodeType": "YulExpressionStatement",
"src": "7428:79:6"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "7398:6:6",
"nodeType": "YulIdentifier",
"src": "7398:6:6"
},
{
"kind": "number",
"nativeSrc": "7406:18:6",
"nodeType": "YulLiteral",
"src": "7406:18:6",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "7395:2:6",
"nodeType": "YulIdentifier",
"src": "7395:2:6"
},
"nativeSrc": "7395:30:6",
"nodeType": "YulFunctionCall",
"src": "7395:30:6"
},
"nativeSrc": "7392:117:6",
"nodeType": "YulIf",
"src": "7392:117:6"
},
{
"nativeSrc": "7523:83:6",
"nodeType": "YulAssignment",
"src": "7523:83:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7578:9:6",
"nodeType": "YulIdentifier",
"src": "7578:9:6"
},
{
"name": "offset",
"nativeSrc": "7589:6:6",
"nodeType": "YulIdentifier",
"src": "7589:6:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7574:3:6",
"nodeType": "YulIdentifier",
"src": "7574:3:6"
},
"nativeSrc": "7574:22:6",
"nodeType": "YulFunctionCall",
"src": "7574:22:6"
},
{
"name": "dataEnd",
"nativeSrc": "7598:7:6",
"nodeType": "YulIdentifier",
"src": "7598:7:6"
}
],
"functionName": {
"name": "abi_decode_t_string_calldata_ptr",
"nativeSrc": "7541:32:6",
"nodeType": "YulIdentifier",
"src": "7541:32:6"
},
"nativeSrc": "7541:65:6",
"nodeType": "YulFunctionCall",
"src": "7541:65:6"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "7523:6:6",
"nodeType": "YulIdentifier",
"src": "7523:6:6"
},
{
"name": "value1",
"nativeSrc": "7531:6:6",
"nodeType": "YulIdentifier",
"src": "7531:6:6"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_calldata_ptr",
"nativeSrc": "7094:529:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7142:9:6",
"nodeType": "YulTypedName",
"src": "7142:9:6",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "7153:7:6",
"nodeType": "YulTypedName",
"src": "7153:7:6",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "7165:6:6",
"nodeType": "YulTypedName",
"src": "7165:6:6",
"type": ""
},
{
"name": "value1",
"nativeSrc": "7173:6:6",
"nodeType": "YulTypedName",
"src": "7173:6:6",
"type": ""
}
],
"src": "7094:529:6"
},
{
"body": {
"nativeSrc": "7727:124:6",
"nodeType": "YulBlock",
"src": "7727:124:6",
"statements": [
{
"nativeSrc": "7737:26:6",
"nodeType": "YulAssignment",
"src": "7737:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "7749:9:6",
"nodeType": "YulIdentifier",
"src": "7749:9:6"
},
{
"kind": "number",
"nativeSrc": "7760:2:6",
"nodeType": "YulLiteral",
"src": "7760:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7745:3:6",
"nodeType": "YulIdentifier",
"src": "7745:3:6"
},
"nativeSrc": "7745:18:6",
"nodeType": "YulFunctionCall",
"src": "7745:18:6"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7737:4:6",
"nodeType": "YulIdentifier",
"src": "7737:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "7817:6:6",
"nodeType": "YulIdentifier",
"src": "7817:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7830:9:6",
"nodeType": "YulIdentifier",
"src": "7830:9:6"
},
{
"kind": "number",
"nativeSrc": "7841:1:6",
"nodeType": "YulLiteral",
"src": "7841:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7826:3:6",
"nodeType": "YulIdentifier",
"src": "7826:3:6"
},
"nativeSrc": "7826:17:6",
"nodeType": "YulFunctionCall",
"src": "7826:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "7773:43:6",
"nodeType": "YulIdentifier",
"src": "7773:43:6"
},
"nativeSrc": "7773:71:6",
"nodeType": "YulFunctionCall",
"src": "7773:71:6"
},
"nativeSrc": "7773:71:6",
"nodeType": "YulExpressionStatement",
"src": "7773:71:6"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "7629:222:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7699:9:6",
"nodeType": "YulTypedName",
"src": "7699:9:6",
"type": ""
},
{
"name": "value0",
"nativeSrc": "7711:6:6",
"nodeType": "YulTypedName",
"src": "7711:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "7722:4:6",
"nodeType": "YulTypedName",
"src": "7722:4:6",
"type": ""
}
],
"src": "7629:222:6"
},
{
"body": {
"nativeSrc": "7885:152:6",
"nodeType": "YulBlock",
"src": "7885:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "7902:1:6",
"nodeType": "YulLiteral",
"src": "7902:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "7905:77:6",
"nodeType": "YulLiteral",
"src": "7905:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7895:6:6",
"nodeType": "YulIdentifier",
"src": "7895:6:6"
},
"nativeSrc": "7895:88:6",
"nodeType": "YulFunctionCall",
"src": "7895:88:6"
},
"nativeSrc": "7895:88:6",
"nodeType": "YulExpressionStatement",
"src": "7895:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "7999:1:6",
"nodeType": "YulLiteral",
"src": "7999:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "8002:4:6",
"nodeType": "YulLiteral",
"src": "8002:4:6",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7992:6:6",
"nodeType": "YulIdentifier",
"src": "7992:6:6"
},
"nativeSrc": "7992:15:6",
"nodeType": "YulFunctionCall",
"src": "7992:15:6"
},
"nativeSrc": "7992:15:6",
"nodeType": "YulExpressionStatement",
"src": "7992:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "8023:1:6",
"nodeType": "YulLiteral",
"src": "8023:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "8026:4:6",
"nodeType": "YulLiteral",
"src": "8026:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "8016:6:6",
"nodeType": "YulIdentifier",
"src": "8016:6:6"
},
"nativeSrc": "8016:15:6",
"nodeType": "YulFunctionCall",
"src": "8016:15:6"
},
"nativeSrc": "8016:15:6",
"nodeType": "YulExpressionStatement",
"src": "8016:15:6"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "7857:180:6",
"nodeType": "YulFunctionDefinition",
"src": "7857:180:6"
},
{
"body": {
"nativeSrc": "8094:269:6",
"nodeType": "YulBlock",
"src": "8094:269:6",
"statements": [
{
"nativeSrc": "8104:22:6",
"nodeType": "YulAssignment",
"src": "8104:22:6",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "8118:4:6",
"nodeType": "YulIdentifier",
"src": "8118:4:6"
},
{
"kind": "number",
"nativeSrc": "8124:1:6",
"nodeType": "YulLiteral",
"src": "8124:1:6",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "8114:3:6",
"nodeType": "YulIdentifier",
"src": "8114:3:6"
},
"nativeSrc": "8114:12:6",
"nodeType": "YulFunctionCall",
"src": "8114:12:6"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "8104:6:6",
"nodeType": "YulIdentifier",
"src": "8104:6:6"
}
]
},
{
"nativeSrc": "8135:38:6",
"nodeType": "YulVariableDeclaration",
"src": "8135:38:6",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "8165:4:6",
"nodeType": "YulIdentifier",
"src": "8165:4:6"
},
{
"kind": "number",
"nativeSrc": "8171:1:6",
"nodeType": "YulLiteral",
"src": "8171:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "8161:3:6",
"nodeType": "YulIdentifier",
"src": "8161:3:6"
},
"nativeSrc": "8161:12:6",
"nodeType": "YulFunctionCall",
"src": "8161:12:6"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "8139:18:6",
"nodeType": "YulTypedName",
"src": "8139:18:6",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "8212:51:6",
"nodeType": "YulBlock",
"src": "8212:51:6",
"statements": [
{
"nativeSrc": "8226:27:6",
"nodeType": "YulAssignment",
"src": "8226:27:6",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "8240:6:6",
"nodeType": "YulIdentifier",
"src": "8240:6:6"
},
{
"kind": "number",
"nativeSrc": "8248:4:6",
"nodeType": "YulLiteral",
"src": "8248:4:6",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "8236:3:6",
"nodeType": "YulIdentifier",
"src": "8236:3:6"
},
"nativeSrc": "8236:17:6",
"nodeType": "YulFunctionCall",
"src": "8236:17:6"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "8226:6:6",
"nodeType": "YulIdentifier",
"src": "8226:6:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "8192:18:6",
"nodeType": "YulIdentifier",
"src": "8192:18:6"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "8185:6:6",
"nodeType": "YulIdentifier",
"src": "8185:6:6"
},
"nativeSrc": "8185:26:6",
"nodeType": "YulFunctionCall",
"src": "8185:26:6"
},
"nativeSrc": "8182:81:6",
"nodeType": "YulIf",
"src": "8182:81:6"
},
{
"body": {
"nativeSrc": "8315:42:6",
"nodeType": "YulBlock",
"src": "8315:42:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "8329:16:6",
"nodeType": "YulIdentifier",
"src": "8329:16:6"
},
"nativeSrc": "8329:18:6",
"nodeType": "YulFunctionCall",
"src": "8329:18:6"
},
"nativeSrc": "8329:18:6",
"nodeType": "YulExpressionStatement",
"src": "8329:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "8279:18:6",
"nodeType": "YulIdentifier",
"src": "8279:18:6"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "8302:6:6",
"nodeType": "YulIdentifier",
"src": "8302:6:6"
},
{
"kind": "number",
"nativeSrc": "8310:2:6",
"nodeType": "YulLiteral",
"src": "8310:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "8299:2:6",
"nodeType": "YulIdentifier",
"src": "8299:2:6"
},
"nativeSrc": "8299:14:6",
"nodeType": "YulFunctionCall",
"src": "8299:14:6"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "8276:2:6",
"nodeType": "YulIdentifier",
"src": "8276:2:6"
},
"nativeSrc": "8276:38:6",
"nodeType": "YulFunctionCall",
"src": "8276:38:6"
},
"nativeSrc": "8273:84:6",
"nodeType": "YulIf",
"src": "8273:84:6"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "8043:320:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "8078:4:6",
"nodeType": "YulTypedName",
"src": "8078:4:6",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "8087:6:6",
"nodeType": "YulTypedName",
"src": "8087:6:6",
"type": ""
}
],
"src": "8043:320:6"
},
{
"body": {
"nativeSrc": "8397:152:6",
"nodeType": "YulBlock",
"src": "8397:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "8414:1:6",
"nodeType": "YulLiteral",
"src": "8414:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "8417:77:6",
"nodeType": "YulLiteral",
"src": "8417:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8407:6:6",
"nodeType": "YulIdentifier",
"src": "8407:6:6"
},
"nativeSrc": "8407:88:6",
"nodeType": "YulFunctionCall",
"src": "8407:88:6"
},
"nativeSrc": "8407:88:6",
"nodeType": "YulExpressionStatement",
"src": "8407:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "8511:1:6",
"nodeType": "YulLiteral",
"src": "8511:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "8514:4:6",
"nodeType": "YulLiteral",
"src": "8514:4:6",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8504:6:6",
"nodeType": "YulIdentifier",
"src": "8504:6:6"
},
"nativeSrc": "8504:15:6",
"nodeType": "YulFunctionCall",
"src": "8504:15:6"
},
"nativeSrc": "8504:15:6",
"nodeType": "YulExpressionStatement",
"src": "8504:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "8535:1:6",
"nodeType": "YulLiteral",
"src": "8535:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "8538:4:6",
"nodeType": "YulLiteral",
"src": "8538:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "8528:6:6",
"nodeType": "YulIdentifier",
"src": "8528:6:6"
},
"nativeSrc": "8528:15:6",
"nodeType": "YulFunctionCall",
"src": "8528:15:6"
},
"nativeSrc": "8528:15:6",
"nodeType": "YulExpressionStatement",
"src": "8528:15:6"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "8369:180:6",
"nodeType": "YulFunctionDefinition",
"src": "8369:180:6"
},
{
"body": {
"nativeSrc": "8609:87:6",
"nodeType": "YulBlock",
"src": "8609:87:6",
"statements": [
{
"nativeSrc": "8619:11:6",
"nodeType": "YulAssignment",
"src": "8619:11:6",
"value": {
"name": "ptr",
"nativeSrc": "8627:3:6",
"nodeType": "YulIdentifier",
"src": "8627:3:6"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "8619:4:6",
"nodeType": "YulIdentifier",
"src": "8619:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "8647:1:6",
"nodeType": "YulLiteral",
"src": "8647:1:6",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nativeSrc": "8650:3:6",
"nodeType": "YulIdentifier",
"src": "8650:3:6"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8640:6:6",
"nodeType": "YulIdentifier",
"src": "8640:6:6"
},
"nativeSrc": "8640:14:6",
"nodeType": "YulFunctionCall",
"src": "8640:14:6"
},
"nativeSrc": "8640:14:6",
"nodeType": "YulExpressionStatement",
"src": "8640:14:6"
},
{
"nativeSrc": "8663:26:6",
"nodeType": "YulAssignment",
"src": "8663:26:6",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "8681:1:6",
"nodeType": "YulLiteral",
"src": "8681:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "8684:4:6",
"nodeType": "YulLiteral",
"src": "8684:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nativeSrc": "8671:9:6",
"nodeType": "YulIdentifier",
"src": "8671:9:6"
},
"nativeSrc": "8671:18:6",
"nodeType": "YulFunctionCall",
"src": "8671:18:6"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "8663:4:6",
"nodeType": "YulIdentifier",
"src": "8663:4:6"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nativeSrc": "8555:141:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "8596:3:6",
"nodeType": "YulTypedName",
"src": "8596:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "8604:4:6",
"nodeType": "YulTypedName",
"src": "8604:4:6",
"type": ""
}
],
"src": "8555:141:6"
},
{
"body": {
"nativeSrc": "8746:49:6",
"nodeType": "YulBlock",
"src": "8746:49:6",
"statements": [
{
"nativeSrc": "8756:33:6",
"nodeType": "YulAssignment",
"src": "8756:33:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "8774:5:6",
"nodeType": "YulIdentifier",
"src": "8774:5:6"
},
{
"kind": "number",
"nativeSrc": "8781:2:6",
"nodeType": "YulLiteral",
"src": "8781:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8770:3:6",
"nodeType": "YulIdentifier",
"src": "8770:3:6"
},
"nativeSrc": "8770:14:6",
"nodeType": "YulFunctionCall",
"src": "8770:14:6"
},
{
"kind": "number",
"nativeSrc": "8786:2:6",
"nodeType": "YulLiteral",
"src": "8786:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nativeSrc": "8766:3:6",
"nodeType": "YulIdentifier",
"src": "8766:3:6"
},
"nativeSrc": "8766:23:6",
"nodeType": "YulFunctionCall",
"src": "8766:23:6"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "8756:6:6",
"nodeType": "YulIdentifier",
"src": "8756:6:6"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nativeSrc": "8702:93:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8729:5:6",
"nodeType": "YulTypedName",
"src": "8729:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "8739:6:6",
"nodeType": "YulTypedName",
"src": "8739:6:6",
"type": ""
}
],
"src": "8702:93:6"
},
{
"body": {
"nativeSrc": "8854:54:6",
"nodeType": "YulBlock",
"src": "8854:54:6",
"statements": [
{
"nativeSrc": "8864:37:6",
"nodeType": "YulAssignment",
"src": "8864:37:6",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "8889:4:6",
"nodeType": "YulIdentifier",
"src": "8889:4:6"
},
{
"name": "value",
"nativeSrc": "8895:5:6",
"nodeType": "YulIdentifier",
"src": "8895:5:6"
}
],
"functionName": {
"name": "shl",
"nativeSrc": "8885:3:6",
"nodeType": "YulIdentifier",
"src": "8885:3:6"
},
"nativeSrc": "8885:16:6",
"nodeType": "YulFunctionCall",
"src": "8885:16:6"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "8864:8:6",
"nodeType": "YulIdentifier",
"src": "8864:8:6"
}
]
}
]
},
"name": "shift_left_dynamic",
"nativeSrc": "8801:107:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "8829:4:6",
"nodeType": "YulTypedName",
"src": "8829:4:6",
"type": ""
},
{
"name": "value",
"nativeSrc": "8835:5:6",
"nodeType": "YulTypedName",
"src": "8835:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "8845:8:6",
"nodeType": "YulTypedName",
"src": "8845:8:6",
"type": ""
}
],
"src": "8801:107:6"
},
{
"body": {
"nativeSrc": "8990:317:6",
"nodeType": "YulBlock",
"src": "8990:317:6",
"statements": [
{
"nativeSrc": "9000:35:6",
"nodeType": "YulVariableDeclaration",
"src": "9000:35:6",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nativeSrc": "9021:10:6",
"nodeType": "YulIdentifier",
"src": "9021:10:6"
},
{
"kind": "number",
"nativeSrc": "9033:1:6",
"nodeType": "YulLiteral",
"src": "9033:1:6",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "9017:3:6",
"nodeType": "YulIdentifier",
"src": "9017:3:6"
},
"nativeSrc": "9017:18:6",
"nodeType": "YulFunctionCall",
"src": "9017:18:6"
},
"variables": [
{
"name": "shiftBits",
"nativeSrc": "9004:9:6",
"nodeType": "YulTypedName",
"src": "9004:9:6",
"type": ""
}
]
},
{
"nativeSrc": "9044:109:6",
"nodeType": "YulVariableDeclaration",
"src": "9044:109:6",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "9075:9:6",
"nodeType": "YulIdentifier",
"src": "9075:9:6"
},
{
"kind": "number",
"nativeSrc": "9086:66:6",
"nodeType": "YulLiteral",
"src": "9086:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "9056:18:6",
"nodeType": "YulIdentifier",
"src": "9056:18:6"
},
"nativeSrc": "9056:97:6",
"nodeType": "YulFunctionCall",
"src": "9056:97:6"
},
"variables": [
{
"name": "mask",
"nativeSrc": "9048:4:6",
"nodeType": "YulTypedName",
"src": "9048:4:6",
"type": ""
}
]
},
{
"nativeSrc": "9162:51:6",
"nodeType": "YulAssignment",
"src": "9162:51:6",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "9193:9:6",
"nodeType": "YulIdentifier",
"src": "9193:9:6"
},
{
"name": "toInsert",
"nativeSrc": "9204:8:6",
"nodeType": "YulIdentifier",
"src": "9204:8:6"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "9174:18:6",
"nodeType": "YulIdentifier",
"src": "9174:18:6"
},
"nativeSrc": "9174:39:6",
"nodeType": "YulFunctionCall",
"src": "9174:39:6"
},
"variableNames": [
{
"name": "toInsert",
"nativeSrc": "9162:8:6",
"nodeType": "YulIdentifier",
"src": "9162:8:6"
}
]
},
{
"nativeSrc": "9222:30:6",
"nodeType": "YulAssignment",
"src": "9222:30:6",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "9235:5:6",
"nodeType": "YulIdentifier",
"src": "9235:5:6"
},
{
"arguments": [
{
"name": "mask",
"nativeSrc": "9246:4:6",
"nodeType": "YulIdentifier",
"src": "9246:4:6"
}
],
"functionName": {
"name": "not",
"nativeSrc": "9242:3:6",
"nodeType": "YulIdentifier",
"src": "9242:3:6"
},
"nativeSrc": "9242:9:6",
"nodeType": "YulFunctionCall",
"src": "9242:9:6"
}
],
"functionName": {
"name": "and",
"nativeSrc": "9231:3:6",
"nodeType": "YulIdentifier",
"src": "9231:3:6"
},
"nativeSrc": "9231:21:6",
"nodeType": "YulFunctionCall",
"src": "9231:21:6"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "9222:5:6",
"nodeType": "YulIdentifier",
"src": "9222:5:6"
}
]
},
{
"nativeSrc": "9261:40:6",
"nodeType": "YulAssignment",
"src": "9261:40:6",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "9274:5:6",
"nodeType": "YulIdentifier",
"src": "9274:5:6"
},
{
"arguments": [
{
"name": "toInsert",
"nativeSrc": "9285:8:6",
"nodeType": "YulIdentifier",
"src": "9285:8:6"
},
{
"name": "mask",
"nativeSrc": "9295:4:6",
"nodeType": "YulIdentifier",
"src": "9295:4:6"
}
],
"functionName": {
"name": "and",
"nativeSrc": "9281:3:6",
"nodeType": "YulIdentifier",
"src": "9281:3:6"
},
"nativeSrc": "9281:19:6",
"nodeType": "YulFunctionCall",
"src": "9281:19:6"
}
],
"functionName": {
"name": "or",
"nativeSrc": "9271:2:6",
"nodeType": "YulIdentifier",
"src": "9271:2:6"
},
"nativeSrc": "9271:30:6",
"nodeType": "YulFunctionCall",
"src": "9271:30:6"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "9261:6:6",
"nodeType": "YulIdentifier",
"src": "9261:6:6"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nativeSrc": "8914:393:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8951:5:6",
"nodeType": "YulTypedName",
"src": "8951:5:6",
"type": ""
},
{
"name": "shiftBytes",
"nativeSrc": "8958:10:6",
"nodeType": "YulTypedName",
"src": "8958:10:6",
"type": ""
},
{
"name": "toInsert",
"nativeSrc": "8970:8:6",
"nodeType": "YulTypedName",
"src": "8970:8:6",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "8983:6:6",
"nodeType": "YulTypedName",
"src": "8983:6:6",
"type": ""
}
],
"src": "8914:393:6"
},
{
"body": {
"nativeSrc": "9345:28:6",
"nodeType": "YulBlock",
"src": "9345:28:6",
"statements": [
{
"nativeSrc": "9355:12:6",
"nodeType": "YulAssignment",
"src": "9355:12:6",
"value": {
"name": "value",
"nativeSrc": "9362:5:6",
"nodeType": "YulIdentifier",
"src": "9362:5:6"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "9355:3:6",
"nodeType": "YulIdentifier",
"src": "9355:3:6"
}
]
}
]
},
"name": "identity",
"nativeSrc": "9313:60:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "9331:5:6",
"nodeType": "YulTypedName",
"src": "9331:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "9341:3:6",
"nodeType": "YulTypedName",
"src": "9341:3:6",
"type": ""
}
],
"src": "9313:60:6"
},
{
"body": {
"nativeSrc": "9439:82:6",
"nodeType": "YulBlock",
"src": "9439:82:6",
"statements": [
{
"nativeSrc": "9449:66:6",
"nodeType": "YulAssignment",
"src": "9449:66:6",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "9507:5:6",
"nodeType": "YulIdentifier",
"src": "9507:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "9489:17:6",
"nodeType": "YulIdentifier",
"src": "9489:17:6"
},
"nativeSrc": "9489:24:6",
"nodeType": "YulFunctionCall",
"src": "9489:24:6"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "9480:8:6",
"nodeType": "YulIdentifier",
"src": "9480:8:6"
},
"nativeSrc": "9480:34:6",
"nodeType": "YulFunctionCall",
"src": "9480:34:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "9462:17:6",
"nodeType": "YulIdentifier",
"src": "9462:17:6"
},
"nativeSrc": "9462:53:6",
"nodeType": "YulFunctionCall",
"src": "9462:53:6"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "9449:9:6",
"nodeType": "YulIdentifier",
"src": "9449:9:6"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "9379:142:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "9419:5:6",
"nodeType": "YulTypedName",
"src": "9419:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "9429:9:6",
"nodeType": "YulTypedName",
"src": "9429:9:6",
"type": ""
}
],
"src": "9379:142:6"
},
{
"body": {
"nativeSrc": "9574:28:6",
"nodeType": "YulBlock",
"src": "9574:28:6",
"statements": [
{
"nativeSrc": "9584:12:6",
"nodeType": "YulAssignment",
"src": "9584:12:6",
"value": {
"name": "value",
"nativeSrc": "9591:5:6",
"nodeType": "YulIdentifier",
"src": "9591:5:6"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "9584:3:6",
"nodeType": "YulIdentifier",
"src": "9584:3:6"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nativeSrc": "9527:75:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "9560:5:6",
"nodeType": "YulTypedName",
"src": "9560:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "9570:3:6",
"nodeType": "YulTypedName",
"src": "9570:3:6",
"type": ""
}
],
"src": "9527:75:6"
},
{
"body": {
"nativeSrc": "9684:193:6",
"nodeType": "YulBlock",
"src": "9684:193:6",
"statements": [
{
"nativeSrc": "9694:63:6",
"nodeType": "YulVariableDeclaration",
"src": "9694:63:6",
"value": {
"arguments": [
{
"name": "value_0",
"nativeSrc": "9749:7:6",
"nodeType": "YulIdentifier",
"src": "9749:7:6"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "9718:30:6",
"nodeType": "YulIdentifier",
"src": "9718:30:6"
},
"nativeSrc": "9718:39:6",
"nodeType": "YulFunctionCall",
"src": "9718:39:6"
},
"variables": [
{
"name": "convertedValue_0",
"nativeSrc": "9698:16:6",
"nodeType": "YulTypedName",
"src": "9698:16:6",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "9773:4:6",
"nodeType": "YulIdentifier",
"src": "9773:4:6"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "9813:4:6",
"nodeType": "YulIdentifier",
"src": "9813:4:6"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "9807:5:6",
"nodeType": "YulIdentifier",
"src": "9807:5:6"
},
"nativeSrc": "9807:11:6",
"nodeType": "YulFunctionCall",
"src": "9807:11:6"
},
{
"name": "offset",
"nativeSrc": "9820:6:6",
"nodeType": "YulIdentifier",
"src": "9820:6:6"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nativeSrc": "9852:16:6",
"nodeType": "YulIdentifier",
"src": "9852:16:6"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nativeSrc": "9828:23:6",
"nodeType": "YulIdentifier",
"src": "9828:23:6"
},
"nativeSrc": "9828:41:6",
"nodeType": "YulFunctionCall",
"src": "9828:41:6"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nativeSrc": "9779:27:6",
"nodeType": "YulIdentifier",
"src": "9779:27:6"
},
"nativeSrc": "9779:91:6",
"nodeType": "YulFunctionCall",
"src": "9779:91:6"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "9766:6:6",
"nodeType": "YulIdentifier",
"src": "9766:6:6"
},
"nativeSrc": "9766:105:6",
"nodeType": "YulFunctionCall",
"src": "9766:105:6"
},
"nativeSrc": "9766:105:6",
"nodeType": "YulExpressionStatement",
"src": "9766:105:6"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "9608:269:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "9661:4:6",
"nodeType": "YulTypedName",
"src": "9661:4:6",
"type": ""
},
{
"name": "offset",
"nativeSrc": "9667:6:6",
"nodeType": "YulTypedName",
"src": "9667:6:6",
"type": ""
},
{
"name": "value_0",
"nativeSrc": "9675:7:6",
"nodeType": "YulTypedName",
"src": "9675:7:6",
"type": ""
}
],
"src": "9608:269:6"
},
{
"body": {
"nativeSrc": "9932:24:6",
"nodeType": "YulBlock",
"src": "9932:24:6",
"statements": [
{
"nativeSrc": "9942:8:6",
"nodeType": "YulAssignment",
"src": "9942:8:6",
"value": {
"kind": "number",
"nativeSrc": "9949:1:6",
"nodeType": "YulLiteral",
"src": "9949:1:6",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "9942:3:6",
"nodeType": "YulIdentifier",
"src": "9942:3:6"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "9883:73:6",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nativeSrc": "9928:3:6",
"nodeType": "YulTypedName",
"src": "9928:3:6",
"type": ""
}
],
"src": "9883:73:6"
},
{
"body": {
"nativeSrc": "10015:136:6",
"nodeType": "YulBlock",
"src": "10015:136:6",
"statements": [
{
"nativeSrc": "10025:46:6",
"nodeType": "YulVariableDeclaration",
"src": "10025:46:6",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "10039:30:6",
"nodeType": "YulIdentifier",
"src": "10039:30:6"
},
"nativeSrc": "10039:32:6",
"nodeType": "YulFunctionCall",
"src": "10039:32:6"
},
"variables": [
{
"name": "zero_0",
"nativeSrc": "10029:6:6",
"nodeType": "YulTypedName",
"src": "10029:6:6",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "10124:4:6",
"nodeType": "YulIdentifier",
"src": "10124:4:6"
},
{
"name": "offset",
"nativeSrc": "10130:6:6",
"nodeType": "YulIdentifier",
"src": "10130:6:6"
},
{
"name": "zero_0",
"nativeSrc": "10138:6:6",
"nodeType": "YulIdentifier",
"src": "10138:6:6"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "10080:43:6",
"nodeType": "YulIdentifier",
"src": "10080:43:6"
},
"nativeSrc": "10080:65:6",
"nodeType": "YulFunctionCall",
"src": "10080:65:6"
},
"nativeSrc": "10080:65:6",
"nodeType": "YulExpressionStatement",
"src": "10080:65:6"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "9962:189:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "10001:4:6",
"nodeType": "YulTypedName",
"src": "10001:4:6",
"type": ""
},
{
"name": "offset",
"nativeSrc": "10007:6:6",
"nodeType": "YulTypedName",
"src": "10007:6:6",
"type": ""
}
],
"src": "9962:189:6"
},
{
"body": {
"nativeSrc": "10207:136:6",
"nodeType": "YulBlock",
"src": "10207:136:6",
"statements": [
{
"body": {
"nativeSrc": "10274:63:6",
"nodeType": "YulBlock",
"src": "10274:63:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nativeSrc": "10318:5:6",
"nodeType": "YulIdentifier",
"src": "10318:5:6"
},
{
"kind": "number",
"nativeSrc": "10325:1:6",
"nodeType": "YulLiteral",
"src": "10325:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "10288:29:6",
"nodeType": "YulIdentifier",
"src": "10288:29:6"
},
"nativeSrc": "10288:39:6",
"nodeType": "YulFunctionCall",
"src": "10288:39:6"
},
"nativeSrc": "10288:39:6",
"nodeType": "YulExpressionStatement",
"src": "10288:39:6"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nativeSrc": "10227:5:6",
"nodeType": "YulIdentifier",
"src": "10227:5:6"
},
{
"name": "end",
"nativeSrc": "10234:3:6",
"nodeType": "YulIdentifier",
"src": "10234:3:6"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "10224:2:6",
"nodeType": "YulIdentifier",
"src": "10224:2:6"
},
"nativeSrc": "10224:14:6",
"nodeType": "YulFunctionCall",
"src": "10224:14:6"
},
"nativeSrc": "10217:120:6",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "10239:26:6",
"nodeType": "YulBlock",
"src": "10239:26:6",
"statements": [
{
"nativeSrc": "10241:22:6",
"nodeType": "YulAssignment",
"src": "10241:22:6",
"value": {
"arguments": [
{
"name": "start",
"nativeSrc": "10254:5:6",
"nodeType": "YulIdentifier",
"src": "10254:5:6"
},
{
"kind": "number",
"nativeSrc": "10261:1:6",
"nodeType": "YulLiteral",
"src": "10261:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10250:3:6",
"nodeType": "YulIdentifier",
"src": "10250:3:6"
},
"nativeSrc": "10250:13:6",
"nodeType": "YulFunctionCall",
"src": "10250:13:6"
},
"variableNames": [
{
"name": "start",
"nativeSrc": "10241:5:6",
"nodeType": "YulIdentifier",
"src": "10241:5:6"
}
]
}
]
},
"pre": {
"nativeSrc": "10221:2:6",
"nodeType": "YulBlock",
"src": "10221:2:6",
"statements": []
},
"src": "10217:120:6"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "10157:186:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nativeSrc": "10195:5:6",
"nodeType": "YulTypedName",
"src": "10195:5:6",
"type": ""
},
{
"name": "end",
"nativeSrc": "10202:3:6",
"nodeType": "YulTypedName",
"src": "10202:3:6",
"type": ""
}
],
"src": "10157:186:6"
},
{
"body": {
"nativeSrc": "10428:464:6",
"nodeType": "YulBlock",
"src": "10428:464:6",
"statements": [
{
"body": {
"nativeSrc": "10454:431:6",
"nodeType": "YulBlock",
"src": "10454:431:6",
"statements": [
{
"nativeSrc": "10468:54:6",
"nodeType": "YulVariableDeclaration",
"src": "10468:54:6",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "10516:5:6",
"nodeType": "YulIdentifier",
"src": "10516:5:6"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "10484:31:6",
"nodeType": "YulIdentifier",
"src": "10484:31:6"
},
"nativeSrc": "10484:38:6",
"nodeType": "YulFunctionCall",
"src": "10484:38:6"
},
"variables": [
{
"name": "dataArea",
"nativeSrc": "10472:8:6",
"nodeType": "YulTypedName",
"src": "10472:8:6",
"type": ""
}
]
},
{
"nativeSrc": "10535:63:6",
"nodeType": "YulVariableDeclaration",
"src": "10535:63:6",
"value": {
"arguments": [
{
"name": "dataArea",
"nativeSrc": "10558:8:6",
"nodeType": "YulIdentifier",
"src": "10558:8:6"
},
{
"arguments": [
{
"name": "startIndex",
"nativeSrc": "10586:10:6",
"nodeType": "YulIdentifier",
"src": "10586:10:6"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "10568:17:6",
"nodeType": "YulIdentifier",
"src": "10568:17:6"
},
"nativeSrc": "10568:29:6",
"nodeType": "YulFunctionCall",
"src": "10568:29:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10554:3:6",
"nodeType": "YulIdentifier",
"src": "10554:3:6"
},
"nativeSrc": "10554:44:6",
"nodeType": "YulFunctionCall",
"src": "10554:44:6"
},
"variables": [
{
"name": "deleteStart",
"nativeSrc": "10539:11:6",
"nodeType": "YulTypedName",
"src": "10539:11:6",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "10755:27:6",
"nodeType": "YulBlock",
"src": "10755:27:6",
"statements": [
{
"nativeSrc": "10757:23:6",
"nodeType": "YulAssignment",
"src": "10757:23:6",
"value": {
"name": "dataArea",
"nativeSrc": "10772:8:6",
"nodeType": "YulIdentifier",
"src": "10772:8:6"
},
"variableNames": [
{
"name": "deleteStart",
"nativeSrc": "10757:11:6",
"nodeType": "YulIdentifier",
"src": "10757:11:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nativeSrc": "10739:10:6",
"nodeType": "YulIdentifier",
"src": "10739:10:6"
},
{
"kind": "number",
"nativeSrc": "10751:2:6",
"nodeType": "YulLiteral",
"src": "10751:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "10736:2:6",
"nodeType": "YulIdentifier",
"src": "10736:2:6"
},
"nativeSrc": "10736:18:6",
"nodeType": "YulFunctionCall",
"src": "10736:18:6"
},
"nativeSrc": "10733:49:6",
"nodeType": "YulIf",
"src": "10733:49:6"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nativeSrc": "10824:11:6",
"nodeType": "YulIdentifier",
"src": "10824:11:6"
},
{
"arguments": [
{
"name": "dataArea",
"nativeSrc": "10841:8:6",
"nodeType": "YulIdentifier",
"src": "10841:8:6"
},
{
"arguments": [
{
"name": "len",
"nativeSrc": "10869:3:6",
"nodeType": "YulIdentifier",
"src": "10869:3:6"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "10851:17:6",
"nodeType": "YulIdentifier",
"src": "10851:17:6"
},
"nativeSrc": "10851:22:6",
"nodeType": "YulFunctionCall",
"src": "10851:22:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10837:3:6",
"nodeType": "YulIdentifier",
"src": "10837:3:6"
},
"nativeSrc": "10837:37:6",
"nodeType": "YulFunctionCall",
"src": "10837:37:6"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "10795:28:6",
"nodeType": "YulIdentifier",
"src": "10795:28:6"
},
"nativeSrc": "10795:80:6",
"nodeType": "YulFunctionCall",
"src": "10795:80:6"
},
"nativeSrc": "10795:80:6",
"nodeType": "YulExpressionStatement",
"src": "10795:80:6"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nativeSrc": "10445:3:6",
"nodeType": "YulIdentifier",
"src": "10445:3:6"
},
{
"kind": "number",
"nativeSrc": "10450:2:6",
"nodeType": "YulLiteral",
"src": "10450:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "10442:2:6",
"nodeType": "YulIdentifier",
"src": "10442:2:6"
},
"nativeSrc": "10442:11:6",
"nodeType": "YulFunctionCall",
"src": "10442:11:6"
},
"nativeSrc": "10439:446:6",
"nodeType": "YulIf",
"src": "10439:446:6"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "10349:543:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nativeSrc": "10404:5:6",
"nodeType": "YulTypedName",
"src": "10404:5:6",
"type": ""
},
{
"name": "len",
"nativeSrc": "10411:3:6",
"nodeType": "YulTypedName",
"src": "10411:3:6",
"type": ""
},
{
"name": "startIndex",
"nativeSrc": "10416:10:6",
"nodeType": "YulTypedName",
"src": "10416:10:6",
"type": ""
}
],
"src": "10349:543:6"
},
{
"body": {
"nativeSrc": "10961:54:6",
"nodeType": "YulBlock",
"src": "10961:54:6",
"statements": [
{
"nativeSrc": "10971:37:6",
"nodeType": "YulAssignment",
"src": "10971:37:6",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "10996:4:6",
"nodeType": "YulIdentifier",
"src": "10996:4:6"
},
{
"name": "value",
"nativeSrc": "11002:5:6",
"nodeType": "YulIdentifier",
"src": "11002:5:6"
}
],
"functionName": {
"name": "shr",
"nativeSrc": "10992:3:6",
"nodeType": "YulIdentifier",
"src": "10992:3:6"
},
"nativeSrc": "10992:16:6",
"nodeType": "YulFunctionCall",
"src": "10992:16:6"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "10971:8:6",
"nodeType": "YulIdentifier",
"src": "10971:8:6"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "10898:117:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "10936:4:6",
"nodeType": "YulTypedName",
"src": "10936:4:6",
"type": ""
},
{
"name": "value",
"nativeSrc": "10942:5:6",
"nodeType": "YulTypedName",
"src": "10942:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "10952:8:6",
"nodeType": "YulTypedName",
"src": "10952:8:6",
"type": ""
}
],
"src": "10898:117:6"
},
{
"body": {
"nativeSrc": "11072:118:6",
"nodeType": "YulBlock",
"src": "11072:118:6",
"statements": [
{
"nativeSrc": "11082:68:6",
"nodeType": "YulVariableDeclaration",
"src": "11082:68:6",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nativeSrc": "11131:1:6",
"nodeType": "YulLiteral",
"src": "11131:1:6",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nativeSrc": "11134:5:6",
"nodeType": "YulIdentifier",
"src": "11134:5:6"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "11127:3:6",
"nodeType": "YulIdentifier",
"src": "11127:3:6"
},
"nativeSrc": "11127:13:6",
"nodeType": "YulFunctionCall",
"src": "11127:13:6"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "11146:1:6",
"nodeType": "YulLiteral",
"src": "11146:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nativeSrc": "11142:3:6",
"nodeType": "YulIdentifier",
"src": "11142:3:6"
},
"nativeSrc": "11142:6:6",
"nodeType": "YulFunctionCall",
"src": "11142:6:6"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "11098:28:6",
"nodeType": "YulIdentifier",
"src": "11098:28:6"
},
"nativeSrc": "11098:51:6",
"nodeType": "YulFunctionCall",
"src": "11098:51:6"
}
],
"functionName": {
"name": "not",
"nativeSrc": "11094:3:6",
"nodeType": "YulIdentifier",
"src": "11094:3:6"
},
"nativeSrc": "11094:56:6",
"nodeType": "YulFunctionCall",
"src": "11094:56:6"
},
"variables": [
{
"name": "mask",
"nativeSrc": "11086:4:6",
"nodeType": "YulTypedName",
"src": "11086:4:6",
"type": ""
}
]
},
{
"nativeSrc": "11159:25:6",
"nodeType": "YulAssignment",
"src": "11159:25:6",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "11173:4:6",
"nodeType": "YulIdentifier",
"src": "11173:4:6"
},
{
"name": "mask",
"nativeSrc": "11179:4:6",
"nodeType": "YulIdentifier",
"src": "11179:4:6"
}
],
"functionName": {
"name": "and",
"nativeSrc": "11169:3:6",
"nodeType": "YulIdentifier",
"src": "11169:3:6"
},
"nativeSrc": "11169:15:6",
"nodeType": "YulFunctionCall",
"src": "11169:15:6"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "11159:6:6",
"nodeType": "YulIdentifier",
"src": "11159:6:6"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nativeSrc": "11021:169:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "11049:4:6",
"nodeType": "YulTypedName",
"src": "11049:4:6",
"type": ""
},
{
"name": "bytes",
"nativeSrc": "11055:5:6",
"nodeType": "YulTypedName",
"src": "11055:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "11065:6:6",
"nodeType": "YulTypedName",
"src": "11065:6:6",
"type": ""
}
],
"src": "11021:169:6"
},
{
"body": {
"nativeSrc": "11276:214:6",
"nodeType": "YulBlock",
"src": "11276:214:6",
"statements": [
{
"nativeSrc": "11409:37:6",
"nodeType": "YulAssignment",
"src": "11409:37:6",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "11436:4:6",
"nodeType": "YulIdentifier",
"src": "11436:4:6"
},
{
"name": "len",
"nativeSrc": "11442:3:6",
"nodeType": "YulIdentifier",
"src": "11442:3:6"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "11417:18:6",
"nodeType": "YulIdentifier",
"src": "11417:18:6"
},
"nativeSrc": "11417:29:6",
"nodeType": "YulFunctionCall",
"src": "11417:29:6"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "11409:4:6",
"nodeType": "YulIdentifier",
"src": "11409:4:6"
}
]
},
{
"nativeSrc": "11455:29:6",
"nodeType": "YulAssignment",
"src": "11455:29:6",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "11466:4:6",
"nodeType": "YulIdentifier",
"src": "11466:4:6"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "11476:1:6",
"nodeType": "YulLiteral",
"src": "11476:1:6",
"type": "",
"value": "2"
},
{
"name": "len",
"nativeSrc": "11479:3:6",
"nodeType": "YulIdentifier",
"src": "11479:3:6"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "11472:3:6",
"nodeType": "YulIdentifier",
"src": "11472:3:6"
},
"nativeSrc": "11472:11:6",
"nodeType": "YulFunctionCall",
"src": "11472:11:6"
}
],
"functionName": {
"name": "or",
"nativeSrc": "11463:2:6",
"nodeType": "YulIdentifier",
"src": "11463:2:6"
},
"nativeSrc": "11463:21:6",
"nodeType": "YulFunctionCall",
"src": "11463:21:6"
},
"variableNames": [
{
"name": "used",
"nativeSrc": "11455:4:6",
"nodeType": "YulIdentifier",
"src": "11455:4:6"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "11195:295:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "11257:4:6",
"nodeType": "YulTypedName",
"src": "11257:4:6",
"type": ""
},
{
"name": "len",
"nativeSrc": "11263:3:6",
"nodeType": "YulTypedName",
"src": "11263:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nativeSrc": "11271:4:6",
"nodeType": "YulTypedName",
"src": "11271:4:6",
"type": ""
}
],
"src": "11195:295:6"
},
{
"body": {
"nativeSrc": "11587:1303:6",
"nodeType": "YulBlock",
"src": "11587:1303:6",
"statements": [
{
"nativeSrc": "11598:51:6",
"nodeType": "YulVariableDeclaration",
"src": "11598:51:6",
"value": {
"arguments": [
{
"name": "src",
"nativeSrc": "11645:3:6",
"nodeType": "YulIdentifier",
"src": "11645:3:6"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "11612:32:6",
"nodeType": "YulIdentifier",
"src": "11612:32:6"
},
"nativeSrc": "11612:37:6",
"nodeType": "YulFunctionCall",
"src": "11612:37:6"
},
"variables": [
{
"name": "newLen",
"nativeSrc": "11602:6:6",
"nodeType": "YulTypedName",
"src": "11602:6:6",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "11734:22:6",
"nodeType": "YulBlock",
"src": "11734:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "11736:16:6",
"nodeType": "YulIdentifier",
"src": "11736:16:6"
},
"nativeSrc": "11736:18:6",
"nodeType": "YulFunctionCall",
"src": "11736:18:6"
},
"nativeSrc": "11736:18:6",
"nodeType": "YulExpressionStatement",
"src": "11736:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "11706:6:6",
"nodeType": "YulIdentifier",
"src": "11706:6:6"
},
{
"kind": "number",
"nativeSrc": "11714:18:6",
"nodeType": "YulLiteral",
"src": "11714:18:6",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "11703:2:6",
"nodeType": "YulIdentifier",
"src": "11703:2:6"
},
"nativeSrc": "11703:30:6",
"nodeType": "YulFunctionCall",
"src": "11703:30:6"
},
"nativeSrc": "11700:56:6",
"nodeType": "YulIf",
"src": "11700:56:6"
},
{
"nativeSrc": "11766:52:6",
"nodeType": "YulVariableDeclaration",
"src": "11766:52:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "11812:4:6",
"nodeType": "YulIdentifier",
"src": "11812:4:6"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "11806:5:6",
"nodeType": "YulIdentifier",
"src": "11806:5:6"
},
"nativeSrc": "11806:11:6",
"nodeType": "YulFunctionCall",
"src": "11806:11:6"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nativeSrc": "11780:25:6",
"nodeType": "YulIdentifier",
"src": "11780:25:6"
},
"nativeSrc": "11780:38:6",
"nodeType": "YulFunctionCall",
"src": "11780:38:6"
},
"variables": [
{
"name": "oldLen",
"nativeSrc": "11770:6:6",
"nodeType": "YulTypedName",
"src": "11770:6:6",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "11911:4:6",
"nodeType": "YulIdentifier",
"src": "11911:4:6"
},
{
"name": "oldLen",
"nativeSrc": "11917:6:6",
"nodeType": "YulIdentifier",
"src": "11917:6:6"
},
{
"name": "newLen",
"nativeSrc": "11925:6:6",
"nodeType": "YulIdentifier",
"src": "11925:6:6"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "11865:45:6",
"nodeType": "YulIdentifier",
"src": "11865:45:6"
},
"nativeSrc": "11865:67:6",
"nodeType": "YulFunctionCall",
"src": "11865:67:6"
},
"nativeSrc": "11865:67:6",
"nodeType": "YulExpressionStatement",
"src": "11865:67:6"
},
{
"nativeSrc": "11942:18:6",
"nodeType": "YulVariableDeclaration",
"src": "11942:18:6",
"value": {
"kind": "number",
"nativeSrc": "11959:1:6",
"nodeType": "YulLiteral",
"src": "11959:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nativeSrc": "11946:9:6",
"nodeType": "YulTypedName",
"src": "11946:9:6",
"type": ""
}
]
},
{
"nativeSrc": "11970:17:6",
"nodeType": "YulAssignment",
"src": "11970:17:6",
"value": {
"kind": "number",
"nativeSrc": "11983:4:6",
"nodeType": "YulLiteral",
"src": "11983:4:6",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "11970:9:6",
"nodeType": "YulIdentifier",
"src": "11970:9:6"
}
]
},
{
"cases": [
{
"body": {
"nativeSrc": "12034:611:6",
"nodeType": "YulBlock",
"src": "12034:611:6",
"statements": [
{
"nativeSrc": "12048:37:6",
"nodeType": "YulVariableDeclaration",
"src": "12048:37:6",
"value": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "12067:6:6",
"nodeType": "YulIdentifier",
"src": "12067:6:6"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "12079:4:6",
"nodeType": "YulLiteral",
"src": "12079:4:6",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nativeSrc": "12075:3:6",
"nodeType": "YulIdentifier",
"src": "12075:3:6"
},
"nativeSrc": "12075:9:6",
"nodeType": "YulFunctionCall",
"src": "12075:9:6"
}
],
"functionName": {
"name": "and",
"nativeSrc": "12063:3:6",
"nodeType": "YulIdentifier",
"src": "12063:3:6"
},
"nativeSrc": "12063:22:6",
"nodeType": "YulFunctionCall",
"src": "12063:22:6"
},
"variables": [
{
"name": "loopEnd",
"nativeSrc": "12052:7:6",
"nodeType": "YulTypedName",
"src": "12052:7:6",
"type": ""
}
]
},
{
"nativeSrc": "12099:51:6",
"nodeType": "YulVariableDeclaration",
"src": "12099:51:6",
"value": {
"arguments": [
{
"name": "slot",
"nativeSrc": "12145:4:6",
"nodeType": "YulIdentifier",
"src": "12145:4:6"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "12113:31:6",
"nodeType": "YulIdentifier",
"src": "12113:31:6"
},
"nativeSrc": "12113:37:6",
"nodeType": "YulFunctionCall",
"src": "12113:37:6"
},
"variables": [
{
"name": "dstPtr",
"nativeSrc": "12103:6:6",
"nodeType": "YulTypedName",
"src": "12103:6:6",
"type": ""
}
]
},
{
"nativeSrc": "12163:10:6",
"nodeType": "YulVariableDeclaration",
"src": "12163:10:6",
"value": {
"kind": "number",
"nativeSrc": "12172:1:6",
"nodeType": "YulLiteral",
"src": "12172:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "12167:1:6",
"nodeType": "YulTypedName",
"src": "12167:1:6",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "12231:163:6",
"nodeType": "YulBlock",
"src": "12231:163:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "12256:6:6",
"nodeType": "YulIdentifier",
"src": "12256:6:6"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "12274:3:6",
"nodeType": "YulIdentifier",
"src": "12274:3:6"
},
{
"name": "srcOffset",
"nativeSrc": "12279:9:6",
"nodeType": "YulIdentifier",
"src": "12279:9:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12270:3:6",
"nodeType": "YulIdentifier",
"src": "12270:3:6"
},
"nativeSrc": "12270:19:6",
"nodeType": "YulFunctionCall",
"src": "12270:19:6"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "12264:5:6",
"nodeType": "YulIdentifier",
"src": "12264:5:6"
},
"nativeSrc": "12264:26:6",
"nodeType": "YulFunctionCall",
"src": "12264:26:6"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "12249:6:6",
"nodeType": "YulIdentifier",
"src": "12249:6:6"
},
"nativeSrc": "12249:42:6",
"nodeType": "YulFunctionCall",
"src": "12249:42:6"
},
"nativeSrc": "12249:42:6",
"nodeType": "YulExpressionStatement",
"src": "12249:42:6"
},
{
"nativeSrc": "12308:24:6",
"nodeType": "YulAssignment",
"src": "12308:24:6",
"value": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "12322:6:6",
"nodeType": "YulIdentifier",
"src": "12322:6:6"
},
{
"kind": "number",
"nativeSrc": "12330:1:6",
"nodeType": "YulLiteral",
"src": "12330:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12318:3:6",
"nodeType": "YulIdentifier",
"src": "12318:3:6"
},
"nativeSrc": "12318:14:6",
"nodeType": "YulFunctionCall",
"src": "12318:14:6"
},
"variableNames": [
{
"name": "dstPtr",
"nativeSrc": "12308:6:6",
"nodeType": "YulIdentifier",
"src": "12308:6:6"
}
]
},
{
"nativeSrc": "12349:31:6",
"nodeType": "YulAssignment",
"src": "12349:31:6",
"value": {
"arguments": [
{
"name": "srcOffset",
"nativeSrc": "12366:9:6",
"nodeType": "YulIdentifier",
"src": "12366:9:6"
},
{
"kind": "number",
"nativeSrc": "12377:2:6",
"nodeType": "YulLiteral",
"src": "12377:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12362:3:6",
"nodeType": "YulIdentifier",
"src": "12362:3:6"
},
"nativeSrc": "12362:18:6",
"nodeType": "YulFunctionCall",
"src": "12362:18:6"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "12349:9:6",
"nodeType": "YulIdentifier",
"src": "12349:9:6"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "12197:1:6",
"nodeType": "YulIdentifier",
"src": "12197:1:6"
},
{
"name": "loopEnd",
"nativeSrc": "12200:7:6",
"nodeType": "YulIdentifier",
"src": "12200:7:6"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "12194:2:6",
"nodeType": "YulIdentifier",
"src": "12194:2:6"
},
"nativeSrc": "12194:14:6",
"nodeType": "YulFunctionCall",
"src": "12194:14:6"
},
"nativeSrc": "12186:208:6",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "12209:21:6",
"nodeType": "YulBlock",
"src": "12209:21:6",
"statements": [
{
"nativeSrc": "12211:17:6",
"nodeType": "YulAssignment",
"src": "12211:17:6",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "12220:1:6",
"nodeType": "YulIdentifier",
"src": "12220:1:6"
},
{
"kind": "number",
"nativeSrc": "12223:4:6",
"nodeType": "YulLiteral",
"src": "12223:4:6",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12216:3:6",
"nodeType": "YulIdentifier",
"src": "12216:3:6"
},
"nativeSrc": "12216:12:6",
"nodeType": "YulFunctionCall",
"src": "12216:12:6"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "12211:1:6",
"nodeType": "YulIdentifier",
"src": "12211:1:6"
}
]
}
]
},
"pre": {
"nativeSrc": "12190:3:6",
"nodeType": "YulBlock",
"src": "12190:3:6",
"statements": []
},
"src": "12186:208:6"
},
{
"body": {
"nativeSrc": "12430:156:6",
"nodeType": "YulBlock",
"src": "12430:156:6",
"statements": [
{
"nativeSrc": "12448:43:6",
"nodeType": "YulVariableDeclaration",
"src": "12448:43:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "12475:3:6",
"nodeType": "YulIdentifier",
"src": "12475:3:6"
},
{
"name": "srcOffset",
"nativeSrc": "12480:9:6",
"nodeType": "YulIdentifier",
"src": "12480:9:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12471:3:6",
"nodeType": "YulIdentifier",
"src": "12471:3:6"
},
"nativeSrc": "12471:19:6",
"nodeType": "YulFunctionCall",
"src": "12471:19:6"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "12465:5:6",
"nodeType": "YulIdentifier",
"src": "12465:5:6"
},
"nativeSrc": "12465:26:6",
"nodeType": "YulFunctionCall",
"src": "12465:26:6"
},
"variables": [
{
"name": "lastValue",
"nativeSrc": "12452:9:6",
"nodeType": "YulTypedName",
"src": "12452:9:6",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "12515:6:6",
"nodeType": "YulIdentifier",
"src": "12515:6:6"
},
{
"arguments": [
{
"name": "lastValue",
"nativeSrc": "12542:9:6",
"nodeType": "YulIdentifier",
"src": "12542:9:6"
},
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "12557:6:6",
"nodeType": "YulIdentifier",
"src": "12557:6:6"
},
{
"kind": "number",
"nativeSrc": "12565:4:6",
"nodeType": "YulLiteral",
"src": "12565:4:6",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "12553:3:6",
"nodeType": "YulIdentifier",
"src": "12553:3:6"
},
"nativeSrc": "12553:17:6",
"nodeType": "YulFunctionCall",
"src": "12553:17:6"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "12523:18:6",
"nodeType": "YulIdentifier",
"src": "12523:18:6"
},
"nativeSrc": "12523:48:6",
"nodeType": "YulFunctionCall",
"src": "12523:48:6"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "12508:6:6",
"nodeType": "YulIdentifier",
"src": "12508:6:6"
},
"nativeSrc": "12508:64:6",
"nodeType": "YulFunctionCall",
"src": "12508:64:6"
},
"nativeSrc": "12508:64:6",
"nodeType": "YulExpressionStatement",
"src": "12508:64:6"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nativeSrc": "12413:7:6",
"nodeType": "YulIdentifier",
"src": "12413:7:6"
},
{
"name": "newLen",
"nativeSrc": "12422:6:6",
"nodeType": "YulIdentifier",
"src": "12422:6:6"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "12410:2:6",
"nodeType": "YulIdentifier",
"src": "12410:2:6"
},
"nativeSrc": "12410:19:6",
"nodeType": "YulFunctionCall",
"src": "12410:19:6"
},
"nativeSrc": "12407:179:6",
"nodeType": "YulIf",
"src": "12407:179:6"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "12606:4:6",
"nodeType": "YulIdentifier",
"src": "12606:4:6"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "12620:6:6",
"nodeType": "YulIdentifier",
"src": "12620:6:6"
},
{
"kind": "number",
"nativeSrc": "12628:1:6",
"nodeType": "YulLiteral",
"src": "12628:1:6",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "12616:3:6",
"nodeType": "YulIdentifier",
"src": "12616:3:6"
},
"nativeSrc": "12616:14:6",
"nodeType": "YulFunctionCall",
"src": "12616:14:6"
},
{
"kind": "number",
"nativeSrc": "12632:1:6",
"nodeType": "YulLiteral",
"src": "12632:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12612:3:6",
"nodeType": "YulIdentifier",
"src": "12612:3:6"
},
"nativeSrc": "12612:22:6",
"nodeType": "YulFunctionCall",
"src": "12612:22:6"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "12599:6:6",
"nodeType": "YulIdentifier",
"src": "12599:6:6"
},
"nativeSrc": "12599:36:6",
"nodeType": "YulFunctionCall",
"src": "12599:36:6"
},
"nativeSrc": "12599:36:6",
"nodeType": "YulExpressionStatement",
"src": "12599:36:6"
}
]
},
"nativeSrc": "12027:618:6",
"nodeType": "YulCase",
"src": "12027:618:6",
"value": {
"kind": "number",
"nativeSrc": "12032:1:6",
"nodeType": "YulLiteral",
"src": "12032:1:6",
"type": "",
"value": "1"
}
},
{
"body": {
"nativeSrc": "12662:222:6",
"nodeType": "YulBlock",
"src": "12662:222:6",
"statements": [
{
"nativeSrc": "12676:14:6",
"nodeType": "YulVariableDeclaration",
"src": "12676:14:6",
"value": {
"kind": "number",
"nativeSrc": "12689:1:6",
"nodeType": "YulLiteral",
"src": "12689:1:6",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nativeSrc": "12680:5:6",
"nodeType": "YulTypedName",
"src": "12680:5:6",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "12713:67:6",
"nodeType": "YulBlock",
"src": "12713:67:6",
"statements": [
{
"nativeSrc": "12731:35:6",
"nodeType": "YulAssignment",
"src": "12731:35:6",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "12750:3:6",
"nodeType": "YulIdentifier",
"src": "12750:3:6"
},
{
"name": "srcOffset",
"nativeSrc": "12755:9:6",
"nodeType": "YulIdentifier",
"src": "12755:9:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12746:3:6",
"nodeType": "YulIdentifier",
"src": "12746:3:6"
},
"nativeSrc": "12746:19:6",
"nodeType": "YulFunctionCall",
"src": "12746:19:6"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "12740:5:6",
"nodeType": "YulIdentifier",
"src": "12740:5:6"
},
"nativeSrc": "12740:26:6",
"nodeType": "YulFunctionCall",
"src": "12740:26:6"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "12731:5:6",
"nodeType": "YulIdentifier",
"src": "12731:5:6"
}
]
}
]
},
"condition": {
"name": "newLen",
"nativeSrc": "12706:6:6",
"nodeType": "YulIdentifier",
"src": "12706:6:6"
},
"nativeSrc": "12703:77:6",
"nodeType": "YulIf",
"src": "12703:77:6"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "12800:4:6",
"nodeType": "YulIdentifier",
"src": "12800:4:6"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "12859:5:6",
"nodeType": "YulIdentifier",
"src": "12859:5:6"
},
{
"name": "newLen",
"nativeSrc": "12866:6:6",
"nodeType": "YulIdentifier",
"src": "12866:6:6"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "12806:52:6",
"nodeType": "YulIdentifier",
"src": "12806:52:6"
},
"nativeSrc": "12806:67:6",
"nodeType": "YulFunctionCall",
"src": "12806:67:6"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "12793:6:6",
"nodeType": "YulIdentifier",
"src": "12793:6:6"
},
"nativeSrc": "12793:81:6",
"nodeType": "YulFunctionCall",
"src": "12793:81:6"
},
"nativeSrc": "12793:81:6",
"nodeType": "YulExpressionStatement",
"src": "12793:81:6"
}
]
},
"nativeSrc": "12654:230:6",
"nodeType": "YulCase",
"src": "12654:230:6",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "12007:6:6",
"nodeType": "YulIdentifier",
"src": "12007:6:6"
},
{
"kind": "number",
"nativeSrc": "12015:2:6",
"nodeType": "YulLiteral",
"src": "12015:2:6",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "12004:2:6",
"nodeType": "YulIdentifier",
"src": "12004:2:6"
},
"nativeSrc": "12004:14:6",
"nodeType": "YulFunctionCall",
"src": "12004:14:6"
},
"nativeSrc": "11997:887:6",
"nodeType": "YulSwitch",
"src": "11997:887:6"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nativeSrc": "11495:1395:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "11576:4:6",
"nodeType": "YulTypedName",
"src": "11576:4:6",
"type": ""
},
{
"name": "src",
"nativeSrc": "11582:3:6",
"nodeType": "YulTypedName",
"src": "11582:3:6",
"type": ""
}
],
"src": "11495:1395:6"
},
{
"body": {
"nativeSrc": "12960:84:6",
"nodeType": "YulBlock",
"src": "12960:84:6",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "12984:3:6",
"nodeType": "YulIdentifier",
"src": "12984:3:6"
},
{
"name": "src",
"nativeSrc": "12989:3:6",
"nodeType": "YulIdentifier",
"src": "12989:3:6"
},
{
"name": "length",
"nativeSrc": "12994:6:6",
"nodeType": "YulIdentifier",
"src": "12994:6:6"
}
],
"functionName": {
"name": "calldatacopy",
"nativeSrc": "12971:12:6",
"nodeType": "YulIdentifier",
"src": "12971:12:6"
},
"nativeSrc": "12971:30:6",
"nodeType": "YulFunctionCall",
"src": "12971:30:6"
},
"nativeSrc": "12971:30:6",
"nodeType": "YulExpressionStatement",
"src": "12971:30:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "13021:3:6",
"nodeType": "YulIdentifier",
"src": "13021:3:6"
},
{
"name": "length",
"nativeSrc": "13026:6:6",
"nodeType": "YulIdentifier",
"src": "13026:6:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13017:3:6",
"nodeType": "YulIdentifier",
"src": "13017:3:6"
},
"nativeSrc": "13017:16:6",
"nodeType": "YulFunctionCall",
"src": "13017:16:6"
},
{
"kind": "number",
"nativeSrc": "13035:1:6",
"nodeType": "YulLiteral",
"src": "13035:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13010:6:6",
"nodeType": "YulIdentifier",
"src": "13010:6:6"
},
"nativeSrc": "13010:27:6",
"nodeType": "YulFunctionCall",
"src": "13010:27:6"
},
"nativeSrc": "13010:27:6",
"nodeType": "YulExpressionStatement",
"src": "13010:27:6"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "12896:148:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "12942:3:6",
"nodeType": "YulTypedName",
"src": "12942:3:6",
"type": ""
},
{
"name": "dst",
"nativeSrc": "12947:3:6",
"nodeType": "YulTypedName",
"src": "12947:3:6",
"type": ""
},
{
"name": "length",
"nativeSrc": "12952:6:6",
"nodeType": "YulTypedName",
"src": "12952:6:6",
"type": ""
}
],
"src": "12896:148:6"
},
{
"body": {
"nativeSrc": "13176:215:6",
"nodeType": "YulBlock",
"src": "13176:215:6",
"statements": [
{
"nativeSrc": "13186:78:6",
"nodeType": "YulAssignment",
"src": "13186:78:6",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13252:3:6",
"nodeType": "YulIdentifier",
"src": "13252:3:6"
},
{
"name": "length",
"nativeSrc": "13257:6:6",
"nodeType": "YulIdentifier",
"src": "13257:6:6"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "13193:58:6",
"nodeType": "YulIdentifier",
"src": "13193:58:6"
},
"nativeSrc": "13193:71:6",
"nodeType": "YulFunctionCall",
"src": "13193:71:6"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "13186:3:6",
"nodeType": "YulIdentifier",
"src": "13186:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "start",
"nativeSrc": "13311:5:6",
"nodeType": "YulIdentifier",
"src": "13311:5:6"
},
{
"name": "pos",
"nativeSrc": "13318:3:6",
"nodeType": "YulIdentifier",
"src": "13318:3:6"
},
{
"name": "length",
"nativeSrc": "13323:6:6",
"nodeType": "YulIdentifier",
"src": "13323:6:6"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "13274:36:6",
"nodeType": "YulIdentifier",
"src": "13274:36:6"
},
"nativeSrc": "13274:56:6",
"nodeType": "YulFunctionCall",
"src": "13274:56:6"
},
"nativeSrc": "13274:56:6",
"nodeType": "YulExpressionStatement",
"src": "13274:56:6"
},
{
"nativeSrc": "13339:46:6",
"nodeType": "YulAssignment",
"src": "13339:46:6",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13350:3:6",
"nodeType": "YulIdentifier",
"src": "13350:3:6"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "13377:6:6",
"nodeType": "YulIdentifier",
"src": "13377:6:6"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "13355:21:6",
"nodeType": "YulIdentifier",
"src": "13355:21:6"
},
"nativeSrc": "13355:29:6",
"nodeType": "YulFunctionCall",
"src": "13355:29:6"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13346:3:6",
"nodeType": "YulIdentifier",
"src": "13346:3:6"
},
"nativeSrc": "13346:39:6",
"nodeType": "YulFunctionCall",
"src": "13346:39:6"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "13339:3:6",
"nodeType": "YulIdentifier",
"src": "13339:3:6"
}
]
}
]
},
"name": "abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "13074:317:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nativeSrc": "13149:5:6",
"nodeType": "YulTypedName",
"src": "13149:5:6",
"type": ""
},
{
"name": "length",
"nativeSrc": "13156:6:6",
"nodeType": "YulTypedName",
"src": "13156:6:6",
"type": ""
},
{
"name": "pos",
"nativeSrc": "13164:3:6",
"nodeType": "YulTypedName",
"src": "13164:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "13172:3:6",
"nodeType": "YulTypedName",
"src": "13172:3:6",
"type": ""
}
],
"src": "13074:317:6"
},
{
"body": {
"nativeSrc": "13553:287:6",
"nodeType": "YulBlock",
"src": "13553:287:6",
"statements": [
{
"nativeSrc": "13563:26:6",
"nodeType": "YulAssignment",
"src": "13563:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "13575:9:6",
"nodeType": "YulIdentifier",
"src": "13575:9:6"
},
{
"kind": "number",
"nativeSrc": "13586:2:6",
"nodeType": "YulLiteral",
"src": "13586:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13571:3:6",
"nodeType": "YulIdentifier",
"src": "13571:3:6"
},
"nativeSrc": "13571:18:6",
"nodeType": "YulFunctionCall",
"src": "13571:18:6"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "13563:4:6",
"nodeType": "YulIdentifier",
"src": "13563:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "13643:6:6",
"nodeType": "YulIdentifier",
"src": "13643:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "13656:9:6",
"nodeType": "YulIdentifier",
"src": "13656:9:6"
},
{
"kind": "number",
"nativeSrc": "13667:1:6",
"nodeType": "YulLiteral",
"src": "13667:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13652:3:6",
"nodeType": "YulIdentifier",
"src": "13652:3:6"
},
"nativeSrc": "13652:17:6",
"nodeType": "YulFunctionCall",
"src": "13652:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "13599:43:6",
"nodeType": "YulIdentifier",
"src": "13599:43:6"
},
"nativeSrc": "13599:71:6",
"nodeType": "YulFunctionCall",
"src": "13599:71:6"
},
"nativeSrc": "13599:71:6",
"nodeType": "YulExpressionStatement",
"src": "13599:71:6"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "13691:9:6",
"nodeType": "YulIdentifier",
"src": "13691:9:6"
},
{
"kind": "number",
"nativeSrc": "13702:2:6",
"nodeType": "YulLiteral",
"src": "13702:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13687:3:6",
"nodeType": "YulIdentifier",
"src": "13687:3:6"
},
"nativeSrc": "13687:18:6",
"nodeType": "YulFunctionCall",
"src": "13687:18:6"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "13711:4:6",
"nodeType": "YulIdentifier",
"src": "13711:4:6"
},
{
"name": "headStart",
"nativeSrc": "13717:9:6",
"nodeType": "YulIdentifier",
"src": "13717:9:6"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "13707:3:6",
"nodeType": "YulIdentifier",
"src": "13707:3:6"
},
"nativeSrc": "13707:20:6",
"nodeType": "YulFunctionCall",
"src": "13707:20:6"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13680:6:6",
"nodeType": "YulIdentifier",
"src": "13680:6:6"
},
"nativeSrc": "13680:48:6",
"nodeType": "YulFunctionCall",
"src": "13680:48:6"
},
"nativeSrc": "13680:48:6",
"nodeType": "YulExpressionStatement",
"src": "13680:48:6"
},
{
"nativeSrc": "13737:96:6",
"nodeType": "YulAssignment",
"src": "13737:96:6",
"value": {
"arguments": [
{
"name": "value1",
"nativeSrc": "13811:6:6",
"nodeType": "YulIdentifier",
"src": "13811:6:6"
},
{
"name": "value2",
"nativeSrc": "13819:6:6",
"nodeType": "YulIdentifier",
"src": "13819:6:6"
},
{
"name": "tail",
"nativeSrc": "13828:4:6",
"nodeType": "YulIdentifier",
"src": "13828:4:6"
}
],
"functionName": {
"name": "abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "13745:65:6",
"nodeType": "YulIdentifier",
"src": "13745:65:6"
},
"nativeSrc": "13745:88:6",
"nodeType": "YulFunctionCall",
"src": "13745:88:6"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "13737:4:6",
"nodeType": "YulIdentifier",
"src": "13737:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_uint256_t_string_calldata_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "13397:443:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "13509:9:6",
"nodeType": "YulTypedName",
"src": "13509:9:6",
"type": ""
},
{
"name": "value2",
"nativeSrc": "13521:6:6",
"nodeType": "YulTypedName",
"src": "13521:6:6",
"type": ""
},
{
"name": "value1",
"nativeSrc": "13529:6:6",
"nodeType": "YulTypedName",
"src": "13529:6:6",
"type": ""
},
{
"name": "value0",
"nativeSrc": "13537:6:6",
"nodeType": "YulTypedName",
"src": "13537:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "13548:4:6",
"nodeType": "YulTypedName",
"src": "13548:4:6",
"type": ""
}
],
"src": "13397:443:6"
},
{
"body": {
"nativeSrc": "13874:152:6",
"nodeType": "YulBlock",
"src": "13874:152:6",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13891:1:6",
"nodeType": "YulLiteral",
"src": "13891:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "13894:77:6",
"nodeType": "YulLiteral",
"src": "13894:77:6",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13884:6:6",
"nodeType": "YulIdentifier",
"src": "13884:6:6"
},
"nativeSrc": "13884:88:6",
"nodeType": "YulFunctionCall",
"src": "13884:88:6"
},
"nativeSrc": "13884:88:6",
"nodeType": "YulExpressionStatement",
"src": "13884:88:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13988:1:6",
"nodeType": "YulLiteral",
"src": "13988:1:6",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "13991:4:6",
"nodeType": "YulLiteral",
"src": "13991:4:6",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13981:6:6",
"nodeType": "YulIdentifier",
"src": "13981:6:6"
},
"nativeSrc": "13981:15:6",
"nodeType": "YulFunctionCall",
"src": "13981:15:6"
},
"nativeSrc": "13981:15:6",
"nodeType": "YulExpressionStatement",
"src": "13981:15:6"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "14012:1:6",
"nodeType": "YulLiteral",
"src": "14012:1:6",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "14015:4:6",
"nodeType": "YulLiteral",
"src": "14015:4:6",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "14005:6:6",
"nodeType": "YulIdentifier",
"src": "14005:6:6"
},
"nativeSrc": "14005:15:6",
"nodeType": "YulFunctionCall",
"src": "14005:15:6"
},
"nativeSrc": "14005:15:6",
"nodeType": "YulExpressionStatement",
"src": "14005:15:6"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "13846:180:6",
"nodeType": "YulFunctionDefinition",
"src": "13846:180:6"
},
{
"body": {
"nativeSrc": "14075:190:6",
"nodeType": "YulBlock",
"src": "14075:190:6",
"statements": [
{
"nativeSrc": "14085:33:6",
"nodeType": "YulAssignment",
"src": "14085:33:6",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "14112:5:6",
"nodeType": "YulIdentifier",
"src": "14112:5:6"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "14094:17:6",
"nodeType": "YulIdentifier",
"src": "14094:17:6"
},
"nativeSrc": "14094:24:6",
"nodeType": "YulFunctionCall",
"src": "14094:24:6"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "14085:5:6",
"nodeType": "YulIdentifier",
"src": "14085:5:6"
}
]
},
{
"body": {
"nativeSrc": "14208:22:6",
"nodeType": "YulBlock",
"src": "14208:22:6",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "14210:16:6",
"nodeType": "YulIdentifier",
"src": "14210:16:6"
},
"nativeSrc": "14210:18:6",
"nodeType": "YulFunctionCall",
"src": "14210:18:6"
},
"nativeSrc": "14210:18:6",
"nodeType": "YulExpressionStatement",
"src": "14210:18:6"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nativeSrc": "14133:5:6",
"nodeType": "YulIdentifier",
"src": "14133:5:6"
},
{
"kind": "number",
"nativeSrc": "14140:66:6",
"nodeType": "YulLiteral",
"src": "14140:66:6",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "14130:2:6",
"nodeType": "YulIdentifier",
"src": "14130:2:6"
},
"nativeSrc": "14130:77:6",
"nodeType": "YulFunctionCall",
"src": "14130:77:6"
},
"nativeSrc": "14127:103:6",
"nodeType": "YulIf",
"src": "14127:103:6"
},
{
"nativeSrc": "14239:20:6",
"nodeType": "YulAssignment",
"src": "14239:20:6",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "14250:5:6",
"nodeType": "YulIdentifier",
"src": "14250:5:6"
},
{
"kind": "number",
"nativeSrc": "14257:1:6",
"nodeType": "YulLiteral",
"src": "14257:1:6",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14246:3:6",
"nodeType": "YulIdentifier",
"src": "14246:3:6"
},
"nativeSrc": "14246:13:6",
"nodeType": "YulFunctionCall",
"src": "14246:13:6"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "14239:3:6",
"nodeType": "YulIdentifier",
"src": "14239:3:6"
}
]
}
]
},
"name": "increment_t_uint256",
"nativeSrc": "14032:233:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "14061:5:6",
"nodeType": "YulTypedName",
"src": "14061:5:6",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "14071:3:6",
"nodeType": "YulTypedName",
"src": "14071:3:6",
"type": ""
}
],
"src": "14032:233:6"
},
{
"body": {
"nativeSrc": "14377:55:6",
"nodeType": "YulBlock",
"src": "14377:55:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "14399:6:6",
"nodeType": "YulIdentifier",
"src": "14399:6:6"
},
{
"kind": "number",
"nativeSrc": "14407:1:6",
"nodeType": "YulLiteral",
"src": "14407:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14395:3:6",
"nodeType": "YulIdentifier",
"src": "14395:3:6"
},
"nativeSrc": "14395:14:6",
"nodeType": "YulFunctionCall",
"src": "14395:14:6"
},
{
"hexValue": "42696420746f6f206c6f77",
"kind": "string",
"nativeSrc": "14411:13:6",
"nodeType": "YulLiteral",
"src": "14411:13:6",
"type": "",
"value": "Bid too low"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "14388:6:6",
"nodeType": "YulIdentifier",
"src": "14388:6:6"
},
"nativeSrc": "14388:37:6",
"nodeType": "YulFunctionCall",
"src": "14388:37:6"
},
"nativeSrc": "14388:37:6",
"nodeType": "YulExpressionStatement",
"src": "14388:37:6"
}
]
},
"name": "store_literal_in_memory_13e75ff1b0a6ca9bca87c24c1936118dd10a3ec174f359ad2a8c3d901173470e",
"nativeSrc": "14271:161:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "14369:6:6",
"nodeType": "YulTypedName",
"src": "14369:6:6",
"type": ""
}
],
"src": "14271:161:6"
},
{
"body": {
"nativeSrc": "14584:220:6",
"nodeType": "YulBlock",
"src": "14584:220:6",
"statements": [
{
"nativeSrc": "14594:74:6",
"nodeType": "YulAssignment",
"src": "14594:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "14660:3:6",
"nodeType": "YulIdentifier",
"src": "14660:3:6"
},
{
"kind": "number",
"nativeSrc": "14665:2:6",
"nodeType": "YulLiteral",
"src": "14665:2:6",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "14601:58:6",
"nodeType": "YulIdentifier",
"src": "14601:58:6"
},
"nativeSrc": "14601:67:6",
"nodeType": "YulFunctionCall",
"src": "14601:67:6"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "14594:3:6",
"nodeType": "YulIdentifier",
"src": "14594:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "14766:3:6",
"nodeType": "YulIdentifier",
"src": "14766:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_13e75ff1b0a6ca9bca87c24c1936118dd10a3ec174f359ad2a8c3d901173470e",
"nativeSrc": "14677:88:6",
"nodeType": "YulIdentifier",
"src": "14677:88:6"
},
"nativeSrc": "14677:93:6",
"nodeType": "YulFunctionCall",
"src": "14677:93:6"
},
"nativeSrc": "14677:93:6",
"nodeType": "YulExpressionStatement",
"src": "14677:93:6"
},
{
"nativeSrc": "14779:19:6",
"nodeType": "YulAssignment",
"src": "14779:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "14790:3:6",
"nodeType": "YulIdentifier",
"src": "14790:3:6"
},
{
"kind": "number",
"nativeSrc": "14795:2:6",
"nodeType": "YulLiteral",
"src": "14795:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14786:3:6",
"nodeType": "YulIdentifier",
"src": "14786:3:6"
},
"nativeSrc": "14786:12:6",
"nodeType": "YulFunctionCall",
"src": "14786:12:6"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "14779:3:6",
"nodeType": "YulIdentifier",
"src": "14779:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_13e75ff1b0a6ca9bca87c24c1936118dd10a3ec174f359ad2a8c3d901173470e_to_t_string_memory_ptr_fromStack",
"nativeSrc": "14438:366:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "14572:3:6",
"nodeType": "YulTypedName",
"src": "14572:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "14580:3:6",
"nodeType": "YulTypedName",
"src": "14580:3:6",
"type": ""
}
],
"src": "14438:366:6"
},
{
"body": {
"nativeSrc": "14981:248:6",
"nodeType": "YulBlock",
"src": "14981:248:6",
"statements": [
{
"nativeSrc": "14991:26:6",
"nodeType": "YulAssignment",
"src": "14991:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "15003:9:6",
"nodeType": "YulIdentifier",
"src": "15003:9:6"
},
{
"kind": "number",
"nativeSrc": "15014:2:6",
"nodeType": "YulLiteral",
"src": "15014:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14999:3:6",
"nodeType": "YulIdentifier",
"src": "14999:3:6"
},
"nativeSrc": "14999:18:6",
"nodeType": "YulFunctionCall",
"src": "14999:18:6"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "14991:4:6",
"nodeType": "YulIdentifier",
"src": "14991:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "15038:9:6",
"nodeType": "YulIdentifier",
"src": "15038:9:6"
},
{
"kind": "number",
"nativeSrc": "15049:1:6",
"nodeType": "YulLiteral",
"src": "15049:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15034:3:6",
"nodeType": "YulIdentifier",
"src": "15034:3:6"
},
"nativeSrc": "15034:17:6",
"nodeType": "YulFunctionCall",
"src": "15034:17:6"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "15057:4:6",
"nodeType": "YulIdentifier",
"src": "15057:4:6"
},
{
"name": "headStart",
"nativeSrc": "15063:9:6",
"nodeType": "YulIdentifier",
"src": "15063:9:6"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "15053:3:6",
"nodeType": "YulIdentifier",
"src": "15053:3:6"
},
"nativeSrc": "15053:20:6",
"nodeType": "YulFunctionCall",
"src": "15053:20:6"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "15027:6:6",
"nodeType": "YulIdentifier",
"src": "15027:6:6"
},
"nativeSrc": "15027:47:6",
"nodeType": "YulFunctionCall",
"src": "15027:47:6"
},
"nativeSrc": "15027:47:6",
"nodeType": "YulExpressionStatement",
"src": "15027:47:6"
},
{
"nativeSrc": "15083:139:6",
"nodeType": "YulAssignment",
"src": "15083:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "15217:4:6",
"nodeType": "YulIdentifier",
"src": "15217:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_13e75ff1b0a6ca9bca87c24c1936118dd10a3ec174f359ad2a8c3d901173470e_to_t_string_memory_ptr_fromStack",
"nativeSrc": "15091:124:6",
"nodeType": "YulIdentifier",
"src": "15091:124:6"
},
"nativeSrc": "15091:131:6",
"nodeType": "YulFunctionCall",
"src": "15091:131:6"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "15083:4:6",
"nodeType": "YulIdentifier",
"src": "15083:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_13e75ff1b0a6ca9bca87c24c1936118dd10a3ec174f359ad2a8c3d901173470e__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "14810:419:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "14961:9:6",
"nodeType": "YulTypedName",
"src": "14961:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "14976:4:6",
"nodeType": "YulTypedName",
"src": "14976:4:6",
"type": ""
}
],
"src": "14810:419:6"
},
{
"body": {
"nativeSrc": "15341:69:6",
"nodeType": "YulBlock",
"src": "15341:69:6",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "15363:6:6",
"nodeType": "YulIdentifier",
"src": "15363:6:6"
},
{
"kind": "number",
"nativeSrc": "15371:1:6",
"nodeType": "YulLiteral",
"src": "15371:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15359:3:6",
"nodeType": "YulIdentifier",
"src": "15359:3:6"
},
"nativeSrc": "15359:14:6",
"nodeType": "YulFunctionCall",
"src": "15359:14:6"
},
{
"hexValue": "41756374696f6e20616c72656164792066696e616c697a6564",
"kind": "string",
"nativeSrc": "15375:27:6",
"nodeType": "YulLiteral",
"src": "15375:27:6",
"type": "",
"value": "Auction already finalized"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "15352:6:6",
"nodeType": "YulIdentifier",
"src": "15352:6:6"
},
"nativeSrc": "15352:51:6",
"nodeType": "YulFunctionCall",
"src": "15352:51:6"
},
"nativeSrc": "15352:51:6",
"nodeType": "YulExpressionStatement",
"src": "15352:51:6"
}
]
},
"name": "store_literal_in_memory_18d31d1b8c03c839b7b8aa017d8aedb244f75bc4aeba4a5312cdf09289f17f05",
"nativeSrc": "15235:175:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "15333:6:6",
"nodeType": "YulTypedName",
"src": "15333:6:6",
"type": ""
}
],
"src": "15235:175:6"
},
{
"body": {
"nativeSrc": "15562:220:6",
"nodeType": "YulBlock",
"src": "15562:220:6",
"statements": [
{
"nativeSrc": "15572:74:6",
"nodeType": "YulAssignment",
"src": "15572:74:6",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "15638:3:6",
"nodeType": "YulIdentifier",
"src": "15638:3:6"
},
{
"kind": "number",
"nativeSrc": "15643:2:6",
"nodeType": "YulLiteral",
"src": "15643:2:6",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "15579:58:6",
"nodeType": "YulIdentifier",
"src": "15579:58:6"
},
"nativeSrc": "15579:67:6",
"nodeType": "YulFunctionCall",
"src": "15579:67:6"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "15572:3:6",
"nodeType": "YulIdentifier",
"src": "15572:3:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "15744:3:6",
"nodeType": "YulIdentifier",
"src": "15744:3:6"
}
],
"functionName": {
"name": "store_literal_in_memory_18d31d1b8c03c839b7b8aa017d8aedb244f75bc4aeba4a5312cdf09289f17f05",
"nativeSrc": "15655:88:6",
"nodeType": "YulIdentifier",
"src": "15655:88:6"
},
"nativeSrc": "15655:93:6",
"nodeType": "YulFunctionCall",
"src": "15655:93:6"
},
"nativeSrc": "15655:93:6",
"nodeType": "YulExpressionStatement",
"src": "15655:93:6"
},
{
"nativeSrc": "15757:19:6",
"nodeType": "YulAssignment",
"src": "15757:19:6",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "15768:3:6",
"nodeType": "YulIdentifier",
"src": "15768:3:6"
},
{
"kind": "number",
"nativeSrc": "15773:2:6",
"nodeType": "YulLiteral",
"src": "15773:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15764:3:6",
"nodeType": "YulIdentifier",
"src": "15764:3:6"
},
"nativeSrc": "15764:12:6",
"nodeType": "YulFunctionCall",
"src": "15764:12:6"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "15757:3:6",
"nodeType": "YulIdentifier",
"src": "15757:3:6"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_18d31d1b8c03c839b7b8aa017d8aedb244f75bc4aeba4a5312cdf09289f17f05_to_t_string_memory_ptr_fromStack",
"nativeSrc": "15416:366:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "15550:3:6",
"nodeType": "YulTypedName",
"src": "15550:3:6",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "15558:3:6",
"nodeType": "YulTypedName",
"src": "15558:3:6",
"type": ""
}
],
"src": "15416:366:6"
},
{
"body": {
"nativeSrc": "15959:248:6",
"nodeType": "YulBlock",
"src": "15959:248:6",
"statements": [
{
"nativeSrc": "15969:26:6",
"nodeType": "YulAssignment",
"src": "15969:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "15981:9:6",
"nodeType": "YulIdentifier",
"src": "15981:9:6"
},
{
"kind": "number",
"nativeSrc": "15992:2:6",
"nodeType": "YulLiteral",
"src": "15992:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15977:3:6",
"nodeType": "YulIdentifier",
"src": "15977:3:6"
},
"nativeSrc": "15977:18:6",
"nodeType": "YulFunctionCall",
"src": "15977:18:6"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "15969:4:6",
"nodeType": "YulIdentifier",
"src": "15969:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "16016:9:6",
"nodeType": "YulIdentifier",
"src": "16016:9:6"
},
{
"kind": "number",
"nativeSrc": "16027:1:6",
"nodeType": "YulLiteral",
"src": "16027:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16012:3:6",
"nodeType": "YulIdentifier",
"src": "16012:3:6"
},
"nativeSrc": "16012:17:6",
"nodeType": "YulFunctionCall",
"src": "16012:17:6"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "16035:4:6",
"nodeType": "YulIdentifier",
"src": "16035:4:6"
},
{
"name": "headStart",
"nativeSrc": "16041:9:6",
"nodeType": "YulIdentifier",
"src": "16041:9:6"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "16031:3:6",
"nodeType": "YulIdentifier",
"src": "16031:3:6"
},
"nativeSrc": "16031:20:6",
"nodeType": "YulFunctionCall",
"src": "16031:20:6"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "16005:6:6",
"nodeType": "YulIdentifier",
"src": "16005:6:6"
},
"nativeSrc": "16005:47:6",
"nodeType": "YulFunctionCall",
"src": "16005:47:6"
},
"nativeSrc": "16005:47:6",
"nodeType": "YulExpressionStatement",
"src": "16005:47:6"
},
{
"nativeSrc": "16061:139:6",
"nodeType": "YulAssignment",
"src": "16061:139:6",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "16195:4:6",
"nodeType": "YulIdentifier",
"src": "16195:4:6"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_18d31d1b8c03c839b7b8aa017d8aedb244f75bc4aeba4a5312cdf09289f17f05_to_t_string_memory_ptr_fromStack",
"nativeSrc": "16069:124:6",
"nodeType": "YulIdentifier",
"src": "16069:124:6"
},
"nativeSrc": "16069:131:6",
"nodeType": "YulFunctionCall",
"src": "16069:131:6"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "16061:4:6",
"nodeType": "YulIdentifier",
"src": "16061:4:6"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_18d31d1b8c03c839b7b8aa017d8aedb244f75bc4aeba4a5312cdf09289f17f05__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "15788:419:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "15939:9:6",
"nodeType": "YulTypedName",
"src": "15939:9:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "15954:4:6",
"nodeType": "YulTypedName",
"src": "15954:4:6",
"type": ""
}
],
"src": "15788:419:6"
},
{
"body": {
"nativeSrc": "16367:288:6",
"nodeType": "YulBlock",
"src": "16367:288:6",
"statements": [
{
"nativeSrc": "16377:26:6",
"nodeType": "YulAssignment",
"src": "16377:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "16389:9:6",
"nodeType": "YulIdentifier",
"src": "16389:9:6"
},
{
"kind": "number",
"nativeSrc": "16400:2:6",
"nodeType": "YulLiteral",
"src": "16400:2:6",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16385:3:6",
"nodeType": "YulIdentifier",
"src": "16385:3:6"
},
"nativeSrc": "16385:18:6",
"nodeType": "YulFunctionCall",
"src": "16385:18:6"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "16377:4:6",
"nodeType": "YulIdentifier",
"src": "16377:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "16457:6:6",
"nodeType": "YulIdentifier",
"src": "16457:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "16470:9:6",
"nodeType": "YulIdentifier",
"src": "16470:9:6"
},
{
"kind": "number",
"nativeSrc": "16481:1:6",
"nodeType": "YulLiteral",
"src": "16481:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16466:3:6",
"nodeType": "YulIdentifier",
"src": "16466:3:6"
},
"nativeSrc": "16466:17:6",
"nodeType": "YulFunctionCall",
"src": "16466:17:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "16413:43:6",
"nodeType": "YulIdentifier",
"src": "16413:43:6"
},
"nativeSrc": "16413:71:6",
"nodeType": "YulFunctionCall",
"src": "16413:71:6"
},
"nativeSrc": "16413:71:6",
"nodeType": "YulExpressionStatement",
"src": "16413:71:6"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "16538:6:6",
"nodeType": "YulIdentifier",
"src": "16538:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "16551:9:6",
"nodeType": "YulIdentifier",
"src": "16551:9:6"
},
{
"kind": "number",
"nativeSrc": "16562:2:6",
"nodeType": "YulLiteral",
"src": "16562:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16547:3:6",
"nodeType": "YulIdentifier",
"src": "16547:3:6"
},
"nativeSrc": "16547:18:6",
"nodeType": "YulFunctionCall",
"src": "16547:18:6"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "16494:43:6",
"nodeType": "YulIdentifier",
"src": "16494:43:6"
},
"nativeSrc": "16494:72:6",
"nodeType": "YulFunctionCall",
"src": "16494:72:6"
},
"nativeSrc": "16494:72:6",
"nodeType": "YulExpressionStatement",
"src": "16494:72:6"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nativeSrc": "16620:6:6",
"nodeType": "YulIdentifier",
"src": "16620:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "16633:9:6",
"nodeType": "YulIdentifier",
"src": "16633:9:6"
},
{
"kind": "number",
"nativeSrc": "16644:2:6",
"nodeType": "YulLiteral",
"src": "16644:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16629:3:6",
"nodeType": "YulIdentifier",
"src": "16629:3:6"
},
"nativeSrc": "16629:18:6",
"nodeType": "YulFunctionCall",
"src": "16629:18:6"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "16576:43:6",
"nodeType": "YulIdentifier",
"src": "16576:43:6"
},
"nativeSrc": "16576:72:6",
"nodeType": "YulFunctionCall",
"src": "16576:72:6"
},
"nativeSrc": "16576:72:6",
"nodeType": "YulExpressionStatement",
"src": "16576:72:6"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_address_t_uint256__to_t_uint256_t_address_t_uint256__fromStack_reversed",
"nativeSrc": "16213:442:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "16323:9:6",
"nodeType": "YulTypedName",
"src": "16323:9:6",
"type": ""
},
{
"name": "value2",
"nativeSrc": "16335:6:6",
"nodeType": "YulTypedName",
"src": "16335:6:6",
"type": ""
},
{
"name": "value1",
"nativeSrc": "16343:6:6",
"nodeType": "YulTypedName",
"src": "16343:6:6",
"type": ""
},
{
"name": "value0",
"nativeSrc": "16351:6:6",
"nodeType": "YulTypedName",
"src": "16351:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "16362:4:6",
"nodeType": "YulTypedName",
"src": "16362:4:6",
"type": ""
}
],
"src": "16213:442:6"
},
{
"body": {
"nativeSrc": "16787:206:6",
"nodeType": "YulBlock",
"src": "16787:206:6",
"statements": [
{
"nativeSrc": "16797:26:6",
"nodeType": "YulAssignment",
"src": "16797:26:6",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "16809:9:6",
"nodeType": "YulIdentifier",
"src": "16809:9:6"
},
{
"kind": "number",
"nativeSrc": "16820:2:6",
"nodeType": "YulLiteral",
"src": "16820:2:6",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16805:3:6",
"nodeType": "YulIdentifier",
"src": "16805:3:6"
},
"nativeSrc": "16805:18:6",
"nodeType": "YulFunctionCall",
"src": "16805:18:6"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "16797:4:6",
"nodeType": "YulIdentifier",
"src": "16797:4:6"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "16877:6:6",
"nodeType": "YulIdentifier",
"src": "16877:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "16890:9:6",
"nodeType": "YulIdentifier",
"src": "16890:9:6"
},
{
"kind": "number",
"nativeSrc": "16901:1:6",
"nodeType": "YulLiteral",
"src": "16901:1:6",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16886:3:6",
"nodeType": "YulIdentifier",
"src": "16886:3:6"
},
"nativeSrc": "16886:17:6",
"nodeType": "YulFunctionCall",
"src": "16886:17:6"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "16833:43:6",
"nodeType": "YulIdentifier",
"src": "16833:43:6"
},
"nativeSrc": "16833:71:6",
"nodeType": "YulFunctionCall",
"src": "16833:71:6"
},
"nativeSrc": "16833:71:6",
"nodeType": "YulExpressionStatement",
"src": "16833:71:6"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "16958:6:6",
"nodeType": "YulIdentifier",
"src": "16958:6:6"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "16971:9:6",
"nodeType": "YulIdentifier",
"src": "16971:9:6"
},
{
"kind": "number",
"nativeSrc": "16982:2:6",
"nodeType": "YulLiteral",
"src": "16982:2:6",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16967:3:6",
"nodeType": "YulIdentifier",
"src": "16967:3:6"
},
"nativeSrc": "16967:18:6",
"nodeType": "YulFunctionCall",
"src": "16967:18:6"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "16914:43:6",
"nodeType": "YulIdentifier",
"src": "16914:43:6"
},
"nativeSrc": "16914:72:6",
"nodeType": "YulFunctionCall",
"src": "16914:72:6"
},
"nativeSrc": "16914:72:6",
"nodeType": "YulExpressionStatement",
"src": "16914:72:6"
}
]
},
"name": "abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed",
"nativeSrc": "16661:332:6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "16751:9:6",
"nodeType": "YulTypedName",
"src": "16751:9:6",
"type": ""
},
{
"name": "value1",
"nativeSrc": "16763:6:6",
"nodeType": "YulTypedName",
"src": "16763:6:6",
"type": ""
},
{
"name": "value0",
"nativeSrc": "16771:6:6",
"nodeType": "YulTypedName",
"src": "16771:6:6",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "16782:4:6",
"nodeType": "YulTypedName",
"src": "16782:4:6",
"type": ""
}
],
"src": "16661:332:6"
}
]
},
"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_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4(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_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function abi_decode_tuple_t_bytes32(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_bytes32(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_bytes32t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\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_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\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\n mcopy(dst, src, length)\n mstore(add(dst, length), 0)\n\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_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_uint256_t_string_memory_ptr_t_address_t_uint256_t_bool__to_t_uint256_t_string_memory_ptr_t_address_t_uint256_t_bool__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n abi_encode_t_address_to_t_address_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_bool_to_t_bool_fromStack(value4, add(headStart, 128))\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() {\n revert(0, 0)\n }\n\n function revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() {\n revert(0, 0)\n }\n\n // string\n function abi_decode_t_string_calldata_ptr(offset, end) -> arrayPos, length {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n length := calldataload(offset)\n if gt(length, 0xffffffffffffffff) { revert_error_15abf5612cd996bc235ba1e55a4a30ac60e6bb601ff7ba4ad3f179b6be8d0490() }\n arrayPos := add(offset, 0x20)\n if gt(add(arrayPos, mul(length, 0x01)), end) { revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() }\n }\n\n function abi_decode_tuple_t_string_calldata_ptr(headStart, dataEnd) -> value0, value1 {\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, value1 := abi_decode_t_string_calldata_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function panic_error_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 panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n\n }\n\n // string -> string\n function abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack(start, length, pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n\n copy_calldata_to_memory_with_cleanup(start, pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_uint256_t_string_calldata_ptr__to_t_uint256_t_string_memory_ptr__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_calldata_ptr_to_t_string_memory_ptr_fromStack(value1, value2, tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function store_literal_in_memory_13e75ff1b0a6ca9bca87c24c1936118dd10a3ec174f359ad2a8c3d901173470e(memPtr) {\n\n mstore(add(memPtr, 0), \"Bid too low\")\n\n }\n\n function abi_encode_t_stringliteral_13e75ff1b0a6ca9bca87c24c1936118dd10a3ec174f359ad2a8c3d901173470e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 11)\n store_literal_in_memory_13e75ff1b0a6ca9bca87c24c1936118dd10a3ec174f359ad2a8c3d901173470e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_13e75ff1b0a6ca9bca87c24c1936118dd10a3ec174f359ad2a8c3d901173470e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_13e75ff1b0a6ca9bca87c24c1936118dd10a3ec174f359ad2a8c3d901173470e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_18d31d1b8c03c839b7b8aa017d8aedb244f75bc4aeba4a5312cdf09289f17f05(memPtr) {\n\n mstore(add(memPtr, 0), \"Auction already finalized\")\n\n }\n\n function abi_encode_t_stringliteral_18d31d1b8c03c839b7b8aa017d8aedb244f75bc4aeba4a5312cdf09289f17f05_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_18d31d1b8c03c839b7b8aa017d8aedb244f75bc4aeba4a5312cdf09289f17f05(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_18d31d1b8c03c839b7b8aa017d8aedb244f75bc4aeba4a5312cdf09289f17f05__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_18d31d1b8c03c839b7b8aa017d8aedb244f75bc4aeba4a5312cdf09289f17f05_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_uint256_t_address_t_uint256__to_t_uint256_t_address_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function abi_encode_tuple_t_address_t_bytes32__to_t_address_t_bytes32__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value1, add(headStart, 32))\n\n }\n\n}\n",
"id": 6,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100c1575f3560e01c80638e27cb251161007e578063a217fddf11610058578063a217fddf14610277578063d547741f146102a1578063e8083863146102c9578063fc528482146102f1576100c1565b80638e27cb25146101f757806391d148541461021f5780639979ef451461025b576100c1565b806301ffc9a7146100c5578063248a9ca3146101015780632f2ff15d1461013d57806336568abe14610165578063571a26a01461018d57806375b238fc146101cd575b5f80fd5b3480156100d0575f80fd5b506100eb60048036038101906100e69190610e07565b61031b565b6040516100f89190610e4c565b60405180910390f35b34801561010c575f80fd5b5061012760048036038101906101229190610e98565b610394565b6040516101349190610ed2565b60405180910390f35b348015610148575f80fd5b50610163600480360381019061015e9190610f45565b6103b0565b005b348015610170575f80fd5b5061018b60048036038101906101869190610f45565b6103d2565b005b348015610198575f80fd5b506101b360048036038101906101ae9190610fb6565b61044d565b6040516101c495949392919061106f565b60405180910390f35b3480156101d8575f80fd5b506101e1610530565b6040516101ee9190610ed2565b60405180910390f35b348015610202575f80fd5b5061021d60048036038101906102189190611128565b610554565b005b34801561022a575f80fd5b5061024560048036038101906102409190610f45565b6106fe565b6040516102529190610e4c565b60405180910390f35b61027560048036038101906102709190610fb6565b610761565b005b348015610282575f80fd5b5061028b610958565b6040516102989190610ed2565b60405180910390f35b3480156102ac575f80fd5b506102c760048036038101906102c29190610f45565b61095e565b005b3480156102d4575f80fd5b506102ef60048036038101906102ea9190610fb6565b610980565b005b3480156102fc575f80fd5b50610305610afd565b6040516103129190611173565b60405180910390f35b5f7f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038d575061038c82610b03565b5b9050919050565b5f805f8381526020019081526020015f20600101549050919050565b6103b982610394565b6103c281610b6c565b6103cc8383610b80565b50505050565b6103da610c69565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461043e576040517f6697b23200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6104488282610c70565b505050565b6002602052805f5260405f205f91509050805f015490806001018054610472906111b9565b80601f016020809104026020016040519081016040528092919081815260200182805461049e906111b9565b80156104e95780601f106104c0576101008083540402835291602001916104e9565b820191905f5260205f20905b8154815290600101906020018083116104cc57829003601f168201915b505050505090806002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806003015490806004015f9054906101000a900460ff16905085565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177561057e81610b6c565b6040518060a00160405280600154815260200184848080601f0160208091040260200160405190810160405280939291908181526020018383808284375f81840152601f19601f8201169050808301925050505050505081526020015f73ffffffffffffffffffffffffffffffffffffffff1681526020015f81526020015f151581525060025f60015481526020019081526020015f205f820151815f0155602082015181600101908161063291906113b3565b506040820151816002015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606082015181600301556080820151816004015f6101000a81548160ff0219169083151502179055509050507f84dbbe572fcd8281f88fbf55359ad5039443609c2304288d3c8816dd3bb9fc2160015484846040516106da939291906114bc565b60405180910390a160015f8154809291906106f490611519565b9190505550505050565b5f805f8481526020019081526020015f205f015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b5f60025f8381526020019081526020015f209050806003015434116107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b2906115aa565b60405180910390fd5b806004015f9054906101000a900460ff161561080c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080390611612565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16816002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108ce57806002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc826003015490811502906040515f60405180830381858888f193505050501580156108cc573d5f803e3d5ffd5b505b33816002015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503481600301819055507f558a0d5d5468d74b0db24c74eb348b42271c2ebb4c9e953ced38aaed95fa436182333460405161094c93929190611630565b60405180910390a15050565b5f801b81565b61096782610394565b61097081610b6c565b61097a8383610c70565b50505050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756109aa81610b6c565b5f60025f8481526020019081526020015f209050806004015f9054906101000a900460ff1615610a0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0690611612565b60405180910390fd5b6001816004015f6101000a81548160ff021916908315150217905550806002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc826003015490811502906040515f60405180830381858888f19350505050158015610a95573d5f803e3d5ffd5b507f4d9113a1377d665eaa1f9168a9c9080f2e488cb820b10149de3d6d2e0f2780c783826002015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168360030154604051610af093929190611630565b60405180910390a1505050565b60015481565b5f7f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610b7d81610b78610c69565b610d59565b50565b5f610b8b83836106fe565b610c5f5760015f808581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610bfc610c69565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a460019050610c63565b5f90505b92915050565b5f33905090565b5f610c7b83836106fe565b15610d4f575f805f8581526020019081526020015f205f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550610cec610c69565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16847ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a460019050610d53565b5f90505b92915050565b610d6382826106fe565b610da65780826040517fe2517d3f000000000000000000000000000000000000000000000000000000008152600401610d9d929190611665565b60405180910390fd5b5050565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b610de681610db2565b8114610df0575f80fd5b50565b5f81359050610e0181610ddd565b92915050565b5f60208284031215610e1c57610e1b610daa565b5b5f610e2984828501610df3565b91505092915050565b5f8115159050919050565b610e4681610e32565b82525050565b5f602082019050610e5f5f830184610e3d565b92915050565b5f819050919050565b610e7781610e65565b8114610e81575f80fd5b50565b5f81359050610e9281610e6e565b92915050565b5f60208284031215610ead57610eac610daa565b5b5f610eba84828501610e84565b91505092915050565b610ecc81610e65565b82525050565b5f602082019050610ee55f830184610ec3565b92915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610f1482610eeb565b9050919050565b610f2481610f0a565b8114610f2e575f80fd5b50565b5f81359050610f3f81610f1b565b92915050565b5f8060408385031215610f5b57610f5a610daa565b5b5f610f6885828601610e84565b9250506020610f7985828601610f31565b9150509250929050565b5f819050919050565b610f9581610f83565b8114610f9f575f80fd5b50565b5f81359050610fb081610f8c565b92915050565b5f60208284031215610fcb57610fca610daa565b5b5f610fd884828501610fa2565b91505092915050565b610fea81610f83565b82525050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61103282610ff0565b61103c8185610ffa565b935061104c81856020860161100a565b61105581611018565b840191505092915050565b61106981610f0a565b82525050565b5f60a0820190506110825f830188610fe1565b81810360208301526110948187611028565b90506110a36040830186611060565b6110b06060830185610fe1565b6110bd6080830184610e3d565b9695505050505050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126110e8576110e76110c7565b5b8235905067ffffffffffffffff811115611105576111046110cb565b5b602083019150836001820283011115611121576111206110cf565b5b9250929050565b5f806020838503121561113e5761113d610daa565b5b5f83013567ffffffffffffffff81111561115b5761115a610dae565b5b611167858286016110d3565b92509250509250929050565b5f6020820190506111865f830184610fe1565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806111d057607f821691505b6020821081036111e3576111e261118c565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026112727fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611237565b61127c8683611237565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6112b76112b26112ad84610f83565b611294565b610f83565b9050919050565b5f819050919050565b6112d08361129d565b6112e46112dc826112be565b848454611243565b825550505050565b5f90565b6112f86112ec565b6113038184846112c7565b505050565b5b818110156113265761131b5f826112f0565b600181019050611309565b5050565b601f82111561136b5761133c81611216565b61134584611228565b81016020851015611354578190505b61136861136085611228565b830182611308565b50505b505050565b5f82821c905092915050565b5f61138b5f1984600802611370565b1980831691505092915050565b5f6113a3838361137c565b9150826002028217905092915050565b6113bc82610ff0565b67ffffffffffffffff8111156113d5576113d46111e9565b5b6113df82546111b9565b6113ea82828561132a565b5f60209050601f83116001811461141b575f8415611409578287015190505b6114138582611398565b86555061147a565b601f19841661142986611216565b5f5b828110156114505784890151825560018201915060208501945060208101905061142b565b8683101561146d5784890151611469601f89168261137c565b8355505b6001600288020188555050505b505050505050565b828183375f83830152505050565b5f61149b8385610ffa565b93506114a8838584611482565b6114b183611018565b840190509392505050565b5f6040820190506114cf5f830186610fe1565b81810360208301526114e2818486611490565b9050949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61152382610f83565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611555576115546114ec565b5b600182019050919050565b7f42696420746f6f206c6f770000000000000000000000000000000000000000005f82015250565b5f611594600b83610ffa565b915061159f82611560565b602082019050919050565b5f6020820190508181035f8301526115c181611588565b9050919050565b7f41756374696f6e20616c72656164792066696e616c697a6564000000000000005f82015250565b5f6115fc601983610ffa565b9150611607826115c8565b602082019050919050565b5f6020820190508181035f830152611629816115f0565b9050919050565b5f6060820190506116435f830186610fe1565b6116506020830185611060565b61165d6040830184610fe1565b949350505050565b5f6040820190506116785f830185611060565b6116856020830184610ec3565b939250505056fea2646970667358221220dafadab73a20cfaadc54cd8359905fa7ca052d11394c7a820c7be51b9489b94164736f6c634300081a0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0xC1 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8E27CB25 GT PUSH2 0x7E JUMPI DUP1 PUSH4 0xA217FDDF GT PUSH2 0x58 JUMPI DUP1 PUSH4 0xA217FDDF EQ PUSH2 0x277 JUMPI DUP1 PUSH4 0xD547741F EQ PUSH2 0x2A1 JUMPI DUP1 PUSH4 0xE8083863 EQ PUSH2 0x2C9 JUMPI DUP1 PUSH4 0xFC528482 EQ PUSH2 0x2F1 JUMPI PUSH2 0xC1 JUMP JUMPDEST DUP1 PUSH4 0x8E27CB25 EQ PUSH2 0x1F7 JUMPI DUP1 PUSH4 0x91D14854 EQ PUSH2 0x21F JUMPI DUP1 PUSH4 0x9979EF45 EQ PUSH2 0x25B JUMPI PUSH2 0xC1 JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xC5 JUMPI DUP1 PUSH4 0x248A9CA3 EQ PUSH2 0x101 JUMPI DUP1 PUSH4 0x2F2FF15D EQ PUSH2 0x13D JUMPI DUP1 PUSH4 0x36568ABE EQ PUSH2 0x165 JUMPI DUP1 PUSH4 0x571A26A0 EQ PUSH2 0x18D JUMPI DUP1 PUSH4 0x75B238FC EQ PUSH2 0x1CD JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xD0 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xEB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE6 SWAP2 SWAP1 PUSH2 0xE07 JUMP JUMPDEST PUSH2 0x31B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF8 SWAP2 SWAP1 PUSH2 0xE4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x127 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x122 SWAP2 SWAP1 PUSH2 0xE98 JUMP JUMPDEST PUSH2 0x394 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0xED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x148 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x163 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x15E SWAP2 SWAP1 PUSH2 0xF45 JUMP JUMPDEST PUSH2 0x3B0 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x170 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x18B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x186 SWAP2 SWAP1 PUSH2 0xF45 JUMP JUMPDEST PUSH2 0x3D2 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x198 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x1B3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1AE SWAP2 SWAP1 PUSH2 0xFB6 JUMP JUMPDEST PUSH2 0x44D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1C4 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x106F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x1D8 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x1E1 PUSH2 0x530 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1EE SWAP2 SWAP1 PUSH2 0xED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x202 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x21D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x218 SWAP2 SWAP1 PUSH2 0x1128 JUMP JUMPDEST PUSH2 0x554 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x22A JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x245 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x240 SWAP2 SWAP1 PUSH2 0xF45 JUMP JUMPDEST PUSH2 0x6FE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x252 SWAP2 SWAP1 PUSH2 0xE4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x275 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x270 SWAP2 SWAP1 PUSH2 0xFB6 JUMP JUMPDEST PUSH2 0x761 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x282 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x28B PUSH2 0x958 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x298 SWAP2 SWAP1 PUSH2 0xED2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2AC JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x2C7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C2 SWAP2 SWAP1 PUSH2 0xF45 JUMP JUMPDEST PUSH2 0x95E JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2D4 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x2EF PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2EA SWAP2 SWAP1 PUSH2 0xFB6 JUMP JUMPDEST PUSH2 0x980 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2FC JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x305 PUSH2 0xAFD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x312 SWAP2 SWAP1 PUSH2 0x1173 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 PUSH32 0x7965DB0B00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x38D JUMPI POP PUSH2 0x38C DUP3 PUSH2 0xB03 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3B9 DUP3 PUSH2 0x394 JUMP JUMPDEST PUSH2 0x3C2 DUP2 PUSH2 0xB6C JUMP JUMPDEST PUSH2 0x3CC DUP4 DUP4 PUSH2 0xB80 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x3DA PUSH2 0xC69 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x43E JUMPI PUSH1 0x40 MLOAD PUSH32 0x6697B23200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x448 DUP3 DUP3 PUSH2 0xC70 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x20 MSTORE DUP1 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH0 SWAP2 POP SWAP1 POP DUP1 PUSH0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD DUP1 SLOAD PUSH2 0x472 SWAP1 PUSH2 0x11B9 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 0x49E SWAP1 PUSH2 0x11B9 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4E9 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4C0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4E9 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x4CC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x3 ADD SLOAD SWAP1 DUP1 PUSH1 0x4 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP DUP6 JUMP JUMPDEST PUSH32 0xA49807205CE4D355092EF5A8A18F56E8913CF4A201FBE287825B095693C21775 DUP2 JUMP JUMPDEST PUSH32 0xA49807205CE4D355092EF5A8A18F56E8913CF4A201FBE287825B095693C21775 PUSH2 0x57E DUP2 PUSH2 0xB6C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD DUP5 DUP5 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH0 DUP2 DUP5 ADD MSTORE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND SWAP1 POP DUP1 DUP4 ADD SWAP3 POP POP POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 ISZERO ISZERO DUP2 MSTORE POP PUSH1 0x2 PUSH0 PUSH1 0x1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SWAP1 DUP2 PUSH2 0x632 SWAP2 SWAP1 PUSH2 0x13B3 JUMP JUMPDEST POP PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH32 0x84DBBE572FCD8281F88FBF55359AD5039443609C2304288D3C8816DD3BB9FC21 PUSH1 0x1 SLOAD DUP5 DUP5 PUSH1 0x40 MLOAD PUSH2 0x6DA SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x14BC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH1 0x1 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x6F4 SWAP1 PUSH2 0x1519 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 PUSH0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SWAP1 POP DUP1 PUSH1 0x3 ADD SLOAD CALLVALUE GT PUSH2 0x7BB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7B2 SWAP1 PUSH2 0x15AA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x4 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x80C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x803 SWAP1 PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x8CE JUMPI DUP1 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP3 PUSH1 0x3 ADD SLOAD SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x8CC JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP JUMPDEST CALLER DUP2 PUSH1 0x2 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP CALLVALUE DUP2 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP PUSH32 0x558A0D5D5468D74B0DB24C74EB348B42271C2EBB4C9E953CED38AAED95FA4361 DUP3 CALLER CALLVALUE PUSH1 0x40 MLOAD PUSH2 0x94C SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1630 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST PUSH0 DUP1 SHL DUP2 JUMP JUMPDEST PUSH2 0x967 DUP3 PUSH2 0x394 JUMP JUMPDEST PUSH2 0x970 DUP2 PUSH2 0xB6C JUMP JUMPDEST PUSH2 0x97A DUP4 DUP4 PUSH2 0xC70 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0xA49807205CE4D355092EF5A8A18F56E8913CF4A201FBE287825B095693C21775 PUSH2 0x9AA DUP2 PUSH2 0xB6C JUMP JUMPDEST PUSH0 PUSH1 0x2 PUSH0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SWAP1 POP DUP1 PUSH1 0x4 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xA0F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA06 SWAP1 PUSH2 0x1612 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x4 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP1 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP3 PUSH1 0x3 ADD SLOAD SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0xA95 JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP PUSH32 0x4D9113A1377D665EAA1F9168A9C9080F2E488CB820B10149DE3D6D2E0F2780C7 DUP4 DUP3 PUSH1 0x2 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH1 0x3 ADD SLOAD PUSH1 0x40 MLOAD PUSH2 0xAF0 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1630 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP POP JUMP JUMPDEST PUSH1 0x1 SLOAD DUP2 JUMP JUMPDEST PUSH0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB7D DUP2 PUSH2 0xB78 PUSH2 0xC69 JUMP JUMPDEST PUSH2 0xD59 JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH2 0xB8B DUP4 DUP4 PUSH2 0x6FE JUMP JUMPDEST PUSH2 0xC5F JUMPI PUSH1 0x1 PUSH0 DUP1 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0xBFC PUSH2 0xC69 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH32 0x2F8788117E7EFF1D82E926EC794901D17C78024A50270940304540A733656F0D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x1 SWAP1 POP PUSH2 0xC63 JUMP JUMPDEST PUSH0 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xC7B DUP4 DUP4 PUSH2 0x6FE JUMP JUMPDEST ISZERO PUSH2 0xD4F JUMPI PUSH0 DUP1 PUSH0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH2 0xCEC PUSH2 0xC69 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH32 0xF6391F5C32D9C69D2A47EA670B442974B53935D1EDC7FD64EB21E047A839171B PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH1 0x1 SWAP1 POP PUSH2 0xD53 JUMP JUMPDEST PUSH0 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD63 DUP3 DUP3 PUSH2 0x6FE JUMP JUMPDEST PUSH2 0xDA6 JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH32 0xE2517D3F00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD9D SWAP3 SWAP2 SWAP1 PUSH2 0x1665 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xDE6 DUP2 PUSH2 0xDB2 JUMP JUMPDEST DUP2 EQ PUSH2 0xDF0 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE01 DUP2 PUSH2 0xDDD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xE1C JUMPI PUSH2 0xE1B PUSH2 0xDAA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xE29 DUP5 DUP3 DUP6 ADD PUSH2 0xDF3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE46 DUP2 PUSH2 0xE32 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xE5F PUSH0 DUP4 ADD DUP5 PUSH2 0xE3D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xE77 DUP2 PUSH2 0xE65 JUMP JUMPDEST DUP2 EQ PUSH2 0xE81 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE92 DUP2 PUSH2 0xE6E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xEAD JUMPI PUSH2 0xEAC PUSH2 0xDAA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xEBA DUP5 DUP3 DUP6 ADD PUSH2 0xE84 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xECC DUP2 PUSH2 0xE65 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEE5 PUSH0 DUP4 ADD DUP5 PUSH2 0xEC3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xF14 DUP3 PUSH2 0xEEB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF24 DUP2 PUSH2 0xF0A JUMP JUMPDEST DUP2 EQ PUSH2 0xF2E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xF3F DUP2 PUSH2 0xF1B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xF5B JUMPI PUSH2 0xF5A PUSH2 0xDAA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xF68 DUP6 DUP3 DUP7 ADD PUSH2 0xE84 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xF79 DUP6 DUP3 DUP7 ADD PUSH2 0xF31 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xF95 DUP2 PUSH2 0xF83 JUMP JUMPDEST DUP2 EQ PUSH2 0xF9F JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xFB0 DUP2 PUSH2 0xF8C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFCB JUMPI PUSH2 0xFCA PUSH2 0xDAA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xFD8 DUP5 DUP3 DUP6 ADD PUSH2 0xFA2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xFEA DUP2 PUSH2 0xF83 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1032 DUP3 PUSH2 0xFF0 JUMP JUMPDEST PUSH2 0x103C DUP2 DUP6 PUSH2 0xFFA JUMP JUMPDEST SWAP4 POP PUSH2 0x104C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x100A JUMP JUMPDEST PUSH2 0x1055 DUP2 PUSH2 0x1018 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1069 DUP2 PUSH2 0xF0A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x1082 PUSH0 DUP4 ADD DUP9 PUSH2 0xFE1 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x1094 DUP2 DUP8 PUSH2 0x1028 JUMP JUMPDEST SWAP1 POP PUSH2 0x10A3 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x1060 JUMP JUMPDEST PUSH2 0x10B0 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0xFE1 JUMP JUMPDEST PUSH2 0x10BD PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0xE3D JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x10E8 JUMPI PUSH2 0x10E7 PUSH2 0x10C7 JUMP JUMPDEST JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1105 JUMPI PUSH2 0x1104 PUSH2 0x10CB JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x1 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x1121 JUMPI PUSH2 0x1120 PUSH2 0x10CF JUMP JUMPDEST JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x20 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x113E JUMPI PUSH2 0x113D PUSH2 0xDAA JUMP JUMPDEST JUMPDEST PUSH0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x115B JUMPI PUSH2 0x115A PUSH2 0xDAE JUMP JUMPDEST JUMPDEST PUSH2 0x1167 DUP6 DUP3 DUP7 ADD PUSH2 0x10D3 JUMP JUMPDEST SWAP3 POP SWAP3 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1186 PUSH0 DUP4 ADD DUP5 PUSH2 0xFE1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x11D0 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x11E3 JUMPI PUSH2 0x11E2 PUSH2 0x118C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x1272 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x1237 JUMP JUMPDEST PUSH2 0x127C DUP7 DUP4 PUSH2 0x1237 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x12B7 PUSH2 0x12B2 PUSH2 0x12AD DUP5 PUSH2 0xF83 JUMP JUMPDEST PUSH2 0x1294 JUMP JUMPDEST PUSH2 0xF83 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x12D0 DUP4 PUSH2 0x129D JUMP JUMPDEST PUSH2 0x12E4 PUSH2 0x12DC DUP3 PUSH2 0x12BE JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x1243 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x12F8 PUSH2 0x12EC JUMP JUMPDEST PUSH2 0x1303 DUP2 DUP5 DUP5 PUSH2 0x12C7 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x1326 JUMPI PUSH2 0x131B PUSH0 DUP3 PUSH2 0x12F0 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x1309 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x136B JUMPI PUSH2 0x133C DUP2 PUSH2 0x1216 JUMP JUMPDEST PUSH2 0x1345 DUP5 PUSH2 0x1228 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x1354 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x1368 PUSH2 0x1360 DUP6 PUSH2 0x1228 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x1308 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x138B PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x1370 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x13A3 DUP4 DUP4 PUSH2 0x137C JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x13BC DUP3 PUSH2 0xFF0 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x13D5 JUMPI PUSH2 0x13D4 PUSH2 0x11E9 JUMP JUMPDEST JUMPDEST PUSH2 0x13DF DUP3 SLOAD PUSH2 0x11B9 JUMP JUMPDEST PUSH2 0x13EA DUP3 DUP3 DUP6 PUSH2 0x132A JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x141B JUMPI PUSH0 DUP5 ISZERO PUSH2 0x1409 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x1413 DUP6 DUP3 PUSH2 0x1398 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x147A JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x1429 DUP7 PUSH2 0x1216 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1450 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 0x142B JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x146D JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x1469 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x137C 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 DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x149B DUP4 DUP6 PUSH2 0xFFA JUMP JUMPDEST SWAP4 POP PUSH2 0x14A8 DUP4 DUP6 DUP5 PUSH2 0x1482 JUMP JUMPDEST PUSH2 0x14B1 DUP4 PUSH2 0x1018 JUMP JUMPDEST DUP5 ADD SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x14CF PUSH0 DUP4 ADD DUP7 PUSH2 0xFE1 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x14E2 DUP2 DUP5 DUP7 PUSH2 0x1490 JUMP JUMPDEST SWAP1 POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x1523 DUP3 PUSH2 0xF83 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x1555 JUMPI PUSH2 0x1554 PUSH2 0x14EC JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x42696420746F6F206C6F77000000000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1594 PUSH1 0xB DUP4 PUSH2 0xFFA JUMP JUMPDEST SWAP2 POP PUSH2 0x159F DUP3 PUSH2 0x1560 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x15C1 DUP2 PUSH2 0x1588 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x41756374696F6E20616C72656164792066696E616C697A656400000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x15FC PUSH1 0x19 DUP4 PUSH2 0xFFA JUMP JUMPDEST SWAP2 POP PUSH2 0x1607 DUP3 PUSH2 0x15C8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1629 DUP2 PUSH2 0x15F0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x1643 PUSH0 DUP4 ADD DUP7 PUSH2 0xFE1 JUMP JUMPDEST PUSH2 0x1650 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x1060 JUMP JUMPDEST PUSH2 0x165D PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0xFE1 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x1678 PUSH0 DUP4 ADD DUP6 PUSH2 0x1060 JUMP JUMPDEST PUSH2 0x1685 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xEC3 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDA STATICCALL 0xDA 0xB7 GASPRICE KECCAK256 0xCF 0xAA 0xDC SLOAD 0xCD DUP4 MSIZE SWAP1 PUSH0 0xA7 0xCA SDIV 0x2D GT CODECOPY 0x4C PUSH27 0x820C7BE51B9489B94164736F6C634300081A003300000000000000 ",
"sourceMap": "117:1837:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2565:202:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3810:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4226:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5328:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;421:47:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;157:60;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;755:268;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2854:136:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1029:523:5;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2187:49:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4642:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1558:394:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;387:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2565:202:0;2650:4;2688:32;2673:47;;;:11;:47;;;;:87;;;;2724:36;2748:11;2724:23;:36::i;:::-;2673:87;2666:94;;2565:202;;;:::o;3810:120::-;3875:7;3901:6;:12;3908:4;3901:12;;;;;;;;;;;:22;;;3894:29;;3810:120;;;:::o;4226:136::-;4300:18;4313:4;4300:12;:18::i;:::-;2464:16;2475:4;2464:10;:16::i;:::-;4330:25:::1;4341:4;4347:7;4330:10;:25::i;:::-;;4226:136:::0;;;:::o;5328:245::-;5443:12;:10;:12::i;:::-;5421:34;;:18;:34;;;5417:102;;5478:30;;;;;;;;;;;;;;5417:102;5529:37;5541:4;5547:18;5529:11;:37::i;:::-;;5328:245;;:::o;421:47:5:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;157:60::-;194:23;157:60;:::o;755:268::-;194:23;2464:16:0;2475:4;2464:10;:16::i;:::-;873:61:5::1;;;;;;;;885:13;;873:61;;;;900:11;;873:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;921:1;873:61;;;;;;925:1;873:61;;;;928:5;873:61;;;;::::0;847:8:::1;:23;856:13;;847:23;;;;;;;;;;;:87;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;949:42;964:13;;979:11;;949:42;;;;;;;;:::i;:::-;;;;;;;;1001:13;;:15;;;;;;;;;:::i;:::-;;;;;;755:268:::0;;;:::o;2854:136:0:-;2931:4;2954:6;:12;2961:4;2954:12;;;;;;;;;;;:20;;:29;2975:7;2954:29;;;;;;;;;;;;;;;;;;;;;;;;;2947:36;;2854:136;;;;:::o;1029:523:5:-;1093:27;1123:8;:19;1132:9;1123:19;;;;;;;;;;;1093:49;;1172:7;:18;;;1160:9;:30;1152:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1225:7;:17;;;;;;;;;;;;1224:18;1216:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1319:1;1286:35;;:7;:21;;;;;;;;;;;;:35;;;1282:125;;1345:7;:21;;;;;;;;;;;;1337:39;;:59;1377:7;:18;;;1337:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1282:125;1440:10;1416:7;:21;;;:34;;;;;;;;;;;;;;;;;;1481:9;1460:7;:18;;:30;;;;1505:40;1512:9;1523:10;1535:9;1505:40;;;;;;;;:::i;:::-;;;;;;;;1083:469;1029:523;:::o;2187:49:0:-;2232:4;2187:49;;;:::o;4642:138::-;4717:18;4730:4;4717:12;:18::i;:::-;2464:16;2475:4;2464:10;:16::i;:::-;4747:26:::1;4759:4;4765:7;4747:11;:26::i;:::-;;4642:138:::0;;;:::o;1558:394:5:-;194:23;2464:16:0;2475:4;2464:10;:16::i;:::-;1642:27:5::1;1672:8;:19;1681:9;1672:19;;;;;;;;;;;1642:49;;1710:7;:17;;;;;;;;;;;;1709:18;1701:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1787:4;1767:7;:17;;;:24;;;;;;;;;;;;;;;;;;1809:7;:21;;;;;;;;;;;;1801:39;;:59;1841:7;:18;;;1801:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1875:70;1892:9;1903:7;:21;;;;;;;;;;;;1926:7;:18;;;1875:70;;;;;;;;:::i;:::-;;;;;;;;1632:320;1558:394:::0;;:::o;387:28::-;;;;:::o;762:146:3:-;838:4;876:25;861:40;;;:11;:40;;;;854:47;;762:146;;;:::o;3199:103:0:-;3265:30;3276:4;3282:12;:10;:12::i;:::-;3265:10;:30::i;:::-;3199:103;:::o;6179:316::-;6256:4;6277:22;6285:4;6291:7;6277;:22::i;:::-;6272:217;;6347:4;6315:6;:12;6322:4;6315:12;;;;;;;;;;;:20;;:29;6336:7;6315:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;6397:12;:10;:12::i;:::-;6370:40;;6388:7;6370:40;;6382:4;6370:40;;;;;;;;;;6431:4;6424:11;;;;6272:217;6473:5;6466:12;;6179:316;;;;;:::o;656:96:2:-;709:7;735:10;728:17;;656:96;:::o;6730:317:0:-;6808:4;6828:22;6836:4;6842:7;6828;:22::i;:::-;6824:217;;;6898:5;6866:6;:12;6873:4;6866:12;;;;;;;;;;;:20;;:29;6887:7;6866:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;6949:12;:10;:12::i;:::-;6922:40;;6940:7;6922:40;;6934:4;6922:40;;;;;;;;;;6983:4;6976:11;;;;6824:217;7025:5;7018:12;;6730:317;;;;;:::o;3432:197::-;3520:22;3528:4;3534:7;3520;:22::i;:::-;3515:108;;3598:7;3607:4;3565:47;;;;;;;;;;;;:::i;:::-;;;;;;;;3515:108;3432:197;;:::o;88:117:6:-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:122::-;1674:24;1692:5;1674:24;:::i;:::-;1667:5;1664:35;1654:63;;1713:1;1710;1703:12;1654:63;1601:122;:::o;1729:139::-;1775:5;1813:6;1800:20;1791:29;;1829:33;1856:5;1829:33;:::i;:::-;1729:139;;;;:::o;1874:329::-;1933:6;1982:2;1970:9;1961:7;1957:23;1953:32;1950:119;;;1988:79;;:::i;:::-;1950:119;2108:1;2133:53;2178:7;2169:6;2158:9;2154:22;2133:53;:::i;:::-;2123:63;;2079:117;1874:329;;;;:::o;2209:118::-;2296:24;2314:5;2296:24;:::i;:::-;2291:3;2284:37;2209:118;;:::o;2333:222::-;2426:4;2464:2;2453:9;2449:18;2441:26;;2477:71;2545:1;2534:9;2530:17;2521:6;2477:71;:::i;:::-;2333:222;;;;:::o;2561:126::-;2598:7;2638:42;2631:5;2627:54;2616:65;;2561:126;;;:::o;2693:96::-;2730:7;2759:24;2777:5;2759:24;:::i;:::-;2748:35;;2693:96;;;:::o;2795:122::-;2868:24;2886:5;2868:24;:::i;:::-;2861:5;2858:35;2848:63;;2907:1;2904;2897:12;2848:63;2795:122;:::o;2923:139::-;2969:5;3007:6;2994:20;2985:29;;3023:33;3050:5;3023:33;:::i;:::-;2923:139;;;;:::o;3068:474::-;3136:6;3144;3193:2;3181:9;3172:7;3168:23;3164:32;3161:119;;;3199:79;;:::i;:::-;3161:119;3319:1;3344:53;3389:7;3380:6;3369:9;3365:22;3344:53;:::i;:::-;3334:63;;3290:117;3446:2;3472:53;3517:7;3508:6;3497:9;3493:22;3472:53;:::i;:::-;3462:63;;3417:118;3068:474;;;;;:::o;3548:77::-;3585:7;3614:5;3603:16;;3548:77;;;:::o;3631:122::-;3704:24;3722:5;3704:24;:::i;:::-;3697:5;3694:35;3684:63;;3743:1;3740;3733:12;3684:63;3631:122;:::o;3759:139::-;3805:5;3843:6;3830:20;3821:29;;3859:33;3886:5;3859:33;:::i;:::-;3759:139;;;;:::o;3904:329::-;3963:6;4012:2;4000:9;3991:7;3987:23;3983:32;3980:119;;;4018:79;;:::i;:::-;3980:119;4138:1;4163:53;4208:7;4199:6;4188:9;4184:22;4163:53;:::i;:::-;4153:63;;4109:117;3904:329;;;;:::o;4239:118::-;4326:24;4344:5;4326:24;:::i;:::-;4321:3;4314:37;4239:118;;:::o;4363:99::-;4415:6;4449:5;4443:12;4433:22;;4363:99;;;:::o;4468:169::-;4552:11;4586:6;4581:3;4574:19;4626:4;4621:3;4617:14;4602:29;;4468:169;;;;:::o;4643:139::-;4732:6;4727:3;4722;4716:23;4773:1;4764:6;4759:3;4755:16;4748:27;4643:139;;;:::o;4788:102::-;4829:6;4880:2;4876:7;4871:2;4864:5;4860:14;4856:28;4846:38;;4788:102;;;:::o;4896:377::-;4984:3;5012:39;5045:5;5012:39;:::i;:::-;5067:71;5131:6;5126:3;5067:71;:::i;:::-;5060:78;;5147:65;5205:6;5200:3;5193:4;5186:5;5182:16;5147:65;:::i;:::-;5237:29;5259:6;5237:29;:::i;:::-;5232:3;5228:39;5221:46;;4988:285;4896:377;;;;:::o;5279:118::-;5366:24;5384:5;5366:24;:::i;:::-;5361:3;5354:37;5279:118;;:::o;5403:743::-;5622:4;5660:3;5649:9;5645:19;5637:27;;5674:71;5742:1;5731:9;5727:17;5718:6;5674:71;:::i;:::-;5792:9;5786:4;5782:20;5777:2;5766:9;5762:18;5755:48;5820:78;5893:4;5884:6;5820:78;:::i;:::-;5812:86;;5908:72;5976:2;5965:9;5961:18;5952:6;5908:72;:::i;:::-;5990;6058:2;6047:9;6043:18;6034:6;5990:72;:::i;:::-;6072:67;6134:3;6123:9;6119:19;6110:6;6072:67;:::i;:::-;5403:743;;;;;;;;:::o;6152:117::-;6261:1;6258;6251:12;6275:117;6384:1;6381;6374:12;6398:117;6507:1;6504;6497:12;6535:553;6593:8;6603:6;6653:3;6646:4;6638:6;6634:17;6630:27;6620:122;;6661:79;;:::i;:::-;6620:122;6774:6;6761:20;6751:30;;6804:18;6796:6;6793:30;6790:117;;;6826:79;;:::i;:::-;6790:117;6940:4;6932:6;6928:17;6916:29;;6994:3;6986:4;6978:6;6974:17;6964:8;6960:32;6957:41;6954:128;;;7001:79;;:::i;:::-;6954:128;6535:553;;;;;:::o;7094:529::-;7165:6;7173;7222:2;7210:9;7201:7;7197:23;7193:32;7190:119;;;7228:79;;:::i;:::-;7190:119;7376:1;7365:9;7361:17;7348:31;7406:18;7398:6;7395:30;7392:117;;;7428:79;;:::i;:::-;7392:117;7541:65;7598:7;7589:6;7578:9;7574:22;7541:65;:::i;:::-;7523:83;;;;7319:297;7094:529;;;;;:::o;7629:222::-;7722:4;7760:2;7749:9;7745:18;7737:26;;7773:71;7841:1;7830:9;7826:17;7817:6;7773:71;:::i;:::-;7629:222;;;;:::o;7857:180::-;7905:77;7902:1;7895:88;8002:4;7999:1;7992:15;8026:4;8023:1;8016:15;8043:320;8087:6;8124:1;8118:4;8114:12;8104:22;;8171:1;8165:4;8161:12;8192:18;8182:81;;8248:4;8240:6;8236:17;8226:27;;8182:81;8310:2;8302:6;8299:14;8279:18;8276:38;8273:84;;8329:18;;:::i;:::-;8273:84;8094:269;8043:320;;;:::o;8369:180::-;8417:77;8414:1;8407:88;8514:4;8511:1;8504:15;8538:4;8535:1;8528:15;8555:141;8604:4;8627:3;8619:11;;8650:3;8647:1;8640:14;8684:4;8681:1;8671:18;8663:26;;8555:141;;;:::o;8702:93::-;8739:6;8786:2;8781;8774:5;8770:14;8766:23;8756:33;;8702:93;;;:::o;8801:107::-;8845:8;8895:5;8889:4;8885:16;8864:37;;8801:107;;;;:::o;8914:393::-;8983:6;9033:1;9021:10;9017:18;9056:97;9086:66;9075:9;9056:97;:::i;:::-;9174:39;9204:8;9193:9;9174:39;:::i;:::-;9162:51;;9246:4;9242:9;9235:5;9231:21;9222:30;;9295:4;9285:8;9281:19;9274:5;9271:30;9261:40;;8990:317;;8914:393;;;;;:::o;9313:60::-;9341:3;9362:5;9355:12;;9313:60;;;:::o;9379:142::-;9429:9;9462:53;9480:34;9489:24;9507:5;9489:24;:::i;:::-;9480:34;:::i;:::-;9462:53;:::i;:::-;9449:66;;9379:142;;;:::o;9527:75::-;9570:3;9591:5;9584:12;;9527:75;;;:::o;9608:269::-;9718:39;9749:7;9718:39;:::i;:::-;9779:91;9828:41;9852:16;9828:41;:::i;:::-;9820:6;9813:4;9807:11;9779:91;:::i;:::-;9773:4;9766:105;9684:193;9608:269;;;:::o;9883:73::-;9928:3;9883:73;:::o;9962:189::-;10039:32;;:::i;:::-;10080:65;10138:6;10130;10124:4;10080:65;:::i;:::-;10015:136;9962:189;;:::o;10157:186::-;10217:120;10234:3;10227:5;10224:14;10217:120;;;10288:39;10325:1;10318:5;10288:39;:::i;:::-;10261:1;10254:5;10250:13;10241:22;;10217:120;;;10157:186;;:::o;10349:543::-;10450:2;10445:3;10442:11;10439:446;;;10484:38;10516:5;10484:38;:::i;:::-;10568:29;10586:10;10568:29;:::i;:::-;10558:8;10554:44;10751:2;10739:10;10736:18;10733:49;;;10772:8;10757:23;;10733:49;10795:80;10851:22;10869:3;10851:22;:::i;:::-;10841:8;10837:37;10824:11;10795:80;:::i;:::-;10454:431;;10439:446;10349:543;;;:::o;10898:117::-;10952:8;11002:5;10996:4;10992:16;10971:37;;10898:117;;;;:::o;11021:169::-;11065:6;11098:51;11146:1;11142:6;11134:5;11131:1;11127:13;11098:51;:::i;:::-;11094:56;11179:4;11173;11169:15;11159:25;;11072:118;11021:169;;;;:::o;11195:295::-;11271:4;11417:29;11442:3;11436:4;11417:29;:::i;:::-;11409:37;;11479:3;11476:1;11472:11;11466:4;11463:21;11455:29;;11195:295;;;;:::o;11495:1395::-;11612:37;11645:3;11612:37;:::i;:::-;11714:18;11706:6;11703:30;11700:56;;;11736:18;;:::i;:::-;11700:56;11780:38;11812:4;11806:11;11780:38;:::i;:::-;11865:67;11925:6;11917;11911:4;11865:67;:::i;:::-;11959:1;11983:4;11970:17;;12015:2;12007:6;12004:14;12032:1;12027:618;;;;12689:1;12706:6;12703:77;;;12755:9;12750:3;12746:19;12740:26;12731:35;;12703:77;12806:67;12866:6;12859:5;12806:67;:::i;:::-;12800:4;12793:81;12662:222;11997:887;;12027:618;12079:4;12075:9;12067:6;12063:22;12113:37;12145:4;12113:37;:::i;:::-;12172:1;12186:208;12200:7;12197:1;12194:14;12186:208;;;12279:9;12274:3;12270:19;12264:26;12256:6;12249:42;12330:1;12322:6;12318:14;12308:24;;12377:2;12366:9;12362:18;12349:31;;12223:4;12220:1;12216:12;12211:17;;12186:208;;;12422:6;12413:7;12410:19;12407:179;;;12480:9;12475:3;12471:19;12465:26;12523:48;12565:4;12557:6;12553:17;12542:9;12523:48;:::i;:::-;12515:6;12508:64;12430:156;12407:179;12632:1;12628;12620:6;12616:14;12612:22;12606:4;12599:36;12034:611;;;11997:887;;11587:1303;;;11495:1395;;:::o;12896:148::-;12994:6;12989:3;12984;12971:30;13035:1;13026:6;13021:3;13017:16;13010:27;12896:148;;;:::o;13074:317::-;13172:3;13193:71;13257:6;13252:3;13193:71;:::i;:::-;13186:78;;13274:56;13323:6;13318:3;13311:5;13274:56;:::i;:::-;13355:29;13377:6;13355:29;:::i;:::-;13350:3;13346:39;13339:46;;13074:317;;;;;:::o;13397:443::-;13548:4;13586:2;13575:9;13571:18;13563:26;;13599:71;13667:1;13656:9;13652:17;13643:6;13599:71;:::i;:::-;13717:9;13711:4;13707:20;13702:2;13691:9;13687:18;13680:48;13745:88;13828:4;13819:6;13811;13745:88;:::i;:::-;13737:96;;13397:443;;;;;;:::o;13846:180::-;13894:77;13891:1;13884:88;13991:4;13988:1;13981:15;14015:4;14012:1;14005:15;14032:233;14071:3;14094:24;14112:5;14094:24;:::i;:::-;14085:33;;14140:66;14133:5;14130:77;14127:103;;14210:18;;:::i;:::-;14127:103;14257:1;14250:5;14246:13;14239:20;;14032:233;;;:::o;14271:161::-;14411:13;14407:1;14399:6;14395:14;14388:37;14271:161;:::o;14438:366::-;14580:3;14601:67;14665:2;14660:3;14601:67;:::i;:::-;14594:74;;14677:93;14766:3;14677:93;:::i;:::-;14795:2;14790:3;14786:12;14779:19;;14438:366;;;:::o;14810:419::-;14976:4;15014:2;15003:9;14999:18;14991:26;;15063:9;15057:4;15053:20;15049:1;15038:9;15034:17;15027:47;15091:131;15217:4;15091:131;:::i;:::-;15083:139;;14810:419;;;:::o;15235:175::-;15375:27;15371:1;15363:6;15359:14;15352:51;15235:175;:::o;15416:366::-;15558:3;15579:67;15643:2;15638:3;15579:67;:::i;:::-;15572:74;;15655:93;15744:3;15655:93;:::i;:::-;15773:2;15768:3;15764:12;15757:19;;15416:366;;;:::o;15788:419::-;15954:4;15992:2;15981:9;15977:18;15969:26;;16041:9;16035:4;16031:20;16027:1;16016:9;16012:17;16005:47;16069:131;16195:4;16069:131;:::i;:::-;16061:139;;15788:419;;;:::o;16213:442::-;16362:4;16400:2;16389:9;16385:18;16377:26;;16413:71;16481:1;16470:9;16466:17;16457:6;16413:71;:::i;:::-;16494:72;16562:2;16551:9;16547:18;16538:6;16494:72;:::i;:::-;16576;16644:2;16633:9;16629:18;16620:6;16576:72;:::i;:::-;16213:442;;;;;;:::o;16661:332::-;16782:4;16820:2;16809:9;16805:18;16797:26;;16833:71;16901:1;16890:9;16886:17;16877:6;16833:71;:::i;:::-;16914:72;16982:2;16971:9;16967:18;16958:6;16914:72;:::i;:::-;16661:332;;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1165200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"ADMIN_ROLE()": "436",
"DEFAULT_ADMIN_ROLE()": "352",
"auctions(uint256)": "infinite",
"createAuction(string)": "infinite",
"finalizeAuction(uint256)": "infinite",
"getRoleAdmin(bytes32)": "infinite",
"grantRole(bytes32,address)": "infinite",
"hasRole(bytes32,address)": "3167",
"nextAuctionId()": "2513",
"placeBid(uint256)": "infinite",
"renounceRole(bytes32,address)": "infinite",
"revokeRole(bytes32,address)": "infinite",
"supportsInterface(bytes4)": "718"
}
},
"methodIdentifiers": {
"ADMIN_ROLE()": "75b238fc",
"DEFAULT_ADMIN_ROLE()": "a217fddf",
"auctions(uint256)": "571a26a0",
"createAuction(string)": "8e27cb25",
"finalizeAuction(uint256)": "e8083863",
"getRoleAdmin(bytes32)": "248a9ca3",
"grantRole(bytes32,address)": "2f2ff15d",
"hasRole(bytes32,address)": "91d14854",
"nextAuctionId()": "fc528482",
"placeBid(uint256)": "9979ef45",
"renounceRole(bytes32,address)": "36568abe",
"revokeRole(bytes32,address)": "d547741f",
"supportsInterface(bytes4)": "01ffc9a7"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "AccessControlBadConfirmation",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "bytes32",
"name": "neededRole",
"type": "bytes32"
}
],
"name": "AccessControlUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "string",
"name": "itemDetails",
"type": "string"
}
],
"name": "AuctionCreated",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "auctionId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "address",
"name": "winner",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "winningBid",
"type": "uint256"
}
],
"name": "AuctionFinalized",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "auctionId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "address",
"name": "bidder",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "bid",
"type": "uint256"
}
],
"name": "NewBid",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "previousAdminRole",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "newAdminRole",
"type": "bytes32"
}
],
"name": "RoleAdminChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleGranted",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleRevoked",
"type": "event"
},
{
"inputs": [],
"name": "ADMIN_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "DEFAULT_ADMIN_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "auctions",
"outputs": [
{
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"internalType": "string",
"name": "itemDetails",
"type": "string"
},
{
"internalType": "address",
"name": "highestBidder",
"type": "address"
},
{
"internalType": "uint256",
"name": "highestBid",
"type": "uint256"
},
{
"internalType": "bool",
"name": "finalized",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "itemDetails",
"type": "string"
}
],
"name": "createAuction",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "auctionId",
"type": "uint256"
}
],
"name": "finalizeAuction",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
}
],
"name": "getRoleAdmin",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "grantRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "hasRole",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "nextAuctionId",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "auctionId",
"type": "uint256"
}
],
"name": "placeBid",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "callerConfirmation",
"type": "address"
}
],
"name": "renounceRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "revokeRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.26+commit.8a97fa7a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "AccessControlBadConfirmation",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "bytes32",
"name": "neededRole",
"type": "bytes32"
}
],
"name": "AccessControlUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"indexed": false,
"internalType": "string",
"name": "itemDetails",
"type": "string"
}
],
"name": "AuctionCreated",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "auctionId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "address",
"name": "winner",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "winningBid",
"type": "uint256"
}
],
"name": "AuctionFinalized",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint256",
"name": "auctionId",
"type": "uint256"
},
{
"indexed": false,
"internalType": "address",
"name": "bidder",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "bid",
"type": "uint256"
}
],
"name": "NewBid",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "previousAdminRole",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "bytes32",
"name": "newAdminRole",
"type": "bytes32"
}
],
"name": "RoleAdminChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleGranted",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "RoleRevoked",
"type": "event"
},
{
"inputs": [],
"name": "ADMIN_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "DEFAULT_ADMIN_ROLE",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "auctions",
"outputs": [
{
"internalType": "uint256",
"name": "id",
"type": "uint256"
},
{
"internalType": "string",
"name": "itemDetails",
"type": "string"
},
{
"internalType": "address",
"name": "highestBidder",
"type": "address"
},
{
"internalType": "uint256",
"name": "highestBid",
"type": "uint256"
},
{
"internalType": "bool",
"name": "finalized",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "itemDetails",
"type": "string"
}
],
"name": "createAuction",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "auctionId",
"type": "uint256"
}
],
"name": "finalizeAuction",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
}
],
"name": "getRoleAdmin",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "grantRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "hasRole",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "nextAuctionId",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "auctionId",
"type": "uint256"
}
],
"name": "placeBid",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "callerConfirmation",
"type": "address"
}
],
"name": "renounceRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "role",
"type": "bytes32"
},
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "revokeRole",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"errors": {
"AccessControlBadConfirmation()": [
{
"details": "The caller of a function is not the expected one. NOTE: Don't confuse with {AccessControlUnauthorizedAccount}."
}
],
"AccessControlUnauthorizedAccount(address,bytes32)": [
{
"details": "The `account` is missing a role."
}
]
},
"events": {
"RoleAdminChanged(bytes32,bytes32,bytes32)": {
"details": "Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite {RoleAdminChanged} not being emitted signaling this."
},
"RoleGranted(bytes32,address,address)": {
"details": "Emitted when `account` is granted `role`. `sender` is the account that originated the contract call, an admin role bearer except when using {AccessControl-_setupRole}."
},
"RoleRevoked(bytes32,address,address)": {
"details": "Emitted when `account` is revoked `role`. `sender` is the account that originated the contract call: - if using `revokeRole`, it is the admin role bearer - if using `renounceRole`, it is the role bearer (i.e. `account`)"
}
},
"kind": "dev",
"methods": {
"getRoleAdmin(bytes32)": {
"details": "Returns the admin role that controls `role`. See {grantRole} and {revokeRole}. To change a role's admin, use {_setRoleAdmin}."
},
"grantRole(bytes32,address)": {
"details": "Grants `role` to `account`. If `account` had not been already granted `role`, emits a {RoleGranted} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleGranted} event."
},
"hasRole(bytes32,address)": {
"details": "Returns `true` if `account` has been granted `role`."
},
"renounceRole(bytes32,address)": {
"details": "Revokes `role` from the calling account. Roles are often managed via {grantRole} and {revokeRole}: this function's purpose is to provide a mechanism for accounts to lose their privileges if they are compromised (such as when a trusted device is misplaced). If the calling account had been revoked `role`, emits a {RoleRevoked} event. Requirements: - the caller must be `callerConfirmation`. May emit a {RoleRevoked} event."
},
"revokeRole(bytes32,address)": {
"details": "Revokes `role` from `account`. If `account` had been granted `role`, emits a {RoleRevoked} event. Requirements: - the caller must have ``role``'s admin role. May emit a {RoleRevoked} event."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/Auction.sol": "Auction"
},
"evmVersion": "cancun",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/AccessControl.sol": {
"keccak256": "0xa0e92d42942f4f57c5be50568dac11e9d00c93efcb458026e18d2d9b9b2e7308",
"license": "MIT",
"urls": [
"bzz-raw://46326c0bb1e296b67185e81c918e0b40501b8b6386165855df0a3f3c634b6a80",
"dweb:/ipfs/QmTwyrDYtsxsk6pymJTK94PnEpzsmkpUxFuzEiakDopy4Z"
]
},
"@openzeppelin/contracts/access/IAccessControl.sol": {
"keccak256": "0xb6b36edd6a2999fd243ff226d6cbf84bd71af2432bbd0dfe19392996a1d9cb41",
"license": "MIT",
"urls": [
"bzz-raw://1fd2f35495652e57e3f99bc6c510bc5f7dd398a176ea2e72d8ed730aebc6ca26",
"dweb:/ipfs/QmTQV6X4gkikTib49cho5iDX3JvSQbdsoEChoDwrk3CbbH"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2",
"license": "MIT",
"urls": [
"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12",
"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF"
]
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0x9e8778b14317ba9e256c30a76fd6c32b960af621987f56069e1e819c77c6a133",
"license": "MIT",
"urls": [
"bzz-raw://1777404f1dcd0fac188e55a288724ec3c67b45288e49cc64723e95e702b49ab8",
"dweb:/ipfs/QmZFdC626GButBApwDUvvTnUzdinevC3B24d7yyh57XkiA"
]
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x4296879f55019b23e135000eb36896057e7101fb7fb859c5ef690cf14643757b",
"license": "MIT",
"urls": [
"bzz-raw://87b3541437c8c443ccd36795e56a338ed12855eec17f8da624511b8d1a7e14df",
"dweb:/ipfs/QmeJQCtZrQjtJLr6u7ZHWeH3pBnjtLWzvRrKViAi7UZqxL"
]
},
"contracts/Auction.sol": {
"keccak256": "0x9e83492843e1904fd0d1dfb6cdfbfbdcfbb75c7a9d61a7f96a907ffa3bc8b32c",
"license": "MIT",
"urls": [
"bzz-raw://f26914d75db78989bbddea8d092a244aaace95c15a8c4d859bd864898e361fac",
"dweb:/ipfs/Qmf8U1MYYBXMmjizQ6na5215ZHF4ZXy9c2rx2wrvGJfpQU"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/AccessControl.sol";
contract Auction is AccessControl {
bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE");
struct AuctionItem {
uint256 id;
string itemDetails;
address highestBidder;
uint256 highestBid;
bool finalized;
}
uint256 public nextAuctionId;
mapping(uint256 => AuctionItem) public auctions;
event AuctionCreated(uint256 id, string itemDetails);
event NewBid(uint256 auctionId, address bidder, uint256 bid);
event AuctionFinalized(uint256 auctionId, address winner, uint256 winningBid);
constructor() {
_grantRole(ADMIN_ROLE, msg.sender);
}
function createAuction(string calldata itemDetails) external onlyRole(ADMIN_ROLE) {
auctions[nextAuctionId] = AuctionItem(nextAuctionId, itemDetails, address(0), 0, false);
emit AuctionCreated(nextAuctionId, itemDetails);
nextAuctionId++;
}
function placeBid(uint256 auctionId) external payable {
AuctionItem storage auction = auctions[auctionId];
require(msg.value > auction.highestBid, "Bid too low");
require(!auction.finalized, "Auction already finalized");
if (auction.highestBidder != address(0)) {
payable(auction.highestBidder).transfer(auction.highestBid);
}
auction.highestBidder = msg.sender;
auction.highestBid = msg.value;
emit NewBid(auctionId, msg.sender, msg.value);
}
function finalizeAuction(uint256 auctionId) external onlyRole(ADMIN_ROLE) {
AuctionItem storage auction = auctions[auctionId];
require(!auction.finalized, "Auction already finalized");
auction.finalized = true;
payable(auction.highestBidder).transfer(auction.highestBid);
emit AuctionFinalized(auctionId, auction.highestBidder, auction.highestBid);
}
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
contract Signing {
mapping (bytes32 => address) public signatures;
event DocumentSigned(bytes32 indexed documentHash, address signer);
function signDocument(bytes32 documentHash) public {
require(signatures[documentHash] == address(0), "Document already signed");
signatures[documentHash] = msg.sender;
emit DocumentSigned(documentHash, msg.sender);
}
function getSigner(bytes32 documentHash) public view returns (address){
return signatures[documentHash];
}
}
This file has been truncated, but you can view the full file.
{
"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": {
"@_71": {
"entryPoint": null,
"id": 71,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_array$_t_bytes32_$dyn_memory_ptr_fromMemory": {
"entryPoint": 605,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_array$_t_bytes32_$dyn_memory_ptr_fromMemory": {
"entryPoint": 709,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes32_fromMemory": {
"entryPoint": 585,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_array$_t_bytes32_$dyn_memory_ptr_fromMemory": {
"entryPoint": 754,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 481,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 350,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_array$_t_bytes32_$dyn_memory_ptr": {
"entryPoint": 507,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 554,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 432,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 825,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 387,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 367,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef": {
"entryPoint": 550,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 363,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 359,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 371,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_bytes32": {
"entryPoint": 563,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:3879:1",
"nodeType": "YulBlock",
"src": "0:3879:1",
"statements": [
{
"body": {
"nativeSrc": "47:35:1",
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nativeSrc": "57:19:1",
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "73:2:1",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "67:5:1",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nativeSrc": "67:9:1",
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "57:6:1",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "7:75:1",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "40:6:1",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nativeSrc": "177:28:1",
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "194:1:1",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "197:1:1",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "187:6:1",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nativeSrc": "187:12:1",
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nativeSrc": "187:12:1",
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "88:117:1",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nativeSrc": "300:28:1",
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "317:1:1",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "320:1:1",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "310:6:1",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nativeSrc": "310:12:1",
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nativeSrc": "310:12:1",
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "211:117:1",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nativeSrc": "423:28:1",
"nodeType": "YulBlock",
"src": "423:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "440:1:1",
"nodeType": "YulLiteral",
"src": "440:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "443:1:1",
"nodeType": "YulLiteral",
"src": "443:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "433:6:1",
"nodeType": "YulIdentifier",
"src": "433:6:1"
},
"nativeSrc": "433:12:1",
"nodeType": "YulFunctionCall",
"src": "433:12:1"
},
"nativeSrc": "433:12:1",
"nodeType": "YulExpressionStatement",
"src": "433:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "334:117:1",
"nodeType": "YulFunctionDefinition",
"src": "334:117:1"
},
{
"body": {
"nativeSrc": "505:54:1",
"nodeType": "YulBlock",
"src": "505:54:1",
"statements": [
{
"nativeSrc": "515:38:1",
"nodeType": "YulAssignment",
"src": "515:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "533:5:1",
"nodeType": "YulIdentifier",
"src": "533:5:1"
},
{
"kind": "number",
"nativeSrc": "540:2:1",
"nodeType": "YulLiteral",
"src": "540:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "529:3:1",
"nodeType": "YulIdentifier",
"src": "529:3:1"
},
"nativeSrc": "529:14:1",
"nodeType": "YulFunctionCall",
"src": "529:14:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "549:2:1",
"nodeType": "YulLiteral",
"src": "549:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "545:3:1",
"nodeType": "YulIdentifier",
"src": "545:3:1"
},
"nativeSrc": "545:7:1",
"nodeType": "YulFunctionCall",
"src": "545:7:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "525:3:1",
"nodeType": "YulIdentifier",
"src": "525:3:1"
},
"nativeSrc": "525:28:1",
"nodeType": "YulFunctionCall",
"src": "525:28:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "515:6:1",
"nodeType": "YulIdentifier",
"src": "515:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "457:102:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "488:5:1",
"nodeType": "YulTypedName",
"src": "488:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "498:6:1",
"nodeType": "YulTypedName",
"src": "498:6:1",
"type": ""
}
],
"src": "457:102:1"
},
{
"body": {
"nativeSrc": "593:152:1",
"nodeType": "YulBlock",
"src": "593:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "610:1:1",
"nodeType": "YulLiteral",
"src": "610:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "613:77:1",
"nodeType": "YulLiteral",
"src": "613:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "603:6:1",
"nodeType": "YulIdentifier",
"src": "603:6:1"
},
"nativeSrc": "603:88:1",
"nodeType": "YulFunctionCall",
"src": "603:88:1"
},
"nativeSrc": "603:88:1",
"nodeType": "YulExpressionStatement",
"src": "603:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "707:1:1",
"nodeType": "YulLiteral",
"src": "707:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "710:4:1",
"nodeType": "YulLiteral",
"src": "710:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "700:6:1",
"nodeType": "YulIdentifier",
"src": "700:6:1"
},
"nativeSrc": "700:15:1",
"nodeType": "YulFunctionCall",
"src": "700:15:1"
},
"nativeSrc": "700:15:1",
"nodeType": "YulExpressionStatement",
"src": "700:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "731:1:1",
"nodeType": "YulLiteral",
"src": "731:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "734:4:1",
"nodeType": "YulLiteral",
"src": "734:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "724:6:1",
"nodeType": "YulIdentifier",
"src": "724:6:1"
},
"nativeSrc": "724:15:1",
"nodeType": "YulFunctionCall",
"src": "724:15:1"
},
"nativeSrc": "724:15:1",
"nodeType": "YulExpressionStatement",
"src": "724:15:1"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "565:180:1",
"nodeType": "YulFunctionDefinition",
"src": "565:180:1"
},
{
"body": {
"nativeSrc": "794:238:1",
"nodeType": "YulBlock",
"src": "794:238:1",
"statements": [
{
"nativeSrc": "804:58:1",
"nodeType": "YulVariableDeclaration",
"src": "804:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "826:6:1",
"nodeType": "YulIdentifier",
"src": "826:6:1"
},
{
"arguments": [
{
"name": "size",
"nativeSrc": "856:4:1",
"nodeType": "YulIdentifier",
"src": "856:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "834:21:1",
"nodeType": "YulIdentifier",
"src": "834:21:1"
},
"nativeSrc": "834:27:1",
"nodeType": "YulFunctionCall",
"src": "834:27:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "822:3:1",
"nodeType": "YulIdentifier",
"src": "822:3:1"
},
"nativeSrc": "822:40:1",
"nodeType": "YulFunctionCall",
"src": "822:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nativeSrc": "808:10:1",
"nodeType": "YulTypedName",
"src": "808:10:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "973:22:1",
"nodeType": "YulBlock",
"src": "973:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "975:16:1",
"nodeType": "YulIdentifier",
"src": "975:16:1"
},
"nativeSrc": "975:18:1",
"nodeType": "YulFunctionCall",
"src": "975:18:1"
},
"nativeSrc": "975:18:1",
"nodeType": "YulExpressionStatement",
"src": "975:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "916:10:1",
"nodeType": "YulIdentifier",
"src": "916:10:1"
},
{
"kind": "number",
"nativeSrc": "928:18:1",
"nodeType": "YulLiteral",
"src": "928:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "913:2:1",
"nodeType": "YulIdentifier",
"src": "913:2:1"
},
"nativeSrc": "913:34:1",
"nodeType": "YulFunctionCall",
"src": "913:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "952:10:1",
"nodeType": "YulIdentifier",
"src": "952:10:1"
},
{
"name": "memPtr",
"nativeSrc": "964:6:1",
"nodeType": "YulIdentifier",
"src": "964:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "949:2:1",
"nodeType": "YulIdentifier",
"src": "949:2:1"
},
"nativeSrc": "949:22:1",
"nodeType": "YulFunctionCall",
"src": "949:22:1"
}
],
"functionName": {
"name": "or",
"nativeSrc": "910:2:1",
"nodeType": "YulIdentifier",
"src": "910:2:1"
},
"nativeSrc": "910:62:1",
"nodeType": "YulFunctionCall",
"src": "910:62:1"
},
"nativeSrc": "907:88:1",
"nodeType": "YulIf",
"src": "907:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1011:2:1",
"nodeType": "YulLiteral",
"src": "1011:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nativeSrc": "1015:10:1",
"nodeType": "YulIdentifier",
"src": "1015:10:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1004:6:1",
"nodeType": "YulIdentifier",
"src": "1004:6:1"
},
"nativeSrc": "1004:22:1",
"nodeType": "YulFunctionCall",
"src": "1004:22:1"
},
"nativeSrc": "1004:22:1",
"nodeType": "YulExpressionStatement",
"src": "1004:22:1"
}
]
},
"name": "finalize_allocation",
"nativeSrc": "751:281:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "780:6:1",
"nodeType": "YulTypedName",
"src": "780:6:1",
"type": ""
},
{
"name": "size",
"nativeSrc": "788:4:1",
"nodeType": "YulTypedName",
"src": "788:4:1",
"type": ""
}
],
"src": "751:281:1"
},
{
"body": {
"nativeSrc": "1079:88:1",
"nodeType": "YulBlock",
"src": "1079:88:1",
"statements": [
{
"nativeSrc": "1089:30:1",
"nodeType": "YulAssignment",
"src": "1089:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nativeSrc": "1099:18:1",
"nodeType": "YulIdentifier",
"src": "1099:18:1"
},
"nativeSrc": "1099:20:1",
"nodeType": "YulFunctionCall",
"src": "1099:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "1089:6:1",
"nodeType": "YulIdentifier",
"src": "1089:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "1148:6:1",
"nodeType": "YulIdentifier",
"src": "1148:6:1"
},
{
"name": "size",
"nativeSrc": "1156:4:1",
"nodeType": "YulIdentifier",
"src": "1156:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nativeSrc": "1128:19:1",
"nodeType": "YulIdentifier",
"src": "1128:19:1"
},
"nativeSrc": "1128:33:1",
"nodeType": "YulFunctionCall",
"src": "1128:33:1"
},
"nativeSrc": "1128:33:1",
"nodeType": "YulExpressionStatement",
"src": "1128:33:1"
}
]
},
"name": "allocate_memory",
"nativeSrc": "1038:129:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nativeSrc": "1063:4:1",
"nodeType": "YulTypedName",
"src": "1063:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "1072:6:1",
"nodeType": "YulTypedName",
"src": "1072:6:1",
"type": ""
}
],
"src": "1038:129:1"
},
{
"body": {
"nativeSrc": "1255:229:1",
"nodeType": "YulBlock",
"src": "1255:229:1",
"statements": [
{
"body": {
"nativeSrc": "1360:22:1",
"nodeType": "YulBlock",
"src": "1360:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "1362:16:1",
"nodeType": "YulIdentifier",
"src": "1362:16:1"
},
"nativeSrc": "1362:18:1",
"nodeType": "YulFunctionCall",
"src": "1362:18:1"
},
"nativeSrc": "1362:18:1",
"nodeType": "YulExpressionStatement",
"src": "1362:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nativeSrc": "1332:6:1",
"nodeType": "YulIdentifier",
"src": "1332:6:1"
},
{
"kind": "number",
"nativeSrc": "1340:18:1",
"nodeType": "YulLiteral",
"src": "1340:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "1329:2:1",
"nodeType": "YulIdentifier",
"src": "1329:2:1"
},
"nativeSrc": "1329:30:1",
"nodeType": "YulFunctionCall",
"src": "1329:30:1"
},
"nativeSrc": "1326:56:1",
"nodeType": "YulIf",
"src": "1326:56:1"
},
{
"nativeSrc": "1392:25:1",
"nodeType": "YulAssignment",
"src": "1392:25:1",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "1404:6:1",
"nodeType": "YulIdentifier",
"src": "1404:6:1"
},
{
"kind": "number",
"nativeSrc": "1412:4:1",
"nodeType": "YulLiteral",
"src": "1412:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "1400:3:1",
"nodeType": "YulIdentifier",
"src": "1400:3:1"
},
"nativeSrc": "1400:17:1",
"nodeType": "YulFunctionCall",
"src": "1400:17:1"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "1392:4:1",
"nodeType": "YulIdentifier",
"src": "1392:4:1"
}
]
},
{
"nativeSrc": "1454:23:1",
"nodeType": "YulAssignment",
"src": "1454:23:1",
"value": {
"arguments": [
{
"name": "size",
"nativeSrc": "1466:4:1",
"nodeType": "YulIdentifier",
"src": "1466:4:1"
},
{
"kind": "number",
"nativeSrc": "1472:4:1",
"nodeType": "YulLiteral",
"src": "1472:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1462:3:1",
"nodeType": "YulIdentifier",
"src": "1462:3:1"
},
"nativeSrc": "1462:15:1",
"nodeType": "YulFunctionCall",
"src": "1462:15:1"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "1454:4:1",
"nodeType": "YulIdentifier",
"src": "1454:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_array$_t_bytes32_$dyn_memory_ptr",
"nativeSrc": "1173:311:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nativeSrc": "1239:6:1",
"nodeType": "YulTypedName",
"src": "1239:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nativeSrc": "1250:4:1",
"nodeType": "YulTypedName",
"src": "1250:4:1",
"type": ""
}
],
"src": "1173:311:1"
},
{
"body": {
"nativeSrc": "1579:28:1",
"nodeType": "YulBlock",
"src": "1579:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1596:1:1",
"nodeType": "YulLiteral",
"src": "1596:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1599:1:1",
"nodeType": "YulLiteral",
"src": "1599:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1589:6:1",
"nodeType": "YulIdentifier",
"src": "1589:6:1"
},
"nativeSrc": "1589:12:1",
"nodeType": "YulFunctionCall",
"src": "1589:12:1"
},
"nativeSrc": "1589:12:1",
"nodeType": "YulExpressionStatement",
"src": "1589:12:1"
}
]
},
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nativeSrc": "1490:117:1",
"nodeType": "YulFunctionDefinition",
"src": "1490:117:1"
},
{
"body": {
"nativeSrc": "1658:32:1",
"nodeType": "YulBlock",
"src": "1658:32:1",
"statements": [
{
"nativeSrc": "1668:16:1",
"nodeType": "YulAssignment",
"src": "1668:16:1",
"value": {
"name": "value",
"nativeSrc": "1679:5:1",
"nodeType": "YulIdentifier",
"src": "1679:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1668:7:1",
"nodeType": "YulIdentifier",
"src": "1668:7:1"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nativeSrc": "1613:77:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1640:5:1",
"nodeType": "YulTypedName",
"src": "1640:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1650:7:1",
"nodeType": "YulTypedName",
"src": "1650:7:1",
"type": ""
}
],
"src": "1613:77:1"
},
{
"body": {
"nativeSrc": "1739:79:1",
"nodeType": "YulBlock",
"src": "1739:79:1",
"statements": [
{
"body": {
"nativeSrc": "1796:16:1",
"nodeType": "YulBlock",
"src": "1796:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1805:1:1",
"nodeType": "YulLiteral",
"src": "1805:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1808:1:1",
"nodeType": "YulLiteral",
"src": "1808:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1798:6:1",
"nodeType": "YulIdentifier",
"src": "1798:6:1"
},
"nativeSrc": "1798:12:1",
"nodeType": "YulFunctionCall",
"src": "1798:12:1"
},
"nativeSrc": "1798:12:1",
"nodeType": "YulExpressionStatement",
"src": "1798:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1762:5:1",
"nodeType": "YulIdentifier",
"src": "1762:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1787:5:1",
"nodeType": "YulIdentifier",
"src": "1787:5:1"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nativeSrc": "1769:17:1",
"nodeType": "YulIdentifier",
"src": "1769:17:1"
},
"nativeSrc": "1769:24:1",
"nodeType": "YulFunctionCall",
"src": "1769:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "1759:2:1",
"nodeType": "YulIdentifier",
"src": "1759:2:1"
},
"nativeSrc": "1759:35:1",
"nodeType": "YulFunctionCall",
"src": "1759:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "1752:6:1",
"nodeType": "YulIdentifier",
"src": "1752:6:1"
},
"nativeSrc": "1752:43:1",
"nodeType": "YulFunctionCall",
"src": "1752:43:1"
},
"nativeSrc": "1749:63:1",
"nodeType": "YulIf",
"src": "1749:63:1"
}
]
},
"name": "validator_revert_t_bytes32",
"nativeSrc": "1696:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1732:5:1",
"nodeType": "YulTypedName",
"src": "1732:5:1",
"type": ""
}
],
"src": "1696:122:1"
},
{
"body": {
"nativeSrc": "1887:80:1",
"nodeType": "YulBlock",
"src": "1887:80:1",
"statements": [
{
"nativeSrc": "1897:22:1",
"nodeType": "YulAssignment",
"src": "1897:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "1912:6:1",
"nodeType": "YulIdentifier",
"src": "1912:6:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "1906:5:1",
"nodeType": "YulIdentifier",
"src": "1906:5:1"
},
"nativeSrc": "1906:13:1",
"nodeType": "YulFunctionCall",
"src": "1906:13:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "1897:5:1",
"nodeType": "YulIdentifier",
"src": "1897:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "1955:5:1",
"nodeType": "YulIdentifier",
"src": "1955:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bytes32",
"nativeSrc": "1928:26:1",
"nodeType": "YulIdentifier",
"src": "1928:26:1"
},
"nativeSrc": "1928:33:1",
"nodeType": "YulFunctionCall",
"src": "1928:33:1"
},
"nativeSrc": "1928:33:1",
"nodeType": "YulExpressionStatement",
"src": "1928:33:1"
}
]
},
"name": "abi_decode_t_bytes32_fromMemory",
"nativeSrc": "1824:143:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "1865:6:1",
"nodeType": "YulTypedName",
"src": "1865:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "1873:3:1",
"nodeType": "YulTypedName",
"src": "1873:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "1881:5:1",
"nodeType": "YulTypedName",
"src": "1881:5:1",
"type": ""
}
],
"src": "1824:143:1"
},
{
"body": {
"nativeSrc": "2103:619:1",
"nodeType": "YulBlock",
"src": "2103:619:1",
"statements": [
{
"nativeSrc": "2113:90:1",
"nodeType": "YulAssignment",
"src": "2113:90:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nativeSrc": "2195:6:1",
"nodeType": "YulIdentifier",
"src": "2195:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_array$_t_bytes32_$dyn_memory_ptr",
"nativeSrc": "2138:56:1",
"nodeType": "YulIdentifier",
"src": "2138:56:1"
},
"nativeSrc": "2138:64:1",
"nodeType": "YulFunctionCall",
"src": "2138:64:1"
}
],
"functionName": {
"name": "allocate_memory",
"nativeSrc": "2122:15:1",
"nodeType": "YulIdentifier",
"src": "2122:15:1"
},
"nativeSrc": "2122:81:1",
"nodeType": "YulFunctionCall",
"src": "2122:81:1"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "2113:5:1",
"nodeType": "YulIdentifier",
"src": "2113:5:1"
}
]
},
{
"nativeSrc": "2212:16:1",
"nodeType": "YulVariableDeclaration",
"src": "2212:16:1",
"value": {
"name": "array",
"nativeSrc": "2223:5:1",
"nodeType": "YulIdentifier",
"src": "2223:5:1"
},
"variables": [
{
"name": "dst",
"nativeSrc": "2216:3:1",
"nodeType": "YulTypedName",
"src": "2216:3:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nativeSrc": "2245:5:1",
"nodeType": "YulIdentifier",
"src": "2245:5:1"
},
{
"name": "length",
"nativeSrc": "2252:6:1",
"nodeType": "YulIdentifier",
"src": "2252:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2238:6:1",
"nodeType": "YulIdentifier",
"src": "2238:6:1"
},
"nativeSrc": "2238:21:1",
"nodeType": "YulFunctionCall",
"src": "2238:21:1"
},
"nativeSrc": "2238:21:1",
"nodeType": "YulExpressionStatement",
"src": "2238:21:1"
},
{
"nativeSrc": "2268:23:1",
"nodeType": "YulAssignment",
"src": "2268:23:1",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "2279:5:1",
"nodeType": "YulIdentifier",
"src": "2279:5:1"
},
{
"kind": "number",
"nativeSrc": "2286:4:1",
"nodeType": "YulLiteral",
"src": "2286:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2275:3:1",
"nodeType": "YulIdentifier",
"src": "2275:3:1"
},
"nativeSrc": "2275:16:1",
"nodeType": "YulFunctionCall",
"src": "2275:16:1"
},
"variableNames": [
{
"name": "dst",
"nativeSrc": "2268:3:1",
"nodeType": "YulIdentifier",
"src": "2268:3:1"
}
]
},
{
"nativeSrc": "2301:44:1",
"nodeType": "YulVariableDeclaration",
"src": "2301:44:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "2319:6:1",
"nodeType": "YulIdentifier",
"src": "2319:6:1"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "2331:6:1",
"nodeType": "YulIdentifier",
"src": "2331:6:1"
},
{
"kind": "number",
"nativeSrc": "2339:4:1",
"nodeType": "YulLiteral",
"src": "2339:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "2327:3:1",
"nodeType": "YulIdentifier",
"src": "2327:3:1"
},
"nativeSrc": "2327:17:1",
"nodeType": "YulFunctionCall",
"src": "2327:17:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2315:3:1",
"nodeType": "YulIdentifier",
"src": "2315:3:1"
},
"nativeSrc": "2315:30:1",
"nodeType": "YulFunctionCall",
"src": "2315:30:1"
},
"variables": [
{
"name": "srcEnd",
"nativeSrc": "2305:6:1",
"nodeType": "YulTypedName",
"src": "2305:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "2373:103:1",
"nodeType": "YulBlock",
"src": "2373:103:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef",
"nativeSrc": "2387:77:1",
"nodeType": "YulIdentifier",
"src": "2387:77:1"
},
"nativeSrc": "2387:79:1",
"nodeType": "YulFunctionCall",
"src": "2387:79:1"
},
"nativeSrc": "2387:79:1",
"nodeType": "YulExpressionStatement",
"src": "2387:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "srcEnd",
"nativeSrc": "2360:6:1",
"nodeType": "YulIdentifier",
"src": "2360:6:1"
},
{
"name": "end",
"nativeSrc": "2368:3:1",
"nodeType": "YulIdentifier",
"src": "2368:3:1"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2357:2:1",
"nodeType": "YulIdentifier",
"src": "2357:2:1"
},
"nativeSrc": "2357:15:1",
"nodeType": "YulFunctionCall",
"src": "2357:15:1"
},
"nativeSrc": "2354:122:1",
"nodeType": "YulIf",
"src": "2354:122:1"
},
{
"body": {
"nativeSrc": "2561:155:1",
"nodeType": "YulBlock",
"src": "2561:155:1",
"statements": [
{
"nativeSrc": "2576:21:1",
"nodeType": "YulVariableDeclaration",
"src": "2576:21:1",
"value": {
"name": "src",
"nativeSrc": "2594:3:1",
"nodeType": "YulIdentifier",
"src": "2594:3:1"
},
"variables": [
{
"name": "elementPos",
"nativeSrc": "2580:10:1",
"nodeType": "YulTypedName",
"src": "2580:10:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "2618:3:1",
"nodeType": "YulIdentifier",
"src": "2618:3:1"
},
{
"arguments": [
{
"name": "elementPos",
"nativeSrc": "2655:10:1",
"nodeType": "YulIdentifier",
"src": "2655:10:1"
},
{
"name": "end",
"nativeSrc": "2667:3:1",
"nodeType": "YulIdentifier",
"src": "2667:3:1"
}
],
"functionName": {
"name": "abi_decode_t_bytes32_fromMemory",
"nativeSrc": "2623:31:1",
"nodeType": "YulIdentifier",
"src": "2623:31:1"
},
"nativeSrc": "2623:48:1",
"nodeType": "YulFunctionCall",
"src": "2623:48:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2611:6:1",
"nodeType": "YulIdentifier",
"src": "2611:6:1"
},
"nativeSrc": "2611:61:1",
"nodeType": "YulFunctionCall",
"src": "2611:61:1"
},
"nativeSrc": "2611:61:1",
"nodeType": "YulExpressionStatement",
"src": "2611:61:1"
},
{
"nativeSrc": "2685:21:1",
"nodeType": "YulAssignment",
"src": "2685:21:1",
"value": {
"arguments": [
{
"name": "dst",
"nativeSrc": "2696:3:1",
"nodeType": "YulIdentifier",
"src": "2696:3:1"
},
{
"kind": "number",
"nativeSrc": "2701:4:1",
"nodeType": "YulLiteral",
"src": "2701:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2692:3:1",
"nodeType": "YulIdentifier",
"src": "2692:3:1"
},
"nativeSrc": "2692:14:1",
"nodeType": "YulFunctionCall",
"src": "2692:14:1"
},
"variableNames": [
{
"name": "dst",
"nativeSrc": "2685:3:1",
"nodeType": "YulIdentifier",
"src": "2685:3:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "src",
"nativeSrc": "2514:3:1",
"nodeType": "YulIdentifier",
"src": "2514:3:1"
},
{
"name": "srcEnd",
"nativeSrc": "2519:6:1",
"nodeType": "YulIdentifier",
"src": "2519:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "2511:2:1",
"nodeType": "YulIdentifier",
"src": "2511:2:1"
},
"nativeSrc": "2511:15:1",
"nodeType": "YulFunctionCall",
"src": "2511:15:1"
},
"nativeSrc": "2485:231:1",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "2527:25:1",
"nodeType": "YulBlock",
"src": "2527:25:1",
"statements": [
{
"nativeSrc": "2529:21:1",
"nodeType": "YulAssignment",
"src": "2529:21:1",
"value": {
"arguments": [
{
"name": "src",
"nativeSrc": "2540:3:1",
"nodeType": "YulIdentifier",
"src": "2540:3:1"
},
{
"kind": "number",
"nativeSrc": "2545:4:1",
"nodeType": "YulLiteral",
"src": "2545:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2536:3:1",
"nodeType": "YulIdentifier",
"src": "2536:3:1"
},
"nativeSrc": "2536:14:1",
"nodeType": "YulFunctionCall",
"src": "2536:14:1"
},
"variableNames": [
{
"name": "src",
"nativeSrc": "2529:3:1",
"nodeType": "YulIdentifier",
"src": "2529:3:1"
}
]
}
]
},
"pre": {
"nativeSrc": "2489:21:1",
"nodeType": "YulBlock",
"src": "2489:21:1",
"statements": [
{
"nativeSrc": "2491:17:1",
"nodeType": "YulVariableDeclaration",
"src": "2491:17:1",
"value": {
"name": "offset",
"nativeSrc": "2502:6:1",
"nodeType": "YulIdentifier",
"src": "2502:6:1"
},
"variables": [
{
"name": "src",
"nativeSrc": "2495:3:1",
"nodeType": "YulTypedName",
"src": "2495:3:1",
"type": ""
}
]
}
]
},
"src": "2485:231:1"
}
]
},
"name": "abi_decode_available_length_t_array$_t_bytes32_$dyn_memory_ptr_fromMemory",
"nativeSrc": "1990:732:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "2073:6:1",
"nodeType": "YulTypedName",
"src": "2073:6:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "2081:6:1",
"nodeType": "YulTypedName",
"src": "2081:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "2089:3:1",
"nodeType": "YulTypedName",
"src": "2089:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "2097:5:1",
"nodeType": "YulTypedName",
"src": "2097:5:1",
"type": ""
}
],
"src": "1990:732:1"
},
{
"body": {
"nativeSrc": "2833:297:1",
"nodeType": "YulBlock",
"src": "2833:297:1",
"statements": [
{
"body": {
"nativeSrc": "2882:83:1",
"nodeType": "YulBlock",
"src": "2882:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "2884:77:1",
"nodeType": "YulIdentifier",
"src": "2884:77:1"
},
"nativeSrc": "2884:79:1",
"nodeType": "YulFunctionCall",
"src": "2884:79:1"
},
"nativeSrc": "2884:79:1",
"nodeType": "YulExpressionStatement",
"src": "2884:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "2861:6:1",
"nodeType": "YulIdentifier",
"src": "2861:6:1"
},
{
"kind": "number",
"nativeSrc": "2869:4:1",
"nodeType": "YulLiteral",
"src": "2869:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2857:3:1",
"nodeType": "YulIdentifier",
"src": "2857:3:1"
},
"nativeSrc": "2857:17:1",
"nodeType": "YulFunctionCall",
"src": "2857:17:1"
},
{
"name": "end",
"nativeSrc": "2876:3:1",
"nodeType": "YulIdentifier",
"src": "2876:3:1"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "2853:3:1",
"nodeType": "YulIdentifier",
"src": "2853:3:1"
},
"nativeSrc": "2853:27:1",
"nodeType": "YulFunctionCall",
"src": "2853:27:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2846:6:1",
"nodeType": "YulIdentifier",
"src": "2846:6:1"
},
"nativeSrc": "2846:35:1",
"nodeType": "YulFunctionCall",
"src": "2846:35:1"
},
"nativeSrc": "2843:122:1",
"nodeType": "YulIf",
"src": "2843:122:1"
},
{
"nativeSrc": "2974:27:1",
"nodeType": "YulVariableDeclaration",
"src": "2974:27:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "2994:6:1",
"nodeType": "YulIdentifier",
"src": "2994:6:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "2988:5:1",
"nodeType": "YulIdentifier",
"src": "2988:5:1"
},
"nativeSrc": "2988:13:1",
"nodeType": "YulFunctionCall",
"src": "2988:13:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "2978:6:1",
"nodeType": "YulTypedName",
"src": "2978:6:1",
"type": ""
}
]
},
{
"nativeSrc": "3010:114:1",
"nodeType": "YulAssignment",
"src": "3010:114:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "3097:6:1",
"nodeType": "YulIdentifier",
"src": "3097:6:1"
},
{
"kind": "number",
"nativeSrc": "3105:4:1",
"nodeType": "YulLiteral",
"src": "3105:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3093:3:1",
"nodeType": "YulIdentifier",
"src": "3093:3:1"
},
"nativeSrc": "3093:17:1",
"nodeType": "YulFunctionCall",
"src": "3093:17:1"
},
{
"name": "length",
"nativeSrc": "3112:6:1",
"nodeType": "YulIdentifier",
"src": "3112:6:1"
},
{
"name": "end",
"nativeSrc": "3120:3:1",
"nodeType": "YulIdentifier",
"src": "3120:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_array$_t_bytes32_$dyn_memory_ptr_fromMemory",
"nativeSrc": "3019:73:1",
"nodeType": "YulIdentifier",
"src": "3019:73:1"
},
"nativeSrc": "3019:105:1",
"nodeType": "YulFunctionCall",
"src": "3019:105:1"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "3010:5:1",
"nodeType": "YulIdentifier",
"src": "3010:5:1"
}
]
}
]
},
"name": "abi_decode_t_array$_t_bytes32_$dyn_memory_ptr_fromMemory",
"nativeSrc": "2745:385:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "2811:6:1",
"nodeType": "YulTypedName",
"src": "2811:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "2819:3:1",
"nodeType": "YulTypedName",
"src": "2819:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "2827:5:1",
"nodeType": "YulTypedName",
"src": "2827:5:1",
"type": ""
}
],
"src": "2745:385:1"
},
{
"body": {
"nativeSrc": "3238:452:1",
"nodeType": "YulBlock",
"src": "3238:452:1",
"statements": [
{
"body": {
"nativeSrc": "3284:83:1",
"nodeType": "YulBlock",
"src": "3284:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "3286:77:1",
"nodeType": "YulIdentifier",
"src": "3286:77:1"
},
"nativeSrc": "3286:79:1",
"nodeType": "YulFunctionCall",
"src": "3286:79:1"
},
"nativeSrc": "3286:79:1",
"nodeType": "YulExpressionStatement",
"src": "3286:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "3259:7:1",
"nodeType": "YulIdentifier",
"src": "3259:7:1"
},
{
"name": "headStart",
"nativeSrc": "3268:9:1",
"nodeType": "YulIdentifier",
"src": "3268:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3255:3:1",
"nodeType": "YulIdentifier",
"src": "3255:3:1"
},
"nativeSrc": "3255:23:1",
"nodeType": "YulFunctionCall",
"src": "3255:23:1"
},
{
"kind": "number",
"nativeSrc": "3280:2:1",
"nodeType": "YulLiteral",
"src": "3280:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3251:3:1",
"nodeType": "YulIdentifier",
"src": "3251:3:1"
},
"nativeSrc": "3251:32:1",
"nodeType": "YulFunctionCall",
"src": "3251:32:1"
},
"nativeSrc": "3248:119:1",
"nodeType": "YulIf",
"src": "3248:119:1"
},
{
"nativeSrc": "3377:306:1",
"nodeType": "YulBlock",
"src": "3377:306:1",
"statements": [
{
"nativeSrc": "3392:38:1",
"nodeType": "YulVariableDeclaration",
"src": "3392:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3416:9:1",
"nodeType": "YulIdentifier",
"src": "3416:9:1"
},
{
"kind": "number",
"nativeSrc": "3427:1:1",
"nodeType": "YulLiteral",
"src": "3427:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3412:3:1",
"nodeType": "YulIdentifier",
"src": "3412:3:1"
},
"nativeSrc": "3412:17:1",
"nodeType": "YulFunctionCall",
"src": "3412:17:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "3406:5:1",
"nodeType": "YulIdentifier",
"src": "3406:5:1"
},
"nativeSrc": "3406:24:1",
"nodeType": "YulFunctionCall",
"src": "3406:24:1"
},
"variables": [
{
"name": "offset",
"nativeSrc": "3396:6:1",
"nodeType": "YulTypedName",
"src": "3396:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3477:83:1",
"nodeType": "YulBlock",
"src": "3477:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "3479:77:1",
"nodeType": "YulIdentifier",
"src": "3479:77:1"
},
"nativeSrc": "3479:79:1",
"nodeType": "YulFunctionCall",
"src": "3479:79:1"
},
"nativeSrc": "3479:79:1",
"nodeType": "YulExpressionStatement",
"src": "3479:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3449:6:1",
"nodeType": "YulIdentifier",
"src": "3449:6:1"
},
{
"kind": "number",
"nativeSrc": "3457:18:1",
"nodeType": "YulLiteral",
"src": "3457:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "3446:2:1",
"nodeType": "YulIdentifier",
"src": "3446:2:1"
},
"nativeSrc": "3446:30:1",
"nodeType": "YulFunctionCall",
"src": "3446:30:1"
},
"nativeSrc": "3443:117:1",
"nodeType": "YulIf",
"src": "3443:117:1"
},
{
"nativeSrc": "3574:99:1",
"nodeType": "YulAssignment",
"src": "3574:99:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3645:9:1",
"nodeType": "YulIdentifier",
"src": "3645:9:1"
},
{
"name": "offset",
"nativeSrc": "3656:6:1",
"nodeType": "YulIdentifier",
"src": "3656:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3641:3:1",
"nodeType": "YulIdentifier",
"src": "3641:3:1"
},
"nativeSrc": "3641:22:1",
"nodeType": "YulFunctionCall",
"src": "3641:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "3665:7:1",
"nodeType": "YulIdentifier",
"src": "3665:7:1"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_bytes32_$dyn_memory_ptr_fromMemory",
"nativeSrc": "3584:56:1",
"nodeType": "YulIdentifier",
"src": "3584:56:1"
},
"nativeSrc": "3584:89:1",
"nodeType": "YulFunctionCall",
"src": "3584:89:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "3574:6:1",
"nodeType": "YulIdentifier",
"src": "3574:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_bytes32_$dyn_memory_ptr_fromMemory",
"nativeSrc": "3136:554:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3208:9:1",
"nodeType": "YulTypedName",
"src": "3208:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "3219:7:1",
"nodeType": "YulTypedName",
"src": "3219:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "3231:6:1",
"nodeType": "YulTypedName",
"src": "3231:6:1",
"type": ""
}
],
"src": "3136:554:1"
},
{
"body": {
"nativeSrc": "3724:152:1",
"nodeType": "YulBlock",
"src": "3724:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3741:1:1",
"nodeType": "YulLiteral",
"src": "3741:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "3744:77:1",
"nodeType": "YulLiteral",
"src": "3744:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3734:6:1",
"nodeType": "YulIdentifier",
"src": "3734:6:1"
},
"nativeSrc": "3734:88:1",
"nodeType": "YulFunctionCall",
"src": "3734:88:1"
},
"nativeSrc": "3734:88:1",
"nodeType": "YulExpressionStatement",
"src": "3734:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3838:1:1",
"nodeType": "YulLiteral",
"src": "3838:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "3841:4:1",
"nodeType": "YulLiteral",
"src": "3841:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3831:6:1",
"nodeType": "YulIdentifier",
"src": "3831:6:1"
},
"nativeSrc": "3831:15:1",
"nodeType": "YulFunctionCall",
"src": "3831:15:1"
},
"nativeSrc": "3831:15:1",
"nodeType": "YulExpressionStatement",
"src": "3831:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "3862:1:1",
"nodeType": "YulLiteral",
"src": "3862:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "3865:4:1",
"nodeType": "YulLiteral",
"src": "3865:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "3855:6:1",
"nodeType": "YulIdentifier",
"src": "3855:6:1"
},
"nativeSrc": "3855:15:1",
"nodeType": "YulFunctionCall",
"src": "3855:15:1"
},
"nativeSrc": "3855:15:1",
"nodeType": "YulExpressionStatement",
"src": "3855:15:1"
}
]
},
"name": "panic_error_0x32",
"nativeSrc": "3696:180:1",
"nodeType": "YulFunctionDefinition",
"src": "3696:180: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 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_array$_t_bytes32_$dyn_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := mul(length, 0x20)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes32_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes32(value)\n }\n\n // bytes32[]\n function abi_decode_available_length_t_array$_t_bytes32_$dyn_memory_ptr_fromMemory(offset, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_array$_t_bytes32_$dyn_memory_ptr(length))\n let dst := array\n\n mstore(array, length)\n dst := add(array, 0x20)\n\n let srcEnd := add(offset, mul(length, 0x20))\n if gt(srcEnd, end) {\n revert_error_81385d8c0b31fffe14be1da910c8bd3a80be4cfa248e04f42ec0faea3132a8ef()\n }\n for { let src := offset } lt(src, srcEnd) { src := add(src, 0x20) }\n {\n\n let elementPos := src\n\n mstore(dst, abi_decode_t_bytes32_fromMemory(elementPos, end))\n dst := add(dst, 0x20)\n }\n }\n\n // bytes32[]\n function abi_decode_t_array$_t_bytes32_$dyn_memory_ptr_fromMemory(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := mload(offset)\n array := abi_decode_available_length_t_array$_t_bytes32_$dyn_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_array$_t_bytes32_$dyn_memory_ptr_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := mload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_array$_t_bytes32_$dyn_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b5060405161128c38038061128c833981810160405281019061003191906102f2565b335f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001805f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01819055505f5b815181101561015757600260405180604001604052808484815181106100ff576100fe610339565b5b602002602001015181526020015f815250908060018154018082558091505060019003905f5260205f2090600202015f909190919091505f820151815f015560208201518160010155505080806001019150506100d6565b5050610366565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6101b982610173565b810181811067ffffffffffffffff821117156101d8576101d7610183565b5b80604052505050565b5f6101ea61015e565b90506101f682826101b0565b919050565b5f67ffffffffffffffff82111561021557610214610183565b5b602082029050602081019050919050565b5f80fd5b5f819050919050565b61023c8161022a565b8114610246575f80fd5b50565b5f8151905061025781610233565b92915050565b5f61026f61026a846101fb565b6101e1565b9050808382526020820190506020840283018581111561029257610291610226565b5b835b818110156102bb57806102a78882610249565b845260208401935050602081019050610294565b5050509392505050565b5f82601f8301126102d9576102d861016f565b5b81516102e984826020860161025d565b91505092915050565b5f6020828403121561030757610306610167565b5b5f82015167ffffffffffffffff8111156103245761032361016b565b5b610330848285016102c5565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b610f19806103735f395ff3fe608060405234801561000f575f80fd5b5060043610610086575f3560e01c8063609ff1bd11610059578063609ff1bd146101115780639e7b8d611461012f578063a3ec138d1461014b578063e2ba53f01461017e57610086565b80630121b93f1461008a578063013cf08b146100a65780632e4176cf146100d75780635c19a95c146100f5575b5f80fd5b6100a4600480360381019061009f9190610993565b61019c565b005b6100c060048036038101906100bb9190610993565b6102d7565b6040516100ce9291906109e5565b60405180910390f35b6100df610306565b6040516100ec9190610a4b565b60405180910390f35b61010f600480360381019061010a9190610a8e565b610329565b005b6101196106ae565b6040516101269190610ab9565b60405180910390f35b61014960048036038101906101449190610a8e565b610729565b005b61016560048036038101906101609190610a8e565b6108d4565b6040516101759493929190610aec565b60405180910390f35b61018661092c565b6040516101939190610b2f565b60405180910390f35b5f60015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f815f015403610221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021890610ba2565b60405180910390fd5b806001015f9054906101000a900460ff1615610272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026990610c0a565b60405180910390fd5b6001816001015f6101000a81548160ff021916908315150217905550818160020181905550805f0154600283815481106102af576102ae610c28565b5b905f5260205f2090600202016001015f8282546102cc9190610c82565b925050819055505050565b600281815481106102e6575f80fd5b905f5260205f2090600202015f91509050805f0154908060010154905082565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209050806001015f9054906101000a900460ff16156103ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b190610cff565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041f90610d67565b60405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff1660015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060010160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105925760015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060010160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691503373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361058d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058490610dcf565b60405180910390fd5b610429565b6001816001015f6101000a81548160ff021916908315150217905550818160010160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209050806001015f9054906101000a900460ff161561068c57815f0154600282600201548154811061066357610662610c28565b5b905f5260205f2090600202016001015f8282546106809190610c82565b925050819055506106a9565b815f0154815f015f8282546106a19190610c82565b925050819055505b505050565b5f805f90505f5b6002805490508110156107245781600282815481106106d7576106d6610c28565b5b905f5260205f209060020201600101541115610717576002818154811061070157610700610c28565b5b905f5260205f2090600202016001015491508092505b80806001019150506106b5565b505090565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ad90610e5d565b60405180910390fd5b60015f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001015f9054906101000a900460ff1615610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a90610ec5565b60405180910390fd5b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01541461088d575f80fd5b6001805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f018190555050565b6001602052805f5260405f205f91509050805f015490806001015f9054906101000a900460ff16908060010160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154905084565b5f60026109376106ae565b8154811061094857610947610c28565b5b905f5260205f2090600202015f0154905090565b5f80fd5b5f819050919050565b61097281610960565b811461097c575f80fd5b50565b5f8135905061098d81610969565b92915050565b5f602082840312156109a8576109a761095c565b5b5f6109b58482850161097f565b91505092915050565b5f819050919050565b6109d0816109be565b82525050565b6109df81610960565b82525050565b5f6040820190506109f85f8301856109c7565b610a0560208301846109d6565b9392505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610a3582610a0c565b9050919050565b610a4581610a2b565b82525050565b5f602082019050610a5e5f830184610a3c565b92915050565b610a6d81610a2b565b8114610a77575f80fd5b50565b5f81359050610a8881610a64565b92915050565b5f60208284031215610aa357610aa261095c565b5b5f610ab084828501610a7a565b91505092915050565b5f602082019050610acc5f8301846109d6565b92915050565b5f8115159050919050565b610ae681610ad2565b82525050565b5f608082019050610aff5f8301876109d6565b610b0c6020830186610add565b610b196040830185610a3c565b610b2660608301846109d6565b95945050505050565b5f602082019050610b425f8301846109c7565b92915050565b5f82825260208201905092915050565b7f486173206e6f20726967687420746f20766f74650000000000000000000000005f82015250565b5f610b8c601483610b48565b9150610b9782610b58565b602082019050919050565b5f6020820190508181035f830152610bb981610b80565b9050919050565b7f416c726561647920766f7465642e0000000000000000000000000000000000005f82015250565b5f610bf4600e83610b48565b9150610bff82610bc0565b602082019050919050565b5f6020820190508181035f830152610c2181610be8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610c8c82610960565b9150610c9783610960565b9250828201905080821115610caf57610cae610c55565b5b92915050565b7f596f7520616c726561647920766f7465642e00000000000000000000000000005f82015250565b5f610ce9601283610b48565b9150610cf482610cb5565b602082019050919050565b5f6020820190508181035f830152610d1681610cdd565b9050919050565b7f53656c662d64656c65676174696f6e20697320646973616c6c6f7765642e00005f82015250565b5f610d51601e83610b48565b9150610d5c82610d1d565b602082019050919050565b5f6020820190508181035f830152610d7e81610d45565b9050919050565b7f466f756e64206c6f6f7020696e2064656c65676174696f6e2e000000000000005f82015250565b5f610db9601983610b48565b9150610dc482610d85565b602082019050919050565b5f6020820190508181035f830152610de681610dad565b9050919050565b7f4f6e6c79206368616972706572736f6e2063616e2067697665207269676874205f8201527f746f20766f74652e000000000000000000000000000000000000000000000000602082015250565b5f610e47602883610b48565b9150610e5282610ded565b604082019050919050565b5f6020820190508181035f830152610e7481610e3b565b9050919050565b7f54686520766f74657220616c726561647920766f7465642e00000000000000005f82015250565b5f610eaf601883610b48565b9150610eba82610e7b565b602082019050919050565b5f6020820190508181035f830152610edc81610ea3565b905091905056fea2646970667358221220f54b5207dbecf2232d76d381a97ef69853b60ed41fd1dad273e187e9d66493f964736f6c634300081a0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH2 0x128C CODESIZE SUB DUP1 PUSH2 0x128C DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH2 0x31 SWAP2 SWAP1 PUSH2 0x2F2 JUMP JUMPDEST CALLER PUSH0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x1 DUP1 PUSH0 DUP1 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD DUP2 SWAP1 SSTORE POP PUSH0 JUMPDEST DUP2 MLOAD DUP2 LT ISZERO PUSH2 0x157 JUMPI PUSH1 0x2 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP5 DUP5 DUP2 MLOAD DUP2 LT PUSH2 0xFF JUMPI PUSH2 0xFE PUSH2 0x339 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SSTORE PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE POP POP DUP1 DUP1 PUSH1 0x1 ADD SWAP2 POP POP PUSH2 0xD6 JUMP JUMPDEST POP POP PUSH2 0x366 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x1B9 DUP3 PUSH2 0x173 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1D8 JUMPI PUSH2 0x1D7 PUSH2 0x183 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1EA PUSH2 0x15E JUMP JUMPDEST SWAP1 POP PUSH2 0x1F6 DUP3 DUP3 PUSH2 0x1B0 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x215 JUMPI PUSH2 0x214 PUSH2 0x183 JUMP JUMPDEST JUMPDEST PUSH1 0x20 DUP3 MUL SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x23C DUP2 PUSH2 0x22A JUMP JUMPDEST DUP2 EQ PUSH2 0x246 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP PUSH2 0x257 DUP2 PUSH2 0x233 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x26F PUSH2 0x26A DUP5 PUSH2 0x1FB JUMP JUMPDEST PUSH2 0x1E1 JUMP JUMPDEST SWAP1 POP DUP1 DUP4 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH1 0x20 DUP5 MUL DUP4 ADD DUP6 DUP2 GT ISZERO PUSH2 0x292 JUMPI PUSH2 0x291 PUSH2 0x226 JUMP JUMPDEST JUMPDEST DUP4 JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x2BB JUMPI DUP1 PUSH2 0x2A7 DUP9 DUP3 PUSH2 0x249 JUMP JUMPDEST DUP5 MSTORE PUSH1 0x20 DUP5 ADD SWAP4 POP POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x294 JUMP JUMPDEST POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x2D9 JUMPI PUSH2 0x2D8 PUSH2 0x16F JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH2 0x2E9 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x25D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x307 JUMPI PUSH2 0x306 PUSH2 0x167 JUMP JUMPDEST JUMPDEST PUSH0 DUP3 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x324 JUMPI PUSH2 0x323 PUSH2 0x16B JUMP JUMPDEST JUMPDEST PUSH2 0x330 DUP5 DUP3 DUP6 ADD PUSH2 0x2C5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0xF19 DUP1 PUSH2 0x373 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x86 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x609FF1BD GT PUSH2 0x59 JUMPI DUP1 PUSH4 0x609FF1BD EQ PUSH2 0x111 JUMPI DUP1 PUSH4 0x9E7B8D61 EQ PUSH2 0x12F JUMPI DUP1 PUSH4 0xA3EC138D EQ PUSH2 0x14B JUMPI DUP1 PUSH4 0xE2BA53F0 EQ PUSH2 0x17E JUMPI PUSH2 0x86 JUMP JUMPDEST DUP1 PUSH4 0x121B93F EQ PUSH2 0x8A JUMPI DUP1 PUSH4 0x13CF08B EQ PUSH2 0xA6 JUMPI DUP1 PUSH4 0x2E4176CF EQ PUSH2 0xD7 JUMPI DUP1 PUSH4 0x5C19A95C EQ PUSH2 0xF5 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xA4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x9F SWAP2 SWAP1 PUSH2 0x993 JUMP JUMPDEST PUSH2 0x19C JUMP JUMPDEST STOP JUMPDEST PUSH2 0xC0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xBB SWAP2 SWAP1 PUSH2 0x993 JUMP JUMPDEST PUSH2 0x2D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xCE SWAP3 SWAP2 SWAP1 PUSH2 0x9E5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xDF PUSH2 0x306 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xEC SWAP2 SWAP1 PUSH2 0xA4B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x10A SWAP2 SWAP1 PUSH2 0xA8E JUMP JUMPDEST PUSH2 0x329 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x119 PUSH2 0x6AE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x126 SWAP2 SWAP1 PUSH2 0xAB9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x149 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x144 SWAP2 SWAP1 PUSH2 0xA8E JUMP JUMPDEST PUSH2 0x729 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x165 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x160 SWAP2 SWAP1 PUSH2 0xA8E JUMP JUMPDEST PUSH2 0x8D4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x175 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xAEC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x186 PUSH2 0x92C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x193 SWAP2 SWAP1 PUSH2 0xB2F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH0 PUSH1 0x1 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SWAP1 POP PUSH0 DUP2 PUSH0 ADD SLOAD SUB PUSH2 0x221 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x218 SWAP1 PUSH2 0xBA2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x272 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x269 SWAP1 PUSH2 0xC0A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x1 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 DUP2 PUSH1 0x2 ADD DUP2 SWAP1 SSTORE POP DUP1 PUSH0 ADD SLOAD PUSH1 0x2 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x2AF JUMPI PUSH2 0x2AE PUSH2 0xC28 JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x1 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x2CC SWAP2 SWAP1 PUSH2 0xC82 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x2E6 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH0 SWAP2 POP SWAP1 POP DUP1 PUSH0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD SLOAD SWAP1 POP DUP3 JUMP JUMPDEST PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SWAP1 POP DUP1 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x3BA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3B1 SWAP1 PUSH2 0xCFF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x428 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x41F SWAP1 PUSH2 0xD67 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x592 JUMPI PUSH1 0x1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP2 POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x58D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x584 SWAP1 PUSH2 0xDCF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x429 JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x1 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 DUP2 PUSH1 0x1 ADD PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH0 PUSH1 0x1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SWAP1 POP DUP1 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x68C JUMPI DUP2 PUSH0 ADD SLOAD PUSH1 0x2 DUP3 PUSH1 0x2 ADD SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x663 JUMPI PUSH2 0x662 PUSH2 0xC28 JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x1 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x680 SWAP2 SWAP1 PUSH2 0xC82 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x6A9 JUMP JUMPDEST DUP2 PUSH0 ADD SLOAD DUP2 PUSH0 ADD PUSH0 DUP3 DUP3 SLOAD PUSH2 0x6A1 SWAP2 SWAP1 PUSH2 0xC82 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 SWAP1 POP PUSH0 JUMPDEST PUSH1 0x2 DUP1 SLOAD SWAP1 POP DUP2 LT ISZERO PUSH2 0x724 JUMPI DUP2 PUSH1 0x2 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x6D7 JUMPI PUSH2 0x6D6 PUSH2 0xC28 JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x1 ADD SLOAD GT ISZERO PUSH2 0x717 JUMPI PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x701 JUMPI PUSH2 0x700 PUSH2 0xC28 JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH1 0x1 ADD SLOAD SWAP2 POP DUP1 SWAP3 POP JUMPDEST DUP1 DUP1 PUSH1 0x1 ADD SWAP2 POP POP PUSH2 0x6B5 JUMP JUMPDEST POP POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x7B6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7AD SWAP1 PUSH2 0xE5D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 PUSH0 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x843 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x83A SWAP1 PUSH2 0xEC5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD SLOAD EQ PUSH2 0x88D JUMPI PUSH0 DUP1 REVERT JUMPDEST PUSH1 0x1 DUP1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP1 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH0 SWAP2 POP SWAP1 POP DUP1 PUSH0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 DUP1 PUSH1 0x1 ADD PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 DUP1 PUSH1 0x2 ADD SLOAD SWAP1 POP DUP5 JUMP JUMPDEST PUSH0 PUSH1 0x2 PUSH2 0x937 PUSH2 0x6AE JUMP JUMPDEST DUP2 SLOAD DUP2 LT PUSH2 0x948 JUMPI PUSH2 0x947 PUSH2 0xC28 JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x2 MUL ADD PUSH0 ADD SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x972 DUP2 PUSH2 0x960 JUMP JUMPDEST DUP2 EQ PUSH2 0x97C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x98D DUP2 PUSH2 0x969 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x9A8 JUMPI PUSH2 0x9A7 PUSH2 0x95C JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x9B5 DUP5 DUP3 DUP6 ADD PUSH2 0x97F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9D0 DUP2 PUSH2 0x9BE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x9DF DUP2 PUSH2 0x960 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x9F8 PUSH0 DUP4 ADD DUP6 PUSH2 0x9C7 JUMP JUMPDEST PUSH2 0xA05 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x9D6 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xA35 DUP3 PUSH2 0xA0C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA45 DUP2 PUSH2 0xA2B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA5E PUSH0 DUP4 ADD DUP5 PUSH2 0xA3C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xA6D DUP2 PUSH2 0xA2B JUMP JUMPDEST DUP2 EQ PUSH2 0xA77 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xA88 DUP2 PUSH2 0xA64 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xAA3 JUMPI PUSH2 0xAA2 PUSH2 0x95C JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xAB0 DUP5 DUP3 DUP6 ADD PUSH2 0xA7A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xACC PUSH0 DUP4 ADD DUP5 PUSH2 0x9D6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xAE6 DUP2 PUSH2 0xAD2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0xAFF PUSH0 DUP4 ADD DUP8 PUSH2 0x9D6 JUMP JUMPDEST PUSH2 0xB0C PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0xADD JUMP JUMPDEST PUSH2 0xB19 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0xA3C JUMP JUMPDEST PUSH2 0xB26 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x9D6 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB42 PUSH0 DUP4 ADD DUP5 PUSH2 0x9C7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x486173206E6F20726967687420746F20766F7465000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xB8C PUSH1 0x14 DUP4 PUSH2 0xB48 JUMP JUMPDEST SWAP2 POP PUSH2 0xB97 DUP3 PUSH2 0xB58 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xBB9 DUP2 PUSH2 0xB80 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x416C726561647920766F7465642E000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xBF4 PUSH1 0xE DUP4 PUSH2 0xB48 JUMP JUMPDEST SWAP2 POP PUSH2 0xBFF DUP3 PUSH2 0xBC0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xC21 DUP2 PUSH2 0xBE8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xC8C DUP3 PUSH2 0x960 JUMP JUMPDEST SWAP2 POP PUSH2 0xC97 DUP4 PUSH2 0x960 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xCAF JUMPI PUSH2 0xCAE PUSH2 0xC55 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x596F7520616C726561647920766F7465642E0000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xCE9 PUSH1 0x12 DUP4 PUSH2 0xB48 JUMP JUMPDEST SWAP2 POP PUSH2 0xCF4 DUP3 PUSH2 0xCB5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xD16 DUP2 PUSH2 0xCDD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x53656C662D64656C65676174696F6E20697320646973616C6C6F7765642E0000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xD51 PUSH1 0x1E DUP4 PUSH2 0xB48 JUMP JUMPDEST SWAP2 POP PUSH2 0xD5C DUP3 PUSH2 0xD1D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xD7E DUP2 PUSH2 0xD45 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x466F756E64206C6F6F7020696E2064656C65676174696F6E2E00000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xDB9 PUSH1 0x19 DUP4 PUSH2 0xB48 JUMP JUMPDEST SWAP2 POP PUSH2 0xDC4 DUP3 PUSH2 0xD85 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xDE6 DUP2 PUSH2 0xDAD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F6E6C79206368616972706572736F6E2063616E206769766520726967687420 PUSH0 DUP3 ADD MSTORE PUSH32 0x746F20766F74652E000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xE47 PUSH1 0x28 DUP4 PUSH2 0xB48 JUMP JUMPDEST SWAP2 POP PUSH2 0xE52 DUP3 PUSH2 0xDED JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xE74 DUP2 PUSH2 0xE3B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x54686520766F74657220616C726561647920766F7465642E0000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xEAF PUSH1 0x18 DUP4 PUSH2 0xB48 JUMP JUMPDEST SWAP2 POP PUSH2 0xEBA DUP3 PUSH2 0xE7B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xEDC DUP2 PUSH2 0xEA3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE2 0x4B MSTORE SMOD 0xDB 0xEC CALLCODE 0x23 0x2D PUSH23 0xD381A97EF69853B60ED41FD1DAD273E187E9D66493F964 PUSH20 0x6F6C634300081A00330000000000000000000000 ",
"sourceMap": "157:4355:0:-:0;;;955:481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1023:10;1009:11;;:24;;;;;;;;;;;;;;;;;;1072:1;1043:6;:19;1050:11;;;;;;;;;;;1043:19;;;;;;;;;;;;;;;:26;;:30;;;;1089:6;1084:346;1105:13;:20;1101:1;:24;1084:346;;;1309:9;1324:94;;;;;;;;1357:13;1371:1;1357:16;;;;;;;;:::i;:::-;;;;;;;;1324:94;;;;1402:1;1324:94;;;1309:110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1127:3;;;;;;;1084:346;;;;955:481;157:4355;;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:102;498:6;549:2;545:7;540:2;533:5;529:14;525:28;515:38;;457:102;;;:::o;565:180::-;613:77;610:1;603:88;710:4;707:1;700:15;734:4;731:1;724:15;751:281;834:27;856:4;834:27;:::i;:::-;826:6;822:40;964:6;952:10;949:22;928:18;916:10;913:34;910:62;907:88;;;975:18;;:::i;:::-;907:88;1015:10;1011:2;1004:22;794:238;751:281;;:::o;1038:129::-;1072:6;1099:20;;:::i;:::-;1089:30;;1128:33;1156:4;1148:6;1128:33;:::i;:::-;1038:129;;;:::o;1173:311::-;1250:4;1340:18;1332:6;1329:30;1326:56;;;1362:18;;:::i;:::-;1326:56;1412:4;1404:6;1400:17;1392:25;;1472:4;1466;1462:15;1454:23;;1173:311;;;:::o;1490:117::-;1599:1;1596;1589:12;1613:77;1650:7;1679:5;1668:16;;1613:77;;;:::o;1696:122::-;1769:24;1787:5;1769:24;:::i;:::-;1762:5;1759:35;1749:63;;1808:1;1805;1798:12;1749:63;1696:122;:::o;1824:143::-;1881:5;1912:6;1906:13;1897:22;;1928:33;1955:5;1928:33;:::i;:::-;1824:143;;;;:::o;1990:732::-;2097:5;2122:81;2138:64;2195:6;2138:64;:::i;:::-;2122:81;:::i;:::-;2113:90;;2223:5;2252:6;2245:5;2238:21;2286:4;2279:5;2275:16;2268:23;;2339:4;2331:6;2327:17;2319:6;2315:30;2368:3;2360:6;2357:15;2354:122;;;2387:79;;:::i;:::-;2354:122;2502:6;2485:231;2519:6;2514:3;2511:15;2485:231;;;2594:3;2623:48;2667:3;2655:10;2623:48;:::i;:::-;2618:3;2611:61;2701:4;2696:3;2692:14;2685:21;;2561:155;2545:4;2540:3;2536:14;2529:21;;2485:231;;;2489:21;2103:619;;1990:732;;;;;:::o;2745:385::-;2827:5;2876:3;2869:4;2861:6;2857:17;2853:27;2843:122;;2884:79;;:::i;:::-;2843:122;2994:6;2988:13;3019:105;3120:3;3112:6;3105:4;3097:6;3093:17;3019:105;:::i;:::-;3010:114;;2833:297;2745:385;;;;:::o;3136:554::-;3231:6;3280:2;3268:9;3259:7;3255:23;3251:32;3248:119;;;3286:79;;:::i;:::-;3248:119;3427:1;3416:9;3412:17;3406:24;3457:18;3449:6;3446:30;3443:117;;;3479:79;;:::i;:::-;3443:117;3584:89;3665:7;3656:6;3645:9;3641:22;3584:89;:::i;:::-;3574:99;;3377:306;3136:554;;;;:::o;3696:180::-;3744:77;3741:1;3734:88;3841:4;3838:1;3831:15;3865:4;3862:1;3855:15;157:4355:0;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@chairperson_18": {
"entryPoint": 774,
"id": 18,
"parameterSlots": 0,
"returnSlots": 0
},
"@delegate_207": {
"entryPoint": 809,
"id": 207,
"parameterSlots": 1,
"returnSlots": 0
},
"@giveRightToVote_111": {
"entryPoint": 1833,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"@proposals_27": {
"entryPoint": 727,
"id": 27,
"parameterSlots": 0,
"returnSlots": 0
},
"@vote_257": {
"entryPoint": 412,
"id": 257,
"parameterSlots": 1,
"returnSlots": 0
},
"@voters_23": {
"entryPoint": 2260,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@winnerName_315": {
"entryPoint": 2348,
"id": 315,
"parameterSlots": 0,
"returnSlots": 1
},
"@winningProposal_300": {
"entryPoint": 1710,
"id": 300,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 2682,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 2431,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 2702,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 2451,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 2620,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 2781,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_fromStack": {
"entryPoint": 2503,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_0dc527e8fa9b76c996eb5eda9ddb749b21540f5509781b94e1e37f7027e7f50e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2944,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_56aab92b7164a4ea72a098d2d95a5e763b71d07f265e8d46fc7240404017fa84_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3048,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_657c6119c4ed567c60278fba62242b17c2fedf38962e651040dabfb3c9e15a5f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3293,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_80126ce3251ab2b6e4ade14fe5b2bc11f593510cbe9e3550c09bff1989e33b95_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3643,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8bd75322489f7ff7ab0b18506f4dcde935a32eca2a506b00f4d21b0becfa093c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3501,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d39b1db28626750c546703ffb72f30ea3facdfed1bebd47408e22ef18a76ba2d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3747,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f37bf1aca80f8fa291a40f639db6aeaa1425ceb0e8c61c8648f0e2efa282a947_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3397,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 2518,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 2635,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
"entryPoint": 2863,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_uint256__to_t_bytes32_t_uint256__fromStack_reversed": {
"entryPoint": 2533,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0dc527e8fa9b76c996eb5eda9ddb749b21540f5509781b94e1e37f7027e7f50e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2978,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_56aab92b7164a4ea72a098d2d95a5e763b71d07f265e8d46fc7240404017fa84__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3082,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_657c6119c4ed567c60278fba62242b17c2fedf38962e651040dabfb3c9e15a5f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3327,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_80126ce3251ab2b6e4ade14fe5b2bc11f593510cbe9e3550c09bff1989e33b95__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3677,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8bd75322489f7ff7ab0b18506f4dcde935a32eca2a506b00f4d21b0becfa093c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3535,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d39b1db28626750c546703ffb72f30ea3facdfed1bebd47408e22ef18a76ba2d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3781,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f37bf1aca80f8fa291a40f639db6aeaa1425ceb0e8c61c8648f0e2efa282a947__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3431,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 2745,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_bool_t_address_t_uint256__to_t_uint256_t_bool_t_address_t_uint256__fromStack_reversed": {
"entryPoint": 2796,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 2888,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 3202,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 2603,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 2770,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 2494,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 2572,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 2400,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 3157,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 3112,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2396,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_0dc527e8fa9b76c996eb5eda9ddb749b21540f5509781b94e1e37f7027e7f50e": {
"entryPoint": 2904,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_56aab92b7164a4ea72a098d2d95a5e763b71d07f265e8d46fc7240404017fa84": {
"entryPoint": 3008,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_657c6119c4ed567c60278fba62242b17c2fedf38962e651040dabfb3c9e15a5f": {
"entryPoint": 3253,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_80126ce3251ab2b6e4ade14fe5b2bc11f593510cbe9e3550c09bff1989e33b95": {
"entryPoint": 3565,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8bd75322489f7ff7ab0b18506f4dcde935a32eca2a506b00f4d21b0becfa093c": {
"entryPoint": 3461,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d39b1db28626750c546703ffb72f30ea3facdfed1bebd47408e22ef18a76ba2d": {
"entryPoint": 3707,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f37bf1aca80f8fa291a40f639db6aeaa1425ceb0e8c61c8648f0e2efa282a947": {
"entryPoint": 3357,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 2660,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 2409,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:11722:1",
"nodeType": "YulBlock",
"src": "0:11722:1",
"statements": [
{
"body": {
"nativeSrc": "47:35:1",
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nativeSrc": "57:19:1",
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "73:2:1",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "67:5:1",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nativeSrc": "67:9:1",
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "57:6:1",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "7:75:1",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "40:6:1",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nativeSrc": "177:28:1",
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "194:1:1",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "197:1:1",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "187:6:1",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nativeSrc": "187:12:1",
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nativeSrc": "187:12:1",
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "88:117:1",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nativeSrc": "300:28:1",
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "317:1:1",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "320:1:1",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "310:6:1",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nativeSrc": "310:12:1",
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nativeSrc": "310:12:1",
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "211:117:1",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nativeSrc": "379:32:1",
"nodeType": "YulBlock",
"src": "379:32:1",
"statements": [
{
"nativeSrc": "389:16:1",
"nodeType": "YulAssignment",
"src": "389:16:1",
"value": {
"name": "value",
"nativeSrc": "400:5:1",
"nodeType": "YulIdentifier",
"src": "400:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "389:7:1",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "334:77:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "361:5:1",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "371:7:1",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:77:1"
},
{
"body": {
"nativeSrc": "460:79:1",
"nodeType": "YulBlock",
"src": "460:79:1",
"statements": [
{
"body": {
"nativeSrc": "517:16:1",
"nodeType": "YulBlock",
"src": "517:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "526:1:1",
"nodeType": "YulLiteral",
"src": "526:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "529:1:1",
"nodeType": "YulLiteral",
"src": "529:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "519:6:1",
"nodeType": "YulIdentifier",
"src": "519:6:1"
},
"nativeSrc": "519:12:1",
"nodeType": "YulFunctionCall",
"src": "519:12:1"
},
"nativeSrc": "519:12:1",
"nodeType": "YulExpressionStatement",
"src": "519:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "483:5:1",
"nodeType": "YulIdentifier",
"src": "483:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "508:5:1",
"nodeType": "YulIdentifier",
"src": "508:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "490:17:1",
"nodeType": "YulIdentifier",
"src": "490:17:1"
},
"nativeSrc": "490:24:1",
"nodeType": "YulFunctionCall",
"src": "490:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "480:2:1",
"nodeType": "YulIdentifier",
"src": "480:2:1"
},
"nativeSrc": "480:35:1",
"nodeType": "YulFunctionCall",
"src": "480:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "473:6:1",
"nodeType": "YulIdentifier",
"src": "473:6:1"
},
"nativeSrc": "473:43:1",
"nodeType": "YulFunctionCall",
"src": "473:43:1"
},
"nativeSrc": "470:63:1",
"nodeType": "YulIf",
"src": "470:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "417:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "453:5:1",
"nodeType": "YulTypedName",
"src": "453:5:1",
"type": ""
}
],
"src": "417:122:1"
},
{
"body": {
"nativeSrc": "597:87:1",
"nodeType": "YulBlock",
"src": "597:87:1",
"statements": [
{
"nativeSrc": "607:29:1",
"nodeType": "YulAssignment",
"src": "607:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "629:6:1",
"nodeType": "YulIdentifier",
"src": "629:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "616:12:1",
"nodeType": "YulIdentifier",
"src": "616:12:1"
},
"nativeSrc": "616:20:1",
"nodeType": "YulFunctionCall",
"src": "616:20:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "607:5:1",
"nodeType": "YulIdentifier",
"src": "607:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "672:5:1",
"nodeType": "YulIdentifier",
"src": "672:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "645:26:1",
"nodeType": "YulIdentifier",
"src": "645:26:1"
},
"nativeSrc": "645:33:1",
"nodeType": "YulFunctionCall",
"src": "645:33:1"
},
"nativeSrc": "645:33:1",
"nodeType": "YulExpressionStatement",
"src": "645:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "545:139:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "575:6:1",
"nodeType": "YulTypedName",
"src": "575:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "583:3:1",
"nodeType": "YulTypedName",
"src": "583:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "591:5:1",
"nodeType": "YulTypedName",
"src": "591:5:1",
"type": ""
}
],
"src": "545:139:1"
},
{
"body": {
"nativeSrc": "756:263:1",
"nodeType": "YulBlock",
"src": "756:263:1",
"statements": [
{
"body": {
"nativeSrc": "802:83:1",
"nodeType": "YulBlock",
"src": "802:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "804:77:1",
"nodeType": "YulIdentifier",
"src": "804:77:1"
},
"nativeSrc": "804:79:1",
"nodeType": "YulFunctionCall",
"src": "804:79:1"
},
"nativeSrc": "804:79:1",
"nodeType": "YulExpressionStatement",
"src": "804:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "777:7:1",
"nodeType": "YulIdentifier",
"src": "777:7:1"
},
{
"name": "headStart",
"nativeSrc": "786:9:1",
"nodeType": "YulIdentifier",
"src": "786:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "773:3:1",
"nodeType": "YulIdentifier",
"src": "773:3:1"
},
"nativeSrc": "773:23:1",
"nodeType": "YulFunctionCall",
"src": "773:23:1"
},
{
"kind": "number",
"nativeSrc": "798:2:1",
"nodeType": "YulLiteral",
"src": "798:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "769:3:1",
"nodeType": "YulIdentifier",
"src": "769:3:1"
},
"nativeSrc": "769:32:1",
"nodeType": "YulFunctionCall",
"src": "769:32:1"
},
"nativeSrc": "766:119:1",
"nodeType": "YulIf",
"src": "766:119:1"
},
{
"nativeSrc": "895:117:1",
"nodeType": "YulBlock",
"src": "895:117:1",
"statements": [
{
"nativeSrc": "910:15:1",
"nodeType": "YulVariableDeclaration",
"src": "910:15:1",
"value": {
"kind": "number",
"nativeSrc": "924:1:1",
"nodeType": "YulLiteral",
"src": "924:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "914:6:1",
"nodeType": "YulTypedName",
"src": "914:6:1",
"type": ""
}
]
},
{
"nativeSrc": "939:63:1",
"nodeType": "YulAssignment",
"src": "939:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "974:9:1",
"nodeType": "YulIdentifier",
"src": "974:9:1"
},
{
"name": "offset",
"nativeSrc": "985:6:1",
"nodeType": "YulIdentifier",
"src": "985:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "970:3:1",
"nodeType": "YulIdentifier",
"src": "970:3:1"
},
"nativeSrc": "970:22:1",
"nodeType": "YulFunctionCall",
"src": "970:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "994:7:1",
"nodeType": "YulIdentifier",
"src": "994:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "949:20:1",
"nodeType": "YulIdentifier",
"src": "949:20:1"
},
"nativeSrc": "949:53:1",
"nodeType": "YulFunctionCall",
"src": "949:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "939:6:1",
"nodeType": "YulIdentifier",
"src": "939:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nativeSrc": "690:329:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "726:9:1",
"nodeType": "YulTypedName",
"src": "726:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "737:7:1",
"nodeType": "YulTypedName",
"src": "737:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "749:6:1",
"nodeType": "YulTypedName",
"src": "749:6:1",
"type": ""
}
],
"src": "690:329:1"
},
{
"body": {
"nativeSrc": "1070:32:1",
"nodeType": "YulBlock",
"src": "1070:32:1",
"statements": [
{
"nativeSrc": "1080:16:1",
"nodeType": "YulAssignment",
"src": "1080:16:1",
"value": {
"name": "value",
"nativeSrc": "1091:5:1",
"nodeType": "YulIdentifier",
"src": "1091:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1080:7:1",
"nodeType": "YulIdentifier",
"src": "1080:7:1"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nativeSrc": "1025:77:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1052:5:1",
"nodeType": "YulTypedName",
"src": "1052:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1062:7:1",
"nodeType": "YulTypedName",
"src": "1062:7:1",
"type": ""
}
],
"src": "1025:77:1"
},
{
"body": {
"nativeSrc": "1173:53:1",
"nodeType": "YulBlock",
"src": "1173:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1190:3:1",
"nodeType": "YulIdentifier",
"src": "1190:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1213:5:1",
"nodeType": "YulIdentifier",
"src": "1213:5:1"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nativeSrc": "1195:17:1",
"nodeType": "YulIdentifier",
"src": "1195:17:1"
},
"nativeSrc": "1195:24:1",
"nodeType": "YulFunctionCall",
"src": "1195:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1183:6:1",
"nodeType": "YulIdentifier",
"src": "1183:6:1"
},
"nativeSrc": "1183:37:1",
"nodeType": "YulFunctionCall",
"src": "1183:37:1"
},
"nativeSrc": "1183:37:1",
"nodeType": "YulExpressionStatement",
"src": "1183:37:1"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "1108:118:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1161:5:1",
"nodeType": "YulTypedName",
"src": "1161:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "1168:3:1",
"nodeType": "YulTypedName",
"src": "1168:3:1",
"type": ""
}
],
"src": "1108:118:1"
},
{
"body": {
"nativeSrc": "1297:53:1",
"nodeType": "YulBlock",
"src": "1297:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1314:3:1",
"nodeType": "YulIdentifier",
"src": "1314:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1337:5:1",
"nodeType": "YulIdentifier",
"src": "1337:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1319:17:1",
"nodeType": "YulIdentifier",
"src": "1319:17:1"
},
"nativeSrc": "1319:24:1",
"nodeType": "YulFunctionCall",
"src": "1319:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1307:6:1",
"nodeType": "YulIdentifier",
"src": "1307:6:1"
},
"nativeSrc": "1307:37:1",
"nodeType": "YulFunctionCall",
"src": "1307:37:1"
},
"nativeSrc": "1307:37:1",
"nodeType": "YulExpressionStatement",
"src": "1307:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "1232:118:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1285:5:1",
"nodeType": "YulTypedName",
"src": "1285:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "1292:3:1",
"nodeType": "YulTypedName",
"src": "1292:3:1",
"type": ""
}
],
"src": "1232:118:1"
},
{
"body": {
"nativeSrc": "1482:206:1",
"nodeType": "YulBlock",
"src": "1482:206:1",
"statements": [
{
"nativeSrc": "1492:26:1",
"nodeType": "YulAssignment",
"src": "1492:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "1504:9:1",
"nodeType": "YulIdentifier",
"src": "1504:9:1"
},
{
"kind": "number",
"nativeSrc": "1515:2:1",
"nodeType": "YulLiteral",
"src": "1515:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1500:3:1",
"nodeType": "YulIdentifier",
"src": "1500:3:1"
},
"nativeSrc": "1500:18:1",
"nodeType": "YulFunctionCall",
"src": "1500:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1492:4:1",
"nodeType": "YulIdentifier",
"src": "1492:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "1572:6:1",
"nodeType": "YulIdentifier",
"src": "1572:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1585:9:1",
"nodeType": "YulIdentifier",
"src": "1585:9:1"
},
{
"kind": "number",
"nativeSrc": "1596:1:1",
"nodeType": "YulLiteral",
"src": "1596:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1581:3:1",
"nodeType": "YulIdentifier",
"src": "1581:3:1"
},
"nativeSrc": "1581:17:1",
"nodeType": "YulFunctionCall",
"src": "1581:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "1528:43:1",
"nodeType": "YulIdentifier",
"src": "1528:43:1"
},
"nativeSrc": "1528:71:1",
"nodeType": "YulFunctionCall",
"src": "1528:71:1"
},
"nativeSrc": "1528:71:1",
"nodeType": "YulExpressionStatement",
"src": "1528:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "1653:6:1",
"nodeType": "YulIdentifier",
"src": "1653:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1666:9:1",
"nodeType": "YulIdentifier",
"src": "1666:9:1"
},
{
"kind": "number",
"nativeSrc": "1677:2:1",
"nodeType": "YulLiteral",
"src": "1677:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1662:3:1",
"nodeType": "YulIdentifier",
"src": "1662:3:1"
},
"nativeSrc": "1662:18:1",
"nodeType": "YulFunctionCall",
"src": "1662:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "1609:43:1",
"nodeType": "YulIdentifier",
"src": "1609:43:1"
},
"nativeSrc": "1609:72:1",
"nodeType": "YulFunctionCall",
"src": "1609:72:1"
},
"nativeSrc": "1609:72:1",
"nodeType": "YulExpressionStatement",
"src": "1609:72:1"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_uint256__to_t_bytes32_t_uint256__fromStack_reversed",
"nativeSrc": "1356:332:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1446:9:1",
"nodeType": "YulTypedName",
"src": "1446:9:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "1458:6:1",
"nodeType": "YulTypedName",
"src": "1458:6:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "1466:6:1",
"nodeType": "YulTypedName",
"src": "1466:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "1477:4:1",
"nodeType": "YulTypedName",
"src": "1477:4:1",
"type": ""
}
],
"src": "1356:332:1"
},
{
"body": {
"nativeSrc": "1739:81:1",
"nodeType": "YulBlock",
"src": "1739:81:1",
"statements": [
{
"nativeSrc": "1749:65:1",
"nodeType": "YulAssignment",
"src": "1749:65:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1764:5:1",
"nodeType": "YulIdentifier",
"src": "1764:5:1"
},
{
"kind": "number",
"nativeSrc": "1771:42:1",
"nodeType": "YulLiteral",
"src": "1771:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1760:3:1",
"nodeType": "YulIdentifier",
"src": "1760:3:1"
},
"nativeSrc": "1760:54:1",
"nodeType": "YulFunctionCall",
"src": "1760:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1749:7:1",
"nodeType": "YulIdentifier",
"src": "1749:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "1694:126:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1721:5:1",
"nodeType": "YulTypedName",
"src": "1721:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1731:7:1",
"nodeType": "YulTypedName",
"src": "1731:7:1",
"type": ""
}
],
"src": "1694:126:1"
},
{
"body": {
"nativeSrc": "1871:51:1",
"nodeType": "YulBlock",
"src": "1871:51:1",
"statements": [
{
"nativeSrc": "1881:35:1",
"nodeType": "YulAssignment",
"src": "1881:35:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1910:5:1",
"nodeType": "YulIdentifier",
"src": "1910:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "1892:17:1",
"nodeType": "YulIdentifier",
"src": "1892:17:1"
},
"nativeSrc": "1892:24:1",
"nodeType": "YulFunctionCall",
"src": "1892:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1881:7:1",
"nodeType": "YulIdentifier",
"src": "1881:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "1826:96:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1853:5:1",
"nodeType": "YulTypedName",
"src": "1853:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1863:7:1",
"nodeType": "YulTypedName",
"src": "1863:7:1",
"type": ""
}
],
"src": "1826:96:1"
},
{
"body": {
"nativeSrc": "1993:53:1",
"nodeType": "YulBlock",
"src": "1993:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "2010:3:1",
"nodeType": "YulIdentifier",
"src": "2010:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2033:5:1",
"nodeType": "YulIdentifier",
"src": "2033:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "2015:17:1",
"nodeType": "YulIdentifier",
"src": "2015:17:1"
},
"nativeSrc": "2015:24:1",
"nodeType": "YulFunctionCall",
"src": "2015:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2003:6:1",
"nodeType": "YulIdentifier",
"src": "2003:6:1"
},
"nativeSrc": "2003:37:1",
"nodeType": "YulFunctionCall",
"src": "2003:37:1"
},
"nativeSrc": "2003:37:1",
"nodeType": "YulExpressionStatement",
"src": "2003:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "1928:118:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1981:5:1",
"nodeType": "YulTypedName",
"src": "1981:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "1988:3:1",
"nodeType": "YulTypedName",
"src": "1988:3:1",
"type": ""
}
],
"src": "1928:118:1"
},
{
"body": {
"nativeSrc": "2150:124:1",
"nodeType": "YulBlock",
"src": "2150:124:1",
"statements": [
{
"nativeSrc": "2160:26:1",
"nodeType": "YulAssignment",
"src": "2160:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "2172:9:1",
"nodeType": "YulIdentifier",
"src": "2172:9:1"
},
{
"kind": "number",
"nativeSrc": "2183:2:1",
"nodeType": "YulLiteral",
"src": "2183:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2168:3:1",
"nodeType": "YulIdentifier",
"src": "2168:3:1"
},
"nativeSrc": "2168:18:1",
"nodeType": "YulFunctionCall",
"src": "2168:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "2160:4:1",
"nodeType": "YulIdentifier",
"src": "2160:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "2240:6:1",
"nodeType": "YulIdentifier",
"src": "2240:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2253:9:1",
"nodeType": "YulIdentifier",
"src": "2253:9:1"
},
{
"kind": "number",
"nativeSrc": "2264:1:1",
"nodeType": "YulLiteral",
"src": "2264:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2249:3:1",
"nodeType": "YulIdentifier",
"src": "2249:3:1"
},
"nativeSrc": "2249:17:1",
"nodeType": "YulFunctionCall",
"src": "2249:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "2196:43:1",
"nodeType": "YulIdentifier",
"src": "2196:43:1"
},
"nativeSrc": "2196:71:1",
"nodeType": "YulFunctionCall",
"src": "2196:71:1"
},
"nativeSrc": "2196:71:1",
"nodeType": "YulExpressionStatement",
"src": "2196:71:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nativeSrc": "2052:222:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "2122:9:1",
"nodeType": "YulTypedName",
"src": "2122:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "2134:6:1",
"nodeType": "YulTypedName",
"src": "2134:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "2145:4:1",
"nodeType": "YulTypedName",
"src": "2145:4:1",
"type": ""
}
],
"src": "2052:222:1"
},
{
"body": {
"nativeSrc": "2323:79:1",
"nodeType": "YulBlock",
"src": "2323:79:1",
"statements": [
{
"body": {
"nativeSrc": "2380:16:1",
"nodeType": "YulBlock",
"src": "2380:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "2389:1:1",
"nodeType": "YulLiteral",
"src": "2389:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "2392:1:1",
"nodeType": "YulLiteral",
"src": "2392:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "2382:6:1",
"nodeType": "YulIdentifier",
"src": "2382:6:1"
},
"nativeSrc": "2382:12:1",
"nodeType": "YulFunctionCall",
"src": "2382:12:1"
},
"nativeSrc": "2382:12:1",
"nodeType": "YulExpressionStatement",
"src": "2382:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "2346:5:1",
"nodeType": "YulIdentifier",
"src": "2346:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2371:5:1",
"nodeType": "YulIdentifier",
"src": "2371:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "2353:17:1",
"nodeType": "YulIdentifier",
"src": "2353:17:1"
},
"nativeSrc": "2353:24:1",
"nodeType": "YulFunctionCall",
"src": "2353:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "2343:2:1",
"nodeType": "YulIdentifier",
"src": "2343:2:1"
},
"nativeSrc": "2343:35:1",
"nodeType": "YulFunctionCall",
"src": "2343:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2336:6:1",
"nodeType": "YulIdentifier",
"src": "2336:6:1"
},
"nativeSrc": "2336:43:1",
"nodeType": "YulFunctionCall",
"src": "2336:43:1"
},
"nativeSrc": "2333:63:1",
"nodeType": "YulIf",
"src": "2333:63:1"
}
]
},
"name": "validator_revert_t_address",
"nativeSrc": "2280:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2316:5:1",
"nodeType": "YulTypedName",
"src": "2316:5:1",
"type": ""
}
],
"src": "2280:122:1"
},
{
"body": {
"nativeSrc": "2460:87:1",
"nodeType": "YulBlock",
"src": "2460:87:1",
"statements": [
{
"nativeSrc": "2470:29:1",
"nodeType": "YulAssignment",
"src": "2470:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "2492:6:1",
"nodeType": "YulIdentifier",
"src": "2492:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "2479:12:1",
"nodeType": "YulIdentifier",
"src": "2479:12:1"
},
"nativeSrc": "2479:20:1",
"nodeType": "YulFunctionCall",
"src": "2479:20:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "2470:5:1",
"nodeType": "YulIdentifier",
"src": "2470:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "2535:5:1",
"nodeType": "YulIdentifier",
"src": "2535:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nativeSrc": "2508:26:1",
"nodeType": "YulIdentifier",
"src": "2508:26:1"
},
"nativeSrc": "2508:33:1",
"nodeType": "YulFunctionCall",
"src": "2508:33:1"
},
"nativeSrc": "2508:33:1",
"nodeType": "YulExpressionStatement",
"src": "2508:33:1"
}
]
},
"name": "abi_decode_t_address",
"nativeSrc": "2408:139:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "2438:6:1",
"nodeType": "YulTypedName",
"src": "2438:6:1",
"type": ""
},
{
"name": "end",
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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