Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dvgui/afba278e2c0a9ee155b4d3acbc2cc9bc to your computer and use it in GitHub Desktop.
Save dvgui/afba278e2c0a9ee155b4d3acbc2cc9bc 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.19+commit.7dd6d404.js&optimize=true&runs=10000&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @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;
}
}
{
"id": "6b6a25d8bebf9c0fbeb5d5ec133165de",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.25",
"solcLongVersion": "0.8.25+commit.b61c2a91",
"input": {
"language": "Solidity",
"sources": {
".deps/npm/@openzeppelin/contracts/access/Ownable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)\n\npragma solidity ^0.8.20;\n\nimport {Context} from \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * The initial owner is set to the address provided by the deployer. This can\n * later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n /**\n * @dev The caller account is not authorized to perform an operation.\n */\n error OwnableUnauthorizedAccount(address account);\n\n /**\n * @dev The owner is not a valid owner account. (eg. `address(0)`)\n */\n error OwnableInvalidOwner(address owner);\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the address provided by the deployer as the initial owner.\n */\n constructor(address initialOwner) {\n if (initialOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\n _transferOwnership(initialOwner);\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n if (owner() != _msgSender()) {\n revert OwnableUnauthorizedAccount(_msgSender());\n }\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby disabling any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n if (newOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\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"
}
},
"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/Ownable.sol": {
"Ownable": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. The initial owner is set to the address provided by the deployer. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.",
"errors": {
"OwnableInvalidOwner(address)": [
{
"details": "The owner is not a valid owner account. (eg. `address(0)`)"
}
],
"OwnableUnauthorizedAccount(address)": [
{
"details": "The caller account is not authorized to perform an operation."
}
]
},
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the address provided by the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.25+commit.b61c2a91\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. The initial owner is set to the address provided by the deployer. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.\",\"errors\":{\"OwnableInvalidOwner(address)\":[{\"details\":\"The owner is not a valid owner account. (eg. `address(0)`)\"}],\"OwnableUnauthorizedAccount(address)\":[{\"details\":\"The caller account is not authorized to perform an operation.\"}]},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract setting the address provided by the deployer as the initial owner.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/npm/@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/npm/@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\".deps/npm/@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 8,
"contract": ".deps/npm/@openzeppelin/contracts/access/Ownable.sol:Ownable",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"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.25+commit.b61c2a91\"},\"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
}
}
}
},
"sources": {
".deps/npm/@openzeppelin/contracts/access/Ownable.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts/access/Ownable.sol",
"exportedSymbols": {
"Context": [
177
],
"Ownable": [
147
]
},
"id": 148,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".20"
],
"nodeType": "PragmaDirective",
"src": "102:24:0"
},
{
"absolutePath": ".deps/npm/@openzeppelin/contracts/utils/Context.sol",
"file": "../utils/Context.sol",
"id": 3,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 148,
"sourceUnit": 178,
"src": "128:45:0",
"symbolAliases": [
{
"foreign": {
"id": 2,
"name": "Context",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 177,
"src": "136:7:0",
"typeDescriptions": {}
},
"nameLocation": "-1:-1:-1"
}
],
"unitAlias": ""
},
{
"abstract": true,
"baseContracts": [
{
"baseName": {
"id": 5,
"name": "Context",
"nameLocations": [
"692:7:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 177,
"src": "692:7:0"
},
"id": 6,
"nodeType": "InheritanceSpecifier",
"src": "692:7:0"
}
],
"canonicalName": "Ownable",
"contractDependencies": [],
"contractKind": "contract",
"documentation": {
"id": 4,
"nodeType": "StructuredDocumentation",
"src": "175:487:0",
"text": " @dev Contract module which provides a basic access control mechanism, where\n there is an account (an owner) that can be granted exclusive access to\n specific functions.\n The initial owner is set to the address provided by the deployer. This can\n later be changed with {transferOwnership}.\n This module is used through inheritance. It will make available the modifier\n `onlyOwner`, which can be applied to your functions to restrict their use to\n the owner."
},
"fullyImplemented": true,
"id": 147,
"linearizedBaseContracts": [
147,
177
],
"name": "Ownable",
"nameLocation": "681:7:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 8,
"mutability": "mutable",
"name": "_owner",
"nameLocation": "722:6:0",
"nodeType": "VariableDeclaration",
"scope": 147,
"src": "706:22:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 7,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "706:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "private"
},
{
"documentation": {
"id": 9,
"nodeType": "StructuredDocumentation",
"src": "735:85:0",
"text": " @dev The caller account is not authorized to perform an operation."
},
"errorSelector": "118cdaa7",
"id": 13,
"name": "OwnableUnauthorizedAccount",
"nameLocation": "831:26:0",
"nodeType": "ErrorDefinition",
"parameters": {
"id": 12,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 11,
"mutability": "mutable",
"name": "account",
"nameLocation": "866:7:0",
"nodeType": "VariableDeclaration",
"scope": 13,
"src": "858:15:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 10,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "858:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "857:17:0"
},
"src": "825:50:0"
},
{
"documentation": {
"id": 14,
"nodeType": "StructuredDocumentation",
"src": "881:82:0",
"text": " @dev The owner is not a valid owner account. (eg. `address(0)`)"
},
"errorSelector": "1e4fbdf7",
"id": 18,
"name": "OwnableInvalidOwner",
"nameLocation": "974:19:0",
"nodeType": "ErrorDefinition",
"parameters": {
"id": 17,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 16,
"mutability": "mutable",
"name": "owner",
"nameLocation": "1002:5:0",
"nodeType": "VariableDeclaration",
"scope": 18,
"src": "994:13:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 15,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "994:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "993:15:0"
},
"src": "968:41:0"
},
{
"anonymous": false,
"eventSelector": "8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
"id": 24,
"name": "OwnershipTransferred",
"nameLocation": "1021:20:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 23,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 20,
"indexed": true,
"mutability": "mutable",
"name": "previousOwner",
"nameLocation": "1058:13:0",
"nodeType": "VariableDeclaration",
"scope": 24,
"src": "1042:29:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 19,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1042:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 22,
"indexed": true,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "1089:8:0",
"nodeType": "VariableDeclaration",
"scope": 24,
"src": "1073:24:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 21,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1073:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1041:57:0"
},
"src": "1015:84:0"
},
{
"body": {
"id": 49,
"nodeType": "Block",
"src": "1259:153:0",
"statements": [
{
"condition": {
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 35,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"id": 30,
"name": "initialOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 27,
"src": "1273:12:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "==",
"rightExpression": {
"arguments": [
{
"hexValue": "30",
"id": 33,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1297:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
}
],
"id": 32,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "1289:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 31,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1289:7:0",
"typeDescriptions": {}
}
},
"id": 34,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1289:10:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "1273:26:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 44,
"nodeType": "IfStatement",
"src": "1269:95:0",
"trueBody": {
"id": 43,
"nodeType": "Block",
"src": "1301:63:0",
"statements": [
{
"errorCall": {
"arguments": [
{
"arguments": [
{
"hexValue": "30",
"id": 39,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1350:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
}
],
"id": 38,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "1342:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 37,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1342:7:0",
"typeDescriptions": {}
}
},
"id": 40,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1342:10:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 36,
"name": "OwnableInvalidOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 18,
"src": "1322:19:0",
"typeDescriptions": {
"typeIdentifier": "t_function_error_pure$_t_address_$returns$__$",
"typeString": "function (address) pure"
}
},
"id": 41,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1322:31:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 42,
"nodeType": "RevertStatement",
"src": "1315:38:0"
}
]
}
},
{
"expression": {
"arguments": [
{
"id": 46,
"name": "initialOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 27,
"src": "1392:12:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 45,
"name": "_transferOwnership",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 146,
"src": "1373:18:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
"typeString": "function (address)"
}
},
"id": 47,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1373:32:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 48,
"nodeType": "ExpressionStatement",
"src": "1373:32:0"
}
]
},
"documentation": {
"id": 25,
"nodeType": "StructuredDocumentation",
"src": "1105:115:0",
"text": " @dev Initializes the contract setting the address provided by the deployer as the initial owner."
},
"id": 50,
"implemented": true,
"kind": "constructor",
"modifiers": [],
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 28,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 27,
"mutability": "mutable",
"name": "initialOwner",
"nameLocation": "1245:12:0",
"nodeType": "VariableDeclaration",
"scope": 50,
"src": "1237:20:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 26,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1237:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1236:22:0"
},
"returnParameters": {
"id": 29,
"nodeType": "ParameterList",
"parameters": [],
"src": "1259:0:0"
},
"scope": 147,
"src": "1225:187:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 57,
"nodeType": "Block",
"src": "1521:41:0",
"statements": [
{
"expression": {
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 53,
"name": "_checkOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 84,
"src": "1531:11:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$__$",
"typeString": "function () view"
}
},
"id": 54,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1531:13:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 55,
"nodeType": "ExpressionStatement",
"src": "1531:13:0"
},
{
"id": 56,
"nodeType": "PlaceholderStatement",
"src": "1554:1:0"
}
]
},
"documentation": {
"id": 51,
"nodeType": "StructuredDocumentation",
"src": "1418:77:0",
"text": " @dev Throws if called by any account other than the owner."
},
"id": 58,
"name": "onlyOwner",
"nameLocation": "1509:9:0",
"nodeType": "ModifierDefinition",
"parameters": {
"id": 52,
"nodeType": "ParameterList",
"parameters": [],
"src": "1518:2:0"
},
"src": "1500:62:0",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 66,
"nodeType": "Block",
"src": "1693:30:0",
"statements": [
{
"expression": {
"id": 64,
"name": "_owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 8,
"src": "1710:6:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"functionReturnParameters": 63,
"id": 65,
"nodeType": "Return",
"src": "1703:13:0"
}
]
},
"documentation": {
"id": 59,
"nodeType": "StructuredDocumentation",
"src": "1568:65:0",
"text": " @dev Returns the address of the current owner."
},
"functionSelector": "8da5cb5b",
"id": 67,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "owner",
"nameLocation": "1647:5:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 60,
"nodeType": "ParameterList",
"parameters": [],
"src": "1652:2:0"
},
"returnParameters": {
"id": 63,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 62,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 67,
"src": "1684:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 61,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1684:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1683:9:0"
},
"scope": 147,
"src": "1638:85:0",
"stateMutability": "view",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 83,
"nodeType": "Block",
"src": "1841:117:0",
"statements": [
{
"condition": {
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 75,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 71,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 67,
"src": "1855:5:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 72,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1855:7:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "!=",
"rightExpression": {
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 73,
"name": "_msgSender",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 159,
"src": "1866:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 74,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1866:12:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "1855:23:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 82,
"nodeType": "IfStatement",
"src": "1851:101:0",
"trueBody": {
"id": 81,
"nodeType": "Block",
"src": "1880:72:0",
"statements": [
{
"errorCall": {
"arguments": [
{
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 77,
"name": "_msgSender",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 159,
"src": "1928:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 78,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1928:12:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 76,
"name": "OwnableUnauthorizedAccount",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 13,
"src": "1901:26:0",
"typeDescriptions": {
"typeIdentifier": "t_function_error_pure$_t_address_$returns$__$",
"typeString": "function (address) pure"
}
},
"id": 79,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1901:40:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 80,
"nodeType": "RevertStatement",
"src": "1894:47:0"
}
]
}
}
]
},
"documentation": {
"id": 68,
"nodeType": "StructuredDocumentation",
"src": "1729:62:0",
"text": " @dev Throws if the sender is not the owner."
},
"id": 84,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_checkOwner",
"nameLocation": "1805:11:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 69,
"nodeType": "ParameterList",
"parameters": [],
"src": "1816:2:0"
},
"returnParameters": {
"id": 70,
"nodeType": "ParameterList",
"parameters": [],
"src": "1841:0:0"
},
"scope": 147,
"src": "1796:162:0",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
},
{
"body": {
"id": 97,
"nodeType": "Block",
"src": "2347:47:0",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "30",
"id": 93,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2384:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
}
],
"id": 92,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "2376:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 91,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2376:7:0",
"typeDescriptions": {}
}
},
"id": 94,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2376:10:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 90,
"name": "_transferOwnership",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 146,
"src": "2357:18:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
"typeString": "function (address)"
}
},
"id": 95,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2357:30:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 96,
"nodeType": "ExpressionStatement",
"src": "2357:30:0"
}
]
},
"documentation": {
"id": 85,
"nodeType": "StructuredDocumentation",
"src": "1964:324:0",
"text": " @dev Leaves the contract without owner. It will not be possible to call\n `onlyOwner` functions. Can only be called by the current owner.\n NOTE: Renouncing ownership will leave the contract without an owner,\n thereby disabling any functionality that is only available to the owner."
},
"functionSelector": "715018a6",
"id": 98,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 88,
"kind": "modifierInvocation",
"modifierName": {
"id": 87,
"name": "onlyOwner",
"nameLocations": [
"2337:9:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 58,
"src": "2337:9:0"
},
"nodeType": "ModifierInvocation",
"src": "2337:9:0"
}
],
"name": "renounceOwnership",
"nameLocation": "2302:17:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 86,
"nodeType": "ParameterList",
"parameters": [],
"src": "2319:2:0"
},
"returnParameters": {
"id": 89,
"nodeType": "ParameterList",
"parameters": [],
"src": "2347:0:0"
},
"scope": 147,
"src": "2293:101:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 125,
"nodeType": "Block",
"src": "2613:145:0",
"statements": [
{
"condition": {
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 111,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"id": 106,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 101,
"src": "2627:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "==",
"rightExpression": {
"arguments": [
{
"hexValue": "30",
"id": 109,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2647:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
}
],
"id": 108,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "2639:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 107,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2639:7:0",
"typeDescriptions": {}
}
},
"id": 110,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2639:10:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "2627:22:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 120,
"nodeType": "IfStatement",
"src": "2623:91:0",
"trueBody": {
"id": 119,
"nodeType": "Block",
"src": "2651:63:0",
"statements": [
{
"errorCall": {
"arguments": [
{
"arguments": [
{
"hexValue": "30",
"id": 115,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2700:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
}
],
"id": 114,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "2692:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 113,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2692:7:0",
"typeDescriptions": {}
}
},
"id": 116,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2692:10:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 112,
"name": "OwnableInvalidOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 18,
"src": "2672:19:0",
"typeDescriptions": {
"typeIdentifier": "t_function_error_pure$_t_address_$returns$__$",
"typeString": "function (address) pure"
}
},
"id": 117,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2672:31:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 118,
"nodeType": "RevertStatement",
"src": "2665:38:0"
}
]
}
},
{
"expression": {
"arguments": [
{
"id": 122,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 101,
"src": "2742:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 121,
"name": "_transferOwnership",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 146,
"src": "2723:18:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
"typeString": "function (address)"
}
},
"id": 123,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "2723:28:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 124,
"nodeType": "ExpressionStatement",
"src": "2723:28:0"
}
]
},
"documentation": {
"id": 99,
"nodeType": "StructuredDocumentation",
"src": "2400:138:0",
"text": " @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner."
},
"functionSelector": "f2fde38b",
"id": 126,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 104,
"kind": "modifierInvocation",
"modifierName": {
"id": 103,
"name": "onlyOwner",
"nameLocations": [
"2603:9:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 58,
"src": "2603:9:0"
},
"nodeType": "ModifierInvocation",
"src": "2603:9:0"
}
],
"name": "transferOwnership",
"nameLocation": "2552:17:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 102,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 101,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "2578:8:0",
"nodeType": "VariableDeclaration",
"scope": 126,
"src": "2570:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 100,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2570:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "2569:18:0"
},
"returnParameters": {
"id": 105,
"nodeType": "ParameterList",
"parameters": [],
"src": "2613:0:0"
},
"scope": 147,
"src": "2543:215:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 145,
"nodeType": "Block",
"src": "2975:124:0",
"statements": [
{
"assignments": [
133
],
"declarations": [
{
"constant": false,
"id": 133,
"mutability": "mutable",
"name": "oldOwner",
"nameLocation": "2993:8:0",
"nodeType": "VariableDeclaration",
"scope": 145,
"src": "2985:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 132,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2985:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"id": 135,
"initialValue": {
"id": 134,
"name": "_owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 8,
"src": "3004:6:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "VariableDeclarationStatement",
"src": "2985:25:0"
},
{
"expression": {
"id": 138,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 136,
"name": "_owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 8,
"src": "3020:6:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"id": 137,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 129,
"src": "3029:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "3020:17:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"id": 139,
"nodeType": "ExpressionStatement",
"src": "3020:17:0"
},
{
"eventCall": {
"arguments": [
{
"id": 141,
"name": "oldOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 133,
"src": "3073:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"id": 142,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 129,
"src": "3083:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 140,
"name": "OwnershipTransferred",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 24,
"src": "3052:20:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
"typeString": "function (address,address)"
}
},
"id": 143,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "3052:40:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 144,
"nodeType": "EmitStatement",
"src": "3047:45:0"
}
]
},
"documentation": {
"id": 127,
"nodeType": "StructuredDocumentation",
"src": "2764:143:0",
"text": " @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction."
},
"id": 146,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_transferOwnership",
"nameLocation": "2921:18:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 130,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 129,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "2948:8:0",
"nodeType": "VariableDeclaration",
"scope": 146,
"src": "2940:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 128,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2940:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "2939:18:0"
},
"returnParameters": {
"id": 131,
"nodeType": "ParameterList",
"parameters": [],
"src": "2975:0:0"
},
"scope": 147,
"src": "2912:187:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "internal"
}
],
"scope": 148,
"src": "663:2438:0",
"usedErrors": [
13,
18
],
"usedEvents": [
24
]
}
],
"src": "102:3000:0"
},
"id": 0
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"ast": {
"absolutePath": ".deps/npm/@openzeppelin/contracts/utils/Context.sol",
"exportedSymbols": {
"Context": [
177
]
},
"id": 178,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 149,
"literals": [
"solidity",
"^",
"0.8",
".20"
],
"nodeType": "PragmaDirective",
"src": "101:24:1"
},
{
"abstract": true,
"baseContracts": [],
"canonicalName": "Context",
"contractDependencies": [],
"contractKind": "contract",
"documentation": {
"id": 150,
"nodeType": "StructuredDocumentation",
"src": "127:496:1",
"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": 177,
"linearizedBaseContracts": [
177
],
"name": "Context",
"nameLocation": "642:7:1",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 158,
"nodeType": "Block",
"src": "718:34:1",
"statements": [
{
"expression": {
"expression": {
"id": 155,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "735:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 156,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "739:6:1",
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "735:10:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"functionReturnParameters": 154,
"id": 157,
"nodeType": "Return",
"src": "728:17:1"
}
]
},
"id": 159,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_msgSender",
"nameLocation": "665:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 151,
"nodeType": "ParameterList",
"parameters": [],
"src": "675:2:1"
},
"returnParameters": {
"id": 154,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 153,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 159,
"src": "709:7:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 152,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "709:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "708:9:1"
},
"scope": 177,
"src": "656:96:1",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
},
{
"body": {
"id": 167,
"nodeType": "Block",
"src": "825:32:1",
"statements": [
{
"expression": {
"expression": {
"id": 164,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "842:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 165,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "846:4:1",
"memberName": "data",
"nodeType": "MemberAccess",
"src": "842:8:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes calldata"
}
},
"functionReturnParameters": 163,
"id": 166,
"nodeType": "Return",
"src": "835:15:1"
}
]
},
"id": 168,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_msgData",
"nameLocation": "767:8:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 160,
"nodeType": "ParameterList",
"parameters": [],
"src": "775:2:1"
},
"returnParameters": {
"id": 163,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 162,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 168,
"src": "809:14:1",
"stateVariable": false,
"storageLocation": "calldata",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 161,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "809:5:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "808:16:1"
},
"scope": 177,
"src": "758:99:1",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
},
{
"body": {
"id": 175,
"nodeType": "Block",
"src": "935:25:1",
"statements": [
{
"expression": {
"hexValue": "30",
"id": 173,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "952:1:1",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
},
"functionReturnParameters": 172,
"id": 174,
"nodeType": "Return",
"src": "945:8:1"
}
]
},
"id": 176,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_contextSuffixLength",
"nameLocation": "872:20:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 169,
"nodeType": "ParameterList",
"parameters": [],
"src": "892:2:1"
},
"returnParameters": {
"id": 172,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 171,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 176,
"src": "926:7:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 170,
"name": "uint256",
"nodeType": "ElementaryTypeName",
"src": "926:7:1",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "925:9:1"
},
"scope": 177,
"src": "863:97:1",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
}
],
"scope": 178,
"src": "624:338:1",
"usedErrors": [],
"usedEvents": []
}
],
"src": "101:862:1"
},
"id": 1
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.25+commit.b61c2a91"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. The initial owner is set to the address provided by the deployer. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.",
"errors": {
"OwnableInvalidOwner(address)": [
{
"details": "The owner is not a valid owner account. (eg. `address(0)`)"
}
],
"OwnableUnauthorizedAccount(address)": [
{
"details": "The caller account is not authorized to perform an operation."
}
]
},
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the address provided by the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts/access/Ownable.sol": "Ownable"
},
"evmVersion": "cancun",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb",
"license": "MIT",
"urls": [
"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6",
"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a"
]
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2",
"license": "MIT",
"urls": [
"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12",
"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. This can
* later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)
pragma solidity ^0.8.20;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev The ETH balance of the account is not enough to perform the operation.
*/
error AddressInsufficientBalance(address account);
/**
* @dev There's no code at `target` (it is not a contract).
*/
error AddressEmptyCode(address target);
/**
* @dev A call to an address target failed. The target may have reverted.
*/
error FailedInnerCall();
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
if (address(this).balance < amount) {
revert AddressInsufficientBalance(address(this));
}
(bool success, ) = recipient.call{value: amount}("");
if (!success) {
revert FailedInnerCall();
}
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason or custom error, it is bubbled
* up by this function (like regular Solidity function calls). However, if
* the call reverted with no returned reason, this function reverts with a
* {FailedInnerCall} error.
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
if (address(this).balance < value) {
revert AddressInsufficientBalance(address(this));
}
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
* was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
* unsuccessful call.
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata
) internal view returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
// only check if target is a contract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
if (returndata.length == 0 && target.code.length == 0) {
revert AddressEmptyCode(target);
}
return returndata;
}
}
/**
* @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
* revert reason or with a default {FailedInnerCall} error.
*/
function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
if (!success) {
_revert(returndata);
} else {
return returndata;
}
}
/**
* @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
*/
function _revert(bytes memory returndata) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert FailedInnerCall();
}
}
}
// 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;
}
}
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
ref: refs/heads/main
DIRC fO�%/�fO�%/�+�����o#q{K���Sc��X�W�n.prettierrc.jsonfO�%.��fO�%.��*���}�7i��$���IQ��B.�
README.txtfO�%'���fO�%'�����+��^x;n��G�g�f6�contracts/1_Storage.solfO�%(;��fO�%(;�� ���I����*̛���>K���?�'contracts/2_Owner.solfO�%) fO�%) !�����l6 l��8Յ�%��+�Zcontracts/3_Ballot.solfO�%)׫�fO�%)׫�#���Q=Imv8�n{s9'/�:pSB�6scripts/deploy_with_ethers.tsfO�%*�TfO�%*�T$���ܠ��ݾ?87G�k�)P�.�scripts/deploy_with_web3.tsfO�%+��fO�%+��%��ՎJߕ�Q虥E؅.�u�`scripts/ethers-lib.tsfO�%,�P�fO�%,�P�&�� ��􄉵���C�� av�ascripts/web3-lib.tsfO�%-=k�fO�%-=k�(���In��ˠ/�ds�9���5��[tests/Ballot_test.solfO�%.�fO�%.�)����7�Ûv�%��1���$�s��tests/storage.test.js���`�sߣM<�&�D��
x�+)JMU047c040031QHI-�ɯ�/�,ɈO-�H-*�+)f���-�X�W]l���jU�4� ����$c��; v��������Q� ��z��!f��d&��yݟ�,���̥�7Z�����H`�*�Sv�ʗ�έ�˞�q�rT�#��j"��F�
x�+)JMU0�0a040031Q�+(J-)�L-*J��*��cش4_���{v?���#���˃� rut�u�+�(axT��<��E��F�w����:��21��������b�u�����]�}�N�FH��l\+DMqrQfP�_��N�> ܙ��p���%��@�WW�����qt~:�i��K� �}}�O�
x���K!D]s����n�c�q��chFCz��w��EU����R��F}�� z��9�!���h�%$���m�8j�r�<j��^��B��m�.ť��Z.@���C��#*���{���$�e� 'h\���+;�oݚE}��B�
x��R]k�0ݳ�EO64��<l��A�` ��h cY���ɒ']� ��}rlg1dz�u��БJmK8_�z6������٥�h<�>VhHm���au9[�<IZ'��o�����2�/yor~��"QMksب�[BO��aV@��Zy&�dAJ
�w��w���;Xwl~���jAsiM��^��r��$?_ܾ�j���dD����c�@\�.�[��� Zg[��$�E���P�4��=� F��J�X�ZC�AJ�d��aM4y|��)��T���Y�ʱ,����"�� ��dG�(\+c�ٮ������ݦl���l��l����z�=:��3�NF戮ivA��3`�@��`*|�|m����kA�6�������N����0E&�ٿ��v��^#g��xT���7������VgG�����`��|��� >�5�
x�M�QK�0�}�8a-s-�c���d�MD����K��ܢe쿛v���{�wϹ)�-�^��9^��SC
���{*�%u����:QS i ;!9���A��|��U��(@�5 Ohő�{G#MڶS:�������� μ�1�QPPeC��'����h��!��n�e����}o��v�Hߌ�L[M&rp��}��XDz� ����Q/Q��.p�.�|A/���x�.�(~0I���`7L'F���������gZ��S/�����ʭ�L�:�e��� �_���~�e���îݔ�A�4:�I���3
x���[
�0E��*f��4Oq+y֠iJHwoq~���� ��2�s}=%�BI�m�Q�M�l�c0�f�1KN±�������J
;�^��L���ZI�����:�ײ��e���m��<���H�ƒ�p���߽��ٻ�GYpk���g��Ⱦ)F�
x��RMO�0 �_a�� ֡�‐8rw7�ڈ,�;���w���(�q�(��{~�SW�����h��<T:`a��V���h]V �h��WAz=g�8#@��� ٤���$Y3����a�9I�5܃��Z{��Pg��=&����T�U��`=E�do_�y,);�im%��H�a��,2�(��f�h�İ���)�
��������$~t�=J~����vt��o��+��-�ɅN��8Pr�r�J�m� @���tGF�<��R��
�-�����~?g�\�
��9��E#�7��f�5��+dm��L[�n���]v|��~��[܊����Ķ�y:����:k�y�ıa���V��ƕ��g<�
x�]S�n�0�Y_����B�C7I���q$@�^I+��D
$m�0��YR˽"�3;3\f������o�d�j����d,�4���[�Q�^\Dp����x*�%�V�`���� 6p��HUdz%6�t��8 E`��o�������Tji��2��7��&�PL��M��M��a\��r���a2��1���[m���!�1
w��c���&N��c9���/�k@�W9$S� �Ҙ+ 8����������
���.|1h���8D���&Q�*Yuݹ|>L;W3.MSXjGl]pms#[���a�����2_��P�"���1�ie�Nj��,�_t̏�� 7fr���|�����Dߛp��gtk�p���dҁѦcI��A�f�Zy!wkT�7��Km��eI���[���n<0X�Cn���i)xj,%�C��P#�E�u��%�D��xqE�w����Yp���/m+ ��`�?0�a�FbV��go�4걲�@XM�h׿=��LV���&�&��`M/�L�hv��2��c9�f�;L�@fr>�#�'�;�uA�S=��NZ��Σ2�{�n&!������^�烲|z==�=��#h6L�ؓ�A��F�04]��D ���D�v�wz� ���
x�}T�n1�y�b��T�M��� P�P�"*�oȻ��Xx�0�&�P�����MA��^<�s�g�k�ËWgg� ������Fh�^K4^�
�>�ޜ�̖I�!Q���J*��w�e�:[��e�&[^$��7�<Lւ�Z�Ea ;cƏ �'' ��{��F��3H�_����s(��T�3-��I���?I��������V�����1�2x(-���ϠmU)SEck����ϣ��{�`���[ �e~�R[o7�@�P�yK����Q��c6g�-Nt]�_#���AUS���)��FN�� 3u�ش��4FV4^Y�V&:#�A� ����P���Y��+�!ȅ�ф@�y��8Ƿ5sjƠp��2ԁJ��tQmu�ȥ�7�eFf_[£l�>JTz4 ��V��(Bn�1">ֶlLض(�Ғ�a���(����S���� �qE�,���rM��:n���J��2�w/��1�Țꐻ6�]�9�� X�ڳNar9�~ w'�1}����k�0 a�&`hw�m��K�;)LDx�=5��������l�N�����$���X V#�EPsz��rq�Тa�Y�p�Їc�C)�տ�8[����I�.���ΰ$�aP� f����v�ƣ�>j�w�4�VE?�#��t-0�'�ڛ�d�}C���� �ZGԞ�U���� � [�R�Y�d�D��=�� B��
x�+)JMU042`040031Q0�.�/JLO�+��a�+'z)��:o��&����43��P�F���y�E`e3=��v[���}3�yw}j?C��8�)1''�����3�-���W�1I[� [��1,
x����
�0 �=�)F�2ă��-D��xh�L��)m&�ػ�6�1�9%��|��"�m�E�M1|��2����?�U���
�<��+��%� I�m>\�R�Y�to�t���E�oF������^p�`�pR�J$������hx��8��~������N񯌇���=ꐶ������5��/�̢�
x�mT_k�0߳?�= �TnV�b�n�Ơ���>�a "�G�-InR��d��F ��~�t��V9̯�މf�����_�Z��=�Q8?�W%�慝�OO(�{�U��ak��� ��bEH��(=?����V{��J���!�?o�� ��BV�[�A����!VA�����|�����+�0�A F�ma���'�EmNI�BxQ�VZh �N�P�^�ĥ!}�z
�m�����kш�0����S]pM����_}��ϐ7��^�L��Aot� ��X��[�tL #��[;������upr 7�p�"���HR��OC�� �"JB�,U#�U��z���Sw�ʥ�),��fm��]3�[K�X��r��(6 �a(QsK-�ﯹي�;�T�k�g=�=�C����q���tQ����R��#��y�k�3�ӁѤcJ�_���(�:�����r�����d4��‚�F����u���=��B� ��~��x�����#s�A���ӹa�\���L&��g6�j��8�'�k�sq���xvb�oHa�$8�l��?��b�Jd*F��4�m�d<��Kg�D���w��e�c�So��c�v3�����66����^�� �+I���K��E�j�e�ߑ�� ���
x�M��J�0���S�a-s-C/d���� ^�h���ai2�Sf{wӮS�B��|�~Rh[��qy��xm���NR��S �(�mn�5Őְ�CJ�oT�C�� �gQ�h�Њ=�w����A�@���ϗ�3�VǨ�@A� #�3f����~2� ����`���c�A��L8ێv��h�t���>��E��� �]cˎWxf��FU<�E�j��k��=��c(�egQ���$�z�S�����g8�f�!�B��JfS���?�߸Քi['_�,à_��td���kH���l�P���4emH���i��*���
x�m�Mk�0 �w���i��|Б����a0=���[qu$v��2�ߗ�I�Au�,������)$IrE�Y�+�PY >sTL;B3���*xc!*#J V��u�O� ^��9�BDө�)�1q��a����Xw�{0Ȇ�F�e�H�lRC2-�8s�u9o<�q*����!�|b��B���y�Ɔlg$2��Ȍ���+4�H�,y����;�6��.H���F��^�lk�Q��ʘ����� T.-(k����6Yt��m�/dgT���1�U����7� 4�}|� ��XP'�~�p4�w��{��
x�uTMs�F ͙���0㺽x2�qmy���x$u���$!-��.�����R�]7͈ ������Ƶp��/����O��p������-|���ks{y���5�=�T2&�¨:
0z h�P������k��윇��`G>D�4 Tĉ�`qz�yT{�(j��K�"���q�V�GP���A�'
����~7|
˧�8������O�:g�"�z��E� �EU�5PKЫ.���p����c)��Y����G4܎s�'s������B�i�HWǖ;�X�È%6��e�PύXE�y .eUZ4nj�sF�^�:��q�zn��y����2�᧜��濉VB���T��j���nDD<M���GZ�h�IS�A�_L'�y�Rֱ��=o�\�j�d��+��-U�+���<�.�>�pi��8���X�&�y7�`�, n`O�'rBf��� �O�6�>I����ys`gfQ��w☻y��W����9RU�R>/�(s̖g3(�E�=,�}r�Vﯴ"H�b^j��B�|��H �� h�{`_�Y����|��%�^'[���C�~q�_�D~e����n�|�7������8jQyi���d�aҷ�/�\��L�M��4���;�(ym$�H>e-S)ʫt�\��J�dݴ8���is��5e} �U- L�{�b�k��"� �b&/:i�{�ؠ��!,惦��k����0��'[�$��ケ�稡�f"X+�M��%�N6��\zTJ$b��o����~ ����;�&^
x�+)JMU�0c040031QpJ���/�/I-.�+��a�ɛ����s)�M���0=w0���$�(1=U�6����|���eU%W�4��ڦ���wm�&�
x��Xm��6 ���
�_��w���0�i�m-��m�ZtA��J�Ͷ<I��(��G�Y��\;`�r�DR$��}��o�˯=���
޾y���k��Z���֊mO�՛חO��d���H^���������-�o��r2�z�&��UL��'eɕY(�-\WMI+�+�+V�<�R)9�:0��;
Z�Q�ר|5�y�ɕ3'�G*���{���iY��@�n���q�W`xL��U[E �t�)��p^�%h]�<�^�� ��譠��\�J�B�X�Uj�v~��S?� <ʜU��x�Z�:? ��4:�$�7n+
m\o��-䤆�UL[%�w�YŁ@N�"����6�5<m�)*/ �B��$���i/�H�0oOÆ�D �A�j�=�{J0�O']�ʇ)�\(����&�5-7?M� ����p����qv<
M�)Y��&,K+P��A�ͼ��%�ܫh�B:i�囵���x Ky�8��@r � ��KX 2�s�9�f~�<�i�[h� $�&WRk�g;�+���r����7�[ъ�.�4��eVP�]&)P,{ ���Hp��ZZ�#�~�\ �2�;�%�y��Y
��Ç��oS����,ˎ�)�&�X��h�pAD7T� �o��X�.BZeִr?Ck��P ��J`] �3��=���DJ?��i�7l}q"�s�),���|8��>!�+vKajP��0��c2=qU{lz���D:\+;�\�ei{�4�����v_R�!���o�ֹCo~��㺞���M�+dLп[&�,�>�V���i������� �Av�W��:z�=�v�g���;8��k�"��>$5���d~Rh]b)� �/ݕ�����;6[����o ��,w�- �V1�ߞ#�ګXb'";
I`@w}��{v�e����� �#��0��� ��r{�v���Ho3�S��H�u���V]���|ز��>�X+2m ���(v�� ����xQp�j��w��1�`lz��Z��c��=��r��G��|yQ/�!�?H�4�e�y#��z'��0_ � �A���O�0 ��?}��I=�Em�.<\��ݜ���k��>�0ș��:q�y�G7�)��7W�w�tW0�@h3V�e[���d&�<��\��)�n�����vv" Sj�bRӛ�iP�n��h������.��P����G�3O���f2lAߝm?�SP�Ug�,���Ou��� ���&������,�M��V�
�_�静���)_7�X�K�+ ǰ�T���E^�i5ߴ�V����2D���ot��-�t�D&p=��#�U���?n}�;9�pp`v&F����n��c?W�ߝV�}�G=�Lʍ���hRSrs:%��#���С�~F��<�p@�T�x�Y h��#�� v�~�&��Z���G~�bэn��������{������y�X�ϡ��ڍN�$v$F�$'���;� ��[�
5d32fc1110446d704c33dfff4995050396a519c1
{
"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": {}
}
]
}
{
"db": {
"0490f0d98c06a6234cc374564f984580f33770d4605e5781451d4971d3235a2d": "0xf873a1205931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"937514b0e72ad8da6bb5e656f25334fb09e7018992ae794d5c237fbf27a5db15": "0x4189fed09a7f208c98cc40955d071d372bafc28f8524abd604c3f938d40b68af",
"ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f": "0xf872a0399bf57501565dbd2fdcea36efa2b9aef8340a8901e3459f4a4c926275d36cdbb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"dac9f9238909bae6bedf62a95a3ac503b5e6927b8243b9b44e0e335869bef325": "0xf8518080808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f80808080808080",
"6e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2": "0xf872a034a10bfd00977f54cc3450c9b25c9b3a502a089eba0097ba35fc33c4ea5fcb54b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"1db6a1394b96218e282fb52d559676dbecfba9a78146880e35ef38cc061dbf44": "0xf871a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e280808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f80808080808080",
"acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c": "0xf872a03fbe3e504ac4e35541bebad4d0e7574668e16fefa26cd4172f93e18b59ce9486b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"de2548e2521504daf92524b329dbb037a000ed381a8f810b8607e2f8832ada7d": "0xf891a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e280808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f808080a0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c808080",
"5f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c": "0xf872a036d82c545c22b72034803633d3dda2b28e89fb704f3c111355ac43e10612aedcb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"09cc43c2655ecf235e9ef7dbf5c6f27157eb9f6e2b53433a3f0f13301ca34450": "0xf8b1a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e280808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f808080a0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"69a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bd": "0xf872a0323d89d4ba0f8b56a459710de4b44820d73e93736cfc0667f35cdd5142b70f0db84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"7b184ca9e86ac8499d2cde865d80d191cbbeca4393fd2b74df5972f5426e0895": "0xf8d1a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e280808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f8080a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"0968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315": "0xf872a03c22adb6b75b7a618594eacef369bc4f0ec06380e8630fd7580f9bf0ea413ca8b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"b955e456c73a5460828b40c246ac4e09b60c899b969e7a9520783863649f104a": "0xf8f1a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f8080a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"70f09e0afc485ee4555a5c2bcb5380fe4745dfb619c97ce55ca368555f4c0358": "0xf872a03b9f0f05f155b5df3bbdd079fa47bedd6da0e32966c72f92264d98e80248858eb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"e628eda7692102d1123972b085e483fb81586793e6e4bb395f356f319785b924": "0xf90111a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0b57eae55d1d898a1388d3065de9102d0f6ade3423b29be2482e1626394acd99f80a070f09e0afc485ee4555a5c2bcb5380fe4745dfb619c97ce55ca368555f4c0358a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"021eda8d86f1724d84a155e5e0227744e3fb2f570089a70ae65750d24410fe10": "0xf872a0209bf57501565dbd2fdcea36efa2b9aef8340a8901e3459f4a4c926275d36cdbb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"35196d12c07e2405a02d095f74880568965618e95b50e64e8690594aa6bb5ea2": "0xf872a0207839edeb5b3ee9a2dee69954b24aeb3f91b8ff4c608efd90618351fe77152fb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"f4ae3d0d998ac3c8f5118c8ef3ce2ef3dc0440a900323177580df0f212f8b363": "0xf85180808080a035196d12c07e2405a02d095f74880568965618e95b50e64e8690594aa6bb5ea280808080a0021eda8d86f1724d84a155e5e0227744e3fb2f570089a70ae65750d24410fe1080808080808080",
"4b7be564e069212c8c0dd694ce21c7051e5cb7bbb527e3af73faf7e61de082c0": "0xf90111a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0f4ae3d0d998ac3c8f5118c8ef3ce2ef3dc0440a900323177580df0f212f8b36380a070f09e0afc485ee4555a5c2bcb5380fe4745dfb619c97ce55ca368555f4c0358a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515a": "0xf872a03aea7c8c479e9ff598fc761670d034e3eff2ebadb1e3769b349b2d1663d23913b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"1b83601c6f891d16b1422e65ed3cd47bcbe1342010db6168a0508de8597ac327": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0f4ae3d0d998ac3c8f5118c8ef3ce2ef3dc0440a900323177580df0f212f8b363a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa070f09e0afc485ee4555a5c2bcb5380fe4745dfb619c97ce55ca368555f4c0358a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"82f6e0ef9d3ec62e68c811432d52e6e0c907d604aed5a2a561d95e393f487d68": "0xf872a0209f0f05f155b5df3bbdd079fa47bedd6da0e32966c72f92264d98e80248858eb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"cdeaf028a7a2894d4778d6c412bfb95e81b23c2e6044f4c5d6de2ed8a50f78f3": "0xf872a020591967aed668a4b27645ff40c444892d91bf5951b382995d4d4f6ee3a2ce03b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"9d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797": "0xf85180a0cdeaf028a7a2894d4778d6c412bfb95e81b23c2e6044f4c5d6de2ed8a50f78f3808080808080808080a082f6e0ef9d3ec62e68c811432d52e6e0c907d604aed5a2a561d95e393f487d688080808080",
"0733321bda3c83f42aeeb32f8dcad18bb4f4c2b80fa60dee4b6eb25f0952524c": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0f4ae3d0d998ac3c8f5118c8ef3ce2ef3dc0440a900323177580df0f212f8b363a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"0932e0165ad0cabdfe9d8fb6a70150033d789cd07caaf499c8a37141495499c3": "0xf872a020a258265696d227eef589fd6cd14671a82aa2963ec2214eb048fca5441c4a7eb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8": "0xf87180808080a035196d12c07e2405a02d095f74880568965618e95b50e64e8690594aa6bb5ea280808080a0021eda8d86f1724d84a155e5e0227744e3fb2f570089a70ae65750d24410fe10808080a00932e0165ad0cabdfe9d8fb6a70150033d789cd07caaf499c8a37141495499c3808080",
"a137d310a084b364dfbf0de1114f64e94253e42baa0297980c4a88db4e7d9aa8": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0acc98ed24983a10e645870d5b47d42f6a1c47d94ac9165221722626a99b3660c80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"9aceb391e41ce30a6ee2c0c568b850f9fde2e425b767f72e7f4d9cc76e8271ec": "0xf872a020be3e504ac4e35541bebad4d0e7574668e16fefa26cd4172f93e18b59ce9486b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"090d9dec4c66aadc432a96de820eb6fb44489111b3b6f1f397cd9a44a0014882": "0xf872a0209ae219c4bbc2c5eaa1cd472f76bd0211bbf31053549dd7771cc573d3ed197fb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"819c926feb18dee3be8e9daa7ab62abe91febb2caceac5e8038b048d7a4bed0d": "0xf851808080808080808080808080a0090d9dec4c66aadc432a96de820eb6fb44489111b3b6f1f397cd9a44a00148828080a09aceb391e41ce30a6ee2c0c568b850f9fde2e425b767f72e7f4d9cc76e8271ec80",
"53ac286d5d31f0a7f768060b7f9f198956d75c903a698ae4fbb3dcc9f9d5e0b8": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0819c926feb18dee3be8e9daa7ab62abe91febb2caceac5e8038b048d7a4bed0d80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"1a0e275dfddaeead8d1fa18c665c7e19b15dc769d3ede56c4a85377edc877110": "0xf8719f20e219c4bbc2c5eaa1cd472f76bd0211bbf31053549dd7771cc573d3ed197fb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"ff695f1ea854ce96ed9c761374f9cc42179fddef3c76a01c05f7f1bb19725ef8": "0xf8719f201e8c4eba798a431ca40726ca69bda8c7067f1690340e5b0a08d83d00d9cbb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"f96f3afee8124cd65bfb12ead5b9bd737c7def4cb7f7c71b82b00d5da23cd77c": "0xf85180808080a0ff695f1ea854ce96ed9c761374f9cc42179fddef3c76a01c05f7f1bb19725ef88080808080a01a0e275dfddaeead8d1fa18c665c7e19b15dc769d3ede56c4a85377edc877110808080808080",
"d8394fa4bbb65976fe11ee9de67bd6f0fb3fa3d7b36ee09f1421dae79b17b95f": "0xe219a0f96f3afee8124cd65bfb12ead5b9bd737c7def4cb7f7c71b82b00d5da23cd77c",
"853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a": "0xf851808080808080808080808080a0d8394fa4bbb65976fe11ee9de67bd6f0fb3fa3d7b36ee09f1421dae79b17b95f8080a09aceb391e41ce30a6ee2c0c568b850f9fde2e425b767f72e7f4d9cc76e8271ec80",
"29a7ea17591b34ca73ee13832a64db6d8565d9ab4dbafea03842fabe139016fa": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0c3165ef5b21e80c163531f807c25789fef8810eda00ae7ca5ced381ff9a9515aa09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"48e73baa24091198f9b69f9c7d27ba256fc19dddebf64448a7a0fd3df28d727d": "0xf872a020ea7c8c479e9ff598fc761670d034e3eff2ebadb1e3769b349b2d1663d23913b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"dc3d58bdcff5ea646a823bebe53ec4ab457ca425e952485f0da477b44fd7bacd": "0xf872a020e7c546eb582218cf94b848c36f3b058e2518876240ae6100c4ef23d38f3e07b84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546bab": "0xf85180808080808080808080a048e73baa24091198f9b69f9c7d27ba256fc19dddebf64448a7a0fd3df28d727d80808080a0dc3d58bdcff5ea646a823bebe53ec4ab457ca425e952485f0da477b44fd7bacd80",
"c87ee106e21de6f375b1424af09b5235d42f0524163ba739aa52ff49cf6e0fb9": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0ac59032c139346dba6925ea119f110bc037a945991f7349e218edbe12d6d43e9808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"6308b1e569905401d1a378b5ead3e1cccc84e35cde12e294e91f4fea6f3396fc44": "0x608060405260043610610063575f3560e01c80638da5cb5b116100415780638da5cb5b146100b05780639e7934db146100e3578063f2fde38b146100f6575f80fd5b806312065fe01461006757806330509bca14610086578063715018a61461009c575b5f80fd5b348015610072575f80fd5b506040514781526020015b60405180910390f35b348015610091575f80fd5b5061009a610115565b005b3480156100a7575f80fd5b5061009a61015d565b3480156100bb575f80fd5b505f5460405173ffffffffffffffffffffffffffffffffffffffff909116815260200161007d565b61009a6100f13660046106b1565b61016e565b348015610101575f80fd5b5061009a610110366004610774565b61027f565b61011d610336565b61015b4761013f5f5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16906103b6565b565b610165610336565b61015b5f61050c565b610176610336565b805182511461020c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f546865206c656e677468206f6620726563697069656e747320616e6420616d6f60448201527f756e7473206d757374206265207468652073616d65000000000000000000000060648201526084015b60405180910390fd5b5f5b825181101561027a5761027282828151811061022c5761022c610794565b602002602001015184838151811061024657610246610794565b602002602001015173ffffffffffffffffffffffffffffffffffffffff166103b690919063ffffffff16565b60010161020e565b505050565b610287610336565b73ffffffffffffffffffffffffffffffffffffffff811661032a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610203565b6103338161050c565b50565b5f5473ffffffffffffffffffffffffffffffffffffffff16331461015b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610203565b80471015610420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610203565b5f8273ffffffffffffffffffffffffffffffffffffffff16826040515f6040518083038185875af1925050503d805f8114610476576040519150601f19603f3d011682016040523d82523d5f602084013e61047b565b606091505b505090508061027a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610203565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156105f4576105f4610580565b604052919050565b5f67ffffffffffffffff82111561061557610615610580565b5060051b60200190565b803573ffffffffffffffffffffffffffffffffffffffff81168114610642575f80fd5b919050565b5f82601f830112610656575f80fd5b8135610669610664826105fc565b6105ad565b8082825260208201915060208360051b86010192508583111561068a575f80fd5b602085015b838110156106a757803583526020928301920161068f565b5095945050505050565b5f80604083850312156106c2575f80fd5b823567ffffffffffffffff8111156106d8575f80fd5b8301601f810185136106e8575f80fd5b80356106f6610664826105fc565b8082825260208201915060208360051b850101925087831115610717575f80fd5b6020840193505b828410156107405761072f8461061f565b82526020938401939091019061071e565b9450505050602083013567ffffffffffffffff81111561075e575f80fd5b61076a85828601610647565b9150509250929050565b5f60208284031215610784575f80fd5b61078d8261061f565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea264697066735822122011bb03505091062ba2f36badeb156cb22e79cb0b6f312695b8beee9286797a8064736f6c634300081a0033",
"0f7fc82774152173e8cd771ad5f6c7a22b9e9f3becfc3eb12bb505dd4185c4da": "0xf838a120290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56395945b38da6a701c568545dcfcb03fcb875f56beddc4",
"b8c6c5ce7d9a6def35d25a4c554dd29f92a076eaedb0cc9c67992f4b4f75c806": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d0189056bc75e2d63003f06a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"1ab9ce07d11a6834205b25b9ca3f74268ce51f846afd587c02781e1411e6517d": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0b8c6c5ce7d9a6def35d25a4c554dd29f92a076eaedb0cc9c67992f4b4f75c806808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a05f1ef1b2e89b5ed4e71249e76600493c718bc6c6030189bfab281c7b85389a2c80",
"57ec08b8f040499409fb0220f538477790d4f010c4bb51a8dbae5da3537a86a4": "0xf872a020d82c545c22b72034803633d3dda2b28e89fb704f3c111355ac43e10612aedcb84ff84d8089056bc75e2d63100000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"7e3565e77a872072d7932a96a9f5da108ea7f4f89c83bdab318403f7de5630da": "0xf869a0204b24eae4a02d3987ca887631704554f37941d36d88eba3861c6e365c7804a5b846f8440180a00f7fc82774152173e8cd771ad5f6c7a22b9e9f3becfc3eb12bb505dd4185c4daa008b1e569905401d1a378b5ead3e1cccc84e35cde12e294e91f4fea6f3396fc44",
"98f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a890": "0xf851808080808080a057ec08b8f040499409fb0220f538477790d4f010c4bb51a8dbae5da3537a86a480a07e3565e77a872072d7932a96a9f5da108ea7f4f89c83bdab318403f7de5630da8080808080808080",
"87ce9254f66c5bc9fc7231a5b392b2ef71761e920f4fa6c098776c8169581453": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0b8c6c5ce7d9a6def35d25a4c554dd29f92a076eaedb0cc9c67992f4b4f75c806808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba09d1b5f3c8944300dda9eec33376308282aa06c11d3fdc640669ce5e506edb797a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"85e4b66db28942e28eb4548dc24d09830a757322f1697dfe5397259f47218d7c": "0xf86ca020a40a9004224e397238839b469142c546607ee7a8b114ded86182fceae00e35b849f847808307e07da056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"902b76489fd052acaca7757fcbdaf2d1aed4986dd5f52c52c3dcd61a167ef491": "0xf87180a0cdeaf028a7a2894d4778d6c412bfb95e81b23c2e6044f4c5d6de2ed8a50f78f3808080808080808080a082f6e0ef9d3ec62e68c811432d52e6e0c907d604aed5a2a561d95e393f487d688080a085e4b66db28942e28eb4548dc24d09830a757322f1697dfe5397259f47218d7c8080",
"b3c8feff49fed95d805dad0908c0e01adf66edd8019bff1148c03c8998dd60f2": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0b8c6c5ce7d9a6def35d25a4c554dd29f92a076eaedb0cc9c67992f4b4f75c806808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba0902b76489fd052acaca7757fcbdaf2d1aed4986dd5f52c52c3dcd61a167ef491a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"303f251c130f13235ffdabf930892b5048b192d4a915f11047c34e0f96a7e339": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d0289056bc75e2d62ff750aa056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"fa532eace6f357a783e6a77c6d7eb61bb80aea99dced4e4074862cb39e1b95e6": "0xf90131a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0303f251c130f13235ffdabf930892b5048b192d4a915f11047c34e0f96a7e339808080a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba0902b76489fd052acaca7757fcbdaf2d1aed4986dd5f52c52c3dcd61a167ef491a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"6abb4ee517132b328532b130ceaf55de030c230913fb8797d24683f5cad27b1a": "0xf86ba03af97556eedd035d0c1b80182155e5f5148b950fe7547a1253e2e74d703b365eb848f846808264fea056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"5df4785c783e294e57cf8c071952aa32c4b71038e50218a7fc72cbd53fd77c54": "0xf90151a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a0303f251c130f13235ffdabf930892b5048b192d4a915f11047c34e0f96a7e33980a06abb4ee517132b328532b130ceaf55de030c230913fb8797d24683f5cad27b1a80a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba0902b76489fd052acaca7757fcbdaf2d1aed4986dd5f52c52c3dcd61a167ef491a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"97d86e5fdb026919ab14142630e2f4605e5b389adf06d1b3239dc53be0805a0b": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d0389056bc75e2d62feab0ea056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"d1125a7ea0e3323ccd620e4cb3d3f73deb8c3997ade04371f8fb900cda4564f1": "0xf90151a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a097d86e5fdb026919ab14142630e2f4605e5b389adf06d1b3239dc53be0805a0b80a06abb4ee517132b328532b130ceaf55de030c230913fb8797d24683f5cad27b1a80a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba0902b76489fd052acaca7757fcbdaf2d1aed4986dd5f52c52c3dcd61a167ef491a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"c546fc374f938cc9e3c81084f2c52e5f6c09e9eea8d520828ba3514ded244284": "0xf86ba03c76d49790cfa3f0c5e6fc28e31afd97efcab3ccef5b50ddc3276fdd9f50c730b848f846808264fea056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"03f65e1988dace712edfec804f688d68d96c433db50c5e8d3f155f1376f3dce2": "0xf90171a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a097d86e5fdb026919ab14142630e2f4605e5b389adf06d1b3239dc53be0805a0ba0c546fc374f938cc9e3c81084f2c52e5f6c09e9eea8d520828ba3514ded244284a06abb4ee517132b328532b130ceaf55de030c230913fb8797d24683f5cad27b1a80a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba0902b76489fd052acaca7757fcbdaf2d1aed4986dd5f52c52c3dcd61a167ef491a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"76192ec43e4a1a922f68a1db14106ce83e5ad104a04bc1697b51bbc3bb2a4380": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d0489056bc75e2d62fcd404a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"6588f12a2033b904ecb26b29ccaacc0585714dba1055a00f5d19563e80686828": "0xf90171a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da5315808080a076192ec43e4a1a922f68a1db14106ce83e5ad104a04bc1697b51bbc3bb2a4380a0c546fc374f938cc9e3c81084f2c52e5f6c09e9eea8d520828ba3514ded244284a06abb4ee517132b328532b130ceaf55de030c230913fb8797d24683f5cad27b1a80a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba0902b76489fd052acaca7757fcbdaf2d1aed4986dd5f52c52c3dcd61a167ef491a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"847b8e40e58b6b4918db3db0b76ba1f2dab1db371c52db301ef7bff1f87c5d77": "0xf869a0396e10a72e5a4901f6a9f9f25dae87062110a23d567e739436db5920f7ec0a59b846f8448064a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"b821a1258be0b18a72c1c079e75a59cfc5c51e2ff1f41df01587efb35c683b1f": "0xf90191a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da531580a0847b8e40e58b6b4918db3db0b76ba1f2dab1db371c52db301ef7bff1f87c5d7780a076192ec43e4a1a922f68a1db14106ce83e5ad104a04bc1697b51bbc3bb2a4380a0c546fc374f938cc9e3c81084f2c52e5f6c09e9eea8d520828ba3514ded244284a06abb4ee517132b328532b130ceaf55de030c230913fb8797d24683f5cad27b1a80a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba0902b76489fd052acaca7757fcbdaf2d1aed4986dd5f52c52c3dcd61a167ef491a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"fc3264f0f8303af010cddd1daac4ff03ca22fcb799d9409f4c7c391f44b66339": "0xf86ca020a40a9004224e397238839b469142c546607ee7a8b114ded86182fceae00e35b849f847808308cbd0a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"8e4b3d7061143e05310b4709adc7fb0419cf121e8c3c7bb283eaa0a95418e426": "0xf87180a0cdeaf028a7a2894d4778d6c412bfb95e81b23c2e6044f4c5d6de2ed8a50f78f3808080808080808080a082f6e0ef9d3ec62e68c811432d52e6e0c907d604aed5a2a561d95e393f487d688080a0fc3264f0f8303af010cddd1daac4ff03ca22fcb799d9409f4c7c391f44b663398080",
"a573789f43f155c1aa6bab32963d0735f0fd3a4d77479c10f39d7f96f822ffbd": "0xf90191a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da531580a0847b8e40e58b6b4918db3db0b76ba1f2dab1db371c52db301ef7bff1f87c5d7780a076192ec43e4a1a922f68a1db14106ce83e5ad104a04bc1697b51bbc3bb2a4380a0c546fc374f938cc9e3c81084f2c52e5f6c09e9eea8d520828ba3514ded244284a06abb4ee517132b328532b130ceaf55de030c230913fb8797d24683f5cad27b1a80a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba08e4b3d7061143e05310b4709adc7fb0419cf121e8c3c7bb283eaa0a95418e426a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"fcfdc650d2f330560d1dcdd099743be60931b525ece3a99e8ed657b35e306d81": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d0589056bc75e2d62fc2e24a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"b1c20e2ba83958322fcbb53bda78b86885065193526ef49a09ffa97970de804c": "0xf90191a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da531580a0847b8e40e58b6b4918db3db0b76ba1f2dab1db371c52db301ef7bff1f87c5d7780a0fcfdc650d2f330560d1dcdd099743be60931b525ece3a99e8ed657b35e306d81a0c546fc374f938cc9e3c81084f2c52e5f6c09e9eea8d520828ba3514ded244284a06abb4ee517132b328532b130ceaf55de030c230913fb8797d24683f5cad27b1a80a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba08e4b3d7061143e05310b4709adc7fb0419cf121e8c3c7bb283eaa0a95418e426a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"5efddd856c0c77c794f4ad8cbb6a51e7a1172d179be25c74c0c4e13730c27945": "0xf86ba03af97556eedd035d0c1b80182155e5f5148b950fe7547a1253e2e74d703b365eb848f8468082b7eea056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"a88705e730eab016273b7e04d162cb80531c2e91b2aa3585eec24e28d6794337": "0xf90191a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da531580a0847b8e40e58b6b4918db3db0b76ba1f2dab1db371c52db301ef7bff1f87c5d7780a0fcfdc650d2f330560d1dcdd099743be60931b525ece3a99e8ed657b35e306d81a0c546fc374f938cc9e3c81084f2c52e5f6c09e9eea8d520828ba3514ded244284a05efddd856c0c77c794f4ad8cbb6a51e7a1172d179be25c74c0c4e13730c2794580a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba08e4b3d7061143e05310b4709adc7fb0419cf121e8c3c7bb283eaa0a95418e426a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"c4674ddbadf5983bea771e8cf60d382a0aa555bcf83fdb05ecd11c023da21baa": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d0589056bc75e2d62fc0a08a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"2c77c9eea363af567d809c5abeae1e65f57bc91c1b8ffd738bb9d77abf8c8dbc": "0xf90191a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da531580a0847b8e40e58b6b4918db3db0b76ba1f2dab1db371c52db301ef7bff1f87c5d7780a0c4674ddbadf5983bea771e8cf60d382a0aa555bcf83fdb05ecd11c023da21baaa0c546fc374f938cc9e3c81084f2c52e5f6c09e9eea8d520828ba3514ded244284a06abb4ee517132b328532b130ceaf55de030c230913fb8797d24683f5cad27b1a80a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba08e4b3d7061143e05310b4709adc7fb0419cf121e8c3c7bb283eaa0a95418e426a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"5c0633f24c577e89aacc301e1725888b46a88b5d6b0108dfaf6b1e5e87510c5e": "0xf86ba03af97556eedd035d0c1b80182155e5f5148b950fe7547a1253e2e74d703b365eb848f8468082c9fca056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"8c8f3fabcd8f05d3c5001e1d53e83ae807c5dd2ecb4a0d559cab54e3cb72ddee": "0xf90191a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da531580a0847b8e40e58b6b4918db3db0b76ba1f2dab1db371c52db301ef7bff1f87c5d7780a0c4674ddbadf5983bea771e8cf60d382a0aa555bcf83fdb05ecd11c023da21baaa0c546fc374f938cc9e3c81084f2c52e5f6c09e9eea8d520828ba3514ded244284a05c0633f24c577e89aacc301e1725888b46a88b5d6b0108dfaf6b1e5e87510c5e80a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba08e4b3d7061143e05310b4709adc7fb0419cf121e8c3c7bb283eaa0a95418e426a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"9848bd1430047dae53dad018ff28671cbd3971ee241973f85b2d65a5dc10b583": "0xf872a03931b4ed56ace4c46b68524cb5bcbf4195f1bbaacbe5228fbd090546c88dd229b84ff84d0689056bc75e2d62faf64da056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"f25415db44235d799c5d2e33fd9060684b55f5e35ee0bb74256e1091562d33f9": "0xf90191a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da531580a0847b8e40e58b6b4918db3db0b76ba1f2dab1db371c52db301ef7bff1f87c5d7780a09848bd1430047dae53dad018ff28671cbd3971ee241973f85b2d65a5dc10b583a0c546fc374f938cc9e3c81084f2c52e5f6c09e9eea8d520828ba3514ded244284a05c0633f24c577e89aacc301e1725888b46a88b5d6b0108dfaf6b1e5e87510c5e80a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba08e4b3d7061143e05310b4709adc7fb0419cf121e8c3c7bb283eaa0a95418e426a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a098f319865c15873d0af1ff7c53d606e83101b32eec787425073d11c5fd47a89080",
"37c5ebce219f2393d0c099da03d3bbca83b5b75610b457ea06181f0ed9daad45": "0xf869a0204b24eae4a02d3987ca887631704554f37941d36d88eba3861c6e365c7804a5b846f8440101a00f7fc82774152173e8cd771ad5f6c7a22b9e9f3becfc3eb12bb505dd4185c4daa008b1e569905401d1a378b5ead3e1cccc84e35cde12e294e91f4fea6f3396fc44",
"7dab6b5ed9c6f2cf7622570221bea444a8344b5efc2802184c7ea038ee25466d": "0xf851808080808080a057ec08b8f040499409fb0220f538477790d4f010c4bb51a8dbae5da3537a86a480a037c5ebce219f2393d0c099da03d3bbca83b5b75610b457ea06181f0ed9daad458080808080808080",
"c55477e3bd7cd8de17cbed1df083f10d3499f02e7a71fb74e7393133a79bbb4d": "0xf90191a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da531580a0847b8e40e58b6b4918db3db0b76ba1f2dab1db371c52db301ef7bff1f87c5d7780a09848bd1430047dae53dad018ff28671cbd3971ee241973f85b2d65a5dc10b583a0c546fc374f938cc9e3c81084f2c52e5f6c09e9eea8d520828ba3514ded244284a05c0633f24c577e89aacc301e1725888b46a88b5d6b0108dfaf6b1e5e87510c5e80a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba08e4b3d7061143e05310b4709adc7fb0419cf121e8c3c7bb283eaa0a95418e426a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a07dab6b5ed9c6f2cf7622570221bea444a8344b5efc2802184c7ea038ee25466d80",
"198bbfb9ad679715fdc4063ce97bf5aca33672ec483922707a248fe53eeb12bb": "0xf86aa0396e10a72e5a4901f6a9f9f25dae87062110a23d567e739436db5920f7ec0a59b847f8458081c8a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"d0aa0e4bdc389314dfdfb4482a084a795a1f0f9f2094bddc2fcd22b4527497a9": "0xf90191a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da531580a0198bbfb9ad679715fdc4063ce97bf5aca33672ec483922707a248fe53eeb12bb80a09848bd1430047dae53dad018ff28671cbd3971ee241973f85b2d65a5dc10b583a0c546fc374f938cc9e3c81084f2c52e5f6c09e9eea8d520828ba3514ded244284a05c0633f24c577e89aacc301e1725888b46a88b5d6b0108dfaf6b1e5e87510c5e80a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba08e4b3d7061143e05310b4709adc7fb0419cf121e8c3c7bb283eaa0a95418e426a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a07dab6b5ed9c6f2cf7622570221bea444a8344b5efc2802184c7ea038ee25466d80",
"481db21a28530f9a4e86584d5cb4fd6f21b359a684bee93719846a613d8b5399": "0xf86ba03c76d49790cfa3f0c5e6fc28e31afd97efcab3ccef5b50ddc3276fdd9f50c730b848f8468082eea9a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a0c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470",
"4189fed09a7f208c98cc40955d071d372bafc28f8524abd604c3f938d40b68af": "0xf90191a06e94ede82e8c381d422f010130a4c2ed35805be58e6783d800fbb37d000090e2a00968480c83b67f0eb2cafc1df82dbf6dcac0811f36fbd405f20c46f158da531580a0198bbfb9ad679715fdc4063ce97bf5aca33672ec483922707a248fe53eeb12bb80a09848bd1430047dae53dad018ff28671cbd3971ee241973f85b2d65a5dc10b583a0481db21a28530f9a4e86584d5cb4fd6f21b359a684bee93719846a613d8b5399a05c0633f24c577e89aacc301e1725888b46a88b5d6b0108dfaf6b1e5e87510c5e80a0aff16a3ca0d6e3544a2d4deb40842cebaf9325e6a98f2d6edc4cdce5d853e5d8a0bff66d9133cff6e91fe1878473b09aee9458c323efa078340d914a82de546baba08e4b3d7061143e05310b4709adc7fb0419cf121e8c3c7bb283eaa0a95418e426a069a571829b9b6f89efb0b65e66e59e5a26b2eb72cdfce949e0aec5e0037357bda0853082590f798e998c021e6cf314a77c9a9fa6321048ad84cd12210b7aca706a80a07dab6b5ed9c6f2cf7622570221bea444a8344b5efc2802184c7ea038ee25466d80"
},
"blocks": [
"0xf9023ff90239a00000000000000000000000000000000000000000000000000000000000000000a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347940e9281e9c6a0808672eaba6bd1220e144c9bb07aa00000000000000000000000000000000000000000000000000000000000000000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008080837a12008084664f87a780a0000000000000000000000000000000000000000000000000000000000000000088000000000000000007a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b4218080a00000000000000000000000000000000000000000000000000000000000000000c0c0c0",
"0xf90b06f90239a00620c39b2f929dccc03d6cd4c2907e4ea998b36ebf486e81d52607fcfae9eb3ea01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948945a1288dc78a6d8952a92c77aee6730b414778a00000000000000000000000000000000000000000000000000000000000000000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b9010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800183090ef78084664f87cf80a0000000000000000000000000000000000000000000000000000000000000000088000000000000000001a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b4218080a00000000000000000000000000000000000000000000000000000000000000000f908c5b908c202f908be0180010783090ef78080b9086d6080604052348015600e575f80fd5b50601633601a565b6069565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6107f7806100765f395ff3fe608060405260043610610063575f3560e01c80638da5cb5b116100415780638da5cb5b146100b05780639e7934db146100e3578063f2fde38b146100f6575f80fd5b806312065fe01461006757806330509bca14610086578063715018a61461009c575b5f80fd5b348015610072575f80fd5b506040514781526020015b60405180910390f35b348015610091575f80fd5b5061009a610115565b005b3480156100a7575f80fd5b5061009a61015d565b3480156100bb575f80fd5b505f5460405173ffffffffffffffffffffffffffffffffffffffff909116815260200161007d565b61009a6100f13660046106b1565b61016e565b348015610101575f80fd5b5061009a610110366004610774565b61027f565b61011d610336565b61015b4761013f5f5473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16906103b6565b565b610165610336565b61015b5f61050c565b610176610336565b805182511461020c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f546865206c656e677468206f6620726563697069656e747320616e6420616d6f60448201527f756e7473206d757374206265207468652073616d65000000000000000000000060648201526084015b60405180910390fd5b5f5b825181101561027a5761027282828151811061022c5761022c610794565b602002602001015184838151811061024657610246610794565b602002602001015173ffffffffffffffffffffffffffffffffffffffff166103b690919063ffffffff16565b60010161020e565b505050565b610287610336565b73ffffffffffffffffffffffffffffffffffffffff811661032a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610203565b6103338161050c565b50565b5f5473ffffffffffffffffffffffffffffffffffffffff16331461015b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610203565b80471015610420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610203565b5f8273ffffffffffffffffffffffffffffffffffffffff16826040515f6040518083038185875af1925050503d805f8114610476576040519150601f19603f3d011682016040523d82523d5f602084013e61047b565b606091505b505090508061027a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610203565b5f805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156105f4576105f4610580565b604052919050565b5f67ffffffffffffffff82111561061557610615610580565b5060051b60200190565b803573ffffffffffffffffffffffffffffffffffffffff81168114610642575f80fd5b919050565b5f82601f830112610656575f80fd5b8135610669610664826105fc565b6105ad565b8082825260208201915060208360051b86010192508583111561068a575f80fd5b602085015b838110156106a757803583526020928301920161068f565b5095945050505050565b5f80604083850312156106c2575f80fd5b823567ffffffffffffffff8111156106d8575f80fd5b8301601f810185136106e8575f80fd5b80356106f6610664826105fc565b8082825260208201915060208360051b850101925087831115610717575f80fd5b6020840193505b828410156107405761072f8461061f565b82526020938401939091019061071e565b9450505050602083013567ffffffffffffffff81111561075e575f80fd5b61076a85828601610647565b9150509250929050565b5f60208284031215610784575f80fd5b61078d8261061f565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffdfea264697066735822122011bb03505091062ba2f36badeb156cb22e79cb0b6f312695b8beee9286797a8064736f6c634300081a0033c080a06ee53b5efb3a25b3b3ce3dd0419fa3757ffbfe4ad31ed8dc126b702a91c42f2fa06a45e02af869bd6ee5a33a4ca34d547d4201f171fa69770a6a535d42dac40579c0c0",
"0xf90370f90239a0b9fd42cba486ab66074c927da0555109e088b37644e7aca909bffd507c3ab541a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d493479494d76e24f818426ae84aa404140e8d5f60e10e7ea00000000000000000000000000000000000000000000000000000000000000000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008002832dc6c08084664f882080a0000000000000000000000000000000000000000000000000000000000000000088000000000000000001a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b4218080a00000000000000000000000000000000000000000000000000000000000000000f9012fb9012c02f9012801010107832dc6c094d9145cce52d386f254917e481eb44e9943f3913880b8c49e7934db000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000491ae4a7be91bb6b84232bac79a9cd5ab017e71500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064c080a0aece628f6be5499d7bfd5e5f0a38adbb8105f289a709b9e62c5f5b5398d20108a00dc181ddc3a767c75ec099a47fe61bb97d3878bf8df48c2c06b6fb5f3065df14c0c0",
"0xf90370f90239a052e36158464409ec23d96b2ebdcf229d780111832831ce04596f620aaa2fd858a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347940e9281e9c6a0808672eaba6bd1220e144c9bb07aa00000000000000000000000000000000000000000000000000000000000000000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008003832dc6c08084664f883080a0000000000000000000000000000000000000000000000000000000000000000088000000000000000001a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b4218080a00000000000000000000000000000000000000000000000000000000000000000f9012fb9012c02f9012801020107832dc6c094d9145cce52d386f254917e481eb44e9943f3913880b8c49e7934db000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000491ae4a7be91bb6b84232bac79a9cd5ab017e71500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064c080a08938ea083f8dd52988517ce365e11550b6e55422e48226ad02266375e3179196a02e39f9e842d902f0459f290be887bda8abef50002b4b6ce90049d04dcd209f1cc0c0",
"0xf90370f90239a003733a6bcbae827ba63be7ee023a40e98410cfa3d38f315e7a8a96f9a7de36dfa01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347948945a1288dc78a6d8952a92c77aee6730b414778a00000000000000000000000000000000000000000000000000000000000000000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b9010000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800483010ea08084664f884980a0000000000000000000000000000000000000000000000000000000000000000088000000000000000001a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b4218080a00000000000000000000000000000000000000000000000000000000000000000f9012fb9012c02f901280103010783010ea094d9145cce52d386f254917e481eb44e9943f3913864b8c49e7934db000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000491ae4a7be91bb6b84232bac79a9cd5ab017e71500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064c080a04dc78ee7b87d2488198a0ef20770f90a1e35a0d237fbd2b68ecb8182d1ef2765a051ed0154101a1679a877a9b862fcd1df4020b6d23119f7af0598d77f554f80c7c0c0",
"0xf90370f90239a0c9d288d4d044e239f8e42348e09155cc41aad502c7c17b96546c07d6d09fdbf2a01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d493479494d76e24f818426ae84aa404140e8d5f60e10e7ea00000000000000000000000000000000000000000000000000000000000000000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008005832dc6c08084664f886080a0000000000000000000000000000000000000000000000000000000000000000088000000000000000001a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b4218080a00000000000000000000000000000000000000000000000000000000000000000f9012fb9012c02f9012801040107832dc6c094d9145cce52d386f254917e481eb44e9943f3913863b8c49e7934db000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000491ae4a7be91bb6b84232bac79a9cd5ab017e71500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064c001a0d4f950a3cd07b011edc0dd253d6d90dae19bcbef0c4a02359108e0939db7158fa04e0926ce300a6dced5daaf96097c1e702873fe8f53c08898419fa4bfd1063f99c0c0",
"0xf9036ef90238a0bf7b31cf2700dc242ced5c34321bb5422110d9718555969ce07b08b915d3304ba01dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347940e9281e9c6a0808672eaba6bd1220e144c9bb07aa00000000000000000000000000000000000000000000000000000000000000000a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421b90100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008006829e528084664f886680a0000000000000000000000000000000000000000000000000000000000000000088000000000000000001a056e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b4218080a00000000000000000000000000000000000000000000000000000000000000000f9012eb9012b02f9012701050107829e5294d9145cce52d386f254917e481eb44e9943f3913865b8c49e7934db000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000491ae4a7be91bb6b84232bac79a9cd5ab017e71500000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000064c080a0bf553bdd4729403e97f7bbabe67371b76499c78a6b8464bb9227f65733a68197a0424eb086a24dca59debbd43f6a2b85d28508b10af9ac533031ba0e3522a70e93c0c0"
],
"latestBlockNumber": "0x6"
}
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.
{
"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": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212208fa4d2b73eb2f05add832446bd3671a5cd9f5039d027ef48542635a22496198764736f6c63430008130033",
"opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP16 LOG4 0xD2 0xB7 RETURNDATACOPY 0xB2 CREATE GAS 0xDD DUP4 0x24 CHAINID 0xBD CALLDATASIZE PUSH18 0xA5CD9F5039D027EF48542635A22496198764 PUSH20 0x6F6C634300081300330000000000000000000000 ",
"sourceMap": "3967:9169:0:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;3967:9169:0;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212208fa4d2b73eb2f05add832446bd3671a5cd9f5039d027ef48542635a22496198764736f6c63430008130033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP16 LOG4 0xD2 0xB7 RETURNDATACOPY 0xB2 CREATE GAS 0xDD DUP4 0x24 CHAINID 0xBD CALLDATASIZE PUSH18 0xA5CD9F5039D027EF48542635A22496198764 PUSH20 0x6F6C634300081300330000000000000000000000 ",
"sourceMap": "3967:9169:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "103",
"totalCost": "17303"
},
"internal": {
"_revert(bytes memory,string memory)": "infinite",
"functionCall(address,bytes memory)": "infinite",
"functionCall(address,bytes memory,string memory)": "infinite",
"functionCallWithValue(address,bytes memory,uint256)": "infinite",
"functionCallWithValue(address,bytes memory,uint256,string memory)": "infinite",
"functionDelegateCall(address,bytes memory)": "infinite",
"functionDelegateCall(address,bytes memory,string memory)": "infinite",
"functionStaticCall(address,bytes memory)": "infinite",
"functionStaticCall(address,bytes memory,string memory)": "infinite",
"isContract(address)": "infinite",
"sendValue(address payable,uint256)": "infinite",
"verifyCallResult(bool,bytes memory,string memory)": "infinite",
"verifyCallResultFromTarget(address,bool,bytes memory,string memory)": "infinite"
}
},
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.19+commit.7dd6d404"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "Collection of functions related to the address type",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/GasRefill_flattened.sol": "Address"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 10000
},
"remappings": []
},
"sources": {
"contracts/GasRefill_flattened.sol": {
"keccak256": "0x44900fa05da9f7b1018577e52d136269f50904cc4abe295f1f8a50632c2cfbff",
"urls": [
"bzz-raw://b59b06f4dcb051c79936be112730bc2366a47d91dff974cab6aab9abee56ceb8",
"dweb:/ipfs/QmPsfPJK2NyyAz7xYr9bu9KJG3tmQsvvRr2zGvSwhfDTsn"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.19+commit.7dd6d404"
},
"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": {
"contracts/GasRefill_flattened.sol": "Context"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 10000
},
"remappings": []
},
"sources": {
"contracts/GasRefill_flattened.sol": {
"keccak256": "0x44900fa05da9f7b1018577e52d136269f50904cc4abe295f1f8a50632c2cfbff",
"urls": [
"bzz-raw://b59b06f4dcb051c79936be112730bc2366a47d91dff974cab6aab9abee56ceb8",
"dweb:/ipfs/QmPsfPJK2NyyAz7xYr9bu9KJG3tmQsvvRr2zGvSwhfDTsn"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_111": {
"entryPoint": null,
"id": 111,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_542": {
"entryPoint": null,
"id": 542,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_199": {
"entryPoint": 31,
"id": 199,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108788061007e6000396000f3fe6080604052600436106100655760003560e01c80638da5cb5b116100435780638da5cb5b146100b65780639e7934db146100eb578063f2fde38b146100fe57600080fd5b806312065fe01461006a57806330509bca1461008a578063715018a6146100a1575b600080fd5b34801561007657600080fd5b506040514781526020015b60405180910390f35b34801561009657600080fd5b5061009f61011e565b005b3480156100ad57600080fd5b5061009f610167565b3480156100c257600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610081565b61009f6100f93660046106d2565b610179565b34801561010a57600080fd5b5061009f610119366004610792565b610295565b61012661034c565b6101654761014960005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16906103cd565b565b61016f61034c565b6101656000610527565b61018161034c565b8051825114610217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f546865206c656e677468206f6620726563697069656e747320616e6420616d6f60448201527f756e7473206d757374206265207468652073616d65000000000000000000000060648201526084015b60405180910390fd5b60005b82518110156102905761027e828281518110610238576102386107b4565b6020026020010151848381518110610252576102526107b4565b602002602001015173ffffffffffffffffffffffffffffffffffffffff166103cd90919063ffffffff16565b80610288816107e3565b91505061021a565b505050565b61029d61034c565b73ffffffffffffffffffffffffffffffffffffffff8116610340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161020e565b61034981610527565b50565b60005473ffffffffffffffffffffffffffffffffffffffff163314610165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161020e565b80471015610437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161020e565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610491576040519150601f19603f3d011682016040523d82523d6000602084013e610496565b606091505b5050905080610290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161020e565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156106125761061261059c565b604052919050565b600067ffffffffffffffff8211156106345761063461059c565b5060051b60200190565b803573ffffffffffffffffffffffffffffffffffffffff8116811461066257600080fd5b919050565b600082601f83011261067857600080fd5b8135602061068d6106888361061a565b6105cb565b82815260059290921b840181019181810190868411156106ac57600080fd5b8286015b848110156106c757803583529183019183016106b0565b509695505050505050565b600080604083850312156106e557600080fd5b823567ffffffffffffffff808211156106fd57600080fd5b818501915085601f83011261071157600080fd5b813560206107216106888361061a565b82815260059290921b8401810191818101908984111561074057600080fd5b948201945b83861015610765576107568661063e565b82529482019490820190610745565b9650508601359250508082111561077b57600080fd5b5061078885828601610667565b9150509250929050565b6000602082840312156107a457600080fd5b6107ad8261063e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361083b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b506001019056fea26469706673582212209218011cc242c7e726e63e2092b44f47d772bc8e51131fac6b103258d902454e64736f6c63430008130033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x1A CALLER PUSH2 0x1F JUMP JUMPDEST PUSH2 0x6F JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x878 DUP1 PUSH2 0x7E PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x65 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x43 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0x9E7934DB EQ PUSH2 0xEB JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0xFE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x12065FE0 EQ PUSH2 0x6A JUMPI DUP1 PUSH4 0x30509BCA EQ PUSH2 0x8A JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xA1 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x76 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD SELFBALANCE DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x96 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9F PUSH2 0x11E JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9F PUSH2 0x167 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x0 SLOAD PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x81 JUMP JUMPDEST PUSH2 0x9F PUSH2 0xF9 CALLDATASIZE PUSH1 0x4 PUSH2 0x6D2 JUMP JUMPDEST PUSH2 0x179 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9F PUSH2 0x119 CALLDATASIZE PUSH1 0x4 PUSH2 0x792 JUMP JUMPDEST PUSH2 0x295 JUMP JUMPDEST PUSH2 0x126 PUSH2 0x34C JUMP JUMPDEST PUSH2 0x165 SELFBALANCE PUSH2 0x149 PUSH1 0x0 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH2 0x3CD JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x16F PUSH2 0x34C JUMP JUMPDEST PUSH2 0x165 PUSH1 0x0 PUSH2 0x527 JUMP JUMPDEST PUSH2 0x181 PUSH2 0x34C JUMP JUMPDEST DUP1 MLOAD DUP3 MLOAD EQ PUSH2 0x217 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x35 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x546865206C656E677468206F6620726563697069656E747320616E6420616D6F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x756E7473206D757374206265207468652073616D650000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x290 JUMPI PUSH2 0x27E DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x238 JUMPI PUSH2 0x238 PUSH2 0x7B4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x252 JUMPI PUSH2 0x252 PUSH2 0x7B4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x3CD SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 PUSH2 0x288 DUP2 PUSH2 0x7E3 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x21A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x29D PUSH2 0x34C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND PUSH2 0x340 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x20E JUMP JUMPDEST PUSH2 0x349 DUP2 PUSH2 0x527 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER EQ PUSH2 0x165 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x20E JUMP JUMPDEST DUP1 SELFBALANCE LT ISZERO PUSH2 0x437 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x20E JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x491 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x496 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x290 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x3A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20756E61626C6520746F2073656E642076616C75652C2072 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6563697069656E74206D61792068617665207265766572746564000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x20E JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 AND PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x612 JUMPI PUSH2 0x612 PUSH2 0x59C JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x634 JUMPI PUSH2 0x634 PUSH2 0x59C JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x662 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x678 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0x68D PUSH2 0x688 DUP4 PUSH2 0x61A JUMP JUMPDEST PUSH2 0x5CB JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x5 SWAP3 SWAP1 SWAP3 SHL DUP5 ADD DUP2 ADD SWAP2 DUP2 DUP2 ADD SWAP1 DUP7 DUP5 GT ISZERO PUSH2 0x6AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP7 ADD JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x6C7 JUMPI DUP1 CALLDATALOAD DUP4 MSTORE SWAP2 DUP4 ADD SWAP2 DUP4 ADD PUSH2 0x6B0 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x6FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x711 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0x721 PUSH2 0x688 DUP4 PUSH2 0x61A JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x5 SWAP3 SWAP1 SWAP3 SHL DUP5 ADD DUP2 ADD SWAP2 DUP2 DUP2 ADD SWAP1 DUP10 DUP5 GT ISZERO PUSH2 0x740 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP5 DUP3 ADD SWAP5 JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0x765 JUMPI PUSH2 0x756 DUP7 PUSH2 0x63E JUMP JUMPDEST DUP3 MSTORE SWAP5 DUP3 ADD SWAP5 SWAP1 DUP3 ADD SWAP1 PUSH2 0x745 JUMP JUMPDEST SWAP7 POP POP DUP7 ADD CALLDATALOAD SWAP3 POP POP DUP1 DUP3 GT ISZERO PUSH2 0x77B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x788 DUP6 DUP3 DUP7 ADD PUSH2 0x667 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x7A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7AD DUP3 PUSH2 0x63E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x83B JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP3 XOR ADD SHR 0xC2 TIMESTAMP 0xC7 0xE7 0x26 0xE6 RETURNDATACOPY KECCAK256 SWAP3 0xB4 0x4F SELFBALANCE 0xD7 PUSH19 0xBC8E51131FAC6B103258D902454E64736F6C63 NUMBER STOP ADDMOD SGT STOP CALLER ",
"sourceMap": "337:622:0:-:0;;;;;;;;;;;;-1:-1:-1;936:32:1;734:10:3;936:18:1;:32::i;:::-;337:622:0;;2426:187:1;2499:16;2518:6;;-1:-1:-1;;;;;2534:17:1;;;-1:-1:-1;;;;;;2534:17:1;;;;;;2566:40;;2518:6;;;;;;;2566:40;;2499:16;2566:40;2489:124;2426:187;:::o;337:622:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_checkOwner_142": {
"entryPoint": 844,
"id": 142,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_542": {
"entryPoint": null,
"id": 542,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_199": {
"entryPoint": 1319,
"id": 199,
"parameterSlots": 1,
"returnSlots": 0
},
"@claimBalance_86": {
"entryPoint": 286,
"id": 86,
"parameterSlots": 0,
"returnSlots": 0
},
"@distributeEther_55": {
"entryPoint": 377,
"id": 55,
"parameterSlots": 2,
"returnSlots": 0
},
"@getBalance_67": {
"entryPoint": null,
"id": 67,
"parameterSlots": 0,
"returnSlots": 1
},
"@owner_128": {
"entryPoint": null,
"id": 128,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_156": {
"entryPoint": 359,
"id": 156,
"parameterSlots": 0,
"returnSlots": 0
},
"@sendValue_252": {
"entryPoint": 973,
"id": 252,
"parameterSlots": 2,
"returnSlots": 0
},
"@transferOwnership_179": {
"entryPoint": 661,
"id": 179,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_address": {
"entryPoint": 1598,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_array_uint256_dyn": {
"entryPoint": 1639,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 1938,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 1746,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f8e1e45e297bd8c175b2e8a9a484b1a78a9c256b9e7da727886337f4b6aeb919__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": null,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 1483,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_array_address_dyn": {
"entryPoint": 1562,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 2019,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x32": {
"entryPoint": 1972,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1436,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6078:4",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:4",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "115:76:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "125:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "137:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "148:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "133:3:4"
},
"nodeType": "YulFunctionCall",
"src": "133:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "125:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "167:9:4"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "178:6:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "160:6:4"
},
"nodeType": "YulFunctionCall",
"src": "160:25:4"
},
"nodeType": "YulExpressionStatement",
"src": "160:25:4"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "84:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "95:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "106:4:4",
"type": ""
}
],
"src": "14:177:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "297:125:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "307:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "319:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "330:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "315:3:4"
},
"nodeType": "YulFunctionCall",
"src": "315:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "307:4:4"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "349:9:4"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "364:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "372:42:4",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "360:3:4"
},
"nodeType": "YulFunctionCall",
"src": "360:55:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "342:6:4"
},
"nodeType": "YulFunctionCall",
"src": "342:74:4"
},
"nodeType": "YulExpressionStatement",
"src": "342:74:4"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "266:9:4",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "277:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "288:4:4",
"type": ""
}
],
"src": "196:226:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "459:152:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "476:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "479:77:4",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "469:6:4"
},
"nodeType": "YulFunctionCall",
"src": "469:88:4"
},
"nodeType": "YulExpressionStatement",
"src": "469:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "573:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "576:4:4",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "566:6:4"
},
"nodeType": "YulFunctionCall",
"src": "566:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "566:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "597:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "600:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "590:6:4"
},
"nodeType": "YulFunctionCall",
"src": "590:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "590:15:4"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "427:184:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "661:289:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "671:19:4",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "687:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "681:5:4"
},
"nodeType": "YulFunctionCall",
"src": "681:9:4"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "671:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "699:117:4",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "721:6:4"
},
{
"arguments": [
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "737:4:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "743:2:4",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "733:3:4"
},
"nodeType": "YulFunctionCall",
"src": "733:13:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "748:66:4",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "729:3:4"
},
"nodeType": "YulFunctionCall",
"src": "729:86:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "717:3:4"
},
"nodeType": "YulFunctionCall",
"src": "717:99:4"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "703:10:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "891:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "893:16:4"
},
"nodeType": "YulFunctionCall",
"src": "893:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "893:18:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "834:10:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "846:18:4",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "831:2:4"
},
"nodeType": "YulFunctionCall",
"src": "831:34:4"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "870:10:4"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "882:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "867:2:4"
},
"nodeType": "YulFunctionCall",
"src": "867:22:4"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "828:2:4"
},
"nodeType": "YulFunctionCall",
"src": "828:62:4"
},
"nodeType": "YulIf",
"src": "825:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "929:2:4",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "933:10:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "922:6:4"
},
"nodeType": "YulFunctionCall",
"src": "922:22:4"
},
"nodeType": "YulExpressionStatement",
"src": "922:22:4"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "641:4:4",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "650:6:4",
"type": ""
}
],
"src": "616:334:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1024:114:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1068:22:4",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1070:16:4"
},
"nodeType": "YulFunctionCall",
"src": "1070:18:4"
},
"nodeType": "YulExpressionStatement",
"src": "1070:18:4"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1040:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1048:18:4",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1037:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1037:30:4"
},
"nodeType": "YulIf",
"src": "1034:56:4"
},
{
"nodeType": "YulAssignment",
"src": "1099:33:4",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1115:1:4",
"type": "",
"value": "5"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1118:6:4"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1111:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1111:14:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1127:4:4",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1107:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1107:25:4"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "1099:4:4"
}
]
}
]
},
"name": "array_allocation_size_array_address_dyn",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1004:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "1015:4:4",
"type": ""
}
],
"src": "955:183:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1192:147:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1202:29:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1224:6:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1211:12:4"
},
"nodeType": "YulFunctionCall",
"src": "1211:20:4"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1202:5:4"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1317:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1326:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1329:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1319:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1319:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1319:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1253:5:4"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1264:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1271:42:4",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1260:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1260:54:4"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1250:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1250:65:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1243:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1243:73:4"
},
"nodeType": "YulIf",
"src": "1240:93:4"
}
]
},
"name": "abi_decode_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1171:6:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1182:5:4",
"type": ""
}
],
"src": "1143:196:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1408:598:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1457:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1466:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1469:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1459:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1459:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1459:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1436:6:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1444:4:4",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1432:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1432:17:4"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1451:3:4"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1428:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1428:27:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1421:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1421:35:4"
},
"nodeType": "YulIf",
"src": "1418:55:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1482:30:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1505:6:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1492:12:4"
},
"nodeType": "YulFunctionCall",
"src": "1492:20:4"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1486:2:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1521:14:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1531:4:4",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "1525:2:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1544:71:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1611:2:4"
}
],
"functionName": {
"name": "array_allocation_size_array_address_dyn",
"nodeType": "YulIdentifier",
"src": "1571:39:4"
},
"nodeType": "YulFunctionCall",
"src": "1571:43:4"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "1555:15:4"
},
"nodeType": "YulFunctionCall",
"src": "1555:60:4"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1548:3:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1624:16:4",
"value": {
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1637:3:4"
},
"variables": [
{
"name": "dst_1",
"nodeType": "YulTypedName",
"src": "1628:5:4",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1656:3:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1661:2:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1649:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1649:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "1649:15:4"
},
{
"nodeType": "YulAssignment",
"src": "1673:19:4",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1684:3:4"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1689:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1680:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1680:12:4"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1673:3:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1701:46:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1723:6:4"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1735:1:4",
"type": "",
"value": "5"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1738:2:4"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1731:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1731:10:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1719:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1719:23:4"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1744:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1715:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1715:32:4"
},
"variables": [
{
"name": "srcEnd",
"nodeType": "YulTypedName",
"src": "1705:6:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1775:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1784:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1787:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1777:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1777:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "1777:12:4"
}
]
},
"condition": {
"arguments": [
{
"name": "srcEnd",
"nodeType": "YulIdentifier",
"src": "1762:6:4"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1770:3:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1759:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1759:15:4"
},
"nodeType": "YulIf",
"src": "1756:35:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1800:26:4",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1815:6:4"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1823:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1811:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1811:15:4"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1804:3:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1891:86:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1912:3:4"
},
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1930:3:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1917:12:4"
},
"nodeType": "YulFunctionCall",
"src": "1917:17:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1905:6:4"
},
"nodeType": "YulFunctionCall",
"src": "1905:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "1905:30:4"
},
{
"nodeType": "YulAssignment",
"src": "1948:19:4",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1959:3:4"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1964:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1955:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1955:12:4"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1948:3:4"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1846:3:4"
},
{
"name": "srcEnd",
"nodeType": "YulIdentifier",
"src": "1851:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1843:2:4"
},
"nodeType": "YulFunctionCall",
"src": "1843:15:4"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1859:23:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1861:19:4",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1872:3:4"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1877:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1868:3:4"
},
"nodeType": "YulFunctionCall",
"src": "1868:12:4"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1861:3:4"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1839:3:4",
"statements": []
},
"src": "1835:142:4"
},
{
"nodeType": "YulAssignment",
"src": "1986:14:4",
"value": {
"name": "dst_1",
"nodeType": "YulIdentifier",
"src": "1995:5:4"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1986:5:4"
}
]
}
]
},
"name": "abi_decode_array_uint256_dyn",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1382:6:4",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1390:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1398:5:4",
"type": ""
}
],
"src": "1344:662:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2148:1009:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2194:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2203:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2206:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2196:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2196:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "2196:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2169:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2178:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2165:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2165:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2190:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2161:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2161:32:4"
},
"nodeType": "YulIf",
"src": "2158:52:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2219:37:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2246:9:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2233:12:4"
},
"nodeType": "YulFunctionCall",
"src": "2233:23:4"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2223:6:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2265:28:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2275:18:4",
"type": "",
"value": "0xffffffffffffffff"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "2269:2:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2320:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2329:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2332:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2322:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2322:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "2322:12:4"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2308:6:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2316:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2305:2:4"
},
"nodeType": "YulFunctionCall",
"src": "2305:14:4"
},
"nodeType": "YulIf",
"src": "2302:34:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2345:32:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2359:9:4"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2370:6:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2355:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2355:22:4"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "2349:2:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2425:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2434:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2437:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2427:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2427:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "2427:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "2404:2:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2408:4:4",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2400:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2400:13:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2415:7:4"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2396:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2396:27:4"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2389:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2389:35:4"
},
"nodeType": "YulIf",
"src": "2386:55:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2450:26:4",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "2473:2:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2460:12:4"
},
"nodeType": "YulFunctionCall",
"src": "2460:16:4"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "2454:2:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2485:14:4",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2495:4:4",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "2489:2:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2508:71:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "2575:2:4"
}
],
"functionName": {
"name": "array_allocation_size_array_address_dyn",
"nodeType": "YulIdentifier",
"src": "2535:39:4"
},
"nodeType": "YulFunctionCall",
"src": "2535:43:4"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "2519:15:4"
},
"nodeType": "YulFunctionCall",
"src": "2519:60:4"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2512:3:4",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2588:16:4",
"value": {
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2601:3:4"
},
"variables": [
{
"name": "dst_1",
"nodeType": "YulTypedName",
"src": "2592:5:4",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2620:3:4"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "2625:2:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2613:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2613:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "2613:15:4"
},
{
"nodeType": "YulAssignment",
"src": "2637:19:4",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2648:3:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "2653:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2644:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2644:12:4"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2637:3:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2665:42:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "2687:2:4"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2695:1:4",
"type": "",
"value": "5"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "2698:2:4"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2691:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2691:10:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2683:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2683:19:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "2704:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2679:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2679:28:4"
},
"variables": [
{
"name": "srcEnd",
"nodeType": "YulTypedName",
"src": "2669:6:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2739:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2748:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2751:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2741:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2741:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "2741:12:4"
}
]
},
"condition": {
"arguments": [
{
"name": "srcEnd",
"nodeType": "YulIdentifier",
"src": "2722:6:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2730:7:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2719:2:4"
},
"nodeType": "YulFunctionCall",
"src": "2719:19:4"
},
"nodeType": "YulIf",
"src": "2716:39:4"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2764:22:4",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "2779:2:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "2783:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2775:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2775:11:4"
},
"variables": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2768:3:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2851:92:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2872:3:4"
},
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2896:3:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "2877:18:4"
},
"nodeType": "YulFunctionCall",
"src": "2877:23:4"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2865:6:4"
},
"nodeType": "YulFunctionCall",
"src": "2865:36:4"
},
"nodeType": "YulExpressionStatement",
"src": "2865:36:4"
},
{
"nodeType": "YulAssignment",
"src": "2914:19:4",
"value": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2925:3:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "2930:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2921:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2921:12:4"
},
"variableNames": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2914:3:4"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2806:3:4"
},
{
"name": "srcEnd",
"nodeType": "YulIdentifier",
"src": "2811:6:4"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2803:2:4"
},
"nodeType": "YulFunctionCall",
"src": "2803:15:4"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2819:23:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2821:19:4",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2832:3:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "2837:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2828:3:4"
},
"nodeType": "YulFunctionCall",
"src": "2828:12:4"
},
"variableNames": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2821:3:4"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2799:3:4",
"statements": []
},
"src": "2795:148:4"
},
{
"nodeType": "YulAssignment",
"src": "2952:15:4",
"value": {
"name": "dst_1",
"nodeType": "YulIdentifier",
"src": "2962:5:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2952:6:4"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2976:48:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3009:9:4"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "3020:2:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3005:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3005:18:4"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2992:12:4"
},
"nodeType": "YulFunctionCall",
"src": "2992:32:4"
},
"variables": [
{
"name": "offset_1",
"nodeType": "YulTypedName",
"src": "2980:8:4",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3053:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3062:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3065:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3055:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3055:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "3055:12:4"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "3039:8:4"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "3049:2:4"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3036:2:4"
},
"nodeType": "YulFunctionCall",
"src": "3036:16:4"
},
"nodeType": "YulIf",
"src": "3033:36:4"
},
{
"nodeType": "YulAssignment",
"src": "3078:73:4",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3121:9:4"
},
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "3132:8:4"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3117:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3117:24:4"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3143:7:4"
}
],
"functionName": {
"name": "abi_decode_array_uint256_dyn",
"nodeType": "YulIdentifier",
"src": "3088:28:4"
},
"nodeType": "YulFunctionCall",
"src": "3088:63:4"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3078:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2106:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2117:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2129:6:4",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2137:6:4",
"type": ""
}
],
"src": "2011:1146:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3232:116:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3278:16:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3287:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3290:1:4",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3280:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3280:12:4"
},
"nodeType": "YulExpressionStatement",
"src": "3280:12:4"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3253:7:4"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3262:9:4"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3249:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3249:23:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3274:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3245:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3245:32:4"
},
"nodeType": "YulIf",
"src": "3242:52:4"
},
{
"nodeType": "YulAssignment",
"src": "3303:39:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3332:9:4"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "3313:18:4"
},
"nodeType": "YulFunctionCall",
"src": "3313:29:4"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3303:6:4"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3198:9:4",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3209:7:4",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3221:6:4",
"type": ""
}
],
"src": "3162:186:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3527:243:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3544:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3555:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3537:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3537:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "3537:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3578:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3589:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3574:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3574:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3594:2:4",
"type": "",
"value": "53"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3567:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3567:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "3567:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3617:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3628:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3613:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3613:18:4"
},
{
"hexValue": "546865206c656e677468206f6620726563697069656e747320616e6420616d6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3633:34:4",
"type": "",
"value": "The length of recipients and amo"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3606:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3606:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "3606:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3688:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3699:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3684:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3684:18:4"
},
{
"hexValue": "756e7473206d757374206265207468652073616d65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3704:23:4",
"type": "",
"value": "unts must be the same"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3677:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3677:51:4"
},
"nodeType": "YulExpressionStatement",
"src": "3677:51:4"
},
{
"nodeType": "YulAssignment",
"src": "3737:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3749:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3760:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3745:3:4"
},
"nodeType": "YulFunctionCall",
"src": "3745:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3737:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f8e1e45e297bd8c175b2e8a9a484b1a78a9c256b9e7da727886337f4b6aeb919__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3504:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3518:4:4",
"type": ""
}
],
"src": "3353:417:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3807:152:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3824:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3827:77:4",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3817:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3817:88:4"
},
"nodeType": "YulExpressionStatement",
"src": "3817:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3921:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3924:4:4",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3914:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3914:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "3914:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3945:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3948:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3938:6:4"
},
"nodeType": "YulFunctionCall",
"src": "3938:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "3938:15:4"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "3775:184:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4011:302:4",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4110:168:4",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4131:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4134:77:4",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4124:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4124:88:4"
},
"nodeType": "YulExpressionStatement",
"src": "4124:88:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4232:1:4",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4235:4:4",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4225:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4225:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "4225:15:4"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4260:1:4",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4263:4:4",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4253:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4253:15:4"
},
"nodeType": "YulExpressionStatement",
"src": "4253:15:4"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4027:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4034:66:4",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4024:2:4"
},
"nodeType": "YulFunctionCall",
"src": "4024:77:4"
},
"nodeType": "YulIf",
"src": "4021:257:4"
},
{
"nodeType": "YulAssignment",
"src": "4287:20:4",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4298:5:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4305:1:4",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4294:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4294:13:4"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "4287:3:4"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3993:5:4",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "4003:3:4",
"type": ""
}
],
"src": "3964:349:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4492:228:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4509:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4520:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4502:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4502:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "4502:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4543:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4554:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4539:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4539:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4559:2:4",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4532:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4532:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "4532:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4582:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4593:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4578:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4578:18:4"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4598:34:4",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4571:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4571:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "4571:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4653:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4664:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4649:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4649:18:4"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4669:8:4",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4642:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4642:36:4"
},
"nodeType": "YulExpressionStatement",
"src": "4642:36:4"
},
{
"nodeType": "YulAssignment",
"src": "4687:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4699:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4710:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4695:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4695:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4687:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4469:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4483:4:4",
"type": ""
}
],
"src": "4318:402:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4899:182:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4916:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4927:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4909:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4909:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "4909:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4950:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4961:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4946:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4946:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4966:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4939:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4939:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "4939:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4989:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5000:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4985:3:4"
},
"nodeType": "YulFunctionCall",
"src": "4985:18:4"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5005:34:4",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4978:6:4"
},
"nodeType": "YulFunctionCall",
"src": "4978:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "4978:62:4"
},
{
"nodeType": "YulAssignment",
"src": "5049:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5061:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5072:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5057:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5057:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5049:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4876:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4890:4:4",
"type": ""
}
],
"src": "4725:356:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5260:179:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5277:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5288:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5270:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5270:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "5270:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5311:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5322:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5307:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5307:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5327:2:4",
"type": "",
"value": "29"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5300:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5300:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "5300:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5350:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5361:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5346:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5346:18:4"
},
{
"hexValue": "416464726573733a20696e73756666696369656e742062616c616e6365",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5366:31:4",
"type": "",
"value": "Address: insufficient balance"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5339:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5339:59:4"
},
"nodeType": "YulExpressionStatement",
"src": "5339:59:4"
},
{
"nodeType": "YulAssignment",
"src": "5407:26:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5419:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5430:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5415:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5415:18:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5407:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5237:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5251:4:4",
"type": ""
}
],
"src": "5086:353:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5635:14:4",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5637:10:4",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5644:3:4"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5637:3:4"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5619:3:4",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5627:3:4",
"type": ""
}
],
"src": "5444:205:4"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5828:248:4",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5845:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5856:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5838:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5838:21:4"
},
"nodeType": "YulExpressionStatement",
"src": "5838:21:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5879:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5890:2:4",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5875:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5875:18:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5895:2:4",
"type": "",
"value": "58"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5868:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5868:30:4"
},
"nodeType": "YulExpressionStatement",
"src": "5868:30:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5918:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5929:2:4",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5914:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5914:18:4"
},
{
"hexValue": "416464726573733a20756e61626c6520746f2073656e642076616c75652c2072",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5934:34:4",
"type": "",
"value": "Address: unable to send value, r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5907:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5907:62:4"
},
"nodeType": "YulExpressionStatement",
"src": "5907:62:4"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5989:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6000:2:4",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5985:3:4"
},
"nodeType": "YulFunctionCall",
"src": "5985:18:4"
},
{
"hexValue": "6563697069656e74206d61792068617665207265766572746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6005:28:4",
"type": "",
"value": "ecipient may have reverted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5978:6:4"
},
"nodeType": "YulFunctionCall",
"src": "5978:56:4"
},
"nodeType": "YulExpressionStatement",
"src": "5978:56:4"
},
{
"nodeType": "YulAssignment",
"src": "6043:27:4",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6055:9:4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6066:3:4",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6051:3:4"
},
"nodeType": "YulFunctionCall",
"src": "6051:19:4"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6043:4:4"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5805:9:4",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5819:4:4",
"type": ""
}
],
"src": "5654:422:4"
}
]
},
"contents": "{\n { }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n }\n function panic_error_0x41()\n {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n function allocate_memory(size) -> memPtr\n {\n memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(size, 31), 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0))\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n function array_allocation_size_array_address_dyn(length) -> size\n {\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n size := add(shl(5, length), 0x20)\n }\n function abi_decode_address(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n }\n function abi_decode_array_uint256_dyn(offset, end) -> array\n {\n if iszero(slt(add(offset, 0x1f), end)) { revert(0, 0) }\n let _1 := calldataload(offset)\n let _2 := 0x20\n let dst := allocate_memory(array_allocation_size_array_address_dyn(_1))\n let dst_1 := dst\n mstore(dst, _1)\n dst := add(dst, _2)\n let srcEnd := add(add(offset, shl(5, _1)), _2)\n if gt(srcEnd, end) { revert(0, 0) }\n let src := add(offset, _2)\n for { } lt(src, srcEnd) { src := add(src, _2) }\n {\n mstore(dst, calldataload(src))\n dst := add(dst, _2)\n }\n array := dst_1\n }\n function abi_decode_tuple_t_array$_t_address_$dyn_memory_ptrt_array$_t_uint256_$dyn_memory_ptr(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(0, 0) }\n let offset := calldataload(headStart)\n let _1 := 0xffffffffffffffff\n if gt(offset, _1) { revert(0, 0) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(0, 0) }\n let _3 := calldataload(_2)\n let _4 := 0x20\n let dst := allocate_memory(array_allocation_size_array_address_dyn(_3))\n let dst_1 := dst\n mstore(dst, _3)\n dst := add(dst, _4)\n let srcEnd := add(add(_2, shl(5, _3)), _4)\n if gt(srcEnd, dataEnd) { revert(0, 0) }\n let src := add(_2, _4)\n for { } lt(src, srcEnd) { src := add(src, _4) }\n {\n mstore(dst, abi_decode_address(src))\n dst := add(dst, _4)\n }\n value0 := dst_1\n let offset_1 := calldataload(add(headStart, _4))\n if gt(offset_1, _1) { revert(0, 0) }\n value1 := abi_decode_array_uint256_dyn(add(headStart, offset_1), dataEnd)\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(0, 0) }\n value0 := abi_decode_address(headStart)\n }\n function abi_encode_tuple_t_stringliteral_f8e1e45e297bd8c175b2e8a9a484b1a78a9c256b9e7da727886337f4b6aeb919__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 53)\n mstore(add(headStart, 64), \"The length of recipients and amo\")\n mstore(add(headStart, 96), \"unts must be the same\")\n tail := add(headStart, 128)\n }\n function panic_error_0x32()\n {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n function increment_t_uint256(value) -> ret\n {\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n ret := add(value, 1)\n }\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"Ownable: new owner is the zero a\")\n mstore(add(headStart, 96), \"ddress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 32)\n mstore(add(headStart, 64), \"Ownable: caller is not the owner\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_5597a22abd0ef5332f8053862eb236db7590f17e2b93a53f63a103becfb561f9__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 29)\n mstore(add(headStart, 64), \"Address: insufficient balance\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_packed_t_stringliteral_c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos) -> end\n { end := pos }\n function abi_encode_tuple_t_stringliteral_51ddaa38748c0a1144620fb5bfe8edab31ea437571ad591a7734bbfd0429aeae__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 58)\n mstore(add(headStart, 64), \"Address: unable to send value, r\")\n mstore(add(headStart, 96), \"ecipient may have reverted\")\n tail := add(headStart, 128)\n }\n}",
"id": 4,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100655760003560e01c80638da5cb5b116100435780638da5cb5b146100b65780639e7934db146100eb578063f2fde38b146100fe57600080fd5b806312065fe01461006a57806330509bca1461008a578063715018a6146100a1575b600080fd5b34801561007657600080fd5b506040514781526020015b60405180910390f35b34801561009657600080fd5b5061009f61011e565b005b3480156100ad57600080fd5b5061009f610167565b3480156100c257600080fd5b5060005460405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610081565b61009f6100f93660046106d2565b610179565b34801561010a57600080fd5b5061009f610119366004610792565b610295565b61012661034c565b6101654761014960005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff16906103cd565b565b61016f61034c565b6101656000610527565b61018161034c565b8051825114610217576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f546865206c656e677468206f6620726563697069656e747320616e6420616d6f60448201527f756e7473206d757374206265207468652073616d65000000000000000000000060648201526084015b60405180910390fd5b60005b82518110156102905761027e828281518110610238576102386107b4565b6020026020010151848381518110610252576102526107b4565b602002602001015173ffffffffffffffffffffffffffffffffffffffff166103cd90919063ffffffff16565b80610288816107e3565b91505061021a565b505050565b61029d61034c565b73ffffffffffffffffffffffffffffffffffffffff8116610340576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161020e565b61034981610527565b50565b60005473ffffffffffffffffffffffffffffffffffffffff163314610165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161020e565b80471015610437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161020e565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610491576040519150601f19603f3d011682016040523d82523d6000602084013e610496565b606091505b5050905080610290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161020e565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff811182821017156106125761061261059c565b604052919050565b600067ffffffffffffffff8211156106345761063461059c565b5060051b60200190565b803573ffffffffffffffffffffffffffffffffffffffff8116811461066257600080fd5b919050565b600082601f83011261067857600080fd5b8135602061068d6106888361061a565b6105cb565b82815260059290921b840181019181810190868411156106ac57600080fd5b8286015b848110156106c757803583529183019183016106b0565b509695505050505050565b600080604083850312156106e557600080fd5b823567ffffffffffffffff808211156106fd57600080fd5b818501915085601f83011261071157600080fd5b813560206107216106888361061a565b82815260059290921b8401810191818101908984111561074057600080fd5b948201945b83861015610765576107568661063e565b82529482019490820190610745565b9650508601359250508082111561077b57600080fd5b5061078885828601610667565b9150509250929050565b6000602082840312156107a457600080fd5b6107ad8261063e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361083b577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b506001019056fea26469706673582212209218011cc242c7e726e63e2092b44f47d772bc8e51131fac6b103258d902454e64736f6c63430008130033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x65 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x43 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0x9E7934DB EQ PUSH2 0xEB JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0xFE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP1 PUSH4 0x12065FE0 EQ PUSH2 0x6A JUMPI DUP1 PUSH4 0x30509BCA EQ PUSH2 0x8A JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xA1 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x76 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD SELFBALANCE DUP2 MSTORE PUSH1 0x20 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x96 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9F PUSH2 0x11E JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9F PUSH2 0x167 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x0 SLOAD PUSH1 0x40 MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x81 JUMP JUMPDEST PUSH2 0x9F PUSH2 0xF9 CALLDATASIZE PUSH1 0x4 PUSH2 0x6D2 JUMP JUMPDEST PUSH2 0x179 JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x10A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9F PUSH2 0x119 CALLDATASIZE PUSH1 0x4 PUSH2 0x792 JUMP JUMPDEST PUSH2 0x295 JUMP JUMPDEST PUSH2 0x126 PUSH2 0x34C JUMP JUMPDEST PUSH2 0x165 SELFBALANCE PUSH2 0x149 PUSH1 0x0 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 PUSH2 0x3CD JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x16F PUSH2 0x34C JUMP JUMPDEST PUSH2 0x165 PUSH1 0x0 PUSH2 0x527 JUMP JUMPDEST PUSH2 0x181 PUSH2 0x34C JUMP JUMPDEST DUP1 MLOAD DUP3 MLOAD EQ PUSH2 0x217 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x35 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x546865206C656E677468206F6620726563697069656E747320616E6420616D6F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x756E7473206D757374206265207468652073616D650000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP3 MLOAD DUP2 LT ISZERO PUSH2 0x290 JUMPI PUSH2 0x27E DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x238 JUMPI PUSH2 0x238 PUSH2 0x7B4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD DUP5 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x252 JUMPI PUSH2 0x252 PUSH2 0x7B4 JUMP JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD MLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x3CD SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST DUP1 PUSH2 0x288 DUP2 PUSH2 0x7E3 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x21A JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x29D PUSH2 0x34C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND PUSH2 0x340 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x20E JUMP JUMPDEST PUSH2 0x349 DUP2 PUSH2 0x527 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER EQ PUSH2 0x165 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x20E JUMP JUMPDEST DUP1 SELFBALANCE LT ISZERO PUSH2 0x437 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x1D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20696E73756666696369656E742062616C616E6365000000 PUSH1 0x44 DUP3 ADD MSTORE PUSH1 0x64 ADD PUSH2 0x20E JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP8 GAS CALL SWAP3 POP POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x491 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x496 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP POP SWAP1 POP DUP1 PUSH2 0x290 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x3A PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A20756E61626C6520746F2073656E642076616C75652C2072 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6563697069656E74206D61792068617665207265766572746564000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x20E JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 AND PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 DUP4 AND DUP2 OR DUP5 SSTORE PUSH1 0x40 MLOAD SWAP2 SWAP1 SWAP3 AND SWAP3 DUP4 SWAP2 PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 SWAP2 SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 AND DUP2 ADD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0x612 JUMPI PUSH2 0x612 PUSH2 0x59C JUMP JUMPDEST PUSH1 0x40 MSTORE SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x634 JUMPI PUSH2 0x634 PUSH2 0x59C JUMP JUMPDEST POP PUSH1 0x5 SHL PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 AND DUP2 EQ PUSH2 0x662 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x678 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0x68D PUSH2 0x688 DUP4 PUSH2 0x61A JUMP JUMPDEST PUSH2 0x5CB JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x5 SWAP3 SWAP1 SWAP3 SHL DUP5 ADD DUP2 ADD SWAP2 DUP2 DUP2 ADD SWAP1 DUP7 DUP5 GT ISZERO PUSH2 0x6AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 DUP7 ADD JUMPDEST DUP5 DUP2 LT ISZERO PUSH2 0x6C7 JUMPI DUP1 CALLDATALOAD DUP4 MSTORE SWAP2 DUP4 ADD SWAP2 DUP4 ADD PUSH2 0x6B0 JUMP JUMPDEST POP SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x6FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x711 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH1 0x20 PUSH2 0x721 PUSH2 0x688 DUP4 PUSH2 0x61A JUMP JUMPDEST DUP3 DUP2 MSTORE PUSH1 0x5 SWAP3 SWAP1 SWAP3 SHL DUP5 ADD DUP2 ADD SWAP2 DUP2 DUP2 ADD SWAP1 DUP10 DUP5 GT ISZERO PUSH2 0x740 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP5 DUP3 ADD SWAP5 JUMPDEST DUP4 DUP7 LT ISZERO PUSH2 0x765 JUMPI PUSH2 0x756 DUP7 PUSH2 0x63E JUMP JUMPDEST DUP3 MSTORE SWAP5 DUP3 ADD SWAP5 SWAP1 DUP3 ADD SWAP1 PUSH2 0x745 JUMP JUMPDEST SWAP7 POP POP DUP7 ADD CALLDATALOAD SWAP3 POP POP DUP1 DUP3 GT ISZERO PUSH2 0x77B JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x788 DUP6 DUP3 DUP7 ADD PUSH2 0x667 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x7A4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x7AD DUP3 PUSH2 0x63E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x83B JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP3 XOR ADD SHR 0xC2 TIMESTAMP 0xC7 0xE7 0x26 0xE6 RETURNDATACOPY KECCAK256 SWAP3 0xB4 0x4F SELFBALANCE 0xD7 PUSH19 0xBC8E51131FAC6B103258D902454E64736F6C63 NUMBER STOP ADDMOD SGT STOP CALLER ",
"sourceMap": "337:622:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;760:89;;;;;;;;;;-1:-1:-1;760:89:0;;823:21;160:25:4;;148:2;133:18;760:89:0;;;;;;;;854:102;;;;;;;;;;;;;:::i;:::-;;1824:101:1;;;;;;;;;;;;;:::i;1201:85::-;;;;;;;;;;-1:-1:-1;1247:7:1;1273:6;1201:85;;1273:6;;;;342:74:4;;330:2;315:18;1201:85:1;196:226:4;410:345:0;;;;;;:::i;:::-;;:::i;2074:198:1:-;;;;;;;;;;-1:-1:-1;2074:198:1;;;;;:::i;:::-;;:::i;854:102:0:-;1094:13:1;:11;:13::i;:::-;902:49:0::1;929:21;910:7;1247::1::0;1273:6;;;;1201:85;910:7:0::1;902:26;;::::0;::::1;:49::i;:::-;854:102::o:0;1824:101:1:-;1094:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;410:345:0:-:0;1094:13:1;:11;:13::i;:::-;563:7:0::1;:14;542:10;:17;:35;529:114;;;::::0;::::1;::::0;;3555:2:4;529:114:0::1;::::0;::::1;3537:21:4::0;3594:2;3574:18;;;3567:30;3633:34;3613:18;;;3606:62;3704:23;3684:18;;;3677:51;3745:19;;529:114:0::1;;;;;;;;;655:6;650:101;671:10;:17;667:1;:21;650:101;;;701:44;734:7;742:1;734:10;;;;;;;;:::i;:::-;;;;;;;709;720:1;709:13;;;;;;;;:::i;:::-;;;;;;;701:32;;;;:44;;;;:::i;:::-;690:3:::0;::::1;::::0;::::1;:::i;:::-;;;;650:101;;;;410:345:::0;;:::o;2074:198:1:-;1094:13;:11;:13::i;:::-;2162:22:::1;::::0;::::1;2154:73;;;::::0;::::1;::::0;;4520:2:4;2154:73:1::1;::::0;::::1;4502:21:4::0;4559:2;4539:18;;;4532:30;4598:34;4578:18;;;4571:62;4669:8;4649:18;;;4642:36;4695:19;;2154:73:1::1;4318:402:4::0;2154:73:1::1;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;1359:130::-;1247:7;1273:6;1422:23;1273:6;734:10:3;1422:23:1;1414:68;;;;;;;4927:2:4;1414:68:1;;;4909:21:4;;;4946:18;;;4939:30;5005:34;4985:18;;;4978:62;5057:18;;1414:68:1;4725:356:4;2647:312:2;2761:6;2736:21;:31;;2728:73;;;;;;;5288:2:4;2728:73:2;;;5270:21:4;5327:2;5307:18;;;5300:30;5366:31;5346:18;;;5339:59;5415:18;;2728:73:2;5086:353:4;2728:73:2;2813:12;2831:9;:14;;2853:6;2831:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2812:52;;;2882:7;2874:78;;;;;;;5856:2:4;2874:78:2;;;5838:21:4;5895:2;5875:18;;;5868:30;5934:34;5914:18;;;5907:62;6005:28;5985:18;;;5978:56;6051:19;;2874:78:2;5654:422:4;2426:187:1;2499:16;2518:6;;;2534:17;;;;;;;;;;2566:40;;2518:6;;;;;;;2566:40;;2499:16;2566:40;2489:124;2426:187;:::o;427:184:4:-;479:77;476:1;469:88;576:4;573:1;566:15;600:4;597:1;590:15;616:334;687:2;681:9;743:2;733:13;;748:66;729:86;717:99;;846:18;831:34;;867:22;;;828:62;825:88;;;893:18;;:::i;:::-;929:2;922:22;616:334;;-1:-1:-1;616:334:4:o;955:183::-;1015:4;1048:18;1040:6;1037:30;1034:56;;;1070:18;;:::i;:::-;-1:-1:-1;1115:1:4;1111:14;1127:4;1107:25;;955:183::o;1143:196::-;1211:20;;1271:42;1260:54;;1250:65;;1240:93;;1329:1;1326;1319:12;1240:93;1143:196;;;:::o;1344:662::-;1398:5;1451:3;1444:4;1436:6;1432:17;1428:27;1418:55;;1469:1;1466;1459:12;1418:55;1505:6;1492:20;1531:4;1555:60;1571:43;1611:2;1571:43;:::i;:::-;1555:60;:::i;:::-;1649:15;;;1735:1;1731:10;;;;1719:23;;1715:32;;;1680:12;;;;1759:15;;;1756:35;;;1787:1;1784;1777:12;1756:35;1823:2;1815:6;1811:15;1835:142;1851:6;1846:3;1843:15;1835:142;;;1917:17;;1905:30;;1955:12;;;;1868;;1835:142;;;-1:-1:-1;1995:5:4;1344:662;-1:-1:-1;;;;;;1344:662:4:o;2011:1146::-;2129:6;2137;2190:2;2178:9;2169:7;2165:23;2161:32;2158:52;;;2206:1;2203;2196:12;2158:52;2246:9;2233:23;2275:18;2316:2;2308:6;2305:14;2302:34;;;2332:1;2329;2322:12;2302:34;2370:6;2359:9;2355:22;2345:32;;2415:7;2408:4;2404:2;2400:13;2396:27;2386:55;;2437:1;2434;2427:12;2386:55;2473:2;2460:16;2495:4;2519:60;2535:43;2575:2;2535:43;:::i;2519:60::-;2613:15;;;2695:1;2691:10;;;;2683:19;;2679:28;;;2644:12;;;;2719:19;;;2716:39;;;2751:1;2748;2741:12;2716:39;2775:11;;;;2795:148;2811:6;2806:3;2803:15;2795:148;;;2877:23;2896:3;2877:23;:::i;:::-;2865:36;;2828:12;;;;2921;;;;2795:148;;;2962:5;-1:-1:-1;;3005:18:4;;2992:32;;-1:-1:-1;;3036:16:4;;;3033:36;;;3065:1;3062;3055:12;3033:36;;3088:63;3143:7;3132:8;3121:9;3117:24;3088:63;:::i;:::-;3078:73;;;2011:1146;;;;;:::o;3162:186::-;3221:6;3274:2;3262:9;3253:7;3249:23;3245:32;3242:52;;;3290:1;3287;3280:12;3242:52;3313:29;3332:9;3313:29;:::i;:::-;3303:39;3162:186;-1:-1:-1;;;3162:186:4:o;3775:184::-;3827:77;3824:1;3817:88;3924:4;3921:1;3914:15;3948:4;3945:1;3938:15;3964:349;4003:3;4034:66;4027:5;4024:77;4021:257;;4134:77;4131:1;4124:88;4235:4;4232:1;4225:15;4263:4;4260:1;4253:15;4021:257;-1:-1:-1;4305:1:4;4294:13;;3964:349::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "433600",
"executionCost": "26309",
"totalCost": "459909"
},
"external": {
"claimBalance()": "infinite",
"distributeEther(address[],uint256[])": "infinite",
"getBalance()": "169",
"owner()": "2289",
"renounceOwnership()": "infinite",
"transferOwnership(address)": "28314"
}
},
"methodIdentifiers": {
"claimBalance()": "30509bca",
"distributeEther(address[],uint256[])": "9e7934db",
"getBalance()": "12065fe0",
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "claimBalance",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address[]",
"name": "recipients",
"type": "address[]"
},
{
"internalType": "uint256[]",
"name": "amounts",
"type": "uint256[]"
}
],
"name": "distributeEther",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "getBalance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.19+commit.7dd6d404"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "claimBalance",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address[]",
"name": "recipients",
"type": "address[]"
},
{
"internalType": "uint256[]",
"name": "amounts",
"type": "uint256[]"
}
],
"name": "distributeEther",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"inputs": [],
"name": "getBalance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"custom:security-contact": "support@xcadnetwork.com",
"kind": "dev",
"methods": {
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/GasRefill.sol": "GasRefill"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 10000
},
"remappings": []
},
"sources": {
"contracts/GasRefill.sol": {
"keccak256": "0x9328a6cabe1436e46454edbe37a1c3725dde0af804e112931ef7b377693f9d79",
"license": "Unlicensed",
"urls": [
"bzz-raw://54a8b29f3919b71d0c36554c72e1b33ab6dbc67d2881056a934629b6c582db50",
"dweb:/ipfs/QmXcYYaxHvFjohYUkPXiM25AFcqfwYtHwrUd6UarerhkwP"
]
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.5/contracts/access/Ownable.sol": {
"keccak256": "0xba43b97fba0d32eb4254f6a5a297b39a19a247082a02d6e69349e071e2946218",
"license": "MIT",
"urls": [
"bzz-raw://fc980984badf3984b6303b377711220e067722bbd6a135b24669ff5069ef9f32",
"dweb:/ipfs/QmPHXMSXj99XjSVM21YsY6aNtLLjLVXDbyN76J5HQYvvrz"
]
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.5/contracts/utils/Address.sol": {
"keccak256": "0x006dd67219697fe68d7fbfdea512e7c4cb64a43565ed86171d67e844982da6fa",
"license": "MIT",
"urls": [
"bzz-raw://2455248c8ddd9cc6a7af76a13973cddf222072427e7b0e2a7d1aff345145e931",
"dweb:/ipfs/QmfYjnjRbWqYpuxurqveE6HtzsY1Xx323J428AKQgtBJZm"
]
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.5/contracts/utils/Context.sol": {
"keccak256": "0xa92e4fa126feb6907daa0513ddd816b2eb91f30a808de54f63c17d0e162c3439",
"license": "MIT",
"urls": [
"bzz-raw://a367861093b74443b137564d3f3c472f70bcf114739e62059c939f25e315706c",
"dweb:/ipfs/Qmd7JMpcxD9RuQjK3uM3EzJUgSqdN8vzp8eytEiuwxQJ6h"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.19+commit.7dd6d404"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.",
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/GasRefill_flattened.sol": "Ownable"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 10000
},
"remappings": []
},
"sources": {
"contracts/GasRefill_flattened.sol": {
"keccak256": "0x44900fa05da9f7b1018577e52d136269f50904cc4abe295f1f8a50632c2cfbff",
"urls": [
"bzz-raw://b59b06f4dcb051c79936be112730bc2366a47d91dff974cab6aab9abee56ceb8",
"dweb:/ipfs/QmPsfPJK2NyyAz7xYr9bu9KJG3tmQsvvRr2zGvSwhfDTsn"
]
}
},
"version": 1
}
// SPDX-License-Identifier: Unlicensed
pragma solidity ^0.8.19;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.5/contracts/utils/Address.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.5/contracts/access/Ownable.sol";
/// @custom:security-contact support@xcadnetwork.com
contract GasRefill is Ownable {
using Address for address payable;
function distributeEther(
address[] memory recipients,
uint[] memory amounts
) external payable onlyOwner {
require(
recipients.length == amounts.length,
"The length of recipients and amounts must be the same"
);
for (uint i = 0; i < recipients.length; i++) {
payable(recipients[i]).sendValue(amounts[i]);
}
}
function getBalance() external view returns (uint) {
return address(this).balance;
}
function claimBalance() external onlyOwner {
payable(owner()).sendValue(address(this).balance);
}
}
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.5/contracts/utils/Context.sol
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @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;
}
}
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.5/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.9.5/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// File: contracts/GasRefill.sol
pragma solidity ^0.8.19;
/// @custom:security-contact support@xcadnetwork.com
contract GasRefill is Ownable {
using Address for address payable;
function distributeEther(
address[] memory recipients,
uint[] memory amounts
) external payable onlyOwner {
require(
recipients.length == amounts.length,
"The length of recipients and amounts must be the same"
);
for (uint i = 0; i < recipients.length; i++) {
payable(recipients[i]).sendValue(amounts[i]);
}
}
function getBalance() external view returns (uint) {
return address(this).balance;
}
function claimBalance() external onlyOwner {
payable(owner()).sendValue(address(this).balance);
}
}
This file has been truncated, but you can view the full file.
{
"id": "3b4089cbabd18b0091cff02c296132e2",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.25",
"solcLongVersion": "0.8.25+commit.b61c2a91",
"input": {
"language": "Solidity",
"sources": {
"contracts/3_Ballot.sol": {
"content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.7.0 <0.9.0;\n\n/** \n * @title Ballot\n * @dev Implements voting process along with vote delegation\n */\ncontract Ballot {\n\n struct Voter {\n uint weight; // weight is accumulated by delegation\n bool voted; // if true, that person already voted\n address delegate; // person delegated to\n uint vote; // index of the voted proposal\n }\n\n struct Proposal {\n // If you can limit the length to a certain number of bytes, \n // always use one of bytes1 to bytes32 because they are much cheaper\n bytes32 name; // short name (up to 32 bytes)\n uint voteCount; // number of accumulated votes\n }\n\n address public chairperson;\n\n mapping(address => Voter) public voters;\n\n Proposal[] public proposals;\n\n /** \n * @dev Create a new ballot to choose one of 'proposalNames'.\n * @param proposalNames names of proposals\n */\n constructor(bytes32[] memory proposalNames) {\n chairperson = msg.sender;\n voters[chairperson].weight = 1;\n\n for (uint i = 0; i < proposalNames.length; i++) {\n // 'Proposal({...})' creates a temporary\n // Proposal object and 'proposals.push(...)'\n // appends it to the end of 'proposals'.\n proposals.push(Proposal({\n name: proposalNames[i],\n voteCount: 0\n }));\n }\n }\n\n /** \n * @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.\n * @param voter address of voter\n */\n function giveRightToVote(address voter) public {\n require(\n msg.sender == chairperson,\n \"Only chairperson can give right to vote.\"\n );\n require(\n !voters[voter].voted,\n \"The voter already voted.\"\n );\n require(voters[voter].weight == 0);\n voters[voter].weight = 1;\n }\n\n /**\n * @dev Delegate your vote to the voter 'to'.\n * @param to address to which vote is delegated\n */\n function delegate(address to) public {\n Voter storage sender = voters[msg.sender];\n require(!sender.voted, \"You already voted.\");\n require(to != msg.sender, \"Self-delegation is disallowed.\");\n\n while (voters[to].delegate != address(0)) {\n to = voters[to].delegate;\n\n // We found a loop in the delegation, not allowed.\n require(to != msg.sender, \"Found loop in delegation.\");\n }\n sender.voted = true;\n sender.delegate = to;\n Voter storage delegate_ = voters[to];\n if (delegate_.voted) {\n // If the delegate already voted,\n // directly add to the number of votes\n proposals[delegate_.vote].voteCount += sender.weight;\n } else {\n // If the delegate did not vote yet,\n // add to her weight.\n delegate_.weight += sender.weight;\n }\n }\n\n /**\n * @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.\n * @param proposal index of proposal in the proposals array\n */\n function vote(uint proposal) public {\n Voter storage sender = voters[msg.sender];\n require(sender.weight != 0, \"Has no right to vote\");\n require(!sender.voted, \"Already voted.\");\n sender.voted = true;\n sender.vote = proposal;\n\n // If 'proposal' is out of the range of the array,\n // this will throw automatically and revert all\n // changes.\n proposals[proposal].voteCount += sender.weight;\n }\n\n /** \n * @dev Computes the winning proposal taking all previous votes into account.\n * @return winningProposal_ index of winning proposal in the proposals array\n */\n function winningProposal() public view\n returns (uint winningProposal_)\n {\n uint winningVoteCount = 0;\n for (uint p = 0; p < proposals.length; p++) {\n if (proposals[p].voteCount > winningVoteCount) {\n winningVoteCount = proposals[p].voteCount;\n winningProposal_ = p;\n }\n }\n }\n\n /** \n * @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then\n * @return winnerName_ the name of the winner\n */\n function winnerName() public view\n returns (bytes32 winnerName_)\n {\n winnerName_ = proposals[winningProposal()].name;\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": {
"contracts/3_Ballot.sol": {
"Ballot": {
"abi": [
{
"inputs": [
{
"internalType": "bytes32[]",
"name": "proposalNames",
"type": "bytes32[]"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "chairperson",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
}
],
"name": "delegate",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "voter",
"type": "address"
}
],
"name": "giveRightToVote",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "proposals",
"outputs": [
{
"internalType": "bytes32",
"name": "name",
"type": "bytes32"
},
{
"internalType": "uint256",
"name": "voteCount",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "proposal",
"type": "uint256"
}
],
"name": "vote",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "voters",
"outputs": [
{
"internalType": "uint256",
"name": "weight",
"type": "uint256"
},
{
"internalType": "bool",
"name": "voted",
"type": "bool"
},
{
"internalType": "address",
"name": "delegate",
"type": "address"
},
{
"internalType": "uint256",
"name": "vote",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "winnerName",
"outputs": [
{
"internalType": "bytes32",
"name": "winnerName_",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "winningProposal",
"outputs": [
{
"internalType": "uint256",
"name": "winningProposal_",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Implements voting process along with vote delegation",
"kind": "dev",
"methods": {
"constructor": {
"details": "Create a new ballot to choose one of 'proposalNames'.",
"params": {
"proposalNames": "names of proposals"
}
},
"delegate(address)": {
"details": "Delegate your vote to the voter 'to'.",
"params": {
"to": "address to which vote is delegated"
}
},
"giveRightToVote(address)": {
"details": "Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.",
"params": {
"voter": "address of voter"
}
},
"vote(uint256)": {
"details": "Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.",
"params": {
"proposal": "index of proposal in the proposals array"
}
},
"winnerName()": {
"details": "Calls winningProposal() function to get the index of the winner contained in the proposals array and then",
"returns": {
"winnerName_": "the name of the winner"
}
},
"winningProposal()": {
"details": "Computes the winning proposal taking all previous votes into account.",
"returns": {
"winningProposal_": "index of winning proposal in the proposals array"
}
}
},
"title": "Ballot",
"version": 1
},
"evm": {
"assembly": " /* \"contracts/3_Ballot.sol\":157:4512 contract Ballot {... */\n mstore(0x40, 0x80)\n /* \"contracts/3_Ballot.sol\":955:1436 constructor(bytes32[] memory proposalNames) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n dup2\n add\n 0x40\n mstore\n dup2\n add\n swap1\n tag_2\n swap2\n swap1\n tag_3\n jump\t// in\ntag_2:\n /* \"contracts/3_Ballot.sol\":1023:1033 msg.sender */\n caller\n /* \"contracts/3_Ballot.sol\":1009:1020 chairperson */\n 0x00\n dup1\n /* \"contracts/3_Ballot.sol\":1009:1033 chairperson = msg.sender */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/3_Ballot.sol\":1072:1073 1 */\n 0x01\n /* \"contracts/3_Ballot.sol\":1043:1049 voters */\n dup1\n /* \"contracts/3_Ballot.sol\":1043:1062 voters[chairperson] */\n 0x00\n /* \"contracts/3_Ballot.sol\":1050:1061 chairperson */\n dup1\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/3_Ballot.sol\":1043:1062 voters[chairperson] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/3_Ballot.sol\":1043:1069 voters[chairperson].weight */\n 0x00\n add\n /* \"contracts/3_Ballot.sol\":1043:1073 voters[chairperson].weight = 1 */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/3_Ballot.sol\":1089:1095 uint i */\n 0x00\n /* \"contracts/3_Ballot.sol\":1084:1430 for (uint i = 0; i < proposalNames.length; i++) {... */\ntag_6:\n /* \"contracts/3_Ballot.sol\":1105:1118 proposalNames */\n dup2\n /* \"contracts/3_Ballot.sol\":1105:1125 proposalNames.length */\n mload\n /* \"contracts/3_Ballot.sol\":1101:1102 i */\n dup2\n /* \"contracts/3_Ballot.sol\":1101:1125 i < proposalNames.length */\n lt\n /* \"contracts/3_Ballot.sol\":1084:1430 for (uint i = 0; i < proposalNames.length; i++) {... */\n iszero\n tag_7\n jumpi\n /* \"contracts/3_Ballot.sol\":1309:1318 proposals */\n 0x02\n /* \"contracts/3_Ballot.sol\":1324:1418 Proposal({... */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n /* \"contracts/3_Ballot.sol\":1357:1370 proposalNames */\n dup5\n /* \"contracts/3_Ballot.sol\":1371:1372 i */\n dup5\n /* \"contracts/3_Ballot.sol\":1357:1373 proposalNames[i] */\n dup2\n mload\n dup2\n lt\n tag_9\n jumpi\n tag_10\n tag_11\n jump\t// in\ntag_10:\ntag_9:\n 0x20\n mul\n 0x20\n add\n add\n mload\n /* \"contracts/3_Ballot.sol\":1324:1418 Proposal({... */\n dup2\n mstore\n 0x20\n add\n /* \"contracts/3_Ballot.sol\":1402:1403 0 */\n 0x00\n /* \"contracts/3_Ballot.sol\":1324:1418 Proposal({... */\n dup2\n mstore\n pop\n /* \"contracts/3_Ballot.sol\":1309:1419 proposals.push(Proposal({... */\n swap1\n dup1\n 0x01\n dup2\n sload\n add\n dup1\n dup3\n sstore\n dup1\n swap2\n pop\n pop\n 0x01\n swap1\n sub\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\n 0x00\n dup3\n add\n mload\n dup2\n 0x00\n add\n sstore\n 0x20\n dup3\n add\n mload\n dup2\n 0x01\n add\n sstore\n pop\n pop\n /* \"contracts/3_Ballot.sol\":1127:1130 i++ */\n dup1\n dup1\n 0x01\n add\n swap2\n pop\n pop\n /* \"contracts/3_Ballot.sol\":1084:1430 for (uint i = 0; i < proposalNames.length; i++) {... */\n jump(tag_6)\ntag_7:\n pop\n /* \"contracts/3_Ballot.sol\":955:1436 constructor(bytes32[] memory proposalNames) {... */\n pop\n /* \"contracts/3_Ballot.sol\":157:4512 contract Ballot {... */\n jump(tag_13)\n /* \"#utility.yul\":7:82 */\ntag_14:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\ntag_15:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\ntag_16:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:451 */\ntag_17:\n /* \"#utility.yul\":443:444 */\n 0x00\n /* \"#utility.yul\":440:441 */\n dup1\n /* \"#utility.yul\":433:445 */\n revert\n /* \"#utility.yul\":457:559 */\ntag_18:\n /* \"#utility.yul\":498:504 */\n 0x00\n /* \"#utility.yul\":549:551 */\n 0x1f\n /* \"#utility.yul\":545:552 */\n not\n /* \"#utility.yul\":540:542 */\n 0x1f\n /* \"#utility.yul\":533:538 */\n dup4\n /* \"#utility.yul\":529:543 */\n add\n /* \"#utility.yul\":525:553 */\n and\n /* \"#utility.yul\":515:553 */\n swap1\n pop\n /* \"#utility.yul\":457:559 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":565:745 */\ntag_19:\n /* \"#utility.yul\":613:690 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":610:611 */\n 0x00\n /* \"#utility.yul\":603:691 */\n mstore\n /* \"#utility.yul\":710:714 */\n 0x41\n /* \"#utility.yul\":707:708 */\n 0x04\n /* \"#utility.yul\":700:715 */\n mstore\n /* \"#utility.yul\":734:738 */\n 0x24\n /* \"#utility.yul\":731:732 */\n 0x00\n /* \"#utility.yul\":724:739 */\n revert\n /* \"#utility.yul\":751:1032 */\ntag_20:\n /* \"#utility.yul\":834:861 */\n tag_37\n /* \"#utility.yul\":856:860 */\n dup3\n /* \"#utility.yul\":834:861 */\n tag_18\n jump\t// in\ntag_37:\n /* \"#utility.yul\":826:832 */\n dup2\n /* \"#utility.yul\":822:862 */\n add\n /* \"#utility.yul\":964:970 */\n dup2\n /* \"#utility.yul\":952:962 */\n dup2\n /* \"#utility.yul\":949:971 */\n lt\n /* \"#utility.yul\":928:946 */\n 0xffffffffffffffff\n /* \"#utility.yul\":916:926 */\n dup3\n /* \"#utility.yul\":913:947 */\n gt\n /* \"#utility.yul\":910:972 */\n or\n /* \"#utility.yul\":907:995 */\n iszero\n tag_38\n jumpi\n /* \"#utility.yul\":975:993 */\n tag_39\n tag_19\n jump\t// in\ntag_39:\n /* \"#utility.yul\":907:995 */\ntag_38:\n /* \"#utility.yul\":1015:1025 */\n dup1\n /* \"#utility.yul\":1011:1013 */\n 0x40\n /* \"#utility.yul\":1004:1026 */\n mstore\n /* \"#utility.yul\":794:1032 */\n pop\n /* \"#utility.yul\":751:1032 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1038:1167 */\ntag_21:\n /* \"#utility.yul\":1072:1078 */\n 0x00\n /* \"#utility.yul\":1099:1119 */\n tag_41\n tag_14\n jump\t// in\ntag_41:\n /* \"#utility.yul\":1089:1119 */\n swap1\n pop\n /* \"#utility.yul\":1128:1161 */\n tag_42\n /* \"#utility.yul\":1156:1160 */\n dup3\n /* \"#utility.yul\":1148:1154 */\n dup3\n /* \"#utility.yul\":1128:1161 */\n tag_20\n jump\t// in\ntag_42:\n /* \"#utility.yul\":1038:1167 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1173:1484 */\ntag_22:\n /* \"#utility.yul\":1250:1254 */\n 0x00\n /* \"#utility.yul\":1340:1358 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1332:1338 */\n dup3\n /* \"#utility.yul\":1329:1359 */\n gt\n /* \"#utility.yul\":1326:1382 */\n iszero\n tag_44\n jumpi\n /* \"#utility.yul\":1362:1380 */\n tag_45\n tag_19\n jump\t// in\ntag_45:\n /* \"#utility.yul\":1326:1382 */\ntag_44:\n /* \"#utility.yul\":1412:1416 */\n 0x20\n /* \"#utility.yul\":1404:1410 */\n dup3\n /* \"#utility.yul\":1400:1417 */\n mul\n /* \"#utility.yul\":1392:1417 */\n swap1\n pop\n /* \"#utility.yul\":1472:1476 */\n 0x20\n /* \"#utility.yul\":1466:1470 */\n dup2\n /* \"#utility.yul\":1462:1477 */\n add\n /* \"#utility.yul\":1454:1477 */\n swap1\n pop\n /* \"#utility.yul\":1173:1484 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1490:1607 */\ntag_23:\n /* \"#utility.yul\":1599:1600 */\n 0x00\n /* \"#utility.yul\":1596:1597 */\n dup1\n /* \"#utility.yul\":1589:1601 */\n revert\n /* \"#utility.yul\":1613:1690 */\ntag_24:\n /* \"#utility.yul\":1650:1657 */\n 0x00\n /* \"#utility.yul\":1679:1684 */\n dup2\n /* \"#utility.yul\":1668:1684 */\n swap1\n pop\n /* \"#utility.yul\":1613:1690 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1696:1818 */\ntag_25:\n /* \"#utility.yul\":1769:1793 */\n tag_49\n /* \"#utility.yul\":1787:1792 */\n dup2\n /* \"#utility.yul\":1769:1793 */\n tag_24\n jump\t// in\ntag_49:\n /* \"#utility.yul\":1762:1767 */\n dup2\n /* \"#utility.yul\":1759:1794 */\n eq\n /* \"#utility.yul\":1749:1812 */\n tag_50\n jumpi\n /* \"#utility.yul\":1808:1809 */\n 0x00\n /* \"#utility.yul\":1805:1806 */\n dup1\n /* \"#utility.yul\":1798:1810 */\n revert\n /* \"#utility.yul\":1749:1812 */\ntag_50:\n /* \"#utility.yul\":1696:1818 */\n pop\n jump\t// out\n /* \"#utility.yul\":1824:1967 */\ntag_26:\n /* \"#utility.yul\":1881:1886 */\n 0x00\n /* \"#utility.yul\":1912:1918 */\n dup2\n /* \"#utility.yul\":1906:1919 */\n mload\n /* \"#utility.yul\":1897:1919 */\n swap1\n pop\n /* \"#utility.yul\":1928:1961 */\n tag_52\n /* \"#utility.yul\":1955:1960 */\n dup2\n /* \"#utility.yul\":1928:1961 */\n tag_25\n jump\t// in\ntag_52:\n /* \"#utility.yul\":1824:1967 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1990:2722 */\ntag_27:\n /* \"#utility.yul\":2097:2102 */\n 0x00\n /* \"#utility.yul\":2122:2203 */\n tag_54\n /* \"#utility.yul\":2138:2202 */\n tag_55\n /* \"#utility.yul\":2195:2201 */\n dup5\n /* \"#utility.yul\":2138:2202 */\n tag_22\n jump\t// in\ntag_55:\n /* \"#utility.yul\":2122:2203 */\n tag_21\n jump\t// in\ntag_54:\n /* \"#utility.yul\":2113:2203 */\n swap1\n pop\n /* \"#utility.yul\":2223:2228 */\n dup1\n /* \"#utility.yul\":2252:2258 */\n dup4\n /* \"#utility.yul\":2245:2250 */\n dup3\n /* \"#utility.yul\":2238:2259 */\n mstore\n /* \"#utility.yul\":2286:2290 */\n 0x20\n /* \"#utility.yul\":2279:2284 */\n dup3\n /* \"#utility.yul\":2275:2291 */\n add\n /* \"#utility.yul\":2268:2291 */\n swap1\n pop\n /* \"#utility.yul\":2339:2343 */\n 0x20\n /* \"#utility.yul\":2331:2337 */\n dup5\n /* \"#utility.yul\":2327:2344 */\n mul\n /* \"#utility.yul\":2319:2325 */\n dup4\n /* \"#utility.yul\":2315:2345 */\n add\n /* \"#utility.yul\":2368:2371 */\n dup6\n /* \"#utility.yul\":2360:2366 */\n dup2\n /* \"#utility.yul\":2357:2372 */\n gt\n /* \"#utility.yul\":2354:2476 */\n iszero\n tag_56\n jumpi\n /* \"#utility.yul\":2387:2466 */\n tag_57\n tag_23\n jump\t// in\ntag_57:\n /* \"#utility.yul\":2354:2476 */\ntag_56:\n /* \"#utility.yul\":2502:2508 */\n dup4\n /* \"#utility.yul\":2485:2716 */\ntag_58:\n /* \"#utility.yul\":2519:2525 */\n dup2\n /* \"#utility.yul\":2514:2517 */\n dup2\n /* \"#utility.yul\":2511:2526 */\n lt\n /* \"#utility.yul\":2485:2716 */\n iszero\n tag_60\n jumpi\n /* \"#utility.yul\":2594:2597 */\n dup1\n /* \"#utility.yul\":2623:2671 */\n tag_61\n /* \"#utility.yul\":2667:2670 */\n dup9\n /* \"#utility.yul\":2655:2665 */\n dup3\n /* \"#utility.yul\":2623:2671 */\n tag_26\n jump\t// in\ntag_61:\n /* \"#utility.yul\":2618:2621 */\n dup5\n /* \"#utility.yul\":2611:2672 */\n mstore\n /* \"#utility.yul\":2701:2705 */\n 0x20\n /* \"#utility.yul\":2696:2699 */\n dup5\n /* \"#utility.yul\":2692:2706 */\n add\n /* \"#utility.yul\":2685:2706 */\n swap4\n pop\n /* \"#utility.yul\":2561:2716 */\n pop\n /* \"#utility.yul\":2545:2549 */\n 0x20\n /* \"#utility.yul\":2540:2543 */\n dup2\n /* \"#utility.yul\":2536:2550 */\n add\n /* \"#utility.yul\":2529:2550 */\n swap1\n pop\n /* \"#utility.yul\":2485:2716 */\n jump(tag_58)\ntag_60:\n /* \"#utility.yul\":2489:2510 */\n pop\n /* \"#utility.yul\":2103:2722 */\n pop\n pop\n /* \"#utility.yul\":1990:2722 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2745:3130 */\ntag_28:\n /* \"#utility.yul\":2827:2832 */\n 0x00\n /* \"#utility.yul\":2876:2879 */\n dup3\n /* \"#utility.yul\":2869:2873 */\n 0x1f\n /* \"#utility.yul\":2861:2867 */\n dup4\n /* \"#utility.yul\":2857:2874 */\n add\n /* \"#utility.yul\":2853:2880 */\n slt\n /* \"#utility.yul\":2843:2965 */\n tag_63\n jumpi\n /* \"#utility.yul\":2884:2963 */\n tag_64\n tag_17\n jump\t// in\ntag_64:\n /* \"#utility.yul\":2843:2965 */\ntag_63:\n /* \"#utility.yul\":2994:3000 */\n dup2\n /* \"#utility.yul\":2988:3001 */\n mload\n /* \"#utility.yul\":3019:3124 */\n tag_65\n /* \"#utility.yul\":3120:3123 */\n dup5\n /* \"#utility.yul\":3112:3118 */\n dup3\n /* \"#utility.yul\":3105:3109 */\n 0x20\n /* \"#utility.yul\":3097:3103 */\n dup7\n /* \"#utility.yul\":3093:3110 */\n add\n /* \"#utility.yul\":3019:3124 */\n tag_27\n jump\t// in\ntag_65:\n /* \"#utility.yul\":3010:3124 */\n swap2\n pop\n /* \"#utility.yul\":2833:3130 */\n pop\n /* \"#utility.yul\":2745:3130 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3136:3690 */\ntag_3:\n /* \"#utility.yul\":3231:3237 */\n 0x00\n /* \"#utility.yul\":3280:3282 */\n 0x20\n /* \"#utility.yul\":3268:3277 */\n dup3\n /* \"#utility.yul\":3259:3266 */\n dup5\n /* \"#utility.yul\":3255:3278 */\n sub\n /* \"#utility.yul\":3251:3283 */\n slt\n /* \"#utility.yul\":3248:3367 */\n iszero\n tag_67\n jumpi\n /* \"#utility.yul\":3286:3365 */\n tag_68\n tag_15\n jump\t// in\ntag_68:\n /* \"#utility.yul\":3248:3367 */\ntag_67:\n /* \"#utility.yul\":3427:3428 */\n 0x00\n /* \"#utility.yul\":3416:3425 */\n dup3\n /* \"#utility.yul\":3412:3429 */\n add\n /* \"#utility.yul\":3406:3430 */\n mload\n /* \"#utility.yul\":3457:3475 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3449:3455 */\n dup2\n /* \"#utility.yul\":3446:3476 */\n gt\n /* \"#utility.yul\":3443:3560 */\n iszero\n tag_69\n jumpi\n /* \"#utility.yul\":3479:3558 */\n tag_70\n tag_16\n jump\t// in\ntag_70:\n /* \"#utility.yul\":3443:3560 */\ntag_69:\n /* \"#utility.yul\":3584:3673 */\n tag_71\n /* \"#utility.yul\":3665:3672 */\n dup5\n /* \"#utility.yul\":3656:3662 */\n dup3\n /* \"#utility.yul\":3645:3654 */\n dup6\n /* \"#utility.yul\":3641:3663 */\n add\n /* \"#utility.yul\":3584:3673 */\n tag_28\n jump\t// in\ntag_71:\n /* \"#utility.yul\":3574:3673 */\n swap2\n pop\n /* \"#utility.yul\":3377:3683 */\n pop\n /* \"#utility.yul\":3136:3690 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3696:3876 */\ntag_11:\n /* \"#utility.yul\":3744:3821 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3741:3742 */\n 0x00\n /* \"#utility.yul\":3734:3822 */\n mstore\n /* \"#utility.yul\":3841:3845 */\n 0x32\n /* \"#utility.yul\":3838:3839 */\n 0x04\n /* \"#utility.yul\":3831:3846 */\n mstore\n /* \"#utility.yul\":3865:3869 */\n 0x24\n /* \"#utility.yul\":3862:3863 */\n 0x00\n /* \"#utility.yul\":3855:3870 */\n revert\n /* \"contracts/3_Ballot.sol\":157:4512 contract Ballot {... */\ntag_13:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/3_Ballot.sol\":157:4512 contract Ballot {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x609ff1bd\n gt\n tag_11\n jumpi\n dup1\n 0x609ff1bd\n eq\n tag_7\n jumpi\n dup1\n 0x9e7b8d61\n eq\n tag_8\n jumpi\n dup1\n 0xa3ec138d\n eq\n tag_9\n jumpi\n dup1\n 0xe2ba53f0\n eq\n tag_10\n jumpi\n jump(tag_2)\n tag_11:\n dup1\n 0x0121b93f\n eq\n tag_3\n jumpi\n dup1\n 0x013cf08b\n eq\n tag_4\n jumpi\n dup1\n 0x2e4176cf\n eq\n tag_5\n jumpi\n dup1\n 0x5c19a95c\n eq\n tag_6\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/3_Ballot.sol\":3166:3624 function vote(uint proposal) public {... */\n tag_3:\n tag_12\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n tag_15\n jump\t// in\n tag_12:\n stop\n /* \"contracts/3_Ballot.sol\":791:818 Proposal[] public proposals */\n tag_4:\n tag_16\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_17\n swap2\n swap1\n tag_14\n jump\t// in\n tag_17:\n tag_18\n jump\t// in\n tag_16:\n mload(0x40)\n tag_19\n swap3\n swap2\n swap1\n tag_20\n jump\t// in\n tag_19:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/3_Ballot.sol\":712:738 address public chairperson */\n tag_5:\n tag_21\n tag_22\n jump\t// in\n tag_21:\n mload(0x40)\n tag_23\n swap2\n swap1\n tag_24\n jump\t// in\n tag_23:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/3_Ballot.sol\":2071:2978 function delegate(address to) public {... */\n tag_6:\n tag_25\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_26\n swap2\n swap1\n tag_27\n jump\t// in\n tag_26:\n tag_28\n jump\t// in\n tag_25:\n stop\n /* \"contracts/3_Ballot.sol\":3810:4175 function winningProposal() public view... */\n tag_7:\n tag_29\n tag_30\n jump\t// in\n tag_29:\n mload(0x40)\n tag_31\n swap2\n swap1\n tag_32\n jump\t// in\n tag_31:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/3_Ballot.sol\":1592:1947 function giveRightToVote(address voter) public {... */\n tag_8:\n tag_33\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_34\n swap2\n swap1\n tag_27\n jump\t// in\n tag_34:\n tag_35\n jump\t// in\n tag_33:\n stop\n /* \"contracts/3_Ballot.sol\":745:784 mapping(address => Voter) public voters */\n tag_9:\n tag_36\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_37\n swap2\n swap1\n tag_27\n jump\t// in\n tag_37:\n tag_38\n jump\t// in\n tag_36:\n mload(0x40)\n tag_39\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_40\n jump\t// in\n tag_39:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/3_Ballot.sol\":4366:4510 function winnerName() public view... */\n tag_10:\n tag_41\n tag_42\n jump\t// in\n tag_41:\n mload(0x40)\n tag_43\n swap2\n swap1\n tag_44\n jump\t// in\n tag_43:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/3_Ballot.sol\":3166:3624 function vote(uint proposal) public {... */\n tag_15:\n /* \"contracts/3_Ballot.sol\":3212:3232 Voter storage sender */\n 0x00\n /* \"contracts/3_Ballot.sol\":3235:3241 voters */\n 0x01\n /* \"contracts/3_Ballot.sol\":3235:3253 voters[msg.sender] */\n 0x00\n /* \"contracts/3_Ballot.sol\":3242:3252 msg.sender */\n caller\n /* \"contracts/3_Ballot.sol\":3235:3253 voters[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/3_Ballot.sol\":3212:3253 Voter storage sender = voters[msg.sender] */\n swap1\n pop\n /* \"contracts/3_Ballot.sol\":3288:3289 0 */\n 0x00\n /* \"contracts/3_Ballot.sol\":3271:3277 sender */\n dup2\n /* \"contracts/3_Ballot.sol\":3271:3284 sender.weight */\n 0x00\n add\n sload\n /* \"contracts/3_Ballot.sol\":3271:3289 sender.weight != 0 */\n sub\n /* \"contracts/3_Ballot.sol\":3263:3314 require(sender.weight != 0, \"Has no right to vote\") */\n tag_46\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_47\n swap1\n tag_48\n jump\t// in\n tag_47:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_46:\n /* \"contracts/3_Ballot.sol\":3333:3339 sender */\n dup1\n /* \"contracts/3_Ballot.sol\":3333:3345 sender.voted */\n 0x01\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"contracts/3_Ballot.sol\":3332:3345 !sender.voted */\n iszero\n /* \"contracts/3_Ballot.sol\":3324:3364 require(!sender.voted, \"Already voted.\") */\n tag_49\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_50\n swap1\n tag_51\n jump\t// in\n tag_50:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_49:\n /* \"contracts/3_Ballot.sol\":3389:3393 true */\n 0x01\n /* \"contracts/3_Ballot.sol\":3374:3380 sender */\n dup2\n /* \"contracts/3_Ballot.sol\":3374:3386 sender.voted */\n 0x01\n add\n 0x00\n /* \"contracts/3_Ballot.sol\":3374:3393 sender.voted = true */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/3_Ballot.sol\":3417:3425 proposal */\n dup2\n /* \"contracts/3_Ballot.sol\":3403:3409 sender */\n dup2\n /* \"contracts/3_Ballot.sol\":3403:3414 sender.vote */\n 0x02\n add\n /* \"contracts/3_Ballot.sol\":3403:3425 sender.vote = proposal */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/3_Ballot.sol\":3604:3610 sender */\n dup1\n /* \"contracts/3_Ballot.sol\":3604:3617 sender.weight */\n 0x00\n add\n sload\n /* \"contracts/3_Ballot.sol\":3571:3580 proposals */\n 0x02\n /* \"contracts/3_Ballot.sol\":3581:3589 proposal */\n dup4\n /* \"contracts/3_Ballot.sol\":3571:3590 proposals[proposal] */\n dup2\n sload\n dup2\n lt\n tag_52\n jumpi\n tag_53\n tag_54\n jump\t// in\n tag_53:\n tag_52:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n /* \"contracts/3_Ballot.sol\":3571:3600 proposals[proposal].voteCount */\n 0x01\n add\n 0x00\n /* \"contracts/3_Ballot.sol\":3571:3617 proposals[proposal].voteCount += sender.weight */\n dup3\n dup3\n sload\n tag_56\n swap2\n swap1\n tag_57\n jump\t// in\n tag_56:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/3_Ballot.sol\":3202:3624 {... */\n pop\n /* \"contracts/3_Ballot.sol\":3166:3624 function vote(uint proposal) public {... */\n pop\n jump\t// out\n /* \"contracts/3_Ballot.sol\":791:818 Proposal[] public proposals */\n tag_18:\n 0x02\n dup2\n dup2\n sload\n dup2\n lt\n tag_58\n jumpi\n 0x00\n dup1\n revert\n tag_58:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n 0x00\n swap2\n pop\n swap1\n pop\n dup1\n 0x00\n add\n sload\n swap1\n dup1\n 0x01\n add\n sload\n swap1\n pop\n dup3\n jump\t// out\n /* \"contracts/3_Ballot.sol\":712:738 address public chairperson */\n tag_22:\n 0x00\n dup1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n jump\t// out\n /* \"contracts/3_Ballot.sol\":2071:2978 function delegate(address to) public {... */\n tag_28:\n /* \"contracts/3_Ballot.sol\":2118:2138 Voter storage sender */\n 0x00\n /* \"contracts/3_Ballot.sol\":2141:2147 voters */\n 0x01\n /* \"contracts/3_Ballot.sol\":2141:2159 voters[msg.sender] */\n 0x00\n /* \"contracts/3_Ballot.sol\":2148:2158 msg.sender */\n caller\n /* \"contracts/3_Ballot.sol\":2141:2159 voters[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/3_Ballot.sol\":2118:2159 Voter storage sender = voters[msg.sender] */\n swap1\n pop\n /* \"contracts/3_Ballot.sol\":2178:2184 sender */\n dup1\n /* \"contracts/3_Ballot.sol\":2178:2190 sender.voted */\n 0x01\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"contracts/3_Ballot.sol\":2177:2190 !sender.voted */\n iszero\n /* \"contracts/3_Ballot.sol\":2169:2213 require(!sender.voted, \"You already voted.\") */\n tag_61\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_62\n swap1\n tag_63\n jump\t// in\n tag_62:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_61:\n /* \"contracts/3_Ballot.sol\":2237:2247 msg.sender */\n caller\n /* \"contracts/3_Ballot.sol\":2231:2247 to != msg.sender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/3_Ballot.sol\":2231:2233 to */\n dup3\n /* \"contracts/3_Ballot.sol\":2231:2247 to != msg.sender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"contracts/3_Ballot.sol\":2223:2282 require(to != msg.sender, \"Self-delegation is disallowed.\") */\n tag_64\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_65\n swap1\n tag_66\n jump\t// in\n tag_65:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_64:\n /* \"contracts/3_Ballot.sol\":2293:2516 while (voters[to].delegate != address(0)) {... */\n tag_67:\n /* \"contracts/3_Ballot.sol\":2331:2332 0 */\n 0x00\n /* \"contracts/3_Ballot.sol\":2300:2333 voters[to].delegate != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/3_Ballot.sol\":2300:2306 voters */\n 0x01\n /* \"contracts/3_Ballot.sol\":2300:2310 voters[to] */\n 0x00\n /* \"contracts/3_Ballot.sol\":2307:2309 to */\n dup5\n /* \"contracts/3_Ballot.sol\":2300:2310 voters[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/3_Ballot.sol\":2300:2319 voters[to].delegate */\n 0x01\n add\n 0x01\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/3_Ballot.sol\":2300:2333 voters[to].delegate != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"contracts/3_Ballot.sol\":2293:2516 while (voters[to].delegate != address(0)) {... */\n tag_68\n jumpi\n /* \"contracts/3_Ballot.sol\":2354:2360 voters */\n 0x01\n /* \"contracts/3_Ballot.sol\":2354:2364 voters[to] */\n 0x00\n /* \"contracts/3_Ballot.sol\":2361:2363 to */\n dup4\n /* \"contracts/3_Ballot.sol\":2354:2364 voters[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/3_Ballot.sol\":2354:2373 voters[to].delegate */\n 0x01\n add\n 0x01\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/3_Ballot.sol\":2349:2373 to = voters[to].delegate */\n swap2\n pop\n /* \"contracts/3_Ballot.sol\":2465:2475 msg.sender */\n caller\n /* \"contracts/3_Ballot.sol\":2459:2475 to != msg.sender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/3_Ballot.sol\":2459:2461 to */\n dup3\n /* \"contracts/3_Ballot.sol\":2459:2475 to != msg.sender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"contracts/3_Ballot.sol\":2451:2505 require(to != msg.sender, \"Found loop in delegation.\") */\n tag_69\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_70\n swap1\n tag_71\n jump\t// in\n tag_70:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_69:\n /* \"contracts/3_Ballot.sol\":2293:2516 while (voters[to].delegate != address(0)) {... */\n jump(tag_67)\n tag_68:\n /* \"contracts/3_Ballot.sol\":2540:2544 true */\n 0x01\n /* \"contracts/3_Ballot.sol\":2525:2531 sender */\n dup2\n /* \"contracts/3_Ballot.sol\":2525:2537 sender.voted */\n 0x01\n add\n 0x00\n /* \"contracts/3_Ballot.sol\":2525:2544 sender.voted = true */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/3_Ballot.sol\":2572:2574 to */\n dup2\n /* \"contracts/3_Ballot.sol\":2554:2560 sender */\n dup2\n /* \"contracts/3_Ballot.sol\":2554:2569 sender.delegate */\n 0x01\n add\n 0x01\n /* \"contracts/3_Ballot.sol\":2554:2574 sender.delegate = to */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/3_Ballot.sol\":2584:2607 Voter storage delegate_ */\n 0x00\n /* \"contracts/3_Ballot.sol\":2610:2616 voters */\n 0x01\n /* \"contracts/3_Ballot.sol\":2610:2620 voters[to] */\n 0x00\n /* \"contracts/3_Ballot.sol\":2617:2619 to */\n dup5\n /* \"contracts/3_Ballot.sol\":2610:2620 voters[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/3_Ballot.sol\":2584:2620 Voter storage delegate_ = voters[to] */\n swap1\n pop\n /* \"contracts/3_Ballot.sol\":2634:2643 delegate_ */\n dup1\n /* \"contracts/3_Ballot.sol\":2634:2649 delegate_.voted */\n 0x01\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"contracts/3_Ballot.sol\":2630:2972 if (delegate_.voted) {... */\n iszero\n tag_72\n jumpi\n /* \"contracts/3_Ballot.sol\":2801:2807 sender */\n dup2\n /* \"contracts/3_Ballot.sol\":2801:2814 sender.weight */\n 0x00\n add\n sload\n /* \"contracts/3_Ballot.sol\":2762:2771 proposals */\n 0x02\n /* \"contracts/3_Ballot.sol\":2772:2781 delegate_ */\n dup3\n /* \"contracts/3_Ballot.sol\":2772:2786 delegate_.vote */\n 0x02\n add\n sload\n /* \"contracts/3_Ballot.sol\":2762:2787 proposals[delegate_.vote] */\n dup2\n sload\n dup2\n lt\n tag_73\n jumpi\n tag_74\n tag_54\n jump\t// in\n tag_74:\n tag_73:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n /* \"contracts/3_Ballot.sol\":2762:2797 proposals[delegate_.vote].voteCount */\n 0x01\n add\n 0x00\n /* \"contracts/3_Ballot.sol\":2762:2814 proposals[delegate_.vote].voteCount += sender.weight */\n dup3\n dup3\n sload\n tag_76\n swap2\n swap1\n tag_57\n jump\t// in\n tag_76:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/3_Ballot.sol\":2630:2972 if (delegate_.voted) {... */\n jump(tag_77)\n tag_72:\n /* \"contracts/3_Ballot.sol\":2948:2954 sender */\n dup2\n /* \"contracts/3_Ballot.sol\":2948:2961 sender.weight */\n 0x00\n add\n sload\n /* \"contracts/3_Ballot.sol\":2928:2937 delegate_ */\n dup2\n /* \"contracts/3_Ballot.sol\":2928:2944 delegate_.weight */\n 0x00\n add\n 0x00\n /* \"contracts/3_Ballot.sol\":2928:2961 delegate_.weight += sender.weight */\n dup3\n dup3\n sload\n tag_78\n swap2\n swap1\n tag_57\n jump\t// in\n tag_78:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/3_Ballot.sol\":2630:2972 if (delegate_.voted) {... */\n tag_77:\n /* \"contracts/3_Ballot.sol\":2108:2978 {... */\n pop\n pop\n /* \"contracts/3_Ballot.sol\":2071:2978 function delegate(address to) public {... */\n pop\n jump\t// out\n /* \"contracts/3_Ballot.sol\":3810:4175 function winningProposal() public view... */\n tag_30:\n /* \"contracts/3_Ballot.sol\":3870:3891 uint winningProposal_ */\n 0x00\n /* \"contracts/3_Ballot.sol\":3907:3928 uint winningVoteCount */\n dup1\n /* \"contracts/3_Ballot.sol\":3931:3932 0 */\n 0x00\n /* \"contracts/3_Ballot.sol\":3907:3932 uint winningVoteCount = 0 */\n swap1\n pop\n /* \"contracts/3_Ballot.sol\":3947:3953 uint p */\n 0x00\n /* \"contracts/3_Ballot.sol\":3942:4169 for (uint p = 0; p < proposals.length; p++) {... */\n tag_80:\n /* \"contracts/3_Ballot.sol\":3963:3972 proposals */\n 0x02\n /* \"contracts/3_Ballot.sol\":3963:3979 proposals.length */\n dup1\n sload\n swap1\n pop\n /* \"contracts/3_Ballot.sol\":3959:3960 p */\n dup2\n /* \"contracts/3_Ballot.sol\":3959:3979 p < proposals.length */\n lt\n /* \"contracts/3_Ballot.sol\":3942:4169 for (uint p = 0; p < proposals.length; p++) {... */\n iszero\n tag_81\n jumpi\n /* \"contracts/3_Ballot.sol\":4029:4045 winningVoteCount */\n dup2\n /* \"contracts/3_Ballot.sol\":4004:4013 proposals */\n 0x02\n /* \"contracts/3_Ballot.sol\":4014:4015 p */\n dup3\n /* \"contracts/3_Ballot.sol\":4004:4016 proposals[p] */\n dup2\n sload\n dup2\n lt\n tag_83\n jumpi\n tag_84\n tag_54\n jump\t// in\n tag_84:\n tag_83:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n /* \"contracts/3_Ballot.sol\":4004:4026 proposals[p].voteCount */\n 0x01\n add\n sload\n /* \"contracts/3_Ballot.sol\":4004:4045 proposals[p].voteCount > winningVoteCount */\n gt\n /* \"contracts/3_Ballot.sol\":4000:4159 if (proposals[p].voteCount > winningVoteCount) {... */\n iszero\n tag_86\n jumpi\n /* \"contracts/3_Ballot.sol\":4084:4093 proposals */\n 0x02\n /* \"contracts/3_Ballot.sol\":4094:4095 p */\n dup2\n /* \"contracts/3_Ballot.sol\":4084:4096 proposals[p] */\n dup2\n sload\n dup2\n lt\n tag_87\n jumpi\n tag_88\n tag_54\n jump\t// in\n tag_88:\n tag_87:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n /* \"contracts/3_Ballot.sol\":4084:4106 proposals[p].voteCount */\n 0x01\n add\n sload\n /* \"contracts/3_Ballot.sol\":4065:4106 winningVoteCount = proposals[p].voteCount */\n swap2\n pop\n /* \"contracts/3_Ballot.sol\":4143:4144 p */\n dup1\n /* \"contracts/3_Ballot.sol\":4124:4144 winningProposal_ = p */\n swap3\n pop\n /* \"contracts/3_Ballot.sol\":4000:4159 if (proposals[p].voteCount > winningVoteCount) {... */\n tag_86:\n /* \"contracts/3_Ballot.sol\":3981:3984 p++ */\n dup1\n dup1\n 0x01\n add\n swap2\n pop\n pop\n /* \"contracts/3_Ballot.sol\":3942:4169 for (uint p = 0; p < proposals.length; p++) {... */\n jump(tag_80)\n tag_81:\n pop\n /* \"contracts/3_Ballot.sol\":3897:4175 {... */\n pop\n /* \"contracts/3_Ballot.sol\":3810:4175 function winningProposal() public view... */\n swap1\n jump\t// out\n /* \"contracts/3_Ballot.sol\":1592:1947 function giveRightToVote(address voter) public {... */\n tag_35:\n /* \"contracts/3_Ballot.sol\":1684:1695 chairperson */\n 0x00\n dup1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/3_Ballot.sol\":1670:1695 msg.sender == chairperson */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/3_Ballot.sol\":1670:1680 msg.sender */\n caller\n /* \"contracts/3_Ballot.sol\":1670:1695 msg.sender == chairperson */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"contracts/3_Ballot.sol\":1649:1761 require(... */\n tag_91\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_92\n swap1\n tag_93\n jump\t// in\n tag_92:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_91:\n /* \"contracts/3_Ballot.sol\":1793:1799 voters */\n 0x01\n /* \"contracts/3_Ballot.sol\":1793:1806 voters[voter] */\n 0x00\n /* \"contracts/3_Ballot.sol\":1800:1805 voter */\n dup3\n /* \"contracts/3_Ballot.sol\":1793:1806 voters[voter] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/3_Ballot.sol\":1793:1812 voters[voter].voted */\n 0x01\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"contracts/3_Ballot.sol\":1792:1812 !voters[voter].voted */\n iszero\n /* \"contracts/3_Ballot.sol\":1771:1862 require(... */\n tag_94\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_95\n swap1\n tag_96\n jump\t// in\n tag_95:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_94:\n /* \"contracts/3_Ballot.sol\":1904:1905 0 */\n 0x00\n /* \"contracts/3_Ballot.sol\":1880:1886 voters */\n 0x01\n /* \"contracts/3_Ballot.sol\":1880:1893 voters[voter] */\n 0x00\n /* \"contracts/3_Ballot.sol\":1887:1892 voter */\n dup4\n /* \"contracts/3_Ballot.sol\":1880:1893 voters[voter] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/3_Ballot.sol\":1880:1900 voters[voter].weight */\n 0x00\n add\n sload\n /* \"contracts/3_Ballot.sol\":1880:1905 voters[voter].weight == 0 */\n eq\n /* \"contracts/3_Ballot.sol\":1872:1906 require(voters[voter].weight == 0) */\n tag_97\n jumpi\n 0x00\n dup1\n revert\n tag_97:\n /* \"contracts/3_Ballot.sol\":1939:1940 1 */\n 0x01\n /* \"contracts/3_Ballot.sol\":1916:1922 voters */\n dup1\n /* \"contracts/3_Ballot.sol\":1916:1929 voters[voter] */\n 0x00\n /* \"contracts/3_Ballot.sol\":1923:1928 voter */\n dup4\n /* \"contracts/3_Ballot.sol\":1916:1929 voters[voter] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/3_Ballot.sol\":1916:1936 voters[voter].weight */\n 0x00\n add\n /* \"contracts/3_Ballot.sol\":1916:1940 voters[voter].weight = 1 */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/3_Ballot.sol\":1592:1947 function giveRightToVote(address voter) public {... */\n pop\n jump\t// out\n /* \"contracts/3_Ballot.sol\":745:784 mapping(address => Voter) public voters */\n tag_38:\n mstore(0x20, 0x01)\n dup1\n 0x00\n mstore\n keccak256(0x00, 0x40)\n 0x00\n swap2\n pop\n swap1\n pop\n dup1\n 0x00\n add\n sload\n swap1\n dup1\n 0x01\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n swap1\n dup1\n 0x01\n add\n 0x01\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n swap1\n dup1\n 0x02\n add\n sload\n swap1\n pop\n dup5\n jump\t// out\n /* \"contracts/3_Ballot.sol\":4366:4510 function winnerName() public view... */\n tag_42:\n /* \"contracts/3_Ballot.sol\":4421:4440 bytes32 winnerName_ */\n 0x00\n /* \"contracts/3_Ballot.sol\":4470:4479 proposals */\n 0x02\n /* \"contracts/3_Ballot.sol\":4480:4497 winningProposal() */\n tag_99\n /* \"contracts/3_Ballot.sol\":4480:4495 winningProposal */\n tag_30\n /* \"contracts/3_Ballot.sol\":4480:4497 winningProposal() */\n jump\t// in\n tag_99:\n /* \"contracts/3_Ballot.sol\":4470:4498 proposals[winningProposal()] */\n dup2\n sload\n dup2\n lt\n tag_100\n jumpi\n tag_101\n tag_54\n jump\t// in\n tag_101:\n tag_100:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x02\n mul\n add\n /* \"contracts/3_Ballot.sol\":4470:4503 proposals[winningProposal()].name */\n 0x00\n add\n sload\n /* \"contracts/3_Ballot.sol\":4456:4503 winnerName_ = proposals[winningProposal()].name */\n swap1\n pop\n /* \"contracts/3_Ballot.sol\":4366:4510 function winnerName() public view... */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_104:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":334:411 */\n tag_106:\n /* \"#utility.yul\":371:378 */\n 0x00\n /* \"#utility.yul\":400:405 */\n dup2\n /* \"#utility.yul\":389:405 */\n swap1\n pop\n /* \"#utility.yul\":334:411 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":417:539 */\n tag_107:\n /* \"#utility.yul\":490:514 */\n tag_141\n /* \"#utility.yul\":508:513 */\n dup2\n /* \"#utility.yul\":490:514 */\n tag_106\n jump\t// in\n tag_141:\n /* \"#utility.yul\":483:488 */\n dup2\n /* \"#utility.yul\":480:515 */\n eq\n /* \"#utility.yul\":470:533 */\n tag_142\n jumpi\n /* \"#utility.yul\":529:530 */\n 0x00\n /* \"#utility.yul\":526:527 */\n dup1\n /* \"#utility.yul\":519:531 */\n revert\n /* \"#utility.yul\":470:533 */\n tag_142:\n /* \"#utility.yul\":417:539 */\n pop\n jump\t// out\n /* \"#utility.yul\":545:684 */\n tag_108:\n /* \"#utility.yul\":591:596 */\n 0x00\n /* \"#utility.yul\":629:635 */\n dup2\n /* \"#utility.yul\":616:636 */\n calldataload\n /* \"#utility.yul\":607:636 */\n swap1\n pop\n /* \"#utility.yul\":645:678 */\n tag_144\n /* \"#utility.yul\":672:677 */\n dup2\n /* \"#utility.yul\":645:678 */\n tag_107\n jump\t// in\n tag_144:\n /* \"#utility.yul\":545:684 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":690:1019 */\n tag_14:\n /* \"#utility.yul\":749:755 */\n 0x00\n /* \"#utility.yul\":798:800 */\n 0x20\n /* \"#utility.yul\":786:795 */\n dup3\n /* \"#utility.yul\":777:784 */\n dup5\n /* \"#utility.yul\":773:796 */\n sub\n /* \"#utility.yul\":769:801 */\n slt\n /* \"#utility.yul\":766:885 */\n iszero\n tag_146\n jumpi\n /* \"#utility.yul\":804:883 */\n tag_147\n tag_104\n jump\t// in\n tag_147:\n /* \"#utility.yul\":766:885 */\n tag_146:\n /* \"#utility.yul\":924:925 */\n 0x00\n /* \"#utility.yul\":949:1002 */\n tag_148\n /* \"#utility.yul\":994:1001 */\n dup5\n /* \"#utility.yul\":985:991 */\n dup3\n /* \"#utility.yul\":974:983 */\n dup6\n /* \"#utility.yul\":970:992 */\n add\n /* \"#utility.yul\":949:1002 */\n tag_108\n jump\t// in\n tag_148:\n /* \"#utility.yul\":939:1002 */\n swap2\n pop\n /* \"#utility.yul\":895:1012 */\n pop\n /* \"#utility.yul\":690:1019 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1025:1102 */\n tag_109:\n /* \"#utility.yul\":1062:1069 */\n 0x00\n /* \"#utility.yul\":1091:1096 */\n dup2\n /* \"#utility.yul\":1080:1096 */\n swap1\n pop\n /* \"#utility.yul\":1025:1102 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1108:1226 */\n tag_110:\n /* \"#utility.yul\":1195:1219 */\n tag_151\n /* \"#utility.yul\":1213:1218 */\n dup2\n /* \"#utility.yul\":1195:1219 */\n tag_109\n jump\t// in\n tag_151:\n /* \"#utility.yul\":1190:1193 */\n dup3\n /* \"#utility.yul\":1183:1220 */\n mstore\n /* \"#utility.yul\":1108:1226 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1232:1350 */\n tag_111:\n /* \"#utility.yul\":1319:1343 */\n tag_153\n /* \"#utility.yul\":1337:1342 */\n dup2\n /* \"#utility.yul\":1319:1343 */\n tag_106\n jump\t// in\n tag_153:\n /* \"#utility.yul\":1314:1317 */\n dup3\n /* \"#utility.yul\":1307:1344 */\n mstore\n /* \"#utility.yul\":1232:1350 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1356:1688 */\n tag_20:\n /* \"#utility.yul\":1477:1481 */\n 0x00\n /* \"#utility.yul\":1515:1517 */\n 0x40\n /* \"#utility.yul\":1504:1513 */\n dup3\n /* \"#utility.yul\":1500:1518 */\n add\n /* \"#utility.yul\":1492:1518 */\n swap1\n pop\n /* \"#utility.yul\":1528:1599 */\n tag_155\n /* \"#utility.yul\":1596:1597 */\n 0x00\n /* \"#utility.yul\":1585:1594 */\n dup4\n /* \"#utility.yul\":1581:1598 */\n add\n /* \"#utility.yul\":1572:1578 */\n dup6\n /* \"#utility.yul\":1528:1599 */\n tag_110\n jump\t// in\n tag_155:\n /* \"#utility.yul\":1609:1681 */\n tag_156\n /* \"#utility.yul\":1677:1679 */\n 0x20\n /* \"#utility.yul\":1666:1675 */\n dup4\n /* \"#utility.yul\":1662:1680 */\n add\n /* \"#utility.yul\":1653:1659 */\n dup5\n /* \"#utility.yul\":1609:1681 */\n tag_111\n jump\t// in\n tag_156:\n /* \"#utility.yul\":1356:1688 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1694:1820 */\n tag_112:\n /* \"#utility.yul\":1731:1738 */\n 0x00\n /* \"#utility.yul\":1771:1813 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":1764:1769 */\n dup3\n /* \"#utility.yul\":1760:1814 */\n and\n /* \"#utility.yul\":1749:1814 */\n swap1\n pop\n /* \"#utility.yul\":1694:1820 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1826:1922 */\n tag_113:\n /* \"#utility.yul\":1863:1870 */\n 0x00\n /* \"#utility.yul\":1892:1916 */\n tag_159\n /* \"#utility.yul\":1910:1915 */\n dup3\n /* \"#utility.yul\":1892:1916 */\n tag_112\n jump\t// in\n tag_159:\n /* \"#utility.yul\":1881:1916 */\n swap1\n pop\n /* \"#utility.yul\":1826:1922 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1928:2046 */\n tag_114:\n /* \"#utility.yul\":2015:2039 */\n tag_161\n /* \"#utility.yul\":2033:2038 */\n dup2\n /* \"#utility.yul\":2015:2039 */\n tag_113\n jump\t// in\n tag_161:\n /* \"#utility.yul\":2010:2013 */\n dup3\n /* \"#utility.yul\":2003:2040 */\n mstore\n /* \"#utility.yul\":1928:2046 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2052:2274 */\n tag_24:\n /* \"#utility.yul\":2145:2149 */\n 0x00\n /* \"#utility.yul\":2183:2185 */\n 0x20\n /* \"#utility.yul\":2172:2181 */\n dup3\n /* \"#utility.yul\":2168:2186 */\n add\n /* \"#utility.yul\":2160:2186 */\n swap1\n pop\n /* \"#utility.yul\":2196:2267 */\n tag_163\n /* \"#utility.yul\":2264:2265 */\n 0x00\n /* \"#utility.yul\":2253:2262 */\n dup4\n /* \"#utility.yul\":2249:2266 */\n add\n /* \"#utility.yul\":2240:2246 */\n dup5\n /* \"#utility.yul\":2196:2267 */\n tag_114\n jump\t// in\n tag_163:\n /* \"#utility.yul\":2052:2274 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2280:2402 */\n tag_115:\n /* \"#utility.yul\":2353:2377 */\n tag_165\n /* \"#utility.yul\":2371:2376 */\n dup2\n /* \"#utility.yul\":2353:2377 */\n tag_113\n jump\t// in\n tag_165:\n /* \"#utility.yul\":2346:2351 */\n dup2\n /* \"#utility.yul\":2343:2378 */\n eq\n /* \"#utility.yul\":2333:2396 */\n tag_166\n jumpi\n /* \"#utility.yul\":2392:2393 */\n 0x00\n /* \"#utility.yul\":2389:2390 */\n dup1\n /* \"#utility.yul\":2382:2394 */\n revert\n /* \"#utility.yul\":2333:2396 */\n tag_166:\n /* \"#utility.yul\":2280:2402 */\n pop\n jump\t// out\n /* \"#utility.yul\":2408:2547 */\n tag_116:\n /* \"#utility.yul\":2454:2459 */\n 0x00\n /* \"#utility.yul\":2492:2498 */\n dup2\n /* \"#utility.yul\":2479:2499 */\n calldataload\n /* \"#utility.yul\":2470:2499 */\n swap1\n pop\n /* \"#utility.yul\":2508:2541 */\n tag_168\n /* \"#utility.yul\":2535:2540 */\n dup2\n /* \"#utility.yul\":2508:2541 */\n tag_115\n jump\t// in\n tag_168:\n /* \"#utility.yul\":2408:2547 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2553:2882 */\n tag_27:\n /* \"#utility.yul\":2612:2618 */\n 0x00\n /* \"#utility.yul\":2661:2663 */\n 0x20\n /* \"#utility.yul\":2649:2658 */\n dup3\n /* \"#utility.yul\":2640:2647 */\n dup5\n /* \"#utility.yul\":2636:2659 */\n sub\n /* \"#utility.yul\":2632:2664 */\n slt\n /* \"#utility.yul\":2629:2748 */\n iszero\n tag_170\n jumpi\n /* \"#utility.yul\":2667:2746 */\n tag_171\n tag_104\n jump\t// in\n tag_171:\n /* \"#utility.yul\":2629:2748 */\n tag_170:\n /* \"#utility.yul\":2787:2788 */\n 0x00\n /* \"#utility.yul\":2812:2865 */\n tag_172\n /* \"#utility.yul\":2857:2864 */\n dup5\n /* \"#utility.yul\":2848:2854 */\n dup3\n /* \"#utility.yul\":2837:2846 */\n dup6\n /* \"#utility.yul\":2833:2855 */\n add\n /* \"#utility.yul\":2812:2865 */\n tag_116\n jump\t// in\n tag_172:\n /* \"#utility.yul\":2802:2865 */\n swap2\n pop\n /* \"#utility.yul\":2758:2875 */\n pop\n /* \"#utility.yul\":2553:2882 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2888:3110 */\n tag_32:\n /* \"#utility.yul\":2981:2985 */\n 0x00\n /* \"#utility.yul\":3019:3021 */\n 0x20\n /* \"#utility.yul\":3008:3017 */\n dup3\n /* \"#utility.yul\":3004:3022 */\n add\n /* \"#utility.yul\":2996:3022 */\n swap1\n pop\n /* \"#utility.yul\":3032:3103 */\n tag_174\n /* \"#utility.yul\":3100:3101 */\n 0x00\n /* \"#utility.yul\":3089:3098 */\n dup4\n /* \"#utility.yul\":3085:3102 */\n add\n /* \"#utility.yul\":3076:3082 */\n dup5\n /* \"#utility.yul\":3032:3103 */\n tag_111\n jump\t// in\n tag_174:\n /* \"#utility.yul\":2888:3110 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3116:3206 */\n tag_117:\n /* \"#utility.yul\":3150:3157 */\n 0x00\n /* \"#utility.yul\":3193:3198 */\n dup2\n /* \"#utility.yul\":3186:3199 */\n iszero\n /* \"#utility.yul\":3179:3200 */\n iszero\n /* \"#utility.yul\":3168:3200 */\n swap1\n pop\n /* \"#utility.yul\":3116:3206 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3212:3321 */\n tag_118:\n /* \"#utility.yul\":3293:3314 */\n tag_177\n /* \"#utility.yul\":3308:3313 */\n dup2\n /* \"#utility.yul\":3293:3314 */\n tag_117\n jump\t// in\n tag_177:\n /* \"#utility.yul\":3288:3291 */\n dup3\n /* \"#utility.yul\":3281:3315 */\n mstore\n /* \"#utility.yul\":3212:3321 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3327:3868 */\n tag_40:\n /* \"#utility.yul\":3498:3502 */\n 0x00\n /* \"#utility.yul\":3536:3539 */\n 0x80\n /* \"#utility.yul\":3525:3534 */\n dup3\n /* \"#utility.yul\":3521:3540 */\n add\n /* \"#utility.yul\":3513:3540 */\n swap1\n pop\n /* \"#utility.yul\":3550:3621 */\n tag_179\n /* \"#utility.yul\":3618:3619 */\n 0x00\n /* \"#utility.yul\":3607:3616 */\n dup4\n /* \"#utility.yul\":3603:3620 */\n add\n /* \"#utility.yul\":3594:3600 */\n dup8\n /* \"#utility.yul\":3550:3621 */\n tag_111\n jump\t// in\n tag_179:\n /* \"#utility.yul\":3631:3697 */\n tag_180\n /* \"#utility.yul\":3693:3695 */\n 0x20\n /* \"#utility.yul\":3682:3691 */\n dup4\n /* \"#utility.yul\":3678:3696 */\n add\n /* \"#utility.yul\":3669:3675 */\n dup7\n /* \"#utility.yul\":3631:3697 */\n tag_118\n jump\t// in\n tag_180:\n /* \"#utility.yul\":3707:3779 */\n tag_181\n /* \"#utility.yul\":3775:3777 */\n 0x40\n /* \"#utility.yul\":3764:3773 */\n dup4\n /* \"#utility.yul\":3760:3778 */\n add\n /* \"#utility.yul\":3751:3757 */\n dup6\n /* \"#utility.yul\":3707:3779 */\n tag_114\n jump\t// in\n tag_181:\n /* \"#utility.yul\":3789:3861 */\n tag_182\n /* \"#utility.yul\":3857:3859 */\n 0x60\n /* \"#utility.yul\":3846:3855 */\n dup4\n /* \"#utility.yul\":3842:3860 */\n add\n /* \"#utility.yul\":3833:3839 */\n dup5\n /* \"#utility.yul\":3789:3861 */\n tag_111\n jump\t// in\n tag_182:\n /* \"#utility.yul\":3327:3868 */\n swap6\n swap5\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3874:4096 */\n tag_44:\n /* \"#utility.yul\":3967:3971 */\n 0x00\n /* \"#utility.yul\":4005:4007 */\n 0x20\n /* \"#utility.yul\":3994:4003 */\n dup3\n /* \"#utility.yul\":3990:4008 */\n add\n /* \"#utility.yul\":3982:4008 */\n swap1\n pop\n /* \"#utility.yul\":4018:4089 */\n tag_184\n /* \"#utility.yul\":4086:4087 */\n 0x00\n /* \"#utility.yul\":4075:4084 */\n dup4\n /* \"#utility.yul\":4071:4088 */\n add\n /* \"#utility.yul\":4062:4068 */\n dup5\n /* \"#utility.yul\":4018:4089 */\n tag_110\n jump\t// in\n tag_184:\n /* \"#utility.yul\":3874:4096 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4102:4271 */\n tag_119:\n /* \"#utility.yul\":4186:4197 */\n 0x00\n /* \"#utility.yul\":4220:4226 */\n dup3\n /* \"#utility.yul\":4215:4218 */\n dup3\n /* \"#utility.yul\":4208:4227 */\n mstore\n /* \"#utility.yul\":4260:4264 */\n 0x20\n /* \"#utility.yul\":4255:4258 */\n dup3\n /* \"#utility.yul\":4251:4265 */\n add\n /* \"#utility.yul\":4236:4265 */\n swap1\n pop\n /* \"#utility.yul\":4102:4271 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4277:4447 */\n tag_120:\n /* \"#utility.yul\":4417:4439 */\n 0x486173206e6f20726967687420746f20766f7465000000000000000000000000\n /* \"#utility.yul\":4413:4414 */\n 0x00\n /* \"#utility.yul\":4405:4411 */\n dup3\n /* \"#utility.yul\":4401:4415 */\n add\n /* \"#utility.yul\":4394:4440 */\n mstore\n /* \"#utility.yul\":4277:4447 */\n pop\n jump\t// out\n /* \"#utility.yul\":4453:4819 */\n tag_121:\n /* \"#utility.yul\":4595:4598 */\n 0x00\n /* \"#utility.yul\":4616:4683 */\n tag_188\n /* \"#utility.yul\":4680:4682 */\n 0x14\n /* \"#utility.yul\":4675:4678 */\n dup4\n /* \"#utility.yul\":4616:4683 */\n tag_119\n jump\t// in\n tag_188:\n /* \"#utility.yul\":4609:4683 */\n swap2\n pop\n /* \"#utility.yul\":4692:4785 */\n tag_189\n /* \"#utility.yul\":4781:4784 */\n dup3\n /* \"#utility.yul\":4692:4785 */\n tag_120\n jump\t// in\n tag_189:\n /* \"#utility.yul\":4810:4812 */\n 0x20\n /* \"#utility.yul\":4805:4808 */\n dup3\n /* \"#utility.yul\":4801:4813 */\n add\n /* \"#utility.yul\":4794:4813 */\n swap1\n pop\n /* \"#utility.yul\":4453:4819 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4825:5244 */\n tag_48:\n /* \"#utility.yul\":4991:4995 */\n 0x00\n /* \"#utility.yul\":5029:5031 */\n 0x20\n /* \"#utility.yul\":5018:5027 */\n dup3\n /* \"#utility.yul\":5014:5032 */\n add\n /* \"#utility.yul\":5006:5032 */\n swap1\n pop\n /* \"#utility.yul\":5078:5087 */\n dup2\n /* \"#utility.yul\":5072:5076 */\n dup2\n /* \"#utility.yul\":5068:5088 */\n sub\n /* \"#utility.yul\":5064:5065 */\n 0x00\n /* \"#utility.yul\":5053:5062 */\n dup4\n /* \"#utility.yul\":5049:5066 */\n add\n /* \"#utility.yul\":5042:5089 */\n mstore\n /* \"#utility.yul\":5106:5237 */\n tag_191\n /* \"#utility.yul\":5232:5236 */\n dup2\n /* \"#utility.yul\":5106:5237 */\n tag_121\n jump\t// in\n tag_191:\n /* \"#utility.yul\":5098:5237 */\n swap1\n pop\n /* \"#utility.yul\":4825:5244 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5250:5414 */\n tag_122:\n /* \"#utility.yul\":5390:5406 */\n 0x416c726561647920766f7465642e000000000000000000000000000000000000\n /* \"#utility.yul\":5386:5387 */\n 0x00\n /* \"#utility.yul\":5378:5384 */\n dup3\n /* \"#utility.yul\":5374:5388 */\n add\n /* \"#utility.yul\":5367:5407 */\n mstore\n /* \"#utility.yul\":5250:5414 */\n pop\n jump\t// out\n /* \"#utility.yul\":5420:5786 */\n tag_123:\n /* \"#utility.yul\":5562:5565 */\n 0x00\n /* \"#utility.yul\":5583:5650 */\n tag_194\n /* \"#utility.yul\":5647:5649 */\n 0x0e\n /* \"#utility.yul\":5642:5645 */\n dup4\n /* \"#utility.yul\":5583:5650 */\n tag_119\n jump\t// in\n tag_194:\n /* \"#utility.yul\":5576:5650 */\n swap2\n pop\n /* \"#utility.yul\":5659:5752 */\n tag_195\n /* \"#utility.yul\":5748:5751 */\n dup3\n /* \"#utility.yul\":5659:5752 */\n tag_122\n jump\t// in\n tag_195:\n /* \"#utility.yul\":5777:5779 */\n 0x20\n /* \"#utility.yul\":5772:5775 */\n dup3\n /* \"#utility.yul\":5768:5780 */\n add\n /* \"#utility.yul\":5761:5780 */\n swap1\n pop\n /* \"#utility.yul\":5420:5786 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5792:6211 */\n tag_51:\n /* \"#utility.yul\":5958:5962 */\n 0x00\n /* \"#utility.yul\":5996:5998 */\n 0x20\n /* \"#utility.yul\":5985:5994 */\n dup3\n /* \"#utility.yul\":5981:5999 */\n add\n /* \"#utility.yul\":5973:5999 */\n swap1\n pop\n /* \"#utility.yul\":6045:6054 */\n dup2\n /* \"#utility.yul\":6039:6043 */\n dup2\n /* \"#utility.yul\":6035:6055 */\n sub\n /* \"#utility.yul\":6031:6032 */\n 0x00\n /* \"#utility.yul\":6020:6029 */\n dup4\n /* \"#utility.yul\":6016:6033 */\n add\n /* \"#utility.yul\":6009:6056 */\n mstore\n /* \"#utility.yul\":6073:6204 */\n tag_197\n /* \"#utility.yul\":6199:6203 */\n dup2\n /* \"#utility.yul\":6073:6204 */\n tag_123\n jump\t// in\n tag_197:\n /* \"#utility.yul\":6065:6204 */\n swap1\n pop\n /* \"#utility.yul\":5792:6211 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6217:6397 */\n tag_54:\n /* \"#utility.yul\":6265:6342 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6262:6263 */\n 0x00\n /* \"#utility.yul\":6255:6343 */\n mstore\n /* \"#utility.yul\":6362:6366 */\n 0x32\n /* \"#utility.yul\":6359:6360 */\n 0x04\n /* \"#utility.yul\":6352:6367 */\n mstore\n /* \"#utility.yul\":6386:6390 */\n 0x24\n /* \"#utility.yul\":6383:6384 */\n 0x00\n /* \"#utility.yul\":6376:6391 */\n revert\n /* \"#utility.yul\":6403:6583 */\n tag_124:\n /* \"#utility.yul\":6451:6528 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":6448:6449 */\n 0x00\n /* \"#utility.yul\":6441:6529 */\n mstore\n /* \"#utility.yul\":6548:6552 */\n 0x11\n /* \"#utility.yul\":6545:6546 */\n 0x04\n /* \"#utility.yul\":6538:6553 */\n mstore\n /* \"#utility.yul\":6572:6576 */\n 0x24\n /* \"#utility.yul\":6569:6570 */\n 0x00\n /* \"#utility.yul\":6562:6577 */\n revert\n /* \"#utility.yul\":6589:6780 */\n tag_57:\n /* \"#utility.yul\":6629:6632 */\n 0x00\n /* \"#utility.yul\":6648:6668 */\n tag_201\n /* \"#utility.yul\":6666:6667 */\n dup3\n /* \"#utility.yul\":6648:6668 */\n tag_106\n jump\t// in\n tag_201:\n /* \"#utility.yul\":6643:6668 */\n swap2\n pop\n /* \"#utility.yul\":6682:6702 */\n tag_202\n /* \"#utility.yul\":6700:6701 */\n dup4\n /* \"#utility.yul\":6682:6702 */\n tag_106\n jump\t// in\n tag_202:\n /* \"#utility.yul\":6677:6702 */\n swap3\n pop\n /* \"#utility.yul\":6725:6726 */\n dup3\n /* \"#utility.yul\":6722:6723 */\n dup3\n /* \"#utility.yul\":6718:6727 */\n add\n /* \"#utility.yul\":6711:6727 */\n swap1\n pop\n /* \"#utility.yul\":6746:6749 */\n dup1\n /* \"#utility.yul\":6743:6744 */\n dup3\n /* \"#utility.yul\":6740:6750 */\n gt\n /* \"#utility.yul\":6737:6773 */\n iszero\n tag_203\n jumpi\n /* \"#utility.yul\":6753:6771 */\n tag_204\n tag_124\n jump\t// in\n tag_204:\n /* \"#utility.yul\":6737:6773 */\n tag_203:\n /* \"#utility.yul\":6589:6780 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6786:6954 */\n tag_125:\n /* \"#utility.yul\":6926:6946 */\n 0x596f7520616c726561647920766f7465642e0000000000000000000000000000\n /* \"#utility.yul\":6922:6923 */\n 0x00\n /* \"#utility.yul\":6914:6920 */\n dup3\n /* \"#utility.yul\":6910:6924 */\n add\n /* \"#utility.yul\":6903:6947 */\n mstore\n /* \"#utility.yul\":6786:6954 */\n pop\n jump\t// out\n /* \"#utility.yul\":6960:7326 */\n tag_126:\n /* \"#utility.yul\":7102:7105 */\n 0x00\n /* \"#utility.yul\":7123:7190 */\n tag_207\n /* \"#utility.yul\":7187:7189 */\n 0x12\n /* \"#utility.yul\":7182:7185 */\n dup4\n /* \"#utility.yul\":7123:7190 */\n tag_119\n jump\t// in\n tag_207:\n /* \"#utility.yul\":7116:7190 */\n swap2\n pop\n /* \"#utility.yul\":7199:7292 */\n tag_208\n /* \"#utility.yul\":7288:7291 */\n dup3\n /* \"#utility.yul\":7199:7292 */\n tag_125\n jump\t// in\n tag_208:\n /* \"#utility.yul\":7317:7319 */\n 0x20\n /* \"#utility.yul\":7312:7315 */\n dup3\n /* \"#utility.yul\":7308:7320 */\n add\n /* \"#utility.yul\":7301:7320 */\n swap1\n pop\n /* \"#utility.yul\":6960:7326 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7332:7751 */\n tag_63:\n /* \"#utility.yul\":7498:7502 */\n 0x00\n /* \"#utility.yul\":7536:7538 */\n 0x20\n /* \"#utility.yul\":7525:7534 */\n dup3\n /* \"#utility.yul\":7521:7539 */\n add\n /* \"#utility.yul\":7513:7539 */\n swap1\n pop\n /* \"#utility.yul\":7585:7594 */\n dup2\n /* \"#utility.yul\":7579:7583 */\n dup2\n /* \"#utility.yul\":7575:7595 */\n sub\n /* \"#utility.yul\":7571:7572 */\n 0x00\n /* \"#utility.yul\":7560:7569 */\n dup4\n /* \"#utility.yul\":7556:7573 */\n add\n /* \"#utility.yul\":7549:7596 */\n mstore\n /* \"#utility.yul\":7613:7744 */\n tag_210\n /* \"#utility.yul\":7739:7743 */\n dup2\n /* \"#utility.yul\":7613:7744 */\n tag_126\n jump\t// in\n tag_210:\n /* \"#utility.yul\":7605:7744 */\n swap1\n pop\n /* \"#utility.yul\":7332:7751 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7757:7937 */\n tag_127:\n /* \"#utility.yul\":7897:7929 */\n 0x53656c662d64656c65676174696f6e20697320646973616c6c6f7765642e0000\n /* \"#utility.yul\":7893:7894 */\n 0x00\n /* \"#utility.yul\":7885:7891 */\n dup3\n /* \"#utility.yul\":7881:7895 */\n add\n /* \"#utility.yul\":7874:7930 */\n mstore\n /* \"#utility.yul\":7757:7937 */\n pop\n jump\t// out\n /* \"#utility.yul\":7943:8309 */\n tag_128:\n /* \"#utility.yul\":8085:8088 */\n 0x00\n /* \"#utility.yul\":8106:8173 */\n tag_213\n /* \"#utility.yul\":8170:8172 */\n 0x1e\n /* \"#utility.yul\":8165:8168 */\n dup4\n /* \"#utility.yul\":8106:8173 */\n tag_119\n jump\t// in\n tag_213:\n /* \"#utility.yul\":8099:8173 */\n swap2\n pop\n /* \"#utility.yul\":8182:8275 */\n tag_214\n /* \"#utility.yul\":8271:8274 */\n dup3\n /* \"#utility.yul\":8182:8275 */\n tag_127\n jump\t// in\n tag_214:\n /* \"#utility.yul\":8300:8302 */\n 0x20\n /* \"#utility.yul\":8295:8298 */\n dup3\n /* \"#utility.yul\":8291:8303 */\n add\n /* \"#utility.yul\":8284:8303 */\n swap1\n pop\n /* \"#utility.yul\":7943:8309 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8315:8734 */\n tag_66:\n /* \"#utility.yul\":8481:8485 */\n 0x00\n /* \"#utility.yul\":8519:8521 */\n 0x20\n /* \"#utility.yul\":8508:8517 */\n dup3\n /* \"#utility.yul\":8504:8522 */\n add\n /* \"#utility.yul\":8496:8522 */\n swap1\n pop\n /* \"#utility.yul\":8568:8577 */\n dup2\n /* \"#utility.yul\":8562:8566 */\n dup2\n /* \"#utility.yul\":8558:8578 */\n sub\n /* \"#utility.yul\":8554:8555 */\n 0x00\n /* \"#utility.yul\":8543:8552 */\n dup4\n /* \"#utility.yul\":8539:8556 */\n add\n /* \"#utility.yul\":8532:8579 */\n mstore\n /* \"#utility.yul\":8596:8727 */\n tag_216\n /* \"#utility.yul\":8722:8726 */\n dup2\n /* \"#utility.yul\":8596:8727 */\n tag_128\n jump\t// in\n tag_216:\n /* \"#utility.yul\":8588:8727 */\n swap1\n pop\n /* \"#utility.yul\":8315:8734 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8740:8915 */\n tag_129:\n /* \"#utility.yul\":8880:8907 */\n 0x466f756e64206c6f6f7020696e2064656c65676174696f6e2e00000000000000\n /* \"#utility.yul\":8876:8877 */\n 0x00\n /* \"#utility.yul\":8868:8874 */\n dup3\n /* \"#utility.yul\":8864:8878 */\n add\n /* \"#utility.yul\":8857:8908 */\n mstore\n /* \"#utility.yul\":8740:8915 */\n pop\n jump\t// out\n /* \"#utility.yul\":8921:9287 */\n tag_130:\n /* \"#utility.yul\":9063:9066 */\n 0x00\n /* \"#utility.yul\":9084:9151 */\n tag_219\n /* \"#utility.yul\":9148:9150 */\n 0x19\n /* \"#utility.yul\":9143:9146 */\n dup4\n /* \"#utility.yul\":9084:9151 */\n tag_119\n jump\t// in\n tag_219:\n /* \"#utility.yul\":9077:9151 */\n swap2\n pop\n /* \"#utility.yul\":9160:9253 */\n tag_220\n /* \"#utility.yul\":9249:9252 */\n dup3\n /* \"#utility.yul\":9160:9253 */\n tag_129\n jump\t// in\n tag_220:\n /* \"#utility.yul\":9278:9280 */\n 0x20\n /* \"#utility.yul\":9273:9276 */\n dup3\n /* \"#utility.yul\":9269:9281 */\n add\n /* \"#utility.yul\":9262:9281 */\n swap1\n pop\n /* \"#utility.yul\":8921:9287 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9293:9712 */\n tag_71:\n /* \"#utility.yul\":9459:9463 */\n 0x00\n /* \"#utility.yul\":9497:9499 */\n 0x20\n /* \"#utility.yul\":9486:9495 */\n dup3\n /* \"#utility.yul\":9482:9500 */\n add\n /* \"#utility.yul\":9474:9500 */\n swap1\n pop\n /* \"#utility.yul\":9546:9555 */\n dup2\n /* \"#utility.yul\":9540:9544 */\n dup2\n /* \"#utility.yul\":9536:9556 */\n sub\n /* \"#utility.yul\":9532:9533 */\n 0x00\n /* \"#utility.yul\":9521:9530 */\n dup4\n /* \"#utility.yul\":9517:9534 */\n add\n /* \"#utility.yul\":9510:9557 */\n mstore\n /* \"#utility.yul\":9574:9705 */\n tag_222\n /* \"#utility.yul\":9700:9704 */\n dup2\n /* \"#utility.yul\":9574:9705 */\n tag_130\n jump\t// in\n tag_222:\n /* \"#utility.yul\":9566:9705 */\n swap1\n pop\n /* \"#utility.yul\":9293:9712 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9718:9945 */\n tag_131:\n /* \"#utility.yul\":9858:9892 */\n 0x4f6e6c79206368616972706572736f6e2063616e206769766520726967687420\n /* \"#utility.yul\":9854:9855 */\n 0x00\n /* \"#utility.yul\":9846:9852 */\n dup3\n /* \"#utility.yul\":9842:9856 */\n add\n /* \"#utility.yul\":9835:9893 */\n mstore\n /* \"#utility.yul\":9927:9937 */\n 0x746f20766f74652e000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":9922:9924 */\n 0x20\n /* \"#utility.yul\":9914:9920 */\n dup3\n /* \"#utility.yul\":9910:9925 */\n add\n /* \"#utility.yul\":9903:9938 */\n mstore\n /* \"#utility.yul\":9718:9945 */\n pop\n jump\t// out\n /* \"#utility.yul\":9951:10317 */\n tag_132:\n /* \"#utility.yul\":10093:10096 */\n 0x00\n /* \"#utility.yul\":10114:10181 */\n tag_225\n /* \"#utility.yul\":10178:10180 */\n 0x28\n /* \"#utility.yul\":10173:10176 */\n dup4\n /* \"#utility.yul\":10114:10181 */\n tag_119\n jump\t// in\n tag_225:\n /* \"#utility.yul\":10107:10181 */\n swap2\n pop\n /* \"#utility.yul\":10190:10283 */\n tag_226\n /* \"#utility.yul\":10279:10282 */\n dup3\n /* \"#utility.yul\":10190:10283 */\n tag_131\n jump\t// in\n tag_226:\n /* \"#utility.yul\":10308:10310 */\n 0x40\n /* \"#utility.yul\":10303:10306 */\n dup3\n /* \"#utility.yul\":10299:10311 */\n add\n /* \"#utility.yul\":10292:10311 */\n swap1\n pop\n /* \"#utility.yul\":9951:10317 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10323:10742 */\n tag_93:\n /* \"#utility.yul\":10489:10493 */\n 0x00\n /* \"#utility.yul\":10527:10529 */\n 0x20\n /* \"#utility.yul\":10516:10525 */\n dup3\n /* \"#utility.yul\":10512:10530 */\n add\n /* \"#utility.yul\":10504:10530 */\n swap1\n pop\n /* \"#utility.yul\":10576:10585 */\n dup2\n /* \"#utility.yul\":10570:10574 */\n dup2\n /* \"#utility.yul\":10566:10586 */\n sub\n /* \"#utility.yul\":10562:10563 */\n 0x00\n /* \"#utility.yul\":10551:10560 */\n dup4\n /* \"#utility.yul\":10547:10564 */\n add\n /* \"#utility.yul\":10540:10587 */\n mstore\n /* \"#utility.yul\":10604:10735 */\n tag_228\n /* \"#utility.yul\":10730:10734 */\n dup2\n /* \"#utility.yul\":10604:10735 */\n tag_132\n jump\t// in\n tag_228:\n /* \"#utility.yul\":10596:10735 */\n swap1\n pop\n /* \"#utility.yul\":10323:10742 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10748:10922 */\n tag_133:\n /* \"#utility.yul\":10888:10914 */\n 0x54686520766f74657220616c726561647920766f7465642e0000000000000000\n /* \"#utility.yul\":10884:10885 */\n 0x00\n /* \"#utility.yul\":10876:10882 */\n dup3\n /* \"#utility.yul\":10872:10886 */\n add\n /* \"#utility.yul\":10865:10915 */\n mstore\n /* \"#utility.yul\":10748:10922 */\n pop\n jump\t// out\n /* \"#utility.yul\":10928:11294 */\n tag_134:\n /* \"#utility.yul\":11070:11073 */\n 0x00\n /* \"#utility.yul\":11091:11158 */\n tag_231\n /* \"#utility.yul\":11155:11157 */\n 0x18\n /* \"#utility.yul\":11150:11153 */\n dup4\n /* \"#utility.yul\":11091:11158 */\n tag_119\n jump\t// in\n tag_231:\n /* \"#utility.yul\":11084:11158 */\n swap2\n pop\n /* \"#utility.yul\":11167:11260 */\n tag_232\n /* \"#utility.yul\":11256:11259 */\n dup3\n /* \"#utility.yul\":11167:11260 */\n tag_133\n jump\t// in\n tag_232:\n /* \"#utility.yul\":11285:11287 */\n 0x20\n /* \"#utility.yul\":11280:11283 */\n dup3\n /* \"#utility.yul\":11276:11288 */\n add\n /* \"#utility.yul\":11269:11288 */\n swap1\n pop\n /* \"#utility.yul\":10928:11294 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11300:11719 */\n tag_96:\n /* \"#utility.yul\":11466:11470 */\n 0x00\n /* \"#utility.yul\":11504:11506 */\n 0x20\n /* \"#utility.yul\":11493:11502 */\n dup3\n /* \"#utility.yul\":11489:11507 */\n add\n /* \"#utility.yul\":11481:11507 */\n swap1\n pop\n /* \"#utility.yul\":11553:11562 */\n dup2\n /* \"#utility.yul\":11547:11551 */\n dup2\n /* \"#utility.yul\":11543:11563 */\n sub\n /* \"#utility.yul\":11539:11540 */\n 0x00\n /* \"#utility.yul\":11528:11537 */\n dup4\n /* \"#utility.yul\":11524:11541 */\n add\n /* \"#utility.yul\":11517:11564 */\n mstore\n /* \"#utility.yul\":11581:11712 */\n tag_234\n /* \"#utility.yul\":11707:11711 */\n dup2\n /* \"#utility.yul\":11581:11712 */\n tag_134\n jump\t// in\n tag_234:\n /* \"#utility.yul\":11573:11712 */\n swap1\n pop\n /* \"#utility.yul\":11300:11719 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122086f5ec40d9f732c754b2d2dfc6a33ac4942fdaebde9a9f7bc3151a9c002bd48a64736f6c63430008190033\n}\n",
"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": "608060405234801561000f575f80fd5b5060405161128c38038061128c833981810160405281019061003191906102f2565b335f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001805f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01819055505f5b815181101561015757600260405180604001604052808484815181106100ff576100fe610339565b5b602002602001015181526020015f815250908060018154018082558091505060019003905f5260205f2090600202015f909190919091505f820151815f015560208201518160010155505080806001019150506100d6565b5050610366565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6101b982610173565b810181811067ffffffffffffffff821117156101d8576101d7610183565b5b80604052505050565b5f6101ea61015e565b90506101f682826101b0565b919050565b5f67ffffffffffffffff82111561021557610214610183565b5b602082029050602081019050919050565b5f80fd5b5f819050919050565b61023c8161022a565b8114610246575f80fd5b50565b5f8151905061025781610233565b92915050565b5f61026f61026a846101fb565b6101e1565b9050808382526020820190506020840283018581111561029257610291610226565b5b835b818110156102bb57806102a78882610249565b845260208401935050602081019050610294565b5050509392505050565b5f82601f8301126102d9576102d861016f565b5b81516102e984826020860161025d565b91505092915050565b5f6020828403121561030757610306610167565b5b5f82015167ffffffffffffffff8111156103245761032361016b565b5b610330848285016102c5565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b610f19806103735f395ff3fe608060405234801561000f575f80fd5b5060043610610086575f3560e01c8063609ff1bd11610059578063609ff1bd146101115780639e7b8d611461012f578063a3ec138d1461014b578063e2ba53f01461017e57610086565b80630121b93f1461008a578063013cf08b146100a65780632e4176cf146100d75780635c19a95c146100f5575b5f80fd5b6100a4600480360381019061009f9190610993565b61019c565b005b6100c060048036038101906100bb9190610993565b6102d7565b6040516100ce9291906109e5565b60405180910390f35b6100df610306565b6040516100ec9190610a4b565b60405180910390f35b61010f600480360381019061010a9190610a8e565b610329565b005b6101196106ae565b6040516101269190610ab9565b60405180910390f35b61014960048036038101906101449190610a8e565b610729565b005b61016560048036038101906101609190610a8e565b6108d4565b6040516101759493929190610aec565b60405180910390f35b61018661092c565b6040516101939190610b2f565b60405180910390f35b5f60015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f815f015403610221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021890610ba2565b60405180910390fd5b806001015f9054906101000a900460ff1615610272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026990610c0a565b60405180910390fd5b6001816001015f6101000a81548160ff021916908315150217905550818160020181905550805f0154600283815481106102af576102ae610c28565b5b905f5260205f2090600202016001015f8282546102cc9190610c82565b925050819055505050565b600281815481106102e6575f80fd5b905f5260205f2090600202015f91509050805f0154908060010154905082565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209050806001015f9054906101000a900460ff16156103ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b190610cff565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041f90610d67565b60405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff1660015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060010160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105925760015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060010160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691503373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361058d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058490610dcf565b60405180910390fd5b610429565b6001816001015f6101000a81548160ff021916908315150217905550818160010160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209050806001015f9054906101000a900460ff161561068c57815f0154600282600201548154811061066357610662610c28565b5b905f5260205f2090600202016001015f8282546106809190610c82565b925050819055506106a9565b815f0154815f015f8282546106a19190610c82565b925050819055505b505050565b5f805f90505f5b6002805490508110156107245781600282815481106106d7576106d6610c28565b5b905f5260205f209060020201600101541115610717576002818154811061070157610700610c28565b5b905f5260205f2090600202016001015491508092505b80806001019150506106b5565b505090565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ad90610e5d565b60405180910390fd5b60015f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001015f9054906101000a900460ff1615610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a90610ec5565b60405180910390fd5b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01541461088d575f80fd5b6001805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f018190555050565b6001602052805f5260405f205f91509050805f015490806001015f9054906101000a900460ff16908060010160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154905084565b5f60026109376106ae565b8154811061094857610947610c28565b5b905f5260205f2090600202015f0154905090565b5f80fd5b5f819050919050565b61097281610960565b811461097c575f80fd5b50565b5f8135905061098d81610969565b92915050565b5f602082840312156109a8576109a761095c565b5b5f6109b58482850161097f565b91505092915050565b5f819050919050565b6109d0816109be565b82525050565b6109df81610960565b82525050565b5f6040820190506109f85f8301856109c7565b610a0560208301846109d6565b9392505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610a3582610a0c565b9050919050565b610a4581610a2b565b82525050565b5f602082019050610a5e5f830184610a3c565b92915050565b610a6d81610a2b565b8114610a77575f80fd5b50565b5f81359050610a8881610a64565b92915050565b5f60208284031215610aa357610aa261095c565b5b5f610ab084828501610a7a565b91505092915050565b5f602082019050610acc5f8301846109d6565b92915050565b5f8115159050919050565b610ae681610ad2565b82525050565b5f608082019050610aff5f8301876109d6565b610b0c6020830186610add565b610b196040830185610a3c565b610b2660608301846109d6565b95945050505050565b5f602082019050610b425f8301846109c7565b92915050565b5f82825260208201905092915050565b7f486173206e6f20726967687420746f20766f74650000000000000000000000005f82015250565b5f610b8c601483610b48565b9150610b9782610b58565b602082019050919050565b5f6020820190508181035f830152610bb981610b80565b9050919050565b7f416c726561647920766f7465642e0000000000000000000000000000000000005f82015250565b5f610bf4600e83610b48565b9150610bff82610bc0565b602082019050919050565b5f6020820190508181035f830152610c2181610be8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610c8c82610960565b9150610c9783610960565b9250828201905080821115610caf57610cae610c55565b5b92915050565b7f596f7520616c726561647920766f7465642e00000000000000000000000000005f82015250565b5f610ce9601283610b48565b9150610cf482610cb5565b602082019050919050565b5f6020820190508181035f830152610d1681610cdd565b9050919050565b7f53656c662d64656c65676174696f6e20697320646973616c6c6f7765642e00005f82015250565b5f610d51601e83610b48565b9150610d5c82610d1d565b602082019050919050565b5f6020820190508181035f830152610d7e81610d45565b9050919050565b7f466f756e64206c6f6f7020696e2064656c65676174696f6e2e000000000000005f82015250565b5f610db9601983610b48565b9150610dc482610d85565b602082019050919050565b5f6020820190508181035f830152610de681610dad565b9050919050565b7f4f6e6c79206368616972706572736f6e2063616e2067697665207269676874205f8201527f746f20766f74652e000000000000000000000000000000000000000000000000602082015250565b5f610e47602883610b48565b9150610e5282610ded565b604082019050919050565b5f6020820190508181035f830152610e7481610e3b565b9050919050565b7f54686520766f74657220616c726561647920766f7465642e00000000000000005f82015250565b5f610eaf601883610b48565b9150610eba82610e7b565b602082019050919050565b5f6020820190508181035f830152610edc81610ea3565b905091905056fea264697066735822122086f5ec40d9f732c754b2d2dfc6a33ac4942fdaebde9a9f7bc3151a9c002bd48a64736f6c63430008190033",
"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 DUP7 CREATE2 0xEC BLOCKHASH 0xD9 0xF7 ORIGIN 0xC7 SLOAD 0xB2 0xD2 0xDF 0xC6 LOG3 GASPRICE 0xC4 SWAP5 0x2F 0xDA 0xEB 0xDE SWAP11 SWAP16 PUSH28 0xC3151A9C002BD48A64736F6C63430008190033000000000000000000 ",
"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",
"nativeSrc": "2446:3:1",
"nodeType": "YulTypedName",
"src": "2446:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "2454:5:1",
"nodeType": "YulTypedName",
"src": "2454:5:1",
"type": ""
}
],
"src": "2408:139:1"
},
{
"body": {
"nativeSrc": "2619:263:1",
"nodeType": "YulBlock",
"src": "2619:263:1",
"statements": [
{
"body": {
"nativeSrc": "2665:83:1",
"nodeType": "YulBlock",
"src": "2665:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "2667:77:1",
"nodeType": "YulIdentifier",
"src": "2667:77:1"
},
"nativeSrc": "2667:79:1",
"nodeType": "YulFunctionCall",
"src": "2667:79:1"
},
"nativeSrc": "2667:79:1",
"nodeType": "YulExpressionStatement",
"src": "2667:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "2640:7:1",
"nodeType": "YulIdentifier",
"src": "2640:7:1"
},
{
"name": "headStart",
"nativeSrc": "2649:9:1",
"nodeType": "YulIdentifier",
"src": "2649:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "2636:3:1",
"nodeType": "YulIdentifier",
"src": "2636:3:1"
},
"nativeSrc": "2636:23:1",
"nodeType": "YulFunctionCall",
"src": "2636:23:1"
},
{
"kind": "number",
"nativeSrc": "2661:2:1",
"nodeType": "YulLiteral",
"src": "2661:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "2632:3:1",
"nodeType": "YulIdentifier",
"src": "2632:3:1"
},
"nativeSrc": "2632:32:1",
"nodeType": "YulFunctionCall",
"src": "2632:32:1"
},
"nativeSrc": "2629:119:1",
"nodeType": "YulIf",
"src": "2629:119:1"
},
{
"nativeSrc": "2758:117:1",
"nodeType": "YulBlock",
"src": "2758:117:1",
"statements": [
{
"nativeSrc": "2773:15:1",
"nodeType": "YulVariableDeclaration",
"src": "2773:15:1",
"value": {
"kind": "number",
"nativeSrc": "2787:1:1",
"nodeType": "YulLiteral",
"src": "2787:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "2777:6:1",
"nodeType": "YulTypedName",
"src": "2777:6:1",
"type": ""
}
]
},
{
"nativeSrc": "2802:63:1",
"nodeType": "YulAssignment",
"src": "2802:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2837:9:1",
"nodeType": "YulIdentifier",
"src": "2837:9:1"
},
{
"name": "offset",
"nativeSrc": "2848:6:1",
"nodeType": "YulIdentifier",
"src": "2848:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2833:3:1",
"nodeType": "YulIdentifier",
"src": "2833:3:1"
},
"nativeSrc": "2833:22:1",
"nodeType": "YulFunctionCall",
"src": "2833:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "2857:7:1",
"nodeType": "YulIdentifier",
"src": "2857:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "2812:20:1",
"nodeType": "YulIdentifier",
"src": "2812:20:1"
},
"nativeSrc": "2812:53:1",
"nodeType": "YulFunctionCall",
"src": "2812:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "2802:6:1",
"nodeType": "YulIdentifier",
"src": "2802:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nativeSrc": "2553:329:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "2589:9:1",
"nodeType": "YulTypedName",
"src": "2589:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "2600:7:1",
"nodeType": "YulTypedName",
"src": "2600:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "2612:6:1",
"nodeType": "YulTypedName",
"src": "2612:6:1",
"type": ""
}
],
"src": "2553:329:1"
},
{
"body": {
"nativeSrc": "2986:124:1",
"nodeType": "YulBlock",
"src": "2986:124:1",
"statements": [
{
"nativeSrc": "2996:26:1",
"nodeType": "YulAssignment",
"src": "2996:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "3008:9:1",
"nodeType": "YulIdentifier",
"src": "3008:9:1"
},
{
"kind": "number",
"nativeSrc": "3019:2:1",
"nodeType": "YulLiteral",
"src": "3019:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3004:3:1",
"nodeType": "YulIdentifier",
"src": "3004:3:1"
},
"nativeSrc": "3004:18:1",
"nodeType": "YulFunctionCall",
"src": "3004:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "2996:4:1",
"nodeType": "YulIdentifier",
"src": "2996:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "3076:6:1",
"nodeType": "YulIdentifier",
"src": "3076:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3089:9:1",
"nodeType": "YulIdentifier",
"src": "3089:9:1"
},
{
"kind": "number",
"nativeSrc": "3100:1:1",
"nodeType": "YulLiteral",
"src": "3100:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3085:3:1",
"nodeType": "YulIdentifier",
"src": "3085:3:1"
},
"nativeSrc": "3085:17:1",
"nodeType": "YulFunctionCall",
"src": "3085:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "3032:43:1",
"nodeType": "YulIdentifier",
"src": "3032:43:1"
},
"nativeSrc": "3032:71:1",
"nodeType": "YulFunctionCall",
"src": "3032:71:1"
},
"nativeSrc": "3032:71:1",
"nodeType": "YulExpressionStatement",
"src": "3032:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "2888:222:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "2958:9:1",
"nodeType": "YulTypedName",
"src": "2958:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "2970:6:1",
"nodeType": "YulTypedName",
"src": "2970:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "2981:4:1",
"nodeType": "YulTypedName",
"src": "2981:4:1",
"type": ""
}
],
"src": "2888:222:1"
},
{
"body": {
"nativeSrc": "3158:48:1",
"nodeType": "YulBlock",
"src": "3158:48:1",
"statements": [
{
"nativeSrc": "3168:32:1",
"nodeType": "YulAssignment",
"src": "3168:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "3193:5:1",
"nodeType": "YulIdentifier",
"src": "3193:5:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "3186:6:1",
"nodeType": "YulIdentifier",
"src": "3186:6:1"
},
"nativeSrc": "3186:13:1",
"nodeType": "YulFunctionCall",
"src": "3186:13:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "3179:6:1",
"nodeType": "YulIdentifier",
"src": "3179:6:1"
},
"nativeSrc": "3179:21:1",
"nodeType": "YulFunctionCall",
"src": "3179:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "3168:7:1",
"nodeType": "YulIdentifier",
"src": "3168:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nativeSrc": "3116:90:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3140:5:1",
"nodeType": "YulTypedName",
"src": "3140:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "3150:7:1",
"nodeType": "YulTypedName",
"src": "3150:7:1",
"type": ""
}
],
"src": "3116:90:1"
},
{
"body": {
"nativeSrc": "3271:50:1",
"nodeType": "YulBlock",
"src": "3271:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3288:3:1",
"nodeType": "YulIdentifier",
"src": "3288:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "3308:5:1",
"nodeType": "YulIdentifier",
"src": "3308:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nativeSrc": "3293:14:1",
"nodeType": "YulIdentifier",
"src": "3293:14:1"
},
"nativeSrc": "3293:21:1",
"nodeType": "YulFunctionCall",
"src": "3293:21:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3281:6:1",
"nodeType": "YulIdentifier",
"src": "3281:6:1"
},
"nativeSrc": "3281:34:1",
"nodeType": "YulFunctionCall",
"src": "3281:34:1"
},
"nativeSrc": "3281:34:1",
"nodeType": "YulExpressionStatement",
"src": "3281:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nativeSrc": "3212:109:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3259:5:1",
"nodeType": "YulTypedName",
"src": "3259:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "3266:3:1",
"nodeType": "YulTypedName",
"src": "3266:3:1",
"type": ""
}
],
"src": "3212:109:1"
},
{
"body": {
"nativeSrc": "3503:365:1",
"nodeType": "YulBlock",
"src": "3503:365:1",
"statements": [
{
"nativeSrc": "3513:27:1",
"nodeType": "YulAssignment",
"src": "3513:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "3525:9:1",
"nodeType": "YulIdentifier",
"src": "3525:9:1"
},
{
"kind": "number",
"nativeSrc": "3536:3:1",
"nodeType": "YulLiteral",
"src": "3536:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3521:3:1",
"nodeType": "YulIdentifier",
"src": "3521:3:1"
},
"nativeSrc": "3521:19:1",
"nodeType": "YulFunctionCall",
"src": "3521:19:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3513:4:1",
"nodeType": "YulIdentifier",
"src": "3513:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "3594:6:1",
"nodeType": "YulIdentifier",
"src": "3594:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3607:9:1",
"nodeType": "YulIdentifier",
"src": "3607:9:1"
},
{
"kind": "number",
"nativeSrc": "3618:1:1",
"nodeType": "YulLiteral",
"src": "3618:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3603:3:1",
"nodeType": "YulIdentifier",
"src": "3603:3:1"
},
"nativeSrc": "3603:17:1",
"nodeType": "YulFunctionCall",
"src": "3603:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "3550:43:1",
"nodeType": "YulIdentifier",
"src": "3550:43:1"
},
"nativeSrc": "3550:71:1",
"nodeType": "YulFunctionCall",
"src": "3550:71:1"
},
"nativeSrc": "3550:71:1",
"nodeType": "YulExpressionStatement",
"src": "3550:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "3669:6:1",
"nodeType": "YulIdentifier",
"src": "3669:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3682:9:1",
"nodeType": "YulIdentifier",
"src": "3682:9:1"
},
{
"kind": "number",
"nativeSrc": "3693:2:1",
"nodeType": "YulLiteral",
"src": "3693:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3678:3:1",
"nodeType": "YulIdentifier",
"src": "3678:3:1"
},
"nativeSrc": "3678:18:1",
"nodeType": "YulFunctionCall",
"src": "3678:18:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nativeSrc": "3631:37:1",
"nodeType": "YulIdentifier",
"src": "3631:37:1"
},
"nativeSrc": "3631:66:1",
"nodeType": "YulFunctionCall",
"src": "3631:66:1"
},
"nativeSrc": "3631:66:1",
"nodeType": "YulExpressionStatement",
"src": "3631:66:1"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nativeSrc": "3751:6:1",
"nodeType": "YulIdentifier",
"src": "3751:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3764:9:1",
"nodeType": "YulIdentifier",
"src": "3764:9:1"
},
{
"kind": "number",
"nativeSrc": "3775:2:1",
"nodeType": "YulLiteral",
"src": "3775:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3760:3:1",
"nodeType": "YulIdentifier",
"src": "3760:3:1"
},
"nativeSrc": "3760:18:1",
"nodeType": "YulFunctionCall",
"src": "3760:18:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "3707:43:1",
"nodeType": "YulIdentifier",
"src": "3707:43:1"
},
"nativeSrc": "3707:72:1",
"nodeType": "YulFunctionCall",
"src": "3707:72:1"
},
"nativeSrc": "3707:72:1",
"nodeType": "YulExpressionStatement",
"src": "3707:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nativeSrc": "3833:6:1",
"nodeType": "YulIdentifier",
"src": "3833:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3846:9:1",
"nodeType": "YulIdentifier",
"src": "3846:9:1"
},
{
"kind": "number",
"nativeSrc": "3857:2:1",
"nodeType": "YulLiteral",
"src": "3857:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3842:3:1",
"nodeType": "YulIdentifier",
"src": "3842:3:1"
},
"nativeSrc": "3842:18:1",
"nodeType": "YulFunctionCall",
"src": "3842:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "3789:43:1",
"nodeType": "YulIdentifier",
"src": "3789:43:1"
},
"nativeSrc": "3789:72:1",
"nodeType": "YulFunctionCall",
"src": "3789:72:1"
},
"nativeSrc": "3789:72:1",
"nodeType": "YulExpressionStatement",
"src": "3789:72:1"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_bool_t_address_t_uint256__to_t_uint256_t_bool_t_address_t_uint256__fromStack_reversed",
"nativeSrc": "3327:541:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3451:9:1",
"nodeType": "YulTypedName",
"src": "3451:9:1",
"type": ""
},
{
"name": "value3",
"nativeSrc": "3463:6:1",
"nodeType": "YulTypedName",
"src": "3463:6:1",
"type": ""
},
{
"name": "value2",
"nativeSrc": "3471:6:1",
"nodeType": "YulTypedName",
"src": "3471:6:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "3479:6:1",
"nodeType": "YulTypedName",
"src": "3479:6:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "3487:6:1",
"nodeType": "YulTypedName",
"src": "3487:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "3498:4:1",
"nodeType": "YulTypedName",
"src": "3498:4:1",
"type": ""
}
],
"src": "3327:541:1"
},
{
"body": {
"nativeSrc": "3972:124:1",
"nodeType": "YulBlock",
"src": "3972:124:1",
"statements": [
{
"nativeSrc": "3982:26:1",
"nodeType": "YulAssignment",
"src": "3982:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "3994:9:1",
"nodeType": "YulIdentifier",
"src": "3994:9:1"
},
{
"kind": "number",
"nativeSrc": "4005:2:1",
"nodeType": "YulLiteral",
"src": "4005:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3990:3:1",
"nodeType": "YulIdentifier",
"src": "3990:3:1"
},
"nativeSrc": "3990:18:1",
"nodeType": "YulFunctionCall",
"src": "3990:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3982:4:1",
"nodeType": "YulIdentifier",
"src": "3982:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "4062:6:1",
"nodeType": "YulIdentifier",
"src": "4062:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4075:9:1",
"nodeType": "YulIdentifier",
"src": "4075:9:1"
},
{
"kind": "number",
"nativeSrc": "4086:1:1",
"nodeType": "YulLiteral",
"src": "4086:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4071:3:1",
"nodeType": "YulIdentifier",
"src": "4071:3:1"
},
"nativeSrc": "4071:17:1",
"nodeType": "YulFunctionCall",
"src": "4071:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "4018:43:1",
"nodeType": "YulIdentifier",
"src": "4018:43:1"
},
"nativeSrc": "4018:71:1",
"nodeType": "YulFunctionCall",
"src": "4018:71:1"
},
"nativeSrc": "4018:71:1",
"nodeType": "YulExpressionStatement",
"src": "4018:71:1"
}
]
},
"name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
"nativeSrc": "3874:222:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3944:9:1",
"nodeType": "YulTypedName",
"src": "3944:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "3956:6:1",
"nodeType": "YulTypedName",
"src": "3956:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "3967:4:1",
"nodeType": "YulTypedName",
"src": "3967:4:1",
"type": ""
}
],
"src": "3874:222:1"
},
{
"body": {
"nativeSrc": "4198:73:1",
"nodeType": "YulBlock",
"src": "4198:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4215:3:1",
"nodeType": "YulIdentifier",
"src": "4215:3:1"
},
{
"name": "length",
"nativeSrc": "4220:6:1",
"nodeType": "YulIdentifier",
"src": "4220:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4208:6:1",
"nodeType": "YulIdentifier",
"src": "4208:6:1"
},
"nativeSrc": "4208:19:1",
"nodeType": "YulFunctionCall",
"src": "4208:19:1"
},
"nativeSrc": "4208:19:1",
"nodeType": "YulExpressionStatement",
"src": "4208:19:1"
},
{
"nativeSrc": "4236:29:1",
"nodeType": "YulAssignment",
"src": "4236:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4255:3:1",
"nodeType": "YulIdentifier",
"src": "4255:3:1"
},
{
"kind": "number",
"nativeSrc": "4260:4:1",
"nodeType": "YulLiteral",
"src": "4260:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4251:3:1",
"nodeType": "YulIdentifier",
"src": "4251:3:1"
},
"nativeSrc": "4251:14:1",
"nodeType": "YulFunctionCall",
"src": "4251:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "4236:11:1",
"nodeType": "YulIdentifier",
"src": "4236:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "4102:169:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "4170:3:1",
"nodeType": "YulTypedName",
"src": "4170:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "4175:6:1",
"nodeType": "YulTypedName",
"src": "4175:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "4186:11:1",
"nodeType": "YulTypedName",
"src": "4186:11:1",
"type": ""
}
],
"src": "4102:169:1"
},
{
"body": {
"nativeSrc": "4383:64:1",
"nodeType": "YulBlock",
"src": "4383:64:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "4405:6:1",
"nodeType": "YulIdentifier",
"src": "4405:6:1"
},
{
"kind": "number",
"nativeSrc": "4413:1:1",
"nodeType": "YulLiteral",
"src": "4413:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4401:3:1",
"nodeType": "YulIdentifier",
"src": "4401:3:1"
},
"nativeSrc": "4401:14:1",
"nodeType": "YulFunctionCall",
"src": "4401:14:1"
},
{
"hexValue": "486173206e6f20726967687420746f20766f7465",
"kind": "string",
"nativeSrc": "4417:22:1",
"nodeType": "YulLiteral",
"src": "4417:22:1",
"type": "",
"value": "Has no right to vote"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4394:6:1",
"nodeType": "YulIdentifier",
"src": "4394:6:1"
},
"nativeSrc": "4394:46:1",
"nodeType": "YulFunctionCall",
"src": "4394:46:1"
},
"nativeSrc": "4394:46:1",
"nodeType": "YulExpressionStatement",
"src": "4394:46:1"
}
]
},
"name": "store_literal_in_memory_0dc527e8fa9b76c996eb5eda9ddb749b21540f5509781b94e1e37f7027e7f50e",
"nativeSrc": "4277:170:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "4375:6:1",
"nodeType": "YulTypedName",
"src": "4375:6:1",
"type": ""
}
],
"src": "4277:170:1"
},
{
"body": {
"nativeSrc": "4599:220:1",
"nodeType": "YulBlock",
"src": "4599:220:1",
"statements": [
{
"nativeSrc": "4609:74:1",
"nodeType": "YulAssignment",
"src": "4609:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4675:3:1",
"nodeType": "YulIdentifier",
"src": "4675:3:1"
},
{
"kind": "number",
"nativeSrc": "4680:2:1",
"nodeType": "YulLiteral",
"src": "4680:2:1",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "4616:58:1",
"nodeType": "YulIdentifier",
"src": "4616:58:1"
},
"nativeSrc": "4616:67:1",
"nodeType": "YulFunctionCall",
"src": "4616:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "4609:3:1",
"nodeType": "YulIdentifier",
"src": "4609:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4781:3:1",
"nodeType": "YulIdentifier",
"src": "4781:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_0dc527e8fa9b76c996eb5eda9ddb749b21540f5509781b94e1e37f7027e7f50e",
"nativeSrc": "4692:88:1",
"nodeType": "YulIdentifier",
"src": "4692:88:1"
},
"nativeSrc": "4692:93:1",
"nodeType": "YulFunctionCall",
"src": "4692:93:1"
},
"nativeSrc": "4692:93:1",
"nodeType": "YulExpressionStatement",
"src": "4692:93:1"
},
{
"nativeSrc": "4794:19:1",
"nodeType": "YulAssignment",
"src": "4794:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4805:3:1",
"nodeType": "YulIdentifier",
"src": "4805:3:1"
},
{
"kind": "number",
"nativeSrc": "4810:2:1",
"nodeType": "YulLiteral",
"src": "4810:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4801:3:1",
"nodeType": "YulIdentifier",
"src": "4801:3:1"
},
"nativeSrc": "4801:12:1",
"nodeType": "YulFunctionCall",
"src": "4801:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "4794:3:1",
"nodeType": "YulIdentifier",
"src": "4794:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0dc527e8fa9b76c996eb5eda9ddb749b21540f5509781b94e1e37f7027e7f50e_to_t_string_memory_ptr_fromStack",
"nativeSrc": "4453:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "4587:3:1",
"nodeType": "YulTypedName",
"src": "4587:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "4595:3:1",
"nodeType": "YulTypedName",
"src": "4595:3:1",
"type": ""
}
],
"src": "4453:366:1"
},
{
"body": {
"nativeSrc": "4996:248:1",
"nodeType": "YulBlock",
"src": "4996:248:1",
"statements": [
{
"nativeSrc": "5006:26:1",
"nodeType": "YulAssignment",
"src": "5006:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "5018:9:1",
"nodeType": "YulIdentifier",
"src": "5018:9:1"
},
{
"kind": "number",
"nativeSrc": "5029:2:1",
"nodeType": "YulLiteral",
"src": "5029:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5014:3:1",
"nodeType": "YulIdentifier",
"src": "5014:3:1"
},
"nativeSrc": "5014:18:1",
"nodeType": "YulFunctionCall",
"src": "5014:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5006:4:1",
"nodeType": "YulIdentifier",
"src": "5006:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5053:9:1",
"nodeType": "YulIdentifier",
"src": "5053:9:1"
},
{
"kind": "number",
"nativeSrc": "5064:1:1",
"nodeType": "YulLiteral",
"src": "5064:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5049:3:1",
"nodeType": "YulIdentifier",
"src": "5049:3:1"
},
"nativeSrc": "5049:17:1",
"nodeType": "YulFunctionCall",
"src": "5049:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "5072:4:1",
"nodeType": "YulIdentifier",
"src": "5072:4:1"
},
{
"name": "headStart",
"nativeSrc": "5078:9:1",
"nodeType": "YulIdentifier",
"src": "5078:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "5068:3:1",
"nodeType": "YulIdentifier",
"src": "5068:3:1"
},
"nativeSrc": "5068:20:1",
"nodeType": "YulFunctionCall",
"src": "5068:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5042:6:1",
"nodeType": "YulIdentifier",
"src": "5042:6:1"
},
"nativeSrc": "5042:47:1",
"nodeType": "YulFunctionCall",
"src": "5042:47:1"
},
"nativeSrc": "5042:47:1",
"nodeType": "YulExpressionStatement",
"src": "5042:47:1"
},
{
"nativeSrc": "5098:139:1",
"nodeType": "YulAssignment",
"src": "5098:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "5232:4:1",
"nodeType": "YulIdentifier",
"src": "5232:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0dc527e8fa9b76c996eb5eda9ddb749b21540f5509781b94e1e37f7027e7f50e_to_t_string_memory_ptr_fromStack",
"nativeSrc": "5106:124:1",
"nodeType": "YulIdentifier",
"src": "5106:124:1"
},
"nativeSrc": "5106:131:1",
"nodeType": "YulFunctionCall",
"src": "5106:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5098:4:1",
"nodeType": "YulIdentifier",
"src": "5098:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0dc527e8fa9b76c996eb5eda9ddb749b21540f5509781b94e1e37f7027e7f50e__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "4825:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "4976:9:1",
"nodeType": "YulTypedName",
"src": "4976:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "4991:4:1",
"nodeType": "YulTypedName",
"src": "4991:4:1",
"type": ""
}
],
"src": "4825:419:1"
},
{
"body": {
"nativeSrc": "5356:58:1",
"nodeType": "YulBlock",
"src": "5356:58:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "5378:6:1",
"nodeType": "YulIdentifier",
"src": "5378:6:1"
},
{
"kind": "number",
"nativeSrc": "5386:1:1",
"nodeType": "YulLiteral",
"src": "5386:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5374:3:1",
"nodeType": "YulIdentifier",
"src": "5374:3:1"
},
"nativeSrc": "5374:14:1",
"nodeType": "YulFunctionCall",
"src": "5374:14:1"
},
{
"hexValue": "416c726561647920766f7465642e",
"kind": "string",
"nativeSrc": "5390:16:1",
"nodeType": "YulLiteral",
"src": "5390:16:1",
"type": "",
"value": "Already voted."
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5367:6:1",
"nodeType": "YulIdentifier",
"src": "5367:6:1"
},
"nativeSrc": "5367:40:1",
"nodeType": "YulFunctionCall",
"src": "5367:40:1"
},
"nativeSrc": "5367:40:1",
"nodeType": "YulExpressionStatement",
"src": "5367:40:1"
}
]
},
"name": "store_literal_in_memory_56aab92b7164a4ea72a098d2d95a5e763b71d07f265e8d46fc7240404017fa84",
"nativeSrc": "5250:164:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "5348:6:1",
"nodeType": "YulTypedName",
"src": "5348:6:1",
"type": ""
}
],
"src": "5250:164:1"
},
{
"body": {
"nativeSrc": "5566:220:1",
"nodeType": "YulBlock",
"src": "5566:220:1",
"statements": [
{
"nativeSrc": "5576:74:1",
"nodeType": "YulAssignment",
"src": "5576:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5642:3:1",
"nodeType": "YulIdentifier",
"src": "5642:3:1"
},
{
"kind": "number",
"nativeSrc": "5647:2:1",
"nodeType": "YulLiteral",
"src": "5647:2:1",
"type": "",
"value": "14"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "5583:58:1",
"nodeType": "YulIdentifier",
"src": "5583:58:1"
},
"nativeSrc": "5583:67:1",
"nodeType": "YulFunctionCall",
"src": "5583:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "5576:3:1",
"nodeType": "YulIdentifier",
"src": "5576:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5748:3:1",
"nodeType": "YulIdentifier",
"src": "5748:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_56aab92b7164a4ea72a098d2d95a5e763b71d07f265e8d46fc7240404017fa84",
"nativeSrc": "5659:88:1",
"nodeType": "YulIdentifier",
"src": "5659:88:1"
},
"nativeSrc": "5659:93:1",
"nodeType": "YulFunctionCall",
"src": "5659:93:1"
},
"nativeSrc": "5659:93:1",
"nodeType": "YulExpressionStatement",
"src": "5659:93:1"
},
{
"nativeSrc": "5761:19:1",
"nodeType": "YulAssignment",
"src": "5761:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5772:3:1",
"nodeType": "YulIdentifier",
"src": "5772:3:1"
},
{
"kind": "number",
"nativeSrc": "5777:2:1",
"nodeType": "YulLiteral",
"src": "5777:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5768:3:1",
"nodeType": "YulIdentifier",
"src": "5768:3:1"
},
"nativeSrc": "5768:12:1",
"nodeType": "YulFunctionCall",
"src": "5768:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "5761:3:1",
"nodeType": "YulIdentifier",
"src": "5761:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_56aab92b7164a4ea72a098d2d95a5e763b71d07f265e8d46fc7240404017fa84_to_t_string_memory_ptr_fromStack",
"nativeSrc": "5420:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "5554:3:1",
"nodeType": "YulTypedName",
"src": "5554:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "5562:3:1",
"nodeType": "YulTypedName",
"src": "5562:3:1",
"type": ""
}
],
"src": "5420:366:1"
},
{
"body": {
"nativeSrc": "5963:248:1",
"nodeType": "YulBlock",
"src": "5963:248:1",
"statements": [
{
"nativeSrc": "5973:26:1",
"nodeType": "YulAssignment",
"src": "5973:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "5985:9:1",
"nodeType": "YulIdentifier",
"src": "5985:9:1"
},
{
"kind": "number",
"nativeSrc": "5996:2:1",
"nodeType": "YulLiteral",
"src": "5996:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5981:3:1",
"nodeType": "YulIdentifier",
"src": "5981:3:1"
},
"nativeSrc": "5981:18:1",
"nodeType": "YulFunctionCall",
"src": "5981:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5973:4:1",
"nodeType": "YulIdentifier",
"src": "5973:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6020:9:1",
"nodeType": "YulIdentifier",
"src": "6020:9:1"
},
{
"kind": "number",
"nativeSrc": "6031:1:1",
"nodeType": "YulLiteral",
"src": "6031:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6016:3:1",
"nodeType": "YulIdentifier",
"src": "6016:3:1"
},
"nativeSrc": "6016:17:1",
"nodeType": "YulFunctionCall",
"src": "6016:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "6039:4:1",
"nodeType": "YulIdentifier",
"src": "6039:4:1"
},
{
"name": "headStart",
"nativeSrc": "6045:9:1",
"nodeType": "YulIdentifier",
"src": "6045:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "6035:3:1",
"nodeType": "YulIdentifier",
"src": "6035:3:1"
},
"nativeSrc": "6035:20:1",
"nodeType": "YulFunctionCall",
"src": "6035:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6009:6:1",
"nodeType": "YulIdentifier",
"src": "6009:6:1"
},
"nativeSrc": "6009:47:1",
"nodeType": "YulFunctionCall",
"src": "6009:47:1"
},
"nativeSrc": "6009:47:1",
"nodeType": "YulExpressionStatement",
"src": "6009:47:1"
},
{
"nativeSrc": "6065:139:1",
"nodeType": "YulAssignment",
"src": "6065:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "6199:4:1",
"nodeType": "YulIdentifier",
"src": "6199:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_56aab92b7164a4ea72a098d2d95a5e763b71d07f265e8d46fc7240404017fa84_to_t_string_memory_ptr_fromStack",
"nativeSrc": "6073:124:1",
"nodeType": "YulIdentifier",
"src": "6073:124:1"
},
"nativeSrc": "6073:131:1",
"nodeType": "YulFunctionCall",
"src": "6073:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "6065:4:1",
"nodeType": "YulIdentifier",
"src": "6065:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_56aab92b7164a4ea72a098d2d95a5e763b71d07f265e8d46fc7240404017fa84__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "5792:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5943:9:1",
"nodeType": "YulTypedName",
"src": "5943:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "5958:4:1",
"nodeType": "YulTypedName",
"src": "5958:4:1",
"type": ""
}
],
"src": "5792:419:1"
},
{
"body": {
"nativeSrc": "6245:152:1",
"nodeType": "YulBlock",
"src": "6245:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6262:1:1",
"nodeType": "YulLiteral",
"src": "6262:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6265:77:1",
"nodeType": "YulLiteral",
"src": "6265:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6255:6:1",
"nodeType": "YulIdentifier",
"src": "6255:6:1"
},
"nativeSrc": "6255:88:1",
"nodeType": "YulFunctionCall",
"src": "6255:88:1"
},
"nativeSrc": "6255:88:1",
"nodeType": "YulExpressionStatement",
"src": "6255:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6359:1:1",
"nodeType": "YulLiteral",
"src": "6359:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "6362:4:1",
"nodeType": "YulLiteral",
"src": "6362:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6352:6:1",
"nodeType": "YulIdentifier",
"src": "6352:6:1"
},
"nativeSrc": "6352:15:1",
"nodeType": "YulFunctionCall",
"src": "6352:15:1"
},
"nativeSrc": "6352:15:1",
"nodeType": "YulExpressionStatement",
"src": "6352:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6383:1:1",
"nodeType": "YulLiteral",
"src": "6383:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6386:4:1",
"nodeType": "YulLiteral",
"src": "6386:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6376:6:1",
"nodeType": "YulIdentifier",
"src": "6376:6:1"
},
"nativeSrc": "6376:15:1",
"nodeType": "YulFunctionCall",
"src": "6376:15:1"
},
"nativeSrc": "6376:15:1",
"nodeType": "YulExpressionStatement",
"src": "6376:15:1"
}
]
},
"name": "panic_error_0x32",
"nativeSrc": "6217:180:1",
"nodeType": "YulFunctionDefinition",
"src": "6217:180:1"
},
{
"body": {
"nativeSrc": "6431:152:1",
"nodeType": "YulBlock",
"src": "6431:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6448:1:1",
"nodeType": "YulLiteral",
"src": "6448:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6451:77:1",
"nodeType": "YulLiteral",
"src": "6451:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6441:6:1",
"nodeType": "YulIdentifier",
"src": "6441:6:1"
},
"nativeSrc": "6441:88:1",
"nodeType": "YulFunctionCall",
"src": "6441:88:1"
},
"nativeSrc": "6441:88:1",
"nodeType": "YulExpressionStatement",
"src": "6441:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6545:1:1",
"nodeType": "YulLiteral",
"src": "6545:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "6548:4:1",
"nodeType": "YulLiteral",
"src": "6548:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6538:6:1",
"nodeType": "YulIdentifier",
"src": "6538:6:1"
},
"nativeSrc": "6538:15:1",
"nodeType": "YulFunctionCall",
"src": "6538:15:1"
},
"nativeSrc": "6538:15:1",
"nodeType": "YulExpressionStatement",
"src": "6538:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6569:1:1",
"nodeType": "YulLiteral",
"src": "6569:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6572:4:1",
"nodeType": "YulLiteral",
"src": "6572:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6562:6:1",
"nodeType": "YulIdentifier",
"src": "6562:6:1"
},
"nativeSrc": "6562:15:1",
"nodeType": "YulFunctionCall",
"src": "6562:15:1"
},
"nativeSrc": "6562:15:1",
"nodeType": "YulExpressionStatement",
"src": "6562:15:1"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "6403:180:1",
"nodeType": "YulFunctionDefinition",
"src": "6403:180:1"
},
{
"body": {
"nativeSrc": "6633:147:1",
"nodeType": "YulBlock",
"src": "6633:147:1",
"statements": [
{
"nativeSrc": "6643:25:1",
"nodeType": "YulAssignment",
"src": "6643:25:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "6666:1:1",
"nodeType": "YulIdentifier",
"src": "6666:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6648:17:1",
"nodeType": "YulIdentifier",
"src": "6648:17:1"
},
"nativeSrc": "6648:20:1",
"nodeType": "YulFunctionCall",
"src": "6648:20:1"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "6643:1:1",
"nodeType": "YulIdentifier",
"src": "6643:1:1"
}
]
},
{
"nativeSrc": "6677:25:1",
"nodeType": "YulAssignment",
"src": "6677:25:1",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "6700:1:1",
"nodeType": "YulIdentifier",
"src": "6700:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6682:17:1",
"nodeType": "YulIdentifier",
"src": "6682:17:1"
},
"nativeSrc": "6682:20:1",
"nodeType": "YulFunctionCall",
"src": "6682:20:1"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "6677:1:1",
"nodeType": "YulIdentifier",
"src": "6677:1:1"
}
]
},
{
"nativeSrc": "6711:16:1",
"nodeType": "YulAssignment",
"src": "6711:16:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "6722:1:1",
"nodeType": "YulIdentifier",
"src": "6722:1:1"
},
{
"name": "y",
"nativeSrc": "6725:1:1",
"nodeType": "YulIdentifier",
"src": "6725:1:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6718:3:1",
"nodeType": "YulIdentifier",
"src": "6718:3:1"
},
"nativeSrc": "6718:9:1",
"nodeType": "YulFunctionCall",
"src": "6718:9:1"
},
"variableNames": [
{
"name": "sum",
"nativeSrc": "6711:3:1",
"nodeType": "YulIdentifier",
"src": "6711:3:1"
}
]
},
{
"body": {
"nativeSrc": "6751:22:1",
"nodeType": "YulBlock",
"src": "6751:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "6753:16:1",
"nodeType": "YulIdentifier",
"src": "6753:16:1"
},
"nativeSrc": "6753:18:1",
"nodeType": "YulFunctionCall",
"src": "6753:18:1"
},
"nativeSrc": "6753:18:1",
"nodeType": "YulExpressionStatement",
"src": "6753:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nativeSrc": "6743:1:1",
"nodeType": "YulIdentifier",
"src": "6743:1:1"
},
{
"name": "sum",
"nativeSrc": "6746:3:1",
"nodeType": "YulIdentifier",
"src": "6746:3:1"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "6740:2:1",
"nodeType": "YulIdentifier",
"src": "6740:2:1"
},
"nativeSrc": "6740:10:1",
"nodeType": "YulFunctionCall",
"src": "6740:10:1"
},
"nativeSrc": "6737:36:1",
"nodeType": "YulIf",
"src": "6737:36:1"
}
]
},
"name": "checked_add_t_uint256",
"nativeSrc": "6589:191:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "6620:1:1",
"nodeType": "YulTypedName",
"src": "6620:1:1",
"type": ""
},
{
"name": "y",
"nativeSrc": "6623:1:1",
"nodeType": "YulTypedName",
"src": "6623:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nativeSrc": "6629:3:1",
"nodeType": "YulTypedName",
"src": "6629:3:1",
"type": ""
}
],
"src": "6589:191:1"
},
{
"body": {
"nativeSrc": "6892:62:1",
"nodeType": "YulBlock",
"src": "6892:62:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "6914:6:1",
"nodeType": "YulIdentifier",
"src": "6914:6:1"
},
{
"kind": "number",
"nativeSrc": "6922:1:1",
"nodeType": "YulLiteral",
"src": "6922:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6910:3:1",
"nodeType": "YulIdentifier",
"src": "6910:3:1"
},
"nativeSrc": "6910:14:1",
"nodeType": "YulFunctionCall",
"src": "6910:14:1"
},
{
"hexValue": "596f7520616c726561647920766f7465642e",
"kind": "string",
"nativeSrc": "6926:20:1",
"nodeType": "YulLiteral",
"src": "6926:20:1",
"type": "",
"value": "You already voted."
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6903:6:1",
"nodeType": "YulIdentifier",
"src": "6903:6:1"
},
"nativeSrc": "6903:44:1",
"nodeType": "YulFunctionCall",
"src": "6903:44:1"
},
"nativeSrc": "6903:44:1",
"nodeType": "YulExpressionStatement",
"src": "6903:44:1"
}
]
},
"name": "store_literal_in_memory_657c6119c4ed567c60278fba62242b17c2fedf38962e651040dabfb3c9e15a5f",
"nativeSrc": "6786:168:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "6884:6:1",
"nodeType": "YulTypedName",
"src": "6884:6:1",
"type": ""
}
],
"src": "6786:168:1"
},
{
"body": {
"nativeSrc": "7106:220:1",
"nodeType": "YulBlock",
"src": "7106:220:1",
"statements": [
{
"nativeSrc": "7116:74:1",
"nodeType": "YulAssignment",
"src": "7116:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7182:3:1",
"nodeType": "YulIdentifier",
"src": "7182:3:1"
},
{
"kind": "number",
"nativeSrc": "7187:2:1",
"nodeType": "YulLiteral",
"src": "7187:2:1",
"type": "",
"value": "18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "7123:58:1",
"nodeType": "YulIdentifier",
"src": "7123:58:1"
},
"nativeSrc": "7123:67:1",
"nodeType": "YulFunctionCall",
"src": "7123:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "7116:3:1",
"nodeType": "YulIdentifier",
"src": "7116:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7288:3:1",
"nodeType": "YulIdentifier",
"src": "7288:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_657c6119c4ed567c60278fba62242b17c2fedf38962e651040dabfb3c9e15a5f",
"nativeSrc": "7199:88:1",
"nodeType": "YulIdentifier",
"src": "7199:88:1"
},
"nativeSrc": "7199:93:1",
"nodeType": "YulFunctionCall",
"src": "7199:93:1"
},
"nativeSrc": "7199:93:1",
"nodeType": "YulExpressionStatement",
"src": "7199:93:1"
},
{
"nativeSrc": "7301:19:1",
"nodeType": "YulAssignment",
"src": "7301:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7312:3:1",
"nodeType": "YulIdentifier",
"src": "7312:3:1"
},
{
"kind": "number",
"nativeSrc": "7317:2:1",
"nodeType": "YulLiteral",
"src": "7317:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7308:3:1",
"nodeType": "YulIdentifier",
"src": "7308:3:1"
},
"nativeSrc": "7308:12:1",
"nodeType": "YulFunctionCall",
"src": "7308:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "7301:3:1",
"nodeType": "YulIdentifier",
"src": "7301:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_657c6119c4ed567c60278fba62242b17c2fedf38962e651040dabfb3c9e15a5f_to_t_string_memory_ptr_fromStack",
"nativeSrc": "6960:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "7094:3:1",
"nodeType": "YulTypedName",
"src": "7094:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "7102:3:1",
"nodeType": "YulTypedName",
"src": "7102:3:1",
"type": ""
}
],
"src": "6960:366:1"
},
{
"body": {
"nativeSrc": "7503:248:1",
"nodeType": "YulBlock",
"src": "7503:248:1",
"statements": [
{
"nativeSrc": "7513:26:1",
"nodeType": "YulAssignment",
"src": "7513:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "7525:9:1",
"nodeType": "YulIdentifier",
"src": "7525:9:1"
},
{
"kind": "number",
"nativeSrc": "7536:2:1",
"nodeType": "YulLiteral",
"src": "7536:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7521:3:1",
"nodeType": "YulIdentifier",
"src": "7521:3:1"
},
"nativeSrc": "7521:18:1",
"nodeType": "YulFunctionCall",
"src": "7521:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7513:4:1",
"nodeType": "YulIdentifier",
"src": "7513:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7560:9:1",
"nodeType": "YulIdentifier",
"src": "7560:9:1"
},
{
"kind": "number",
"nativeSrc": "7571:1:1",
"nodeType": "YulLiteral",
"src": "7571:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7556:3:1",
"nodeType": "YulIdentifier",
"src": "7556:3:1"
},
"nativeSrc": "7556:17:1",
"nodeType": "YulFunctionCall",
"src": "7556:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "7579:4:1",
"nodeType": "YulIdentifier",
"src": "7579:4:1"
},
{
"name": "headStart",
"nativeSrc": "7585:9:1",
"nodeType": "YulIdentifier",
"src": "7585:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "7575:3:1",
"nodeType": "YulIdentifier",
"src": "7575:3:1"
},
"nativeSrc": "7575:20:1",
"nodeType": "YulFunctionCall",
"src": "7575:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7549:6:1",
"nodeType": "YulIdentifier",
"src": "7549:6:1"
},
"nativeSrc": "7549:47:1",
"nodeType": "YulFunctionCall",
"src": "7549:47:1"
},
"nativeSrc": "7549:47:1",
"nodeType": "YulExpressionStatement",
"src": "7549:47:1"
},
{
"nativeSrc": "7605:139:1",
"nodeType": "YulAssignment",
"src": "7605:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "7739:4:1",
"nodeType": "YulIdentifier",
"src": "7739:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_657c6119c4ed567c60278fba62242b17c2fedf38962e651040dabfb3c9e15a5f_to_t_string_memory_ptr_fromStack",
"nativeSrc": "7613:124:1",
"nodeType": "YulIdentifier",
"src": "7613:124:1"
},
"nativeSrc": "7613:131:1",
"nodeType": "YulFunctionCall",
"src": "7613:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7605:4:1",
"nodeType": "YulIdentifier",
"src": "7605:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_657c6119c4ed567c60278fba62242b17c2fedf38962e651040dabfb3c9e15a5f__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "7332:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7483:9:1",
"nodeType": "YulTypedName",
"src": "7483:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "7498:4:1",
"nodeType": "YulTypedName",
"src": "7498:4:1",
"type": ""
}
],
"src": "7332:419:1"
},
{
"body": {
"nativeSrc": "7863:74:1",
"nodeType": "YulBlock",
"src": "7863:74:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "7885:6:1",
"nodeType": "YulIdentifier",
"src": "7885:6:1"
},
{
"kind": "number",
"nativeSrc": "7893:1:1",
"nodeType": "YulLiteral",
"src": "7893:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7881:3:1",
"nodeType": "YulIdentifier",
"src": "7881:3:1"
},
"nativeSrc": "7881:14:1",
"nodeType": "YulFunctionCall",
"src": "7881:14:1"
},
{
"hexValue": "53656c662d64656c65676174696f6e20697320646973616c6c6f7765642e",
"kind": "string",
"nativeSrc": "7897:32:1",
"nodeType": "YulLiteral",
"src": "7897:32:1",
"type": "",
"value": "Self-delegation is disallowed."
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7874:6:1",
"nodeType": "YulIdentifier",
"src": "7874:6:1"
},
"nativeSrc": "7874:56:1",
"nodeType": "YulFunctionCall",
"src": "7874:56:1"
},
"nativeSrc": "7874:56:1",
"nodeType": "YulExpressionStatement",
"src": "7874:56:1"
}
]
},
"name": "store_literal_in_memory_f37bf1aca80f8fa291a40f639db6aeaa1425ceb0e8c61c8648f0e2efa282a947",
"nativeSrc": "7757:180:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "7855:6:1",
"nodeType": "YulTypedName",
"src": "7855:6:1",
"type": ""
}
],
"src": "7757:180:1"
},
{
"body": {
"nativeSrc": "8089:220:1",
"nodeType": "YulBlock",
"src": "8089:220:1",
"statements": [
{
"nativeSrc": "8099:74:1",
"nodeType": "YulAssignment",
"src": "8099:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8165:3:1",
"nodeType": "YulIdentifier",
"src": "8165:3:1"
},
{
"kind": "number",
"nativeSrc": "8170:2:1",
"nodeType": "YulLiteral",
"src": "8170:2:1",
"type": "",
"value": "30"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "8106:58:1",
"nodeType": "YulIdentifier",
"src": "8106:58:1"
},
"nativeSrc": "8106:67:1",
"nodeType": "YulFunctionCall",
"src": "8106:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "8099:3:1",
"nodeType": "YulIdentifier",
"src": "8099:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8271:3:1",
"nodeType": "YulIdentifier",
"src": "8271:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_f37bf1aca80f8fa291a40f639db6aeaa1425ceb0e8c61c8648f0e2efa282a947",
"nativeSrc": "8182:88:1",
"nodeType": "YulIdentifier",
"src": "8182:88:1"
},
"nativeSrc": "8182:93:1",
"nodeType": "YulFunctionCall",
"src": "8182:93:1"
},
"nativeSrc": "8182:93:1",
"nodeType": "YulExpressionStatement",
"src": "8182:93:1"
},
{
"nativeSrc": "8284:19:1",
"nodeType": "YulAssignment",
"src": "8284:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8295:3:1",
"nodeType": "YulIdentifier",
"src": "8295:3:1"
},
{
"kind": "number",
"nativeSrc": "8300:2:1",
"nodeType": "YulLiteral",
"src": "8300:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8291:3:1",
"nodeType": "YulIdentifier",
"src": "8291:3:1"
},
"nativeSrc": "8291:12:1",
"nodeType": "YulFunctionCall",
"src": "8291:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "8284:3:1",
"nodeType": "YulIdentifier",
"src": "8284:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f37bf1aca80f8fa291a40f639db6aeaa1425ceb0e8c61c8648f0e2efa282a947_to_t_string_memory_ptr_fromStack",
"nativeSrc": "7943:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "8077:3:1",
"nodeType": "YulTypedName",
"src": "8077:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "8085:3:1",
"nodeType": "YulTypedName",
"src": "8085:3:1",
"type": ""
}
],
"src": "7943:366:1"
},
{
"body": {
"nativeSrc": "8486:248:1",
"nodeType": "YulBlock",
"src": "8486:248:1",
"statements": [
{
"nativeSrc": "8496:26:1",
"nodeType": "YulAssignment",
"src": "8496:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "8508:9:1",
"nodeType": "YulIdentifier",
"src": "8508:9:1"
},
{
"kind": "number",
"nativeSrc": "8519:2:1",
"nodeType": "YulLiteral",
"src": "8519:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8504:3:1",
"nodeType": "YulIdentifier",
"src": "8504:3:1"
},
"nativeSrc": "8504:18:1",
"nodeType": "YulFunctionCall",
"src": "8504:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8496:4:1",
"nodeType": "YulIdentifier",
"src": "8496:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "8543:9:1",
"nodeType": "YulIdentifier",
"src": "8543:9:1"
},
{
"kind": "number",
"nativeSrc": "8554:1:1",
"nodeType": "YulLiteral",
"src": "8554:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8539:3:1",
"nodeType": "YulIdentifier",
"src": "8539:3:1"
},
"nativeSrc": "8539:17:1",
"nodeType": "YulFunctionCall",
"src": "8539:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "8562:4:1",
"nodeType": "YulIdentifier",
"src": "8562:4:1"
},
{
"name": "headStart",
"nativeSrc": "8568:9:1",
"nodeType": "YulIdentifier",
"src": "8568:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "8558:3:1",
"nodeType": "YulIdentifier",
"src": "8558:3:1"
},
"nativeSrc": "8558:20:1",
"nodeType": "YulFunctionCall",
"src": "8558:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8532:6:1",
"nodeType": "YulIdentifier",
"src": "8532:6:1"
},
"nativeSrc": "8532:47:1",
"nodeType": "YulFunctionCall",
"src": "8532:47:1"
},
"nativeSrc": "8532:47:1",
"nodeType": "YulExpressionStatement",
"src": "8532:47:1"
},
{
"nativeSrc": "8588:139:1",
"nodeType": "YulAssignment",
"src": "8588:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "8722:4:1",
"nodeType": "YulIdentifier",
"src": "8722:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f37bf1aca80f8fa291a40f639db6aeaa1425ceb0e8c61c8648f0e2efa282a947_to_t_string_memory_ptr_fromStack",
"nativeSrc": "8596:124:1",
"nodeType": "YulIdentifier",
"src": "8596:124:1"
},
"nativeSrc": "8596:131:1",
"nodeType": "YulFunctionCall",
"src": "8596:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8588:4:1",
"nodeType": "YulIdentifier",
"src": "8588:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f37bf1aca80f8fa291a40f639db6aeaa1425ceb0e8c61c8648f0e2efa282a947__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "8315:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "8466:9:1",
"nodeType": "YulTypedName",
"src": "8466:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "8481:4:1",
"nodeType": "YulTypedName",
"src": "8481:4:1",
"type": ""
}
],
"src": "8315:419:1"
},
{
"body": {
"nativeSrc": "8846:69:1",
"nodeType": "YulBlock",
"src": "8846:69:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "8868:6:1",
"nodeType": "YulIdentifier",
"src": "8868:6:1"
},
{
"kind": "number",
"nativeSrc": "8876:1:1",
"nodeType": "YulLiteral",
"src": "8876:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8864:3:1",
"nodeType": "YulIdentifier",
"src": "8864:3:1"
},
"nativeSrc": "8864:14:1",
"nodeType": "YulFunctionCall",
"src": "8864:14:1"
},
{
"hexValue": "466f756e64206c6f6f7020696e2064656c65676174696f6e2e",
"kind": "string",
"nativeSrc": "8880:27:1",
"nodeType": "YulLiteral",
"src": "8880:27:1",
"type": "",
"value": "Found loop in delegation."
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8857:6:1",
"nodeType": "YulIdentifier",
"src": "8857:6:1"
},
"nativeSrc": "8857:51:1",
"nodeType": "YulFunctionCall",
"src": "8857:51:1"
},
"nativeSrc": "8857:51:1",
"nodeType": "YulExpressionStatement",
"src": "8857:51:1"
}
]
},
"name": "store_literal_in_memory_8bd75322489f7ff7ab0b18506f4dcde935a32eca2a506b00f4d21b0becfa093c",
"nativeSrc": "8740:175:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "8838:6:1",
"nodeType": "YulTypedName",
"src": "8838:6:1",
"type": ""
}
],
"src": "8740:175:1"
},
{
"body": {
"nativeSrc": "9067:220:1",
"nodeType": "YulBlock",
"src": "9067:220:1",
"statements": [
{
"nativeSrc": "9077:74:1",
"nodeType": "YulAssignment",
"src": "9077:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9143:3:1",
"nodeType": "YulIdentifier",
"src": "9143:3:1"
},
{
"kind": "number",
"nativeSrc": "9148:2:1",
"nodeType": "YulLiteral",
"src": "9148:2:1",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "9084:58:1",
"nodeType": "YulIdentifier",
"src": "9084:58:1"
},
"nativeSrc": "9084:67:1",
"nodeType": "YulFunctionCall",
"src": "9084:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "9077:3:1",
"nodeType": "YulIdentifier",
"src": "9077:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9249:3:1",
"nodeType": "YulIdentifier",
"src": "9249:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_8bd75322489f7ff7ab0b18506f4dcde935a32eca2a506b00f4d21b0becfa093c",
"nativeSrc": "9160:88:1",
"nodeType": "YulIdentifier",
"src": "9160:88:1"
},
"nativeSrc": "9160:93:1",
"nodeType": "YulFunctionCall",
"src": "9160:93:1"
},
"nativeSrc": "9160:93:1",
"nodeType": "YulExpressionStatement",
"src": "9160:93:1"
},
{
"nativeSrc": "9262:19:1",
"nodeType": "YulAssignment",
"src": "9262:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9273:3:1",
"nodeType": "YulIdentifier",
"src": "9273:3:1"
},
{
"kind": "number",
"nativeSrc": "9278:2:1",
"nodeType": "YulLiteral",
"src": "9278:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9269:3:1",
"nodeType": "YulIdentifier",
"src": "9269:3:1"
},
"nativeSrc": "9269:12:1",
"nodeType": "YulFunctionCall",
"src": "9269:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "9262:3:1",
"nodeType": "YulIdentifier",
"src": "9262:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8bd75322489f7ff7ab0b18506f4dcde935a32eca2a506b00f4d21b0becfa093c_to_t_string_memory_ptr_fromStack",
"nativeSrc": "8921:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "9055:3:1",
"nodeType": "YulTypedName",
"src": "9055:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "9063:3:1",
"nodeType": "YulTypedName",
"src": "9063:3:1",
"type": ""
}
],
"src": "8921:366:1"
},
{
"body": {
"nativeSrc": "9464:248:1",
"nodeType": "YulBlock",
"src": "9464:248:1",
"statements": [
{
"nativeSrc": "9474:26:1",
"nodeType": "YulAssignment",
"src": "9474:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "9486:9:1",
"nodeType": "YulIdentifier",
"src": "9486:9:1"
},
{
"kind": "number",
"nativeSrc": "9497:2:1",
"nodeType": "YulLiteral",
"src": "9497:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9482:3:1",
"nodeType": "YulIdentifier",
"src": "9482:3:1"
},
"nativeSrc": "9482:18:1",
"nodeType": "YulFunctionCall",
"src": "9482:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9474:4:1",
"nodeType": "YulIdentifier",
"src": "9474:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9521:9:1",
"nodeType": "YulIdentifier",
"src": "9521:9:1"
},
{
"kind": "number",
"nativeSrc": "9532:1:1",
"nodeType": "YulLiteral",
"src": "9532:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9517:3:1",
"nodeType": "YulIdentifier",
"src": "9517:3:1"
},
"nativeSrc": "9517:17:1",
"nodeType": "YulFunctionCall",
"src": "9517:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "9540:4:1",
"nodeType": "YulIdentifier",
"src": "9540:4:1"
},
{
"name": "headStart",
"nativeSrc": "9546:9:1",
"nodeType": "YulIdentifier",
"src": "9546:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "9536:3:1",
"nodeType": "YulIdentifier",
"src": "9536:3:1"
},
"nativeSrc": "9536:20:1",
"nodeType": "YulFunctionCall",
"src": "9536:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9510:6:1",
"nodeType": "YulIdentifier",
"src": "9510:6:1"
},
"nativeSrc": "9510:47:1",
"nodeType": "YulFunctionCall",
"src": "9510:47:1"
},
"nativeSrc": "9510:47:1",
"nodeType": "YulExpressionStatement",
"src": "9510:47:1"
},
{
"nativeSrc": "9566:139:1",
"nodeType": "YulAssignment",
"src": "9566:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "9700:4:1",
"nodeType": "YulIdentifier",
"src": "9700:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8bd75322489f7ff7ab0b18506f4dcde935a32eca2a506b00f4d21b0becfa093c_to_t_string_memory_ptr_fromStack",
"nativeSrc": "9574:124:1",
"nodeType": "YulIdentifier",
"src": "9574:124:1"
},
"nativeSrc": "9574:131:1",
"nodeType": "YulFunctionCall",
"src": "9574:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9566:4:1",
"nodeType": "YulIdentifier",
"src": "9566:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8bd75322489f7ff7ab0b18506f4dcde935a32eca2a506b00f4d21b0becfa093c__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "9293:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "9444:9:1",
"nodeType": "YulTypedName",
"src": "9444:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "9459:4:1",
"nodeType": "YulTypedName",
"src": "9459:4:1",
"type": ""
}
],
"src": "9293:419:1"
},
{
"body": {
"nativeSrc": "9824:121:1",
"nodeType": "YulBlock",
"src": "9824:121:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "9846:6:1",
"nodeType": "YulIdentifier",
"src": "9846:6:1"
},
{
"kind": "number",
"nativeSrc": "9854:1:1",
"nodeType": "YulLiteral",
"src": "9854:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9842:3:1",
"nodeType": "YulIdentifier",
"src": "9842:3:1"
},
"nativeSrc": "9842:14:1",
"nodeType": "YulFunctionCall",
"src": "9842:14:1"
},
{
"hexValue": "4f6e6c79206368616972706572736f6e2063616e206769766520726967687420",
"kind": "string",
"nativeSrc": "9858:34:1",
"nodeType": "YulLiteral",
"src": "9858:34:1",
"type": "",
"value": "Only chairperson can give right "
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9835:6:1",
"nodeType": "YulIdentifier",
"src": "9835:6:1"
},
"nativeSrc": "9835:58:1",
"nodeType": "YulFunctionCall",
"src": "9835:58:1"
},
"nativeSrc": "9835:58:1",
"nodeType": "YulExpressionStatement",
"src": "9835:58:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "9914:6:1",
"nodeType": "YulIdentifier",
"src": "9914:6:1"
},
{
"kind": "number",
"nativeSrc": "9922:2:1",
"nodeType": "YulLiteral",
"src": "9922:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9910:3:1",
"nodeType": "YulIdentifier",
"src": "9910:3:1"
},
"nativeSrc": "9910:15:1",
"nodeType": "YulFunctionCall",
"src": "9910:15:1"
},
{
"hexValue": "746f20766f74652e",
"kind": "string",
"nativeSrc": "9927:10:1",
"nodeType": "YulLiteral",
"src": "9927:10:1",
"type": "",
"value": "to vote."
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9903:6:1",
"nodeType": "YulIdentifier",
"src": "9903:6:1"
},
"nativeSrc": "9903:35:1",
"nodeType": "YulFunctionCall",
"src": "9903:35:1"
},
"nativeSrc": "9903:35:1",
"nodeType": "YulExpressionStatement",
"src": "9903:35:1"
}
]
},
"name": "store_literal_in_memory_80126ce3251ab2b6e4ade14fe5b2bc11f593510cbe9e3550c09bff1989e33b95",
"nativeSrc": "9718:227:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "9816:6:1",
"nodeType": "YulTypedName",
"src": "9816:6:1",
"type": ""
}
],
"src": "9718:227:1"
},
{
"body": {
"nativeSrc": "10097:220:1",
"nodeType": "YulBlock",
"src": "10097:220:1",
"statements": [
{
"nativeSrc": "10107:74:1",
"nodeType": "YulAssignment",
"src": "10107:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10173:3:1",
"nodeType": "YulIdentifier",
"src": "10173:3:1"
},
{
"kind": "number",
"nativeSrc": "10178:2:1",
"nodeType": "YulLiteral",
"src": "10178:2:1",
"type": "",
"value": "40"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "10114:58:1",
"nodeType": "YulIdentifier",
"src": "10114:58:1"
},
"nativeSrc": "10114:67:1",
"nodeType": "YulFunctionCall",
"src": "10114:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "10107:3:1",
"nodeType": "YulIdentifier",
"src": "10107:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10279:3:1",
"nodeType": "YulIdentifier",
"src": "10279:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_80126ce3251ab2b6e4ade14fe5b2bc11f593510cbe9e3550c09bff1989e33b95",
"nativeSrc": "10190:88:1",
"nodeType": "YulIdentifier",
"src": "10190:88:1"
},
"nativeSrc": "10190:93:1",
"nodeType": "YulFunctionCall",
"src": "10190:93:1"
},
"nativeSrc": "10190:93:1",
"nodeType": "YulExpressionStatement",
"src": "10190:93:1"
},
{
"nativeSrc": "10292:19:1",
"nodeType": "YulAssignment",
"src": "10292:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10303:3:1",
"nodeType": "YulIdentifier",
"src": "10303:3:1"
},
{
"kind": "number",
"nativeSrc": "10308:2:1",
"nodeType": "YulLiteral",
"src": "10308:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10299:3:1",
"nodeType": "YulIdentifier",
"src": "10299:3:1"
},
"nativeSrc": "10299:12:1",
"nodeType": "YulFunctionCall",
"src": "10299:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "10292:3:1",
"nodeType": "YulIdentifier",
"src": "10292:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_80126ce3251ab2b6e4ade14fe5b2bc11f593510cbe9e3550c09bff1989e33b95_to_t_string_memory_ptr_fromStack",
"nativeSrc": "9951:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "10085:3:1",
"nodeType": "YulTypedName",
"src": "10085:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "10093:3:1",
"nodeType": "YulTypedName",
"src": "10093:3:1",
"type": ""
}
],
"src": "9951:366:1"
},
{
"body": {
"nativeSrc": "10494:248:1",
"nodeType": "YulBlock",
"src": "10494:248:1",
"statements": [
{
"nativeSrc": "10504:26:1",
"nodeType": "YulAssignment",
"src": "10504:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "10516:9:1",
"nodeType": "YulIdentifier",
"src": "10516:9:1"
},
{
"kind": "number",
"nativeSrc": "10527:2:1",
"nodeType": "YulLiteral",
"src": "10527:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10512:3:1",
"nodeType": "YulIdentifier",
"src": "10512:3:1"
},
"nativeSrc": "10512:18:1",
"nodeType": "YulFunctionCall",
"src": "10512:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10504:4:1",
"nodeType": "YulIdentifier",
"src": "10504:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10551:9:1",
"nodeType": "YulIdentifier",
"src": "10551:9:1"
},
{
"kind": "number",
"nativeSrc": "10562:1:1",
"nodeType": "YulLiteral",
"src": "10562:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10547:3:1",
"nodeType": "YulIdentifier",
"src": "10547:3:1"
},
"nativeSrc": "10547:17:1",
"nodeType": "YulFunctionCall",
"src": "10547:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "10570:4:1",
"nodeType": "YulIdentifier",
"src": "10570:4:1"
},
{
"name": "headStart",
"nativeSrc": "10576:9:1",
"nodeType": "YulIdentifier",
"src": "10576:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "10566:3:1",
"nodeType": "YulIdentifier",
"src": "10566:3:1"
},
"nativeSrc": "10566:20:1",
"nodeType": "YulFunctionCall",
"src": "10566:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10540:6:1",
"nodeType": "YulIdentifier",
"src": "10540:6:1"
},
"nativeSrc": "10540:47:1",
"nodeType": "YulFunctionCall",
"src": "10540:47:1"
},
"nativeSrc": "10540:47:1",
"nodeType": "YulExpressionStatement",
"src": "10540:47:1"
},
{
"nativeSrc": "10596:139:1",
"nodeType": "YulAssignment",
"src": "10596:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "10730:4:1",
"nodeType": "YulIdentifier",
"src": "10730:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_80126ce3251ab2b6e4ade14fe5b2bc11f593510cbe9e3550c09bff1989e33b95_to_t_string_memory_ptr_fromStack",
"nativeSrc": "10604:124:1",
"nodeType": "YulIdentifier",
"src": "10604:124:1"
},
"nativeSrc": "10604:131:1",
"nodeType": "YulFunctionCall",
"src": "10604:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10596:4:1",
"nodeType": "YulIdentifier",
"src": "10596:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_80126ce3251ab2b6e4ade14fe5b2bc11f593510cbe9e3550c09bff1989e33b95__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "10323:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "10474:9:1",
"nodeType": "YulTypedName",
"src": "10474:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "10489:4:1",
"nodeType": "YulTypedName",
"src": "10489:4:1",
"type": ""
}
],
"src": "10323:419:1"
},
{
"body": {
"nativeSrc": "10854:68:1",
"nodeType": "YulBlock",
"src": "10854:68:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "10876:6:1",
"nodeType": "YulIdentifier",
"src": "10876:6:1"
},
{
"kind": "number",
"nativeSrc": "10884:1:1",
"nodeType": "YulLiteral",
"src": "10884:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10872:3:1",
"nodeType": "YulIdentifier",
"src": "10872:3:1"
},
"nativeSrc": "10872:14:1",
"nodeType": "YulFunctionCall",
"src": "10872:14:1"
},
{
"hexValue": "54686520766f74657220616c726561647920766f7465642e",
"kind": "string",
"nativeSrc": "10888:26:1",
"nodeType": "YulLiteral",
"src": "10888:26:1",
"type": "",
"value": "The voter already voted."
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10865:6:1",
"nodeType": "YulIdentifier",
"src": "10865:6:1"
},
"nativeSrc": "10865:50:1",
"nodeType": "YulFunctionCall",
"src": "10865:50:1"
},
"nativeSrc": "10865:50:1",
"nodeType": "YulExpressionStatement",
"src": "10865:50:1"
}
]
},
"name": "store_literal_in_memory_d39b1db28626750c546703ffb72f30ea3facdfed1bebd47408e22ef18a76ba2d",
"nativeSrc": "10748:174:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "10846:6:1",
"nodeType": "YulTypedName",
"src": "10846:6:1",
"type": ""
}
],
"src": "10748:174:1"
},
{
"body": {
"nativeSrc": "11074:220:1",
"nodeType": "YulBlock",
"src": "11074:220:1",
"statements": [
{
"nativeSrc": "11084:74:1",
"nodeType": "YulAssignment",
"src": "11084:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11150:3:1",
"nodeType": "YulIdentifier",
"src": "11150:3:1"
},
{
"kind": "number",
"nativeSrc": "11155:2:1",
"nodeType": "YulLiteral",
"src": "11155:2:1",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "11091:58:1",
"nodeType": "YulIdentifier",
"src": "11091:58:1"
},
"nativeSrc": "11091:67:1",
"nodeType": "YulFunctionCall",
"src": "11091:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "11084:3:1",
"nodeType": "YulIdentifier",
"src": "11084:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11256:3:1",
"nodeType": "YulIdentifier",
"src": "11256:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_d39b1db28626750c546703ffb72f30ea3facdfed1bebd47408e22ef18a76ba2d",
"nativeSrc": "11167:88:1",
"nodeType": "YulIdentifier",
"src": "11167:88:1"
},
"nativeSrc": "11167:93:1",
"nodeType": "YulFunctionCall",
"src": "11167:93:1"
},
"nativeSrc": "11167:93:1",
"nodeType": "YulExpressionStatement",
"src": "11167:93:1"
},
{
"nativeSrc": "11269:19:1",
"nodeType": "YulAssignment",
"src": "11269:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11280:3:1",
"nodeType": "YulIdentifier",
"src": "11280:3:1"
},
{
"kind": "number",
"nativeSrc": "11285:2:1",
"nodeType": "YulLiteral",
"src": "11285:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11276:3:1",
"nodeType": "YulIdentifier",
"src": "11276:3:1"
},
"nativeSrc": "11276:12:1",
"nodeType": "YulFunctionCall",
"src": "11276:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "11269:3:1",
"nodeType": "YulIdentifier",
"src": "11269:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d39b1db28626750c546703ffb72f30ea3facdfed1bebd47408e22ef18a76ba2d_to_t_string_memory_ptr_fromStack",
"nativeSrc": "10928:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "11062:3:1",
"nodeType": "YulTypedName",
"src": "11062:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "11070:3:1",
"nodeType": "YulTypedName",
"src": "11070:3:1",
"type": ""
}
],
"src": "10928:366:1"
},
{
"body": {
"nativeSrc": "11471:248:1",
"nodeType": "YulBlock",
"src": "11471:248:1",
"statements": [
{
"nativeSrc": "11481:26:1",
"nodeType": "YulAssignment",
"src": "11481:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "11493:9:1",
"nodeType": "YulIdentifier",
"src": "11493:9:1"
},
{
"kind": "number",
"nativeSrc": "11504:2:1",
"nodeType": "YulLiteral",
"src": "11504:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11489:3:1",
"nodeType": "YulIdentifier",
"src": "11489:3:1"
},
"nativeSrc": "11489:18:1",
"nodeType": "YulFunctionCall",
"src": "11489:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "11481:4:1",
"nodeType": "YulIdentifier",
"src": "11481:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "11528:9:1",
"nodeType": "YulIdentifier",
"src": "11528:9:1"
},
{
"kind": "number",
"nativeSrc": "11539:1:1",
"nodeType": "YulLiteral",
"src": "11539:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11524:3:1",
"nodeType": "YulIdentifier",
"src": "11524:3:1"
},
"nativeSrc": "11524:17:1",
"nodeType": "YulFunctionCall",
"src": "11524:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "11547:4:1",
"nodeType": "YulIdentifier",
"src": "11547:4:1"
},
{
"name": "headStart",
"nativeSrc": "11553:9:1",
"nodeType": "YulIdentifier",
"src": "11553:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "11543:3:1",
"nodeType": "YulIdentifier",
"src": "11543:3:1"
},
"nativeSrc": "11543:20:1",
"nodeType": "YulFunctionCall",
"src": "11543:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11517:6:1",
"nodeType": "YulIdentifier",
"src": "11517:6:1"
},
"nativeSrc": "11517:47:1",
"nodeType": "YulFunctionCall",
"src": "11517:47:1"
},
"nativeSrc": "11517:47:1",
"nodeType": "YulExpressionStatement",
"src": "11517:47:1"
},
{
"nativeSrc": "11573:139:1",
"nodeType": "YulAssignment",
"src": "11573:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "11707:4:1",
"nodeType": "YulIdentifier",
"src": "11707:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d39b1db28626750c546703ffb72f30ea3facdfed1bebd47408e22ef18a76ba2d_to_t_string_memory_ptr_fromStack",
"nativeSrc": "11581:124:1",
"nodeType": "YulIdentifier",
"src": "11581:124:1"
},
"nativeSrc": "11581:131:1",
"nodeType": "YulFunctionCall",
"src": "11581:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "11573:4:1",
"nodeType": "YulIdentifier",
"src": "11573:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d39b1db28626750c546703ffb72f30ea3facdfed1bebd47408e22ef18a76ba2d__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "11300:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "11451:9:1",
"nodeType": "YulTypedName",
"src": "11451:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "11466:4:1",
"nodeType": "YulTypedName",
"src": "11466:4:1",
"type": ""
}
],
"src": "11300:419:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_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 cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\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_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_bytes32_t_uint256__to_t_bytes32_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\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 abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function 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 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_uint256_t_bool_t_address_t_uint256__to_t_uint256_t_bool_t_address_t_uint256__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_bool_to_t_bool_fromStack(value1, add(headStart, 32))\n\n 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 }\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 array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_0dc527e8fa9b76c996eb5eda9ddb749b21540f5509781b94e1e37f7027e7f50e(memPtr) {\n\n mstore(add(memPtr, 0), \"Has no right to vote\")\n\n }\n\n function abi_encode_t_stringliteral_0dc527e8fa9b76c996eb5eda9ddb749b21540f5509781b94e1e37f7027e7f50e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_0dc527e8fa9b76c996eb5eda9ddb749b21540f5509781b94e1e37f7027e7f50e(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_0dc527e8fa9b76c996eb5eda9ddb749b21540f5509781b94e1e37f7027e7f50e__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_0dc527e8fa9b76c996eb5eda9ddb749b21540f5509781b94e1e37f7027e7f50e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_56aab92b7164a4ea72a098d2d95a5e763b71d07f265e8d46fc7240404017fa84(memPtr) {\n\n mstore(add(memPtr, 0), \"Already voted.\")\n\n }\n\n function abi_encode_t_stringliteral_56aab92b7164a4ea72a098d2d95a5e763b71d07f265e8d46fc7240404017fa84_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_56aab92b7164a4ea72a098d2d95a5e763b71d07f265e8d46fc7240404017fa84(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_56aab92b7164a4ea72a098d2d95a5e763b71d07f265e8d46fc7240404017fa84__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_56aab92b7164a4ea72a098d2d95a5e763b71d07f265e8d46fc7240404017fa84_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function store_literal_in_memory_657c6119c4ed567c60278fba62242b17c2fedf38962e651040dabfb3c9e15a5f(memPtr) {\n\n mstore(add(memPtr, 0), \"You already voted.\")\n\n }\n\n function abi_encode_t_stringliteral_657c6119c4ed567c60278fba62242b17c2fedf38962e651040dabfb3c9e15a5f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 18)\n store_literal_in_memory_657c6119c4ed567c60278fba62242b17c2fedf38962e651040dabfb3c9e15a5f(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_657c6119c4ed567c60278fba62242b17c2fedf38962e651040dabfb3c9e15a5f__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_657c6119c4ed567c60278fba62242b17c2fedf38962e651040dabfb3c9e15a5f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_f37bf1aca80f8fa291a40f639db6aeaa1425ceb0e8c61c8648f0e2efa282a947(memPtr) {\n\n mstore(add(memPtr, 0), \"Self-delegation is disallowed.\")\n\n }\n\n function abi_encode_t_stringliteral_f37bf1aca80f8fa291a40f639db6aeaa1425ceb0e8c61c8648f0e2efa282a947_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 30)\n store_literal_in_memory_f37bf1aca80f8fa291a40f639db6aeaa1425ceb0e8c61c8648f0e2efa282a947(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_f37bf1aca80f8fa291a40f639db6aeaa1425ceb0e8c61c8648f0e2efa282a947__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_f37bf1aca80f8fa291a40f639db6aeaa1425ceb0e8c61c8648f0e2efa282a947_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_8bd75322489f7ff7ab0b18506f4dcde935a32eca2a506b00f4d21b0becfa093c(memPtr) {\n\n mstore(add(memPtr, 0), \"Found loop in delegation.\")\n\n }\n\n function abi_encode_t_stringliteral_8bd75322489f7ff7ab0b18506f4dcde935a32eca2a506b00f4d21b0becfa093c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_8bd75322489f7ff7ab0b18506f4dcde935a32eca2a506b00f4d21b0becfa093c(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8bd75322489f7ff7ab0b18506f4dcde935a32eca2a506b00f4d21b0becfa093c__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_8bd75322489f7ff7ab0b18506f4dcde935a32eca2a506b00f4d21b0becfa093c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_80126ce3251ab2b6e4ade14fe5b2bc11f593510cbe9e3550c09bff1989e33b95(memPtr) {\n\n mstore(add(memPtr, 0), \"Only chairperson can give right \")\n\n mstore(add(memPtr, 32), \"to vote.\")\n\n }\n\n function abi_encode_t_stringliteral_80126ce3251ab2b6e4ade14fe5b2bc11f593510cbe9e3550c09bff1989e33b95_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_80126ce3251ab2b6e4ade14fe5b2bc11f593510cbe9e3550c09bff1989e33b95(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_80126ce3251ab2b6e4ade14fe5b2bc11f593510cbe9e3550c09bff1989e33b95__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_80126ce3251ab2b6e4ade14fe5b2bc11f593510cbe9e3550c09bff1989e33b95_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_d39b1db28626750c546703ffb72f30ea3facdfed1bebd47408e22ef18a76ba2d(memPtr) {\n\n mstore(add(memPtr, 0), \"The voter already voted.\")\n\n }\n\n function abi_encode_t_stringliteral_d39b1db28626750c546703ffb72f30ea3facdfed1bebd47408e22ef18a76ba2d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n store_literal_in_memory_d39b1db28626750c546703ffb72f30ea3facdfed1bebd47408e22ef18a76ba2d(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_d39b1db28626750c546703ffb72f30ea3facdfed1bebd47408e22ef18a76ba2d__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_d39b1db28626750c546703ffb72f30ea3facdfed1bebd47408e22ef18a76ba2d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b5060043610610086575f3560e01c8063609ff1bd11610059578063609ff1bd146101115780639e7b8d611461012f578063a3ec138d1461014b578063e2ba53f01461017e57610086565b80630121b93f1461008a578063013cf08b146100a65780632e4176cf146100d75780635c19a95c146100f5575b5f80fd5b6100a4600480360381019061009f9190610993565b61019c565b005b6100c060048036038101906100bb9190610993565b6102d7565b6040516100ce9291906109e5565b60405180910390f35b6100df610306565b6040516100ec9190610a4b565b60405180910390f35b61010f600480360381019061010a9190610a8e565b610329565b005b6101196106ae565b6040516101269190610ab9565b60405180910390f35b61014960048036038101906101449190610a8e565b610729565b005b61016560048036038101906101609190610a8e565b6108d4565b6040516101759493929190610aec565b60405180910390f35b61018661092c565b6040516101939190610b2f565b60405180910390f35b5f60015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2090505f815f015403610221576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021890610ba2565b60405180910390fd5b806001015f9054906101000a900460ff1615610272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026990610c0a565b60405180910390fd5b6001816001015f6101000a81548160ff021916908315150217905550818160020181905550805f0154600283815481106102af576102ae610c28565b5b905f5260205f2090600202016001015f8282546102cc9190610c82565b925050819055505050565b600281815481106102e6575f80fd5b905f5260205f2090600202015f91509050805f0154908060010154905082565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209050806001015f9054906101000a900460ff16156103ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103b190610cff565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041f90610d67565b60405180910390fd5b5b5f73ffffffffffffffffffffffffffffffffffffffff1660015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060010160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146105925760015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2060010160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691503373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361058d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058490610dcf565b60405180910390fd5b610429565b6001816001015f6101000a81548160ff021916908315150217905550818160010160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f209050806001015f9054906101000a900460ff161561068c57815f0154600282600201548154811061066357610662610c28565b5b905f5260205f2090600202016001015f8282546106809190610c82565b925050819055506106a9565b815f0154815f015f8282546106a19190610c82565b925050819055505b505050565b5f805f90505f5b6002805490508110156107245781600282815481106106d7576106d6610c28565b5b905f5260205f209060020201600101541115610717576002818154811061070157610700610c28565b5b905f5260205f2090600202016001015491508092505b80806001019150506106b5565b505090565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146107b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ad90610e5d565b60405180910390fd5b60015f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f206001015f9054906101000a900460ff1615610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a90610ec5565b60405180910390fd5b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01541461088d575f80fd5b6001805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f018190555050565b6001602052805f5260405f205f91509050805f015490806001015f9054906101000a900460ff16908060010160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060020154905084565b5f60026109376106ae565b8154811061094857610947610c28565b5b905f5260205f2090600202015f0154905090565b5f80fd5b5f819050919050565b61097281610960565b811461097c575f80fd5b50565b5f8135905061098d81610969565b92915050565b5f602082840312156109a8576109a761095c565b5b5f6109b58482850161097f565b91505092915050565b5f819050919050565b6109d0816109be565b82525050565b6109df81610960565b82525050565b5f6040820190506109f85f8301856109c7565b610a0560208301846109d6565b9392505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610a3582610a0c565b9050919050565b610a4581610a2b565b82525050565b5f602082019050610a5e5f830184610a3c565b92915050565b610a6d81610a2b565b8114610a77575f80fd5b50565b5f81359050610a8881610a64565b92915050565b5f60208284031215610aa357610aa261095c565b5b5f610ab084828501610a7a565b91505092915050565b5f602082019050610acc5f8301846109d6565b92915050565b5f8115159050919050565b610ae681610ad2565b82525050565b5f608082019050610aff5f8301876109d6565b610b0c6020830186610add565b610b196040830185610a3c565b610b2660608301846109d6565b95945050505050565b5f602082019050610b425f8301846109c7565b92915050565b5f82825260208201905092915050565b7f486173206e6f20726967687420746f20766f74650000000000000000000000005f82015250565b5f610b8c601483610b48565b9150610b9782610b58565b602082019050919050565b5f6020820190508181035f830152610bb981610b80565b9050919050565b7f416c726561647920766f7465642e0000000000000000000000000000000000005f82015250565b5f610bf4600e83610b48565b9150610bff82610bc0565b602082019050919050565b5f6020820190508181035f830152610c2181610be8565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610c8c82610960565b9150610c9783610960565b9250828201905080821115610caf57610cae610c55565b5b92915050565b7f596f7520616c726561647920766f7465642e00000000000000000000000000005f82015250565b5f610ce9601283610b48565b9150610cf482610cb5565b602082019050919050565b5f6020820190508181035f830152610d1681610cdd565b9050919050565b7f53656c662d64656c65676174696f6e20697320646973616c6c6f7765642e00005f82015250565b5f610d51601e83610b48565b9150610d5c82610d1d565b602082019050919050565b5f6020820190508181035f830152610d7e81610d45565b9050919050565b7f466f756e64206c6f6f7020696e2064656c65676174696f6e2e000000000000005f82015250565b5f610db9601983610b48565b9150610dc482610d85565b602082019050919050565b5f6020820190508181035f830152610de681610dad565b9050919050565b7f4f6e6c79206368616972706572736f6e2063616e2067697665207269676874205f8201527f746f20766f74652e000000000000000000000000000000000000000000000000602082015250565b5f610e47602883610b48565b9150610e5282610ded565b604082019050919050565b5f6020820190508181035f830152610e7481610e3b565b9050919050565b7f54686520766f74657220616c726561647920766f7465642e00000000000000005f82015250565b5f610eaf601883610b48565b9150610eba82610e7b565b602082019050919050565b5f6020820190508181035f830152610edc81610ea3565b905091905056fea264697066735822122086f5ec40d9f732c754b2d2dfc6a33ac4942fdaebde9a9f7bc3151a9c002bd48a64736f6c63430008190033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x86 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 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 DUP7 CREATE2 0xEC BLOCKHASH 0xD9 0xF7 ORIGIN 0xC7 SLOAD 0xB2 0xD2 0xDF 0xC6 LOG3 GASPRICE 0xC4 SWAP5 0x2F 0xDA 0xEB 0xDE SWAP11 SWAP16 PUSH28 0xC3151A9C002BD48A64736F6C63430008190033000000000000000000 ",
"sourceMap": "157:4355:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3166:458;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;791:27;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;712:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2071:907;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3810:365;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1592:355;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;745:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;4366:144;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3166:458;3212:20;3235:6;:18;3242:10;3235:18;;;;;;;;;;;;;;;3212:41;;3288:1;3271:6;:13;;;:18;3263:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;3333:6;:12;;;;;;;;;;;;3332:13;3324:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;3389:4;3374:6;:12;;;:19;;;;;;;;;;;;;;;;;;3417:8;3403:6;:11;;:22;;;;3604:6;:13;;;3571:9;3581:8;3571:19;;;;;;;;:::i;:::-;;;;;;;;;;;;:29;;;:46;;;;;;;:::i;:::-;;;;;;;;3202:422;3166:458;:::o;791:27::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;712:26::-;;;;;;;;;;;;:::o;2071:907::-;2118:20;2141:6;:18;2148:10;2141:18;;;;;;;;;;;;;;;2118:41;;2178:6;:12;;;;;;;;;;;;2177:13;2169:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:10;2231:16;;:2;:16;;;2223:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:223;2331:1;2300:33;;:6;:10;2307:2;2300:10;;;;;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;2293:223;;2354:6;:10;2361:2;2354:10;;;;;;;;;;;;;;;:19;;;;;;;;;;;;2349:24;;2465:10;2459:16;;:2;:16;;;2451:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;2293:223;;;2540:4;2525:6;:12;;;:19;;;;;;;;;;;;;;;;;;2572:2;2554:6;:15;;;:20;;;;;;;;;;;;;;;;;;2584:23;2610:6;:10;2617:2;2610:10;;;;;;;;;;;;;;;2584:36;;2634:9;:15;;;;;;;;;;;;2630:342;;;2801:6;:13;;;2762:9;2772;:14;;;2762:25;;;;;;;;:::i;:::-;;;;;;;;;;;;:35;;;:52;;;;;;;:::i;:::-;;;;;;;;2630:342;;;2948:6;:13;;;2928:9;:16;;;:33;;;;;;;:::i;:::-;;;;;;;;2630:342;2108:870;;2071:907;:::o;3810:365::-;3870:21;3907;3931:1;3907:25;;3947:6;3942:227;3963:9;:16;;;;3959:1;:20;3942:227;;;4029:16;4004:9;4014:1;4004:12;;;;;;;;:::i;:::-;;;;;;;;;;;;:22;;;:41;4000:159;;;4084:9;4094:1;4084:12;;;;;;;;:::i;:::-;;;;;;;;;;;;:22;;;4065:41;;4143:1;4124:20;;4000:159;3981:3;;;;;;;3942:227;;;;3897:278;3810:365;:::o;1592:355::-;1684:11;;;;;;;;;;1670:25;;:10;:25;;;1649:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;1793:6;:13;1800:5;1793:13;;;;;;;;;;;;;;;:19;;;;;;;;;;;;1792:20;1771:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;1904:1;1880:6;:13;1887:5;1880:13;;;;;;;;;;;;;;;:20;;;:25;1872:34;;;;;;1939:1;1916:6;:13;1923:5;1916:13;;;;;;;;;;;;;;;:20;;:24;;;;1592:355;:::o;745:39::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4366:144::-;4421:19;4470:9;4480:17;:15;:17::i;:::-;4470:28;;;;;;;;:::i;:::-;;;;;;;;;;;;:33;;;4456:47;;4366:144;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:77::-;1062:7;1091:5;1080:16;;1025:77;;;:::o;1108:118::-;1195:24;1213:5;1195:24;:::i;:::-;1190:3;1183:37;1108:118;;:::o;1232:::-;1319:24;1337:5;1319:24;:::i;:::-;1314:3;1307:37;1232:118;;:::o;1356:332::-;1477:4;1515:2;1504:9;1500:18;1492:26;;1528:71;1596:1;1585:9;1581:17;1572:6;1528:71;:::i;:::-;1609:72;1677:2;1666:9;1662:18;1653:6;1609:72;:::i;:::-;1356:332;;;;;:::o;1694:126::-;1731:7;1771:42;1764:5;1760:54;1749:65;;1694:126;;;:::o;1826:96::-;1863:7;1892:24;1910:5;1892:24;:::i;:::-;1881:35;;1826:96;;;:::o;1928:118::-;2015:24;2033:5;2015:24;:::i;:::-;2010:3;2003:37;1928:118;;:::o;2052:222::-;2145:4;2183:2;2172:9;2168:18;2160:26;;2196:71;2264:1;2253:9;2249:17;2240:6;2196:71;:::i;:::-;2052:222;;;;:::o;2280:122::-;2353:24;2371:5;2353:24;:::i;:::-;2346:5;2343:35;2333:63;;2392:1;2389;2382:12;2333:63;2280:122;:::o;2408:139::-;2454:5;2492:6;2479:20;2470:29;;2508:33;2535:5;2508:33;:::i;:::-;2408:139;;;;:::o;2553:329::-;2612:6;2661:2;2649:9;2640:7;2636:23;2632:32;2629:119;;;2667:79;;:::i;:::-;2629:119;2787:1;2812:53;2857:7;2848:6;2837:9;2833:22;2812:53;:::i;:::-;2802:63;;2758:117;2553:329;;;;:::o;2888:222::-;2981:4;3019:2;3008:9;3004:18;2996:26;;3032:71;3100:1;3089:9;3085:17;3076:6;3032:71;:::i;:::-;2888:222;;;;:::o;3116:90::-;3150:7;3193:5;3186:13;3179:21;3168:32;;3116:90;;;:::o;3212:109::-;3293:21;3308:5;3293:21;:::i;:::-;3288:3;3281:34;3212:109;;:::o;3327:541::-;3498:4;3536:3;3525:9;3521:19;3513:27;;3550:71;3618:1;3607:9;3603:17;3594:6;3550:71;:::i;:::-;3631:66;3693:2;3682:9;3678:18;3669:6;3631:66;:::i;:::-;3707:72;3775:2;3764:9;3760:18;3751:6;3707:72;:::i;:::-;3789;3857:2;3846:9;3842:18;3833:6;3789:72;:::i;:::-;3327:541;;;;;;;:::o;3874:222::-;3967:4;4005:2;3994:9;3990:18;3982:26;;4018:71;4086:1;4075:9;4071:17;4062:6;4018:71;:::i;:::-;3874:222;;;;:::o;4102:169::-;4186:11;4220:6;4215:3;4208:19;4260:4;4255:3;4251:14;4236:29;;4102:169;;;;:::o;4277:170::-;4417:22;4413:1;4405:6;4401:14;4394:46;4277:170;:::o;4453:366::-;4595:3;4616:67;4680:2;4675:3;4616:67;:::i;:::-;4609:74;;4692:93;4781:3;4692:93;:::i;:::-;4810:2;4805:3;4801:12;4794:19;;4453:366;;;:::o;4825:419::-;4991:4;5029:2;5018:9;5014:18;5006:26;;5078:9;5072:4;5068:20;5064:1;5053:9;5049:17;5042:47;5106:131;5232:4;5106:131;:::i;:::-;5098:139;;4825:419;;;:::o;5250:164::-;5390:16;5386:1;5378:6;5374:14;5367:40;5250:164;:::o;5420:366::-;5562:3;5583:67;5647:2;5642:3;5583:67;:::i;:::-;5576:74;;5659:93;5748:3;5659:93;:::i;:::-;5777:2;5772:3;5768:12;5761:19;;5420:366;;;:::o;5792:419::-;5958:4;5996:2;5985:9;5981:18;5973:26;;6045:9;6039:4;6035:20;6031:1;6020:9;6016:17;6009:47;6073:131;6199:4;6073:131;:::i;:::-;6065:139;;5792:419;;;:::o;6217:180::-;6265:77;6262:1;6255:88;6362:4;6359:1;6352:15;6386:4;6383:1;6376:15;6403:180;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:191;6629:3;6648:20;6666:1;6648:20;:::i;:::-;6643:25;;6682:20;6700:1;6682:20;:::i;:::-;6677:25;;6725:1;6722;6718:9;6711:16;;6746:3;6743:1;6740:10;6737:36;;;6753:18;;:::i;:::-;6737:36;6589:191;;;;:::o;6786:168::-;6926:20;6922:1;6914:6;6910:14;6903:44;6786:168;:::o;6960:366::-;7102:3;7123:67;7187:2;7182:3;7123:67;:::i;:::-;7116:74;;7199:93;7288:3;7199:93;:::i;:::-;7317:2;7312:3;7308:12;7301:19;;6960:366;;;:::o;7332:419::-;7498:4;7536:2;7525:9;7521:18;7513:26;;7585:9;7579:4;7575:20;7571:1;7560:9;7556:17;7549:47;7613:131;7739:4;7613:131;:::i;:::-;7605:139;;7332:419;;;:::o;7757:180::-;7897:32;7893:1;7885:6;7881:14;7874:56;7757:180;:::o;7943:366::-;8085:3;8106:67;8170:2;8165:3;8106:67;:::i;:::-;8099:74;;8182:93;8271:3;8182:93;:::i;:::-;8300:2;8295:3;8291:12;8284:19;;7943:366;;;:::o;8315:419::-;8481:4;8519:2;8508:9;8504:18;8496:26;;8568:9;8562:4;8558:20;8554:1;8543:9;8539:17;8532:47;8596:131;8722:4;8596:131;:::i;:::-;8588:139;;8315:419;;;:::o;8740:175::-;8880:27;8876:1;8868:6;8864:14;8857:51;8740:175;:::o;8921:366::-;9063:3;9084:67;9148:2;9143:3;9084:67;:::i;:::-;9077:74;;9160:93;9249:3;9160:93;:::i;:::-;9278:2;9273:3;9269:12;9262:19;;8921:366;;;:::o;9293:419::-;9459:4;9497:2;9486:9;9482:18;9474:26;;9546:9;9540:4;9536:20;9532:1;9521:9;9517:17;9510:47;9574:131;9700:4;9574:131;:::i;:::-;9566:139;;9293:419;;;:::o;9718:227::-;9858:34;9854:1;9846:6;9842:14;9835:58;9927:10;9922:2;9914:6;9910:15;9903:35;9718:227;:::o;9951:366::-;10093:3;10114:67;10178:2;10173:3;10114:67;:::i;:::-;10107:74;;10190:93;10279:3;10190:93;:::i;:::-;10308:2;10303:3;10299:12;10292:19;;9951:366;;;:::o;10323:419::-;10489:4;10527:2;10516:9;10512:18;10504:26;;10576:9;10570:4;10566:20;10562:1;10551:9;10547:17;10540:47;10604:131;10730:4;10604:131;:::i;:::-;10596:139;;10323:419;;;:::o;10748:174::-;10888:26;10884:1;10876:6;10872:14;10865:50;10748:174;:::o;10928:366::-;11070:3;11091:67;11155:2;11150:3;11091:67;:::i;:::-;11084:74;;11167:93;11256:3;11167:93;:::i;:::-;11285:2;11280:3;11276:12;11269:19;;10928:366;;;:::o;11300:419::-;11466:4;11504:2;11493:9;11489:18;11481:26;;11553:9;11547:4;11543:20;11539:1;11528:9;11524:17;11517:47;11581:131;11707:4;11581:131;:::i;:::-;11573:139;;11300:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "773000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"chairperson()": "2550",
"delegate(address)": "infinite",
"giveRightToVote(address)": "29308",
"proposals(uint256)": "infinite",
"vote(uint256)": "infinite",
"voters(address)": "infinite",
"winnerName()": "infinite",
"winningProposal()": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 157,
"end": 4512,
"name": "MSTORE",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "DUP1",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "ISZERO",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 955,
"end": 1436,
"name": "JUMPI",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 955,
"end": 1436,
"name": "DUP1",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "REVERT",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 955,
"end": 1436,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "POP",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 955,
"end": 1436,
"name": "MLOAD",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "PUSHSIZE",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "CODESIZE",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "SUB",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "DUP1",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "PUSHSIZE",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "DUP4",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "CODECOPY",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "DUP2",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "DUP2",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "ADD",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 955,
"end": 1436,
"name": "MSTORE",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "DUP2",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "ADD",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "SWAP1",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 955,
"end": 1436,
"name": "SWAP2",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "SWAP1",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 955,
"end": 1436,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 955,
"end": 1436,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1023,
"end": 1033,
"name": "CALLER",
"source": 0
},
{
"begin": 1009,
"end": 1020,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1009,
"end": 1020,
"name": "DUP1",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1009,
"end": 1033,
"name": "EXP",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "DUP2",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "SLOAD",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "DUP2",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1009,
"end": 1033,
"name": "MUL",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "NOT",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "AND",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "SWAP1",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "DUP4",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1009,
"end": 1033,
"name": "AND",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "MUL",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "OR",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "SWAP1",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "SSTORE",
"source": 0
},
{
"begin": 1009,
"end": 1033,
"name": "POP",
"source": 0
},
{
"begin": 1072,
"end": 1073,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1043,
"end": 1049,
"name": "DUP1",
"source": 0
},
{
"begin": 1043,
"end": 1062,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1050,
"end": 1061,
"name": "DUP1",
"source": 0
},
{
"begin": 1050,
"end": 1061,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1050,
"end": 1061,
"name": "SWAP1",
"source": 0
},
{
"begin": 1050,
"end": 1061,
"name": "SLOAD",
"source": 0
},
{
"begin": 1050,
"end": 1061,
"name": "SWAP1",
"source": 0
},
{
"begin": 1050,
"end": 1061,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1050,
"end": 1061,
"name": "EXP",
"source": 0
},
{
"begin": 1050,
"end": 1061,
"name": "SWAP1",
"source": 0
},
{
"begin": 1050,
"end": 1061,
"name": "DIV",
"source": 0
},
{
"begin": 1050,
"end": 1061,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1050,
"end": 1061,
"name": "AND",
"source": 0
},
{
"begin": 1043,
"end": 1062,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1043,
"end": 1062,
"name": "AND",
"source": 0
},
{
"begin": 1043,
"end": 1062,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1043,
"end": 1062,
"name": "AND",
"source": 0
},
{
"begin": 1043,
"end": 1062,
"name": "DUP2",
"source": 0
},
{
"begin": 1043,
"end": 1062,
"name": "MSTORE",
"source": 0
},
{
"begin": 1043,
"end": 1062,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1043,
"end": 1062,
"name": "ADD",
"source": 0
},
{
"begin": 1043,
"end": 1062,
"name": "SWAP1",
"source": 0
},
{
"begin": 1043,
"end": 1062,
"name": "DUP2",
"source": 0
},
{
"begin": 1043,
"end": 1062,
"name": "MSTORE",
"source": 0
},
{
"begin": 1043,
"end": 1062,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1043,
"end": 1062,
"name": "ADD",
"source": 0
},
{
"begin": 1043,
"end": 1062,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1043,
"end": 1062,
"name": "KECCAK256",
"source": 0
},
{
"begin": 1043,
"end": 1069,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1043,
"end": 1069,
"name": "ADD",
"source": 0
},
{
"begin": 1043,
"end": 1073,
"name": "DUP2",
"source": 0
},
{
"begin": 1043,
"end": 1073,
"name": "SWAP1",
"source": 0
},
{
"begin": 1043,
"end": 1073,
"name": "SSTORE",
"source": 0
},
{
"begin": 1043,
"end": 1073,
"name": "POP",
"source": 0
},
{
"begin": 1089,
"end": 1095,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1084,
"end": 1430,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 1084,
"end": 1430,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1105,
"end": 1118,
"name": "DUP2",
"source": 0
},
{
"begin": 1105,
"end": 1125,
"name": "MLOAD",
"source": 0
},
{
"begin": 1101,
"end": 1102,
"name": "DUP2",
"source": 0
},
{
"begin": 1101,
"end": 1125,
"name": "LT",
"source": 0
},
{
"begin": 1084,
"end": 1430,
"name": "ISZERO",
"source": 0
},
{
"begin": 1084,
"end": 1430,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 1084,
"end": 1430,
"name": "JUMPI",
"source": 0
},
{
"begin": 1309,
"end": 1318,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 1324,
"end": 1418,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1324,
"end": 1418,
"name": "MLOAD",
"source": 0
},
{
"begin": 1324,
"end": 1418,
"name": "DUP1",
"source": 0
},
{
"begin": 1324,
"end": 1418,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1324,
"end": 1418,
"name": "ADD",
"source": 0
},
{
"begin": 1324,
"end": 1418,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1324,
"end": 1418,
"name": "MSTORE",
"source": 0
},
{
"begin": 1324,
"end": 1418,
"name": "DUP1",
"source": 0
},
{
"begin": 1357,
"end": 1370,
"name": "DUP5",
"source": 0
},
{
"begin": 1371,
"end": 1372,
"name": "DUP5",
"source": 0
},
{
"begin": 1357,
"end": 1373,
"name": "DUP2",
"source": 0
},
{
"begin": 1357,
"end": 1373,
"name": "MLOAD",
"source": 0
},
{
"begin": 1357,
"end": 1373,
"name": "DUP2",
"source": 0
},
{
"begin": 1357,
"end": 1373,
"name": "LT",
"source": 0
},
{
"begin": 1357,
"end": 1373,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 1357,
"end": 1373,
"name": "JUMPI",
"source": 0
},
{
"begin": 1357,
"end": 1373,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 1357,
"end": 1373,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1357,
"end": 1373,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 1357,
"end": 1373,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 1357,
"end": 1373,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1357,
"end": 1373,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 1357,
"end": 1373,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1357,
"end": 1373,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1357,
"end": 1373,
"name": "MUL",
"source": 0
},
{
"begin": 1357,
"end": 1373,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1357,
"end": 1373,
"name": "ADD",
"source": 0
},
{
"begin": 1357,
"end": 1373,
"name": "ADD",
"source": 0
},
{
"begin": 1357,
"end": 1373,
"name": "MLOAD",
"source": 0
},
{
"begin": 1324,
"end": 1418,
"name": "DUP2",
"source": 0
},
{
"begin": 1324,
"end": 1418,
"name": "MSTORE",
"source": 0
},
{
"begin": 1324,
"end": 1418,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1324,
"end": 1418,
"name": "ADD",
"source": 0
},
{
"begin": 1402,
"end": 1403,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1324,
"end": 1418,
"name": "DUP2",
"source": 0
},
{
"begin": 1324,
"end": 1418,
"name": "MSTORE",
"source": 0
},
{
"begin": 1324,
"end": 1418,
"name": "POP",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SWAP1",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "DUP1",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1309,
"end": 1419,
"name": "DUP2",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SLOAD",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "ADD",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "DUP1",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "DUP3",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SSTORE",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "DUP1",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SWAP2",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "POP",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "POP",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1309,
"end": 1419,
"name": "SWAP1",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SUB",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SWAP1",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1309,
"end": 1419,
"name": "MSTORE",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1309,
"end": 1419,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1309,
"end": 1419,
"name": "KECCAK256",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SWAP1",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 1309,
"end": 1419,
"name": "MUL",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "ADD",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1309,
"end": 1419,
"name": "SWAP1",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SWAP2",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SWAP1",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SWAP2",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SWAP1",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SWAP2",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "POP",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1309,
"end": 1419,
"name": "DUP3",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "ADD",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "MLOAD",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "DUP2",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1309,
"end": 1419,
"name": "ADD",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SSTORE",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1309,
"end": 1419,
"name": "DUP3",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "ADD",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "MLOAD",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "DUP2",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1309,
"end": 1419,
"name": "ADD",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "SSTORE",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "POP",
"source": 0
},
{
"begin": 1309,
"end": 1419,
"name": "POP",
"source": 0
},
{
"begin": 1127,
"end": 1130,
"name": "DUP1",
"source": 0
},
{
"begin": 1127,
"end": 1130,
"name": "DUP1",
"source": 0
},
{
"begin": 1127,
"end": 1130,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1127,
"end": 1130,
"name": "ADD",
"source": 0
},
{
"begin": 1127,
"end": 1130,
"name": "SWAP2",
"source": 0
},
{
"begin": 1127,
"end": 1130,
"name": "POP",
"source": 0
},
{
"begin": 1127,
"end": 1130,
"name": "POP",
"source": 0
},
{
"begin": 1084,
"end": 1430,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 1084,
"end": 1430,
"name": "JUMP",
"source": 0
},
{
"begin": 1084,
"end": 1430,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 1084,
"end": 1430,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1084,
"end": 1430,
"name": "POP",
"source": 0
},
{
"begin": 955,
"end": 1436,
"name": "POP",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 157,
"end": 4512,
"name": "JUMP",
"source": 0
},
{
"begin": 7,
"end": 82,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 7,
"end": 82,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 40,
"end": 46,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 73,
"end": 75,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 67,
"end": 76,
"name": "MLOAD",
"source": 1
},
{
"begin": 57,
"end": 76,
"name": "SWAP1",
"source": 1
},
{
"begin": 57,
"end": 76,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 82,
"name": "SWAP1",
"source": 1
},
{
"begin": 7,
"end": 82,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 88,
"end": 205,
"name": "tag",
"source": 1,
"value": "15"
},
{
"begin": 88,
"end": 205,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 197,
"end": 198,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 194,
"end": 195,
"name": "DUP1",
"source": 1
},
{
"begin": 187,
"end": 199,
"name": "REVERT",
"source": 1
},
{
"begin": 211,
"end": 328,
"name": "tag",
"source": 1,
"value": "16"
},
{
"begin": 211,
"end": 328,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 320,
"end": 321,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 317,
"end": 318,
"name": "DUP1",
"source": 1
},
{
"begin": 310,
"end": 322,
"name": "REVERT",
"source": 1
},
{
"begin": 334,
"end": 451,
"name": "tag",
"source": 1,
"value": "17"
},
{
"begin": 334,
"end": 451,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 443,
"end": 444,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 440,
"end": 441,
"name": "DUP1",
"source": 1
},
{
"begin": 433,
"end": 445,
"name": "REVERT",
"source": 1
},
{
"begin": 457,
"end": 559,
"name": "tag",
"source": 1,
"value": "18"
},
{
"begin": 457,
"end": 559,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 498,
"end": 504,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 549,
"end": 551,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 545,
"end": 552,
"name": "NOT",
"source": 1
},
{
"begin": 540,
"end": 542,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 533,
"end": 538,
"name": "DUP4",
"source": 1
},
{
"begin": 529,
"end": 543,
"name": "ADD",
"source": 1
},
{
"begin": 525,
"end": 553,
"name": "AND",
"source": 1
},
{
"begin": 515,
"end": 553,
"name": "SWAP1",
"source": 1
},
{
"begin": 515,
"end": 553,
"name": "POP",
"source": 1
},
{
"begin": 457,
"end": 559,
"name": "SWAP2",
"source": 1
},
{
"begin": 457,
"end": 559,
"name": "SWAP1",
"source": 1
},
{
"begin": 457,
"end": 559,
"name": "POP",
"source": 1
},
{
"begin": 457,
"end": 559,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 565,
"end": 745,
"name": "tag",
"source": 1,
"value": "19"
},
{
"begin": 565,
"end": 745,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 613,
"end": 690,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 610,
"end": 611,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 603,
"end": 691,
"name": "MSTORE",
"source": 1
},
{
"begin": 710,
"end": 714,
"name": "PUSH",
"source": 1,
"value": "41"
},
{
"begin": 707,
"end": 708,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 700,
"end": 715,
"name": "MSTORE",
"source": 1
},
{
"begin": 734,
"end": 738,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 731,
"end": 732,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 724,
"end": 739,
"name": "REVERT",
"source": 1
},
{
"begin": 751,
"end": 1032,
"name": "tag",
"source": 1,
"value": "20"
},
{
"begin": 751,
"end": 1032,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 834,
"end": 861,
"name": "PUSH [tag]",
"source": 1,
"value": "37"
},
{
"begin": 856,
"end": 860,
"name": "DUP3",
"source": 1
},
{
"begin": 834,
"end": 861,
"name": "PUSH [tag]",
"source": 1,
"value": "18"
},
{
"begin": 834,
"end": 861,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 834,
"end": 861,
"name": "tag",
"source": 1,
"value": "37"
},
{
"begin": 834,
"end": 861,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 826,
"end": 832,
"name": "DUP2",
"source": 1
},
{
"begin": 822,
"end": 862,
"name": "ADD",
"source": 1
},
{
"begin": 964,
"end": 970,
"name": "DUP2",
"source": 1
},
{
"begin": 952,
"end": 962,
"name": "DUP2",
"source": 1
},
{
"begin": 949,
"end": 971,
"name": "LT",
"source": 1
},
{
"begin": 928,
"end": 946,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 916,
"end": 926,
"name": "DUP3",
"source": 1
},
{
"begin": 913,
"end": 947,
"name": "GT",
"source": 1
},
{
"begin": 910,
"end": 972,
"name": "OR",
"source": 1
},
{
"begin": 907,
"end": 995,
"name": "ISZERO",
"source": 1
},
{
"begin": 907,
"end": 995,
"name": "PUSH [tag]",
"source": 1,
"value": "38"
},
{
"begin": 907,
"end": 995,
"name": "JUMPI",
"source": 1
},
{
"begin": 975,
"end": 993,
"name": "PUSH [tag]",
"source": 1,
"value": "39"
},
{
"begin": 975,
"end": 993,
"name": "PUSH [tag]",
"source": 1,
"value": "19"
},
{
"begin": 975,
"end": 993,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 975,
"end": 993,
"name": "tag",
"source": 1,
"value": "39"
},
{
"begin": 975,
"end": 993,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 907,
"end": 995,
"name": "tag",
"source": 1,
"value": "38"
},
{
"begin": 907,
"end": 995,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1015,
"end": 1025,
"name": "DUP1",
"source": 1
},
{
"begin": 1011,
"end": 1013,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1004,
"end": 1026,
"name": "MSTORE",
"source": 1
},
{
"begin": 794,
"end": 1032,
"name": "POP",
"source": 1
},
{
"begin": 751,
"end": 1032,
"name": "POP",
"source": 1
},
{
"begin": 751,
"end": 1032,
"name": "POP",
"source": 1
},
{
"begin": 751,
"end": 1032,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1038,
"end": 1167,
"name": "tag",
"source": 1,
"value": "21"
},
{
"begin": 1038,
"end": 1167,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1072,
"end": 1078,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1099,
"end": 1119,
"name": "PUSH [tag]",
"source": 1,
"value": "41"
},
{
"begin": 1099,
"end": 1119,
"name": "PUSH [tag]",
"source": 1,
"value": "14"
},
{
"begin": 1099,
"end": 1119,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1099,
"end": 1119,
"name": "tag",
"source": 1,
"value": "41"
},
{
"begin": 1099,
"end": 1119,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1089,
"end": 1119,
"name": "SWAP1",
"source": 1
},
{
"begin": 1089,
"end": 1119,
"name": "POP",
"source": 1
},
{
"begin": 1128,
"end": 1161,
"name": "PUSH [tag]",
"source": 1,
"value": "42"
},
{
"begin": 1156,
"end": 1160,
"name": "DUP3",
"source": 1
},
{
"begin": 1148,
"end": 1154,
"name": "DUP3",
"source": 1
},
{
"begin": 1128,
"end": 1161,
"name": "PUSH [tag]",
"source": 1,
"value": "20"
},
{
"begin": 1128,
"end": 1161,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1128,
"end": 1161,
"name": "tag",
"source": 1,
"value": "42"
},
{
"begin": 1128,
"end": 1161,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1038,
"end": 1167,
"name": "SWAP2",
"source": 1
},
{
"begin": 1038,
"end": 1167,
"name": "SWAP1",
"source": 1
},
{
"begin": 1038,
"end": 1167,
"name": "POP",
"source": 1
},
{
"begin": 1038,
"end": 1167,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1173,
"end": 1484,
"name": "tag",
"source": 1,
"value": "22"
},
{
"begin": 1173,
"end": 1484,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1250,
"end": 1254,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1340,
"end": 1358,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1332,
"end": 1338,
"name": "DUP3",
"source": 1
},
{
"begin": 1329,
"end": 1359,
"name": "GT",
"source": 1
},
{
"begin": 1326,
"end": 1382,
"name": "ISZERO",
"source": 1
},
{
"begin": 1326,
"end": 1382,
"name": "PUSH [tag]",
"source": 1,
"value": "44"
},
{
"begin": 1326,
"end": 1382,
"name": "JUMPI",
"source": 1
},
{
"begin": 1362,
"end": 1380,
"name": "PUSH [tag]",
"source": 1,
"value": "45"
},
{
"begin": 1362,
"end": 1380,
"name": "PUSH [tag]",
"source": 1,
"value": "19"
},
{
"begin": 1362,
"end": 1380,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1362,
"end": 1380,
"name": "tag",
"source": 1,
"value": "45"
},
{
"begin": 1362,
"end": 1380,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1326,
"end": 1382,
"name": "tag",
"source": 1,
"value": "44"
},
{
"begin": 1326,
"end": 1382,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1412,
"end": 1416,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1404,
"end": 1410,
"name": "DUP3",
"source": 1
},
{
"begin": 1400,
"end": 1417,
"name": "MUL",
"source": 1
},
{
"begin": 1392,
"end": 1417,
"name": "SWAP1",
"source": 1
},
{
"begin": 1392,
"end": 1417,
"name": "POP",
"source": 1
},
{
"begin": 1472,
"end": 1476,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1466,
"end": 1470,
"name": "DUP2",
"source": 1
},
{
"begin": 1462,
"end": 1477,
"name": "ADD",
"source": 1
},
{
"begin": 1454,
"end": 1477,
"name": "SWAP1",
"source": 1
},
{
"begin": 1454,
"end": 1477,
"name": "POP",
"source": 1
},
{
"begin": 1173,
"end": 1484,
"name": "SWAP2",
"source": 1
},
{
"begin": 1173,
"end": 1484,
"name": "SWAP1",
"source": 1
},
{
"begin": 1173,
"end": 1484,
"name": "POP",
"source": 1
},
{
"begin": 1173,
"end": 1484,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1490,
"end": 1607,
"name": "tag",
"source": 1,
"value": "23"
},
{
"begin": 1490,
"end": 1607,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1599,
"end": 1600,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1596,
"end": 1597,
"name": "DUP1",
"source": 1
},
{
"begin": 1589,
"end": 1601,
"name": "REVERT",
"source": 1
},
{
"begin": 1613,
"end": 1690,
"name": "tag",
"source": 1,
"value": "24"
},
{
"begin": 1613,
"end": 1690,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1650,
"end": 1657,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1679,
"end": 1684,
"name": "DUP2",
"source": 1
},
{
"begin": 1668,
"end": 1684,
"name": "SWAP1",
"source": 1
},
{
"begin": 1668,
"end": 1684,
"name": "POP",
"source": 1
},
{
"begin": 1613,
"end": 1690,
"name": "SWAP2",
"source": 1
},
{
"begin": 1613,
"end": 1690,
"name": "SWAP1",
"source": 1
},
{
"begin": 1613,
"end": 1690,
"name": "POP",
"source": 1
},
{
"begin": 1613,
"end": 1690,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1696,
"end": 1818,
"name": "tag",
"source": 1,
"value": "25"
},
{
"begin": 1696,
"end": 1818,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1769,
"end": 1793,
"name": "PUSH [tag]",
"source": 1,
"value": "49"
},
{
"begin": 1787,
"end": 1792,
"name": "DUP2",
"source": 1
},
{
"begin": 1769,
"end": 1793,
"name": "PUSH [tag]",
"source": 1,
"value": "24"
},
{
"begin": 1769,
"end": 1793,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1769,
"end": 1793,
"name": "tag",
"source": 1,
"value": "49"
},
{
"begin": 1769,
"end": 1793,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1762,
"end": 1767,
"name": "DUP2",
"source": 1
},
{
"begin": 1759,
"end": 1794,
"name": "EQ",
"source": 1
},
{
"begin": 1749,
"end": 1812,
"name": "PUSH [tag]",
"source": 1,
"value": "50"
},
{
"begin": 1749,
"end": 1812,
"name": "JUMPI",
"source": 1
},
{
"begin": 1808,
"end": 1809,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1805,
"end": 1806,
"name": "DUP1",
"source": 1
},
{
"begin": 1798,
"end": 1810,
"name": "REVERT",
"source": 1
},
{
"begin": 1749,
"end": 1812,
"name": "tag",
"source": 1,
"value": "50"
},
{
"begin": 1749,
"end": 1812,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1696,
"end": 1818,
"name": "POP",
"source": 1
},
{
"begin": 1696,
"end": 1818,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1824,
"end": 1967,
"name": "tag",
"source": 1,
"value": "26"
},
{
"begin": 1824,
"end": 1967,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1881,
"end": 1886,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1912,
"end": 1918,
"name": "DUP2",
"source": 1
},
{
"begin": 1906,
"end": 1919,
"name": "MLOAD",
"source": 1
},
{
"begin": 1897,
"end": 1919,
"name": "SWAP1",
"source": 1
},
{
"begin": 1897,
"end": 1919,
"name": "POP",
"source": 1
},
{
"begin": 1928,
"end": 1961,
"name": "PUSH [tag]",
"source": 1,
"value": "52"
},
{
"begin": 1955,
"end": 1960,
"name": "DUP2",
"source": 1
},
{
"begin": 1928,
"end": 1961,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 1928,
"end": 1961,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1928,
"end": 1961,
"name": "tag",
"source": 1,
"value": "52"
},
{
"begin": 1928,
"end": 1961,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1824,
"end": 1967,
"name": "SWAP3",
"source": 1
},
{
"begin": 1824,
"end": 1967,
"name": "SWAP2",
"source": 1
},
{
"begin": 1824,
"end": 1967,
"name": "POP",
"source": 1
},
{
"begin": 1824,
"end": 1967,
"name": "POP",
"source": 1
},
{
"begin": 1824,
"end": 1967,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1990,
"end": 2722,
"name": "tag",
"source": 1,
"value": "27"
},
{
"begin": 1990,
"end": 2722,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2097,
"end": 2102,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2122,
"end": 2203,
"name": "PUSH [tag]",
"source": 1,
"value": "54"
},
{
"begin": 2138,
"end": 2202,
"name": "PUSH [tag]",
"source": 1,
"value": "55"
},
{
"begin": 2195,
"end": 2201,
"name": "DUP5",
"source": 1
},
{
"begin": 2138,
"end": 2202,
"name": "PUSH [tag]",
"source": 1,
"value": "22"
},
{
"begin": 2138,
"end": 2202,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2138,
"end": 2202,
"name": "tag",
"source": 1,
"value": "55"
},
{
"begin": 2138,
"end": 2202,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2122,
"end": 2203,
"name": "PUSH [tag]",
"source": 1,
"value": "21"
},
{
"begin": 2122,
"end": 2203,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2122,
"end": 2203,
"name": "tag",
"source": 1,
"value": "54"
},
{
"begin": 2122,
"end": 2203,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2113,
"end": 2203,
"name": "SWAP1",
"source": 1
},
{
"begin": 2113,
"end": 2203,
"name": "POP",
"source": 1
},
{
"begin": 2223,
"end": 2228,
"name": "DUP1",
"source": 1
},
{
"begin": 2252,
"end": 2258,
"name": "DUP4",
"source": 1
},
{
"begin": 2245,
"end": 2250,
"name": "DUP3",
"source": 1
},
{
"begin": 2238,
"end": 2259,
"name": "MSTORE",
"source": 1
},
{
"begin": 2286,
"end": 2290,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2279,
"end": 2284,
"name": "DUP3",
"source": 1
},
{
"begin": 2275,
"end": 2291,
"name": "ADD",
"source": 1
},
{
"begin": 2268,
"end": 2291,
"name": "SWAP1",
"source": 1
},
{
"begin": 2268,
"end": 2291,
"name": "POP",
"source": 1
},
{
"begin": 2339,
"end": 2343,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2331,
"end": 2337,
"name": "DUP5",
"source": 1
},
{
"begin": 2327,
"end": 2344,
"name": "MUL",
"source": 1
},
{
"begin": 2319,
"end": 2325,
"name": "DUP4",
"source": 1
},
{
"begin": 2315,
"end": 2345,
"name": "ADD",
"source": 1
},
{
"begin": 2368,
"end": 2371,
"name": "DUP6",
"source": 1
},
{
"begin": 2360,
"end": 2366,
"name": "DUP2",
"source": 1
},
{
"begin": 2357,
"end": 2372,
"name": "GT",
"source": 1
},
{
"begin": 2354,
"end": 2476,
"name": "ISZERO",
"source": 1
},
{
"begin": 2354,
"end": 2476,
"name": "PUSH [tag]",
"source": 1,
"value": "56"
},
{
"begin": 2354,
"end": 2476,
"name": "JUMPI",
"source": 1
},
{
"begin": 2387,
"end": 2466,
"name": "PUSH [tag]",
"source": 1,
"value": "57"
},
{
"begin": 2387,
"end": 2466,
"name": "PUSH [tag]",
"source": 1,
"value": "23"
},
{
"begin": 2387,
"end": 2466,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2387,
"end": 2466,
"name": "tag",
"source": 1,
"value": "57"
},
{
"begin": 2387,
"end": 2466,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2354,
"end": 2476,
"name": "tag",
"source": 1,
"value": "56"
},
{
"begin": 2354,
"end": 2476,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2502,
"end": 2508,
"name": "DUP4",
"source": 1
},
{
"begin": 2485,
"end": 2716,
"name": "tag",
"source": 1,
"value": "58"
},
{
"begin": 2485,
"end": 2716,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2519,
"end": 2525,
"name": "DUP2",
"source": 1
},
{
"begin": 2514,
"end": 2517,
"name": "DUP2",
"source": 1
},
{
"begin": 2511,
"end": 2526,
"name": "LT",
"source": 1
},
{
"begin": 2485,
"end": 2716,
"name": "ISZERO",
"source": 1
},
{
"begin": 2485,
"end": 2716,
"name": "PUSH [tag]",
"source": 1,
"value": "60"
},
{
"begin": 2485,
"end": 2716,
"name": "JUMPI",
"source": 1
},
{
"begin": 2594,
"end": 2597,
"name": "DUP1",
"source": 1
},
{
"begin": 2623,
"end": 2671,
"name": "PUSH [tag]",
"source": 1,
"value": "61"
},
{
"begin": 2667,
"end": 2670,
"name": "DUP9",
"source": 1
},
{
"begin": 2655,
"end": 2665,
"name": "DUP3",
"source": 1
},
{
"begin": 2623,
"end": 2671,
"name": "PUSH [tag]",
"source": 1,
"value": "26"
},
{
"begin": 2623,
"end": 2671,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2623,
"end": 2671,
"name": "tag",
"source": 1,
"value": "61"
},
{
"begin": 2623,
"end": 2671,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2618,
"end": 2621,
"name": "DUP5",
"source": 1
},
{
"begin": 2611,
"end": 2672,
"name": "MSTORE",
"source": 1
},
{
"begin": 2701,
"end": 2705,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2696,
"end": 2699,
"name": "DUP5",
"source": 1
},
{
"begin": 2692,
"end": 2706,
"name": "ADD",
"source": 1
},
{
"begin": 2685,
"end": 2706,
"name": "SWAP4",
"source": 1
},
{
"begin": 2685,
"end": 2706,
"name": "POP",
"source": 1
},
{
"begin": 2561,
"end": 2716,
"name": "POP",
"source": 1
},
{
"begin": 2545,
"end": 2549,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2540,
"end": 2543,
"name": "DUP2",
"source": 1
},
{
"begin": 2536,
"end": 2550,
"name": "ADD",
"source": 1
},
{
"begin": 2529,
"end": 2550,
"name": "SWAP1",
"source": 1
},
{
"begin": 2529,
"end": 2550,
"name": "POP",
"source": 1
},
{
"begin": 2485,
"end": 2716,
"name": "PUSH [tag]",
"source": 1,
"value": "58"
},
{
"begin": 2485,
"end": 2716,
"name": "JUMP",
"source": 1
},
{
"begin": 2485,
"end": 2716,
"name": "tag",
"source": 1,
"value": "60"
},
{
"begin": 2485,
"end": 2716,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2489,
"end": 2510,
"name": "POP",
"source": 1
},
{
"begin": 2103,
"end": 2722,
"name": "POP",
"source": 1
},
{
"begin": 2103,
"end": 2722,
"name": "POP",
"source": 1
},
{
"begin": 1990,
"end": 2722,
"name": "SWAP4",
"source": 1
},
{
"begin": 1990,
"end": 2722,
"name": "SWAP3",
"source": 1
},
{
"begin": 1990,
"end": 2722,
"name": "POP",
"source": 1
},
{
"begin": 1990,
"end": 2722,
"name": "POP",
"source": 1
},
{
"begin": 1990,
"end": 2722,
"name": "POP",
"source": 1
},
{
"begin": 1990,
"end": 2722,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2745,
"end": 3130,
"name": "tag",
"source": 1,
"value": "28"
},
{
"begin": 2745,
"end": 3130,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2827,
"end": 2832,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2876,
"end": 2879,
"name": "DUP3",
"source": 1
},
{
"begin": 2869,
"end": 2873,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 2861,
"end": 2867,
"name": "DUP4",
"source": 1
},
{
"begin": 2857,
"end": 2874,
"name": "ADD",
"source": 1
},
{
"begin": 2853,
"end": 2880,
"name": "SLT",
"source": 1
},
{
"begin": 2843,
"end": 2965,
"name": "PUSH [tag]",
"source": 1,
"value": "63"
},
{
"begin": 2843,
"end": 2965,
"name": "JUMPI",
"source": 1
},
{
"begin": 2884,
"end": 2963,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 2884,
"end": 2963,
"name": "PUSH [tag]",
"source": 1,
"value": "17"
},
{
"begin": 2884,
"end": 2963,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2884,
"end": 2963,
"name": "tag",
"source": 1,
"value": "64"
},
{
"begin": 2884,
"end": 2963,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2843,
"end": 2965,
"name": "tag",
"source": 1,
"value": "63"
},
{
"begin": 2843,
"end": 2965,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2994,
"end": 3000,
"name": "DUP2",
"source": 1
},
{
"begin": 2988,
"end": 3001,
"name": "MLOAD",
"source": 1
},
{
"begin": 3019,
"end": 3124,
"name": "PUSH [tag]",
"source": 1,
"value": "65"
},
{
"begin": 3120,
"end": 3123,
"name": "DUP5",
"source": 1
},
{
"begin": 3112,
"end": 3118,
"name": "DUP3",
"source": 1
},
{
"begin": 3105,
"end": 3109,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 3097,
"end": 3103,
"name": "DUP7",
"source": 1
},
{
"begin": 3093,
"end": 3110,
"name": "ADD",
"source": 1
},
{
"begin": 3019,
"end": 3124,
"name": "PUSH [tag]",
"source": 1,
"value": "27"
},
{
"begin": 3019,
"end": 3124,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3019,
"end": 3124,
"name": "tag",
"source": 1,
"value": "65"
},
{
"begin": 3019,
"end": 3124,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3010,
"end": 3124,
"name": "SWAP2",
"source": 1
},
{
"begin": 3010,
"end": 3124,
"name": "POP",
"source": 1
},
{
"begin": 2833,
"end": 3130,
"name": "POP",
"source": 1
},
{
"begin": 2745,
"end": 3130,
"name": "SWAP3",
"source": 1
},
{
"begin": 2745,
"end": 3130,
"name": "SWAP2",
"source": 1
},
{
"begin": 2745,
"end": 3130,
"name": "POP",
"source": 1
},
{
"begin": 2745,
"end": 3130,
"name": "POP",
"source": 1
},
{
"begin": 2745,
"end": 3130,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 3136,
"end": 3690,
"name": "tag",
"source": 1,
"value": "3"
},
{
"begin": 3136,
"end": 3690,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3231,
"end": 3237,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3280,
"end": 3282,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 3268,
"end": 3277,
"name": "DUP3",
"source": 1
},
{
"begin": 3259,
"end": 3266,
"name": "DUP5",
"source": 1
},
{
"begin": 3255,
"end": 3278,
"name": "SUB",
"source": 1
},
{
"begin": 3251,
"end": 3283,
"name": "SLT",
"source": 1
},
{
"begin": 3248,
"end": 3367,
"name": "ISZERO",
"source": 1
},
{
"begin": 3248,
"end": 3367,
"name": "PUSH [tag]",
"source": 1,
"value": "67"
},
{
"begin": 3248,
"end": 3367,
"name": "JUMPI",
"source": 1
},
{
"begin": 3286,
"end": 3365,
"name": "PUSH [tag]",
"source": 1,
"value": "68"
},
{
"begin": 3286,
"end": 3365,
"name": "PUSH [tag]",
"source": 1,
"value": "15"
},
{
"begin": 3286,
"end": 3365,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3286,
"end": 3365,
"name": "tag",
"source": 1,
"value": "68"
},
{
"begin": 3286,
"end": 3365,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3248,
"end": 3367,
"name": "tag",
"source": 1,
"value": "67"
},
{
"begin": 3248,
"end": 3367,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3427,
"end": 3428,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3416,
"end": 3425,
"name": "DUP3",
"source": 1
},
{
"begin": 3412,
"end": 3429,
"name": "ADD",
"source": 1
},
{
"begin": 3406,
"end": 3430,
"name": "MLOAD",
"source": 1
},
{
"begin": 3457,
"end": 3475,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 3449,
"end": 3455,
"name": "DUP2",
"source": 1
},
{
"begin": 3446,
"end": 3476,
"name": "GT",
"source": 1
},
{
"begin": 3443,
"end": 3560,
"name": "ISZERO",
"source": 1
},
{
"begin": 3443,
"end": 3560,
"name": "PUSH [tag]",
"source": 1,
"value": "69"
},
{
"begin": 3443,
"end": 3560,
"name": "JUMPI",
"source": 1
},
{
"begin": 3479,
"end": 3558,
"name": "PUSH [tag]",
"source": 1,
"value": "70"
},
{
"begin": 3479,
"end": 3558,
"name": "PUSH [tag]",
"source": 1,
"value": "16"
},
{
"begin": 3479,
"end": 3558,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3479,
"end": 3558,
"name": "tag",
"source": 1,
"value": "70"
},
{
"begin": 3479,
"end": 3558,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3443,
"end": 3560,
"name": "tag",
"source": 1,
"value": "69"
},
{
"begin": 3443,
"end": 3560,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3584,
"end": 3673,
"name": "PUSH [tag]",
"source": 1,
"value": "71"
},
{
"begin": 3665,
"end": 3672,
"name": "DUP5",
"source": 1
},
{
"begin": 3656,
"end": 3662,
"name": "DUP3",
"source": 1
},
{
"begin": 3645,
"end": 3654,
"name": "DUP6",
"source": 1
},
{
"begin": 3641,
"end": 3663,
"name": "ADD",
"source": 1
},
{
"begin": 3584,
"end": 3673,
"name": "PUSH [tag]",
"source": 1,
"value": "28"
},
{
"begin": 3584,
"end": 3673,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3584,
"end": 3673,
"name": "tag",
"source": 1,
"value": "71"
},
{
"begin": 3584,
"end": 3673,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3574,
"end": 3673,
"name": "SWAP2",
"source": 1
},
{
"begin": 3574,
"end": 3673,
"name": "POP",
"source": 1
},
{
"begin": 3377,
"end": 3683,
"name": "POP",
"source": 1
},
{
"begin": 3136,
"end": 3690,
"name": "SWAP3",
"source": 1
},
{
"begin": 3136,
"end": 3690,
"name": "SWAP2",
"source": 1
},
{
"begin": 3136,
"end": 3690,
"name": "POP",
"source": 1
},
{
"begin": 3136,
"end": 3690,
"name": "POP",
"source": 1
},
{
"begin": 3136,
"end": 3690,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 3696,
"end": 3876,
"name": "tag",
"source": 1,
"value": "11"
},
{
"begin": 3696,
"end": 3876,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3744,
"end": 3821,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 3741,
"end": 3742,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3734,
"end": 3822,
"name": "MSTORE",
"source": 1
},
{
"begin": 3841,
"end": 3845,
"name": "PUSH",
"source": 1,
"value": "32"
},
{
"begin": 3838,
"end": 3839,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 3831,
"end": 3846,
"name": "MSTORE",
"source": 1
},
{
"begin": 3865,
"end": 3869,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 3862,
"end": 3863,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3855,
"end": 3870,
"name": "REVERT",
"source": 1
},
{
"begin": 157,
"end": 4512,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 157,
"end": 4512,
"name": "DUP1",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 157,
"end": 4512,
"name": "CODECOPY",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 157,
"end": 4512,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a264697066735822122086f5ec40d9f732c754b2d2dfc6a33ac4942fdaebde9a9f7bc3151a9c002bd48a64736f6c63430008190033",
".code": [
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 157,
"end": 4512,
"name": "MSTORE",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "DUP1",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "ISZERO",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPI",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 157,
"end": 4512,
"name": "DUP1",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "REVERT",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "POP",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 157,
"end": 4512,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "LT",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPI",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 157,
"end": 4512,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 157,
"end": 4512,
"name": "SHR",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "DUP1",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "609FF1BD"
},
{
"begin": 157,
"end": 4512,
"name": "GT",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPI",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "DUP1",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "609FF1BD"
},
{
"begin": 157,
"end": 4512,
"name": "EQ",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPI",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "DUP1",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "9E7B8D61"
},
{
"begin": 157,
"end": 4512,
"name": "EQ",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPI",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "DUP1",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "A3EC138D"
},
{
"begin": 157,
"end": 4512,
"name": "EQ",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPI",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "DUP1",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "E2BA53F0"
},
{
"begin": 157,
"end": 4512,
"name": "EQ",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPI",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 157,
"end": 4512,
"name": "JUMP",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "DUP1",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "121B93F"
},
{
"begin": 157,
"end": 4512,
"name": "EQ",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPI",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "DUP1",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "13CF08B"
},
{
"begin": 157,
"end": 4512,
"name": "EQ",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPI",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "DUP1",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "2E4176CF"
},
{
"begin": 157,
"end": 4512,
"name": "EQ",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPI",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "DUP1",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "5C19A95C"
},
{
"begin": 157,
"end": 4512,
"name": "EQ",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPI",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 157,
"end": 4512,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 157,
"end": 4512,
"name": "DUP1",
"source": 0
},
{
"begin": 157,
"end": 4512,
"name": "REVERT",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 3166,
"end": 3624,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 3166,
"end": 3624,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 3166,
"end": 3624,
"name": "DUP1",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "SUB",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "DUP2",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "ADD",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "SWAP1",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 3166,
"end": 3624,
"name": "SWAP2",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "SWAP1",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 3166,
"end": 3624,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 3166,
"end": 3624,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 3166,
"end": 3624,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 3166,
"end": 3624,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3166,
"end": 3624,
"name": "STOP",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 791,
"end": 818,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 791,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 791,
"end": 818,
"name": "DUP1",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "SUB",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "DUP2",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "ADD",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "SWAP1",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 791,
"end": 818,
"name": "SWAP2",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "SWAP1",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 791,
"end": 818,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 791,
"end": 818,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 791,
"end": 818,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 791,
"end": 818,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 791,
"end": 818,
"name": "MLOAD",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 791,
"end": 818,
"name": "SWAP3",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "SWAP2",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "SWAP1",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 791,
"end": 818,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 791,
"end": 818,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 791,
"end": 818,
"name": "MLOAD",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "DUP1",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "SWAP2",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "SUB",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "SWAP1",
"source": 0
},
{
"begin": 791,
"end": 818,
"name": "RETURN",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 712,
"end": 738,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 712,
"end": 738,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 712,
"end": 738,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 712,
"end": 738,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 712,
"end": 738,
"name": "MLOAD",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 712,
"end": 738,
"name": "SWAP2",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "SWAP1",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 712,
"end": 738,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 712,
"end": 738,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 712,
"end": 738,
"name": "MLOAD",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "DUP1",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "SWAP2",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "SUB",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "SWAP1",
"source": 0
},
{
"begin": 712,
"end": 738,
"name": "RETURN",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 2071,
"end": 2978,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 2071,
"end": 2978,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 2071,
"end": 2978,
"name": "DUP1",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "SUB",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "DUP2",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "ADD",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "SWAP1",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 2071,
"end": 2978,
"name": "SWAP2",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "SWAP1",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 2071,
"end": 2978,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 2071,
"end": 2978,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 2071,
"end": 2978,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 2071,
"end": 2978,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2071,
"end": 2978,
"name": "STOP",
"source": 0
},
{
"begin": 3810,
"end": 4175,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 3810,
"end": 4175,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3810,
"end": 4175,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 3810,
"end": 4175,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin
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