Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save webbravo/9ae49bba5946c36685e85aa5ba7743bc to your computer and use it in GitHub Desktop.
Save webbravo/9ae49bba5946c36685e85aa5ba7743bc 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=undefined&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing 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.5.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
/**
* @dev ERC721 token with storage based token URI management.
*/
abstract contract ERC721URIStorage is ERC721 {
using Strings for uint256;
// Optional mapping for token URIs
mapping(uint256 => string) private _tokenURIs;
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");
string memory _tokenURI = _tokenURIs[tokenId];
string memory base = _baseURI();
// If there is no base URI, return the token URI.
if (bytes(base).length == 0) {
return _tokenURI;
}
// If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
if (bytes(_tokenURI).length > 0) {
return string(abi.encodePacked(base, _tokenURI));
}
return super.tokenURI(tokenId);
}
/**
* @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
_tokenURIs[tokenId] = _tokenURI;
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual override {
super._burn(tokenId);
if (bytes(_tokenURIs[tokenId]).length != 0) {
delete _tokenURIs[tokenId];
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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
* ====
*
* [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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(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) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(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) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason 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 {
// 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
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = _efficientHash(computedHash, proofElement);
} else {
// Hash(current element of the proof + current computed hash)
computedHash = _efficientHash(proofElement, computedHash);
}
}
return computedHash;
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
# BUILDING A SMALL NTF PROJECT
// this line is added to create a gist. Empty file is not allowed.
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name",
"type": "string"
},
{
"internalType": "string",
"name": "symbol",
"type": "string"
},
{
"internalType": "bytes32",
"name": "merkleroot",
"type": "bytes32"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes32[]",
"name": "proof",
"type": "bytes32[]"
}
],
"name": "redeem",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "root",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"MerkelTree.sol": "ERC721MerkleDrop"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0x11b84bb56dc112a6590bfe3e0efa118aa1b5891132342200d04c4ef544cb93de",
"license": "MIT",
"urls": [
"bzz-raw://cbc4803332d45dff58f865ed21c942fe4668e47cc7196c8dfe84102040b1d70f",
"dweb:/ipfs/QmXhZLsocznRWCSyhjo3vo66Z1VsuuNptAVb6ASPYsWtGx"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0x516a22876c1fab47f49b1bc22b4614491cd05338af8bd2e7b382da090a079990",
"license": "MIT",
"urls": [
"bzz-raw://a439187f7126d31add4557f82d8aed6be0162007cd7182c48fd934dbab8f3849",
"dweb:/ipfs/QmRPLguRFvrRJS7r6F1bcLvsx6q1VrgjEpZafyeL8D7xZh"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xd5fa74b4fb323776fa4a8158800fec9d5ac0fec0d6dd046dd93798632ada265f",
"license": "MIT",
"urls": [
"bzz-raw://33017a30a99cc5411a9e376622c31fc4a55cfc6a335e2f57f00cbf24a817ff3f",
"dweb:/ipfs/QmWNQtWTPhA7Lo8nbxbc8KFMvZwbFYB8fSeEQ3vuapSV4a"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9",
"license": "MIT",
"urls": [
"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146",
"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf"
]
},
"@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0x2ccf9d2313a313d41a791505f2b5abfdc62191b5d4334f7f7a82691c088a1c87",
"license": "MIT",
"urls": [
"bzz-raw://b3a57d0854b2fdce6ebff933a48dca2445643d1eccfc27f00292e937f26c6a58",
"dweb:/ipfs/QmW45rZooS9TqR4YXUbjRbtf2Bpb5ouSarBvfW1LdGprvV"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45",
"license": "MIT",
"urls": [
"bzz-raw://8179c356adb19e70d6b31a1eedc8c5c7f0c00e669e2540f4099e3844c6074d30",
"dweb:/ipfs/QmWFbivarEobbqhS1go64ootVuHfVohBseerYy9FTEd1W2"
]
},
"@openzeppelin/contracts/utils/cryptography/MerkleProof.sol": {
"keccak256": "0xea64fbaccbf9d8c235cf6838240ddcebb97f9fc383660289e9dff32e4fb85f7a",
"license": "MIT",
"urls": [
"bzz-raw://1e8a1dd0eac2fa865dc9a052bee01eec31677d7bc01b5b5aa825d820f3f1b343",
"dweb:/ipfs/QmR8WuNeoAvJhnL7msQfQwaZEkwVnNyNDUNBL3Y616ohYa"
]
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b",
"license": "MIT",
"urls": [
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d",
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43"
]
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
},
"MerkelTree.sol": {
"keccak256": "0xae02b203f0753b62c98a96731dc96cb9526227b22c975f418a8bbf998e49576a",
"license": "MIT",
"urls": [
"bzz-raw://ae787dc643f01ef9a94b85ddaee419c3090035782da3f0f0509c6cc29477a3ab",
"dweb:/ipfs/QmTR9VmQBdEPfbSvM4t9GvUkXRVZdiyALuFfvajRvmNaJa"
]
}
},
"version": 1
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_1824": {
"entryPoint": null,
"id": 1824,
"parameterSlots": 4,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr_fromMemory": {
"entryPoint": 412,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address_fromMemory": {
"entryPoint": 487,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr_fromMemory": {
"entryPoint": 510,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint128_fromMemory": {
"entryPoint": 561,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_uint128t_string_memory_ptrt_string_memory_ptr_fromMemory": {
"entryPoint": 584,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"allocate_memory": {
"entryPoint": 760,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 791,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 801,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 855,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint128": {
"entryPoint": 875,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 903,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 935,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 989,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 1043,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1097,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1144,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 1191,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 1196,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 1201,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1206,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 1211,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_address": {
"entryPoint": 1228,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint128": {
"entryPoint": 1254,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5318:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "102:326:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "112:75:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "179:6:12"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "137:41:12"
},
"nodeType": "YulFunctionCall",
"src": "137:49:12"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "121:15:12"
},
"nodeType": "YulFunctionCall",
"src": "121:66:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "112:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "203:5:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "210:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "196:6:12"
},
"nodeType": "YulFunctionCall",
"src": "196:21:12"
},
"nodeType": "YulExpressionStatement",
"src": "196:21:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "226:27:12",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "241:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "248:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "237:3:12"
},
"nodeType": "YulFunctionCall",
"src": "237:16:12"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "230:3:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "291:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "293:77:12"
},
"nodeType": "YulFunctionCall",
"src": "293:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "293:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "272:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "277:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "268:3:12"
},
"nodeType": "YulFunctionCall",
"src": "268:16:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "286:3:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "265:2:12"
},
"nodeType": "YulFunctionCall",
"src": "265:25:12"
},
"nodeType": "YulIf",
"src": "262:112:12"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "405:3:12"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "410:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "415:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "383:21:12"
},
"nodeType": "YulFunctionCall",
"src": "383:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "383:39:12"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "75:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "80:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "88:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "96:5:12",
"type": ""
}
],
"src": "7:421:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "497:80:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "507:22:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "522:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "516:5:12"
},
"nodeType": "YulFunctionCall",
"src": "516:13:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "507:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "565:5:12"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "538:26:12"
},
"nodeType": "YulFunctionCall",
"src": "538:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "538:33:12"
}
]
},
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "475:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "483:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "491:5:12",
"type": ""
}
],
"src": "434:143:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "670:282:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "719:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "721:77:12"
},
"nodeType": "YulFunctionCall",
"src": "721:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "721:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "698:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "706:4:12",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "694:3:12"
},
"nodeType": "YulFunctionCall",
"src": "694:17:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "713:3:12"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "690:3:12"
},
"nodeType": "YulFunctionCall",
"src": "690:27:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "683:6:12"
},
"nodeType": "YulFunctionCall",
"src": "683:35:12"
},
"nodeType": "YulIf",
"src": "680:122:12"
},
{
"nodeType": "YulVariableDeclaration",
"src": "811:27:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "831:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "825:5:12"
},
"nodeType": "YulFunctionCall",
"src": "825:13:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "815:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "847:99:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "919:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "927:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "915:3:12"
},
"nodeType": "YulFunctionCall",
"src": "915:17:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "934:6:12"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "942:3:12"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "856:58:12"
},
"nodeType": "YulFunctionCall",
"src": "856:90:12"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "847:5:12"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "648:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "656:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "664:5:12",
"type": ""
}
],
"src": "597:355:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1021:80:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1031:22:12",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1046:6:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1040:5:12"
},
"nodeType": "YulFunctionCall",
"src": "1040:13:12"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1031:5:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1089:5:12"
}
],
"functionName": {
"name": "validator_revert_t_uint128",
"nodeType": "YulIdentifier",
"src": "1062:26:12"
},
"nodeType": "YulFunctionCall",
"src": "1062:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "1062:33:12"
}
]
},
"name": "abi_decode_t_uint128_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "999:6:12",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1007:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1015:5:12",
"type": ""
}
],
"src": "958:143:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1255:1018:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1302:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1304:77:12"
},
"nodeType": "YulFunctionCall",
"src": "1304:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "1304:79:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1276:7:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1285:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1272:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1272:23:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1297:3:12",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1268:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1268:33:12"
},
"nodeType": "YulIf",
"src": "1265:120:12"
},
{
"nodeType": "YulBlock",
"src": "1395:128:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1410:15:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1424:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1414:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1439:74:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1485:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1496:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1481:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1481:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1505:7:12"
}
],
"functionName": {
"name": "abi_decode_t_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "1449:31:12"
},
"nodeType": "YulFunctionCall",
"src": "1449:64:12"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1439:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1533:129:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1548:16:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1562:2:12",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1552:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1578:74:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1624:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1635:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1620:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1620:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1644:7:12"
}
],
"functionName": {
"name": "abi_decode_t_uint128_fromMemory",
"nodeType": "YulIdentifier",
"src": "1588:31:12"
},
"nodeType": "YulFunctionCall",
"src": "1588:64:12"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1578:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1672:292:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1687:39:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1711:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1722:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1707:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1707:18:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1701:5:12"
},
"nodeType": "YulFunctionCall",
"src": "1701:25:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1691:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1773:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "1775:77:12"
},
"nodeType": "YulFunctionCall",
"src": "1775:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "1775:79:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1745:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1753:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1742:2:12"
},
"nodeType": "YulFunctionCall",
"src": "1742:30:12"
},
"nodeType": "YulIf",
"src": "1739:117:12"
},
{
"nodeType": "YulAssignment",
"src": "1870:84:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1926:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1937:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1922:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1922:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1946:7:12"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "1880:41:12"
},
"nodeType": "YulFunctionCall",
"src": "1880:74:12"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1870:6:12"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1974:292:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1989:39:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2013:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2024:2:12",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2009:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2009:18:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2003:5:12"
},
"nodeType": "YulFunctionCall",
"src": "2003:25:12"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1993:6:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2075:83:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "2077:77:12"
},
"nodeType": "YulFunctionCall",
"src": "2077:79:12"
},
"nodeType": "YulExpressionStatement",
"src": "2077:79:12"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2047:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2055:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2044:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2044:30:12"
},
"nodeType": "YulIf",
"src": "2041:117:12"
},
{
"nodeType": "YulAssignment",
"src": "2172:84:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2228:9:12"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2239:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2224:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2224:22:12"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2248:7:12"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr_fromMemory",
"nodeType": "YulIdentifier",
"src": "2182:41:12"
},
"nodeType": "YulFunctionCall",
"src": "2182:74:12"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2172:6:12"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint128t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1201:9:12",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1212:7:12",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1224:6:12",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1232:6:12",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1240:6:12",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1248:6:12",
"type": ""
}
],
"src": "1107:1166:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2320:88:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2330:30:12",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "2340:18:12"
},
"nodeType": "YulFunctionCall",
"src": "2340:20:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2330:6:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2389:6:12"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2397:4:12"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "2369:19:12"
},
"nodeType": "YulFunctionCall",
"src": "2369:33:12"
},
"nodeType": "YulExpressionStatement",
"src": "2369:33:12"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2304:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2313:6:12",
"type": ""
}
],
"src": "2279:129:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2454:35:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2464:19:12",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2480:2:12",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2474:5:12"
},
"nodeType": "YulFunctionCall",
"src": "2474:9:12"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2464:6:12"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2447:6:12",
"type": ""
}
],
"src": "2414:75:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2562:241:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2667:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "2669:16:12"
},
"nodeType": "YulFunctionCall",
"src": "2669:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "2669:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2639:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2647:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2636:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2636:30:12"
},
"nodeType": "YulIf",
"src": "2633:56:12"
},
{
"nodeType": "YulAssignment",
"src": "2699:37:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2729:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2707:21:12"
},
"nodeType": "YulFunctionCall",
"src": "2707:29:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2699:4:12"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2773:23:12",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2785:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2791:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2781:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2781:15:12"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "2773:4:12"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2546:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "2557:4:12",
"type": ""
}
],
"src": "2495:308:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2854:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2864:35:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2893:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2875:17:12"
},
"nodeType": "YulFunctionCall",
"src": "2875:24:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2864:7:12"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2836:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2846:7:12",
"type": ""
}
],
"src": "2809:96:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2956:73:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2966:57:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2981:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2988:34:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2977:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2977:46:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2966:7:12"
}
]
}
]
},
"name": "cleanup_t_uint128",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2938:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2948:7:12",
"type": ""
}
],
"src": "2911:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3080:81:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3090:65:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3105:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3112:42:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3101:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3101:54:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3090:7:12"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3062:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3072:7:12",
"type": ""
}
],
"src": "3035:126:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3216:258:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3226:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3235:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3230:1:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3295:63:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3320:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3325:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3316:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3316:11:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3339:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3344:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3335:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3335:11:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3329:5:12"
},
"nodeType": "YulFunctionCall",
"src": "3329:18:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3309:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3309:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "3309:39:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3256:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3259:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3253:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3253:13:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3267:19:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3269:15:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3278:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3281:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3274:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3274:10:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3269:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3249:3:12",
"statements": []
},
"src": "3245:113:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3392:76:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3442:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3447:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3438:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3438:16:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3456:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3431:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3431:27:12"
},
"nodeType": "YulExpressionStatement",
"src": "3431:27:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3373:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3376:6:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3370:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3370:13:12"
},
"nodeType": "YulIf",
"src": "3367:101:12"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3198:3:12",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3203:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3208:6:12",
"type": ""
}
],
"src": "3167:307:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3531:269:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3541:22:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3555:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3561:1:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "3551:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3551:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3541:6:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "3572:38:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3602:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3608:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3598:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3598:12:12"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "3576:18:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3649:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3663:27:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3677:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3685:4:12",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3673:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3673:17:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3663:6:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3629:18:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3622:6:12"
},
"nodeType": "YulFunctionCall",
"src": "3622:26:12"
},
"nodeType": "YulIf",
"src": "3619:81:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3752:42:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "3766:16:12"
},
"nodeType": "YulFunctionCall",
"src": "3766:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "3766:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "3716:18:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3739:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3747:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3736:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3736:14:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3713:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3713:38:12"
},
"nodeType": "YulIf",
"src": "3710:84:12"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3515:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3524:6:12",
"type": ""
}
],
"src": "3480:320:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3849:238:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3859:58:12",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3881:6:12"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "3911:4:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "3889:21:12"
},
"nodeType": "YulFunctionCall",
"src": "3889:27:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3877:3:12"
},
"nodeType": "YulFunctionCall",
"src": "3877:40:12"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "3863:10:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4028:22:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4030:16:12"
},
"nodeType": "YulFunctionCall",
"src": "4030:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "4030:18:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "3971:10:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3983:18:12",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3968:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3968:34:12"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4007:10:12"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4019:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4004:2:12"
},
"nodeType": "YulFunctionCall",
"src": "4004:22:12"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3965:2:12"
},
"nodeType": "YulFunctionCall",
"src": "3965:62:12"
},
"nodeType": "YulIf",
"src": "3962:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4066:2:12",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "4070:10:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4059:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4059:22:12"
},
"nodeType": "YulExpressionStatement",
"src": "4059:22:12"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3835:6:12",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "3843:4:12",
"type": ""
}
],
"src": "3806:281:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4121:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4138:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4141:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4131:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4131:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "4131:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4235:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4238:4:12",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4228:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4228:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "4228:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4259:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4262:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4252:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4252:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "4252:15:12"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "4093:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4307:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4324:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4327:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4317:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4317:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "4317:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4421:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4424:4:12",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4414:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4414:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "4414:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4445:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4448:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4438:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4438:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "4438:15:12"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "4279:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4554:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4571:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4574:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4564:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4564:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "4564:12:12"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "4465:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4677:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4694:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4697:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4687:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4687:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "4687:12:12"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "4588:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4800:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4817:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4820:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4810:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4810:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "4810:12:12"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "4711:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4923:28:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4940:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4943:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4933:6:12"
},
"nodeType": "YulFunctionCall",
"src": "4933:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "4933:12:12"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "4834:117:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5005:54:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5015:38:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5033:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5040:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5029:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5029:14:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5049:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "5045:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5045:7:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5025:3:12"
},
"nodeType": "YulFunctionCall",
"src": "5025:28:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "5015:6:12"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4988:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "4998:6:12",
"type": ""
}
],
"src": "4957:102:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5108:79:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5165:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5174:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5177:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5167:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5167:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "5167:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5131:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5156:5:12"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5138:17:12"
},
"nodeType": "YulFunctionCall",
"src": "5138:24:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5128:2:12"
},
"nodeType": "YulFunctionCall",
"src": "5128:35:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5121:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5121:43:12"
},
"nodeType": "YulIf",
"src": "5118:63:12"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5101:5:12",
"type": ""
}
],
"src": "5065:122:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5236:79:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5293:16:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5302:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5305:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5295:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5295:12:12"
},
"nodeType": "YulExpressionStatement",
"src": "5295:12:12"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5259:5:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5284:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint128",
"nodeType": "YulIdentifier",
"src": "5266:17:12"
},
"nodeType": "YulFunctionCall",
"src": "5266:24:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "5256:2:12"
},
"nodeType": "YulFunctionCall",
"src": "5256:35:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5249:6:12"
},
"nodeType": "YulFunctionCall",
"src": "5249:43:12"
},
"nodeType": "YulIf",
"src": "5246:63:12"
}
]
},
"name": "validator_revert_t_uint128",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5229:5:12",
"type": ""
}
],
"src": "5193:122:12"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_string_memory_ptr_fromMemory(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_memory_to_memory(src, dst, length)\n }\n\n function abi_decode_t_address_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_address(value)\n }\n\n // string\n function abi_decode_t_string_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_string_memory_ptr_fromMemory(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint128_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_uint128(value)\n }\n\n function abi_decode_tuple_t_addresst_uint128t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint128_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value2 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := mload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_string_memory_ptr_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_uint128(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function 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 panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\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 validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint128(value) {\n if iszero(eq(value, cleanup_t_uint128(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 12,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040516200092f3803806200092f833981810160405281019062000037919062000248565b836000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055508160029080519060200190620000c8929190620000ec565b508060039080519060200190620000e1929190620000ec565b505050505062000500565b828054620000fa90620003dd565b90600052602060002090601f0160209004810192826200011e57600085556200016a565b82601f106200013957805160ff19168380011785556200016a565b828001600101855582156200016a579182015b82811115620001695782518255916020019190600101906200014c565b5b5090506200017991906200017d565b5090565b5b80821115620001985760008160009055506001016200017e565b5090565b6000620001b3620001ad8462000321565b620002f8565b905082815260208101848484011115620001d257620001d1620004ac565b5b620001df848285620003a7565b509392505050565b600081519050620001f881620004cc565b92915050565b600082601f830112620002165762000215620004a7565b5b8151620002288482602086016200019c565b91505092915050565b6000815190506200024281620004e6565b92915050565b60008060008060808587031215620002655762000264620004b6565b5b60006200027587828801620001e7565b9450506020620002888782880162000231565b935050604085015167ffffffffffffffff811115620002ac57620002ab620004b1565b5b620002ba87828801620001fe565b925050606085015167ffffffffffffffff811115620002de57620002dd620004b1565b5b620002ec87828801620001fe565b91505092959194509250565b60006200030462000317565b905062000312828262000413565b919050565b6000604051905090565b600067ffffffffffffffff8211156200033f576200033e62000478565b5b6200034a82620004bb565b9050602081019050919050565b6000620003648262000387565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620003c7578082015181840152602081019050620003aa565b83811115620003d7576000848401525b50505050565b60006002820490506001821680620003f657607f821691505b602082108114156200040d576200040c62000449565b5b50919050565b6200041e82620004bb565b810181811067ffffffffffffffff8211171562000440576200043f62000478565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620004d78162000357565b8114620004e357600080fd5b50565b620004f1816200036b565b8114620004fd57600080fd5b50565b61041f80620005106000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063516f279e146100515780638da5cb5b1461006f578063949d225d1461008d578063a035b1fe146100ab575b600080fd5b6100596100c9565b604051610066919061029d565b60405180910390f35b610077610157565b6040516100849190610282565b60405180910390f35b61009561017b565b6040516100a2919061029d565b60405180910390f35b6100b3610209565b6040516100c091906102bf565b60405180910390f35b600280546100d690610377565b80601f016020809104026020016040519081016040528092919081815260200182805461010290610377565b801561014f5780601f106101245761010080835404028352916020019161014f565b820191906000526020600020905b81548152906001019060200180831161013257829003601f168201915b505050505081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6003805461018890610377565b80601f01602080910402602001604051908101604052809291908181526020018280546101b490610377565b80156102015780601f106101d657610100808354040283529160200191610201565b820191906000526020600020905b8154815290600101906020018083116101e457829003601f168201915b505050505081565b600160009054906101000a90046fffffffffffffffffffffffffffffffff1681565b610234816102f6565b82525050565b6000610245826102da565b61024f81856102e5565b935061025f818560208601610344565b610268816103d8565b840191505092915050565b61027c81610308565b82525050565b6000602082019050610297600083018461022b565b92915050565b600060208201905081810360008301526102b7818461023a565b905092915050565b60006020820190506102d46000830184610273565b92915050565b600081519050919050565b600082825260208201905092915050565b600061030182610324565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015610362578082015181840152602081019050610347565b83811115610371576000848401525b50505050565b6000600282049050600182168061038f57607f821691505b602082108114156103a3576103a26103a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f830116905091905056fea264697066735822122049760a7cc85c1a90ce628b6e590f4f181bfce62c425417cf504d66105f84754464736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x92F CODESIZE SUB DUP1 PUSH3 0x92F DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x248 JUMP JUMPDEST DUP4 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH1 0x2 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xC8 SWAP3 SWAP2 SWAP1 PUSH3 0xEC JUMP JUMPDEST POP DUP1 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xE1 SWAP3 SWAP2 SWAP1 PUSH3 0xEC JUMP JUMPDEST POP POP POP POP POP PUSH3 0x500 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0xFA SWAP1 PUSH3 0x3DD JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x11E JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x16A JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x139 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x16A JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x16A JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x169 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x14C JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x179 SWAP2 SWAP1 PUSH3 0x17D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x198 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x17E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1B3 PUSH3 0x1AD DUP5 PUSH3 0x321 JUMP JUMPDEST PUSH3 0x2F8 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x1D2 JUMPI PUSH3 0x1D1 PUSH3 0x4AC JUMP JUMPDEST JUMPDEST PUSH3 0x1DF DUP5 DUP3 DUP6 PUSH3 0x3A7 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x1F8 DUP2 PUSH3 0x4CC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x216 JUMPI PUSH3 0x215 PUSH3 0x4A7 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x228 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x19C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x242 DUP2 PUSH3 0x4E6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x265 JUMPI PUSH3 0x264 PUSH3 0x4B6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x275 DUP8 DUP3 DUP9 ADD PUSH3 0x1E7 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH3 0x288 DUP8 DUP3 DUP9 ADD PUSH3 0x231 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x2AC JUMPI PUSH3 0x2AB PUSH3 0x4B1 JUMP JUMPDEST JUMPDEST PUSH3 0x2BA DUP8 DUP3 DUP9 ADD PUSH3 0x1FE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x2DE JUMPI PUSH3 0x2DD PUSH3 0x4B1 JUMP JUMPDEST JUMPDEST PUSH3 0x2EC DUP8 DUP3 DUP9 ADD PUSH3 0x1FE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x304 PUSH3 0x317 JUMP JUMPDEST SWAP1 POP PUSH3 0x312 DUP3 DUP3 PUSH3 0x413 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x33F JUMPI PUSH3 0x33E PUSH3 0x478 JUMP JUMPDEST JUMPDEST PUSH3 0x34A DUP3 PUSH3 0x4BB JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x364 DUP3 PUSH3 0x387 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x3C7 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x3AA JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x3D7 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x3F6 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x40D JUMPI PUSH3 0x40C PUSH3 0x449 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x41E DUP3 PUSH3 0x4BB JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x440 JUMPI PUSH3 0x43F PUSH3 0x478 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x4D7 DUP2 PUSH3 0x357 JUMP JUMPDEST DUP2 EQ PUSH3 0x4E3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x4F1 DUP2 PUSH3 0x36B JUMP JUMPDEST DUP2 EQ PUSH3 0x4FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x41F DUP1 PUSH3 0x510 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x516F279E EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0x949D225D EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0xA035B1FE EQ PUSH2 0xAB JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0xC9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x29D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x77 PUSH2 0x157 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x282 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x95 PUSH2 0x17B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x29D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB3 PUSH2 0x209 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x2BF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH2 0xD6 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x102 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x14F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x124 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x14F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x132 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH2 0x188 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x1B4 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x201 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1D6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x201 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1E4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0x234 DUP2 PUSH2 0x2F6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x245 DUP3 PUSH2 0x2DA JUMP JUMPDEST PUSH2 0x24F DUP2 DUP6 PUSH2 0x2E5 JUMP JUMPDEST SWAP4 POP PUSH2 0x25F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x344 JUMP JUMPDEST PUSH2 0x268 DUP2 PUSH2 0x3D8 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x27C DUP2 PUSH2 0x308 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x297 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x22B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2B7 DUP2 DUP5 PUSH2 0x23A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2D4 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x273 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x301 DUP3 PUSH2 0x324 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x362 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x347 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x371 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x38F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x3A3 JUMPI PUSH2 0x3A2 PUSH2 0x3A9 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x49 PUSH23 0xA7CC85C1A90CE628B6E590F4F181BFCE62C425417CF50 0x4D PUSH7 0x105F8475446473 PUSH16 0x6C634300080700330000000000000000 ",
"sourceMap": "272:326:11:-:0;;;399:197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;507:6;499:5;;:14;;;;;;;;;;;;;;;;;;531:6;523:5;;:14;;;;;;;;;;;;;;;;;;558:9;547:8;:20;;;;;;;;;;;;:::i;:::-;;584:5;577:4;:12;;;;;;;;;;;;:::i;:::-;;399:197;;;;272:326;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:421:12:-;96:5;121:66;137:49;179:6;137:49;:::i;:::-;121:66;:::i;:::-;112:75;;210:6;203:5;196:21;248:4;241:5;237:16;286:3;277:6;272:3;268:16;265:25;262:112;;;293:79;;:::i;:::-;262:112;383:39;415:6;410:3;405;383:39;:::i;:::-;102:326;7:421;;;;;:::o;434:143::-;491:5;522:6;516:13;507:22;;538:33;565:5;538:33;:::i;:::-;434:143;;;;:::o;597:355::-;664:5;713:3;706:4;698:6;694:17;690:27;680:122;;721:79;;:::i;:::-;680:122;831:6;825:13;856:90;942:3;934:6;927:4;919:6;915:17;856:90;:::i;:::-;847:99;;670:282;597:355;;;;:::o;958:143::-;1015:5;1046:6;1040:13;1031:22;;1062:33;1089:5;1062:33;:::i;:::-;958:143;;;;:::o;1107:1166::-;1224:6;1232;1240;1248;1297:3;1285:9;1276:7;1272:23;1268:33;1265:120;;;1304:79;;:::i;:::-;1265:120;1424:1;1449:64;1505:7;1496:6;1485:9;1481:22;1449:64;:::i;:::-;1439:74;;1395:128;1562:2;1588:64;1644:7;1635:6;1624:9;1620:22;1588:64;:::i;:::-;1578:74;;1533:129;1722:2;1711:9;1707:18;1701:25;1753:18;1745:6;1742:30;1739:117;;;1775:79;;:::i;:::-;1739:117;1880:74;1946:7;1937:6;1926:9;1922:22;1880:74;:::i;:::-;1870:84;;1672:292;2024:2;2013:9;2009:18;2003:25;2055:18;2047:6;2044:30;2041:117;;;2077:79;;:::i;:::-;2041:117;2182:74;2248:7;2239:6;2228:9;2224:22;2182:74;:::i;:::-;2172:84;;1974:292;1107:1166;;;;;;;:::o;2279:129::-;2313:6;2340:20;;:::i;:::-;2330:30;;2369:33;2397:4;2389:6;2369:33;:::i;:::-;2279:129;;;:::o;2414:75::-;2447:6;2480:2;2474:9;2464:19;;2414:75;:::o;2495:308::-;2557:4;2647:18;2639:6;2636:30;2633:56;;;2669:18;;:::i;:::-;2633:56;2707:29;2729:6;2707:29;:::i;:::-;2699:37;;2791:4;2785;2781:15;2773:23;;2495:308;;;:::o;2809:96::-;2846:7;2875:24;2893:5;2875:24;:::i;:::-;2864:35;;2809:96;;;:::o;2911:118::-;2948:7;2988:34;2981:5;2977:46;2966:57;;2911:118;;;:::o;3035:126::-;3072:7;3112:42;3105:5;3101:54;3090:65;;3035:126;;;:::o;3167:307::-;3235:1;3245:113;3259:6;3256:1;3253:13;3245:113;;;3344:1;3339:3;3335:11;3329:18;3325:1;3320:3;3316:11;3309:39;3281:2;3278:1;3274:10;3269:15;;3245:113;;;3376:6;3373:1;3370:13;3367:101;;;3456:1;3447:6;3442:3;3438:16;3431:27;3367:101;3216:258;3167:307;;;:::o;3480:320::-;3524:6;3561:1;3555:4;3551:12;3541:22;;3608:1;3602:4;3598:12;3629:18;3619:81;;3685:4;3677:6;3673:17;3663:27;;3619:81;3747:2;3739:6;3736:14;3716:18;3713:38;3710:84;;;3766:18;;:::i;:::-;3710:84;3531:269;3480:320;;;:::o;3806:281::-;3889:27;3911:4;3889:27;:::i;:::-;3881:6;3877:40;4019:6;4007:10;4004:22;3983:18;3971:10;3968:34;3965:62;3962:88;;;4030:18;;:::i;:::-;3962:88;4070:10;4066:2;4059:22;3849:238;3806:281;;:::o;4093:180::-;4141:77;4138:1;4131:88;4238:4;4235:1;4228:15;4262:4;4259:1;4252:15;4279:180;4327:77;4324:1;4317:88;4424:4;4421:1;4414:15;4448:4;4445:1;4438:15;4465:117;4574:1;4571;4564:12;4588:117;4697:1;4694;4687:12;4711:117;4820:1;4817;4810:12;4834:117;4943:1;4940;4933:12;4957:102;4998:6;5049:2;5045:7;5040:2;5033:5;5029:14;5025:28;5015:38;;4957:102;;;:::o;5065:122::-;5138:24;5156:5;5138:24;:::i;:::-;5131:5;5128:35;5118:63;;5177:1;5174;5167:12;5118:63;5065:122;:::o;5193:::-;5266:24;5284:5;5266:24;:::i;:::-;5259:5;5256:35;5246:63;;5305:1;5302;5295:12;5246:63;5193:122;:::o;272:326:11:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@location_1794": {
"entryPoint": 201,
"id": 1794,
"parameterSlots": 0,
"returnSlots": 0
},
"@owner_1790": {
"entryPoint": 343,
"id": 1790,
"parameterSlots": 0,
"returnSlots": 0
},
"@price_1792": {
"entryPoint": 521,
"id": 1792,
"parameterSlots": 0,
"returnSlots": 0
},
"@size_1796": {
"entryPoint": 379,
"id": 1796,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 555,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 570,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint128_to_t_uint128_fromStack": {
"entryPoint": 627,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 642,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 669,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint128__to_t_uint128__fromStack_reversed": {
"entryPoint": 703,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 730,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 741,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 758,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint128": {
"entryPoint": 776,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 804,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 836,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 887,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 937,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 984,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2968:12",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "72:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "89:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "112:5:12"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "94:17:12"
},
"nodeType": "YulFunctionCall",
"src": "94:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "82:6:12"
},
"nodeType": "YulFunctionCall",
"src": "82:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "82:37:12"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "60:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "67:3:12",
"type": ""
}
],
"src": "7:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "223:272:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "233:53:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "280:5:12"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "247:32:12"
},
"nodeType": "YulFunctionCall",
"src": "247:39:12"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "237:6:12",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "295:78:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "361:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "366:6:12"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "302:58:12"
},
"nodeType": "YulFunctionCall",
"src": "302:71:12"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "295:3:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "408:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "415:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "404:3:12"
},
"nodeType": "YulFunctionCall",
"src": "404:16:12"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "422:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "427:6:12"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "382:21:12"
},
"nodeType": "YulFunctionCall",
"src": "382:52:12"
},
"nodeType": "YulExpressionStatement",
"src": "382:52:12"
},
{
"nodeType": "YulAssignment",
"src": "443:46:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "454:3:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "481:6:12"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "459:21:12"
},
"nodeType": "YulFunctionCall",
"src": "459:29:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "450:3:12"
},
"nodeType": "YulFunctionCall",
"src": "450:39:12"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "443:3:12"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "204:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "211:3:12",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "219:3:12",
"type": ""
}
],
"src": "131:364:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "566:53:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "583:3:12"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "606:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint128",
"nodeType": "YulIdentifier",
"src": "588:17:12"
},
"nodeType": "YulFunctionCall",
"src": "588:24:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "576:6:12"
},
"nodeType": "YulFunctionCall",
"src": "576:37:12"
},
"nodeType": "YulExpressionStatement",
"src": "576:37:12"
}
]
},
"name": "abi_encode_t_uint128_to_t_uint128_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "554:5:12",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "561:3:12",
"type": ""
}
],
"src": "501:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "723:124:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "733:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "745:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "756:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "741:3:12"
},
"nodeType": "YulFunctionCall",
"src": "741:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "733:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "813:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "826:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "837:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "822:3:12"
},
"nodeType": "YulFunctionCall",
"src": "822:17:12"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "769:43:12"
},
"nodeType": "YulFunctionCall",
"src": "769:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "769:71:12"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "695:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "707:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "718:4:12",
"type": ""
}
],
"src": "625:222:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "971:195:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "981:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "993:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1004:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "989:3:12"
},
"nodeType": "YulFunctionCall",
"src": "989:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "981:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1028:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1039:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1024:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1024:17:12"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1047:4:12"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1053:9:12"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1043:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1043:20:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1017:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1017:47:12"
},
"nodeType": "YulExpressionStatement",
"src": "1017:47:12"
},
{
"nodeType": "YulAssignment",
"src": "1073:86:12",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1145:6:12"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1154:4:12"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1081:63:12"
},
"nodeType": "YulFunctionCall",
"src": "1081:78:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1073:4:12"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "943:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "955:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "966:4:12",
"type": ""
}
],
"src": "853:313:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1270:124:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1280:26:12",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1292:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1303:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1288:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1288:18:12"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1280:4:12"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1360:6:12"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1373:9:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1384:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1369:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1369:17:12"
}
],
"functionName": {
"name": "abi_encode_t_uint128_to_t_uint128_fromStack",
"nodeType": "YulIdentifier",
"src": "1316:43:12"
},
"nodeType": "YulFunctionCall",
"src": "1316:71:12"
},
"nodeType": "YulExpressionStatement",
"src": "1316:71:12"
}
]
},
"name": "abi_encode_tuple_t_uint128__to_t_uint128__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1242:9:12",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1254:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1265:4:12",
"type": ""
}
],
"src": "1172:222:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1459:40:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1470:22:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1486:5:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1480:5:12"
},
"nodeType": "YulFunctionCall",
"src": "1480:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1470:6:12"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1442:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1452:6:12",
"type": ""
}
],
"src": "1400:99:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1601:73:12",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1618:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1623:6:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1611:6:12"
},
"nodeType": "YulFunctionCall",
"src": "1611:19:12"
},
"nodeType": "YulExpressionStatement",
"src": "1611:19:12"
},
{
"nodeType": "YulAssignment",
"src": "1639:29:12",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1658:3:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1663:4:12",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1654:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1654:14:12"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1639:11:12"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1573:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1578:6:12",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1589:11:12",
"type": ""
}
],
"src": "1505:169:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1725:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1735:35:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1764:5:12"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1746:17:12"
},
"nodeType": "YulFunctionCall",
"src": "1746:24:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1735:7:12"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1707:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1717:7:12",
"type": ""
}
],
"src": "1680:96:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1827:73:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1837:57:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1852:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1859:34:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1848:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1848:46:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1837:7:12"
}
]
}
]
},
"name": "cleanup_t_uint128",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1809:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1819:7:12",
"type": ""
}
],
"src": "1782:118:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1951:81:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1961:65:12",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1976:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1983:42:12",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1972:3:12"
},
"nodeType": "YulFunctionCall",
"src": "1972:54:12"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1961:7:12"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1933:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1943:7:12",
"type": ""
}
],
"src": "1906:126:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2087:258:12",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2097:10:12",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2106:1:12",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "2101:1:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2166:63:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2191:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2196:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2187:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2187:11:12"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "2210:3:12"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2215:1:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2206:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2206:11:12"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2200:5:12"
},
"nodeType": "YulFunctionCall",
"src": "2200:18:12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2180:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2180:39:12"
},
"nodeType": "YulExpressionStatement",
"src": "2180:39:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2127:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2130:6:12"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2124:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2124:13:12"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2138:19:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2140:15:12",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2149:1:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2152:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2145:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2145:10:12"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2140:1:12"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2120:3:12",
"statements": []
},
"src": "2116:113:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2263:76:12",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2313:3:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2318:6:12"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2309:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2309:16:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2327:1:12",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2302:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2302:27:12"
},
"nodeType": "YulExpressionStatement",
"src": "2302:27:12"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2244:1:12"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2247:6:12"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2241:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2241:13:12"
},
"nodeType": "YulIf",
"src": "2238:101:12"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2069:3:12",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2074:3:12",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2079:6:12",
"type": ""
}
],
"src": "2038:307:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2402:269:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2412:22:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2426:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2432:1:12",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "2422:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2422:12:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2412:6:12"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2443:38:12",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "2473:4:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2479:1:12",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2469:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2469:12:12"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "2447:18:12",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2520:51:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2534:27:12",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2548:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2556:4:12",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2544:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2544:17:12"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2534:6:12"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2500:18:12"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2493:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2493:26:12"
},
"nodeType": "YulIf",
"src": "2490:81:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2623:42:12",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "2637:16:12"
},
"nodeType": "YulFunctionCall",
"src": "2637:18:12"
},
"nodeType": "YulExpressionStatement",
"src": "2637:18:12"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "2587:18:12"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2610:6:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2618:2:12",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2607:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2607:14:12"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2584:2:12"
},
"nodeType": "YulFunctionCall",
"src": "2584:38:12"
},
"nodeType": "YulIf",
"src": "2581:84:12"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "2386:4:12",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2395:6:12",
"type": ""
}
],
"src": "2351:320:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2705:152:12",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2722:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2725:77:12",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2715:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2715:88:12"
},
"nodeType": "YulExpressionStatement",
"src": "2715:88:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2819:1:12",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2822:4:12",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2812:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2812:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "2812:15:12"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2843:1:12",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2846:4:12",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2836:6:12"
},
"nodeType": "YulFunctionCall",
"src": "2836:15:12"
},
"nodeType": "YulExpressionStatement",
"src": "2836:15:12"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "2677:180:12"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2911:54:12",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2921:38:12",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2939:5:12"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2946:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2935:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2935:14:12"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2955:2:12",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2951:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2951:7:12"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2931:3:12"
},
"nodeType": "YulFunctionCall",
"src": "2931:28:12"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2921:6:12"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2894:5:12",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2904:6:12",
"type": ""
}
],
"src": "2863:102:12"
}
]
},
"contents": "{\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_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_uint128_to_t_uint128_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint128(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_uint128__to_t_uint128__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint128_to_t_uint128_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_uint128(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n}\n",
"id": 12,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061004c5760003560e01c8063516f279e146100515780638da5cb5b1461006f578063949d225d1461008d578063a035b1fe146100ab575b600080fd5b6100596100c9565b604051610066919061029d565b60405180910390f35b610077610157565b6040516100849190610282565b60405180910390f35b61009561017b565b6040516100a2919061029d565b60405180910390f35b6100b3610209565b6040516100c091906102bf565b60405180910390f35b600280546100d690610377565b80601f016020809104026020016040519081016040528092919081815260200182805461010290610377565b801561014f5780601f106101245761010080835404028352916020019161014f565b820191906000526020600020905b81548152906001019060200180831161013257829003601f168201915b505050505081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6003805461018890610377565b80601f01602080910402602001604051908101604052809291908181526020018280546101b490610377565b80156102015780601f106101d657610100808354040283529160200191610201565b820191906000526020600020905b8154815290600101906020018083116101e457829003601f168201915b505050505081565b600160009054906101000a90046fffffffffffffffffffffffffffffffff1681565b610234816102f6565b82525050565b6000610245826102da565b61024f81856102e5565b935061025f818560208601610344565b610268816103d8565b840191505092915050565b61027c81610308565b82525050565b6000602082019050610297600083018461022b565b92915050565b600060208201905081810360008301526102b7818461023a565b905092915050565b60006020820190506102d46000830184610273565b92915050565b600081519050919050565b600082825260208201905092915050565b600061030182610324565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015610362578082015181840152602081019050610347565b83811115610371576000848401525b50505050565b6000600282049050600182168061038f57607f821691505b602082108114156103a3576103a26103a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f830116905091905056fea264697066735822122049760a7cc85c1a90ce628b6e590f4f181bfce62c425417cf504d66105f84754464736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x516F279E EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0x949D225D EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0xA035B1FE EQ PUSH2 0xAB JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0xC9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x29D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x77 PUSH2 0x157 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x282 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x95 PUSH2 0x17B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x29D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB3 PUSH2 0x209 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x2BF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH2 0xD6 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x102 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x14F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x124 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x14F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x132 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH2 0x188 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x1B4 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x201 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1D6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x201 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1E4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0x234 DUP2 PUSH2 0x2F6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x245 DUP3 PUSH2 0x2DA JUMP JUMPDEST PUSH2 0x24F DUP2 DUP6 PUSH2 0x2E5 JUMP JUMPDEST SWAP4 POP PUSH2 0x25F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x344 JUMP JUMPDEST PUSH2 0x268 DUP2 PUSH2 0x3D8 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x27C DUP2 PUSH2 0x308 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x297 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x22B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2B7 DUP2 DUP5 PUSH2 0x23A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2D4 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x273 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x301 DUP3 PUSH2 0x324 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x362 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x347 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x371 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x38F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x3A3 JUMPI PUSH2 0x3A2 PUSH2 0x3A9 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x49 PUSH23 0xA7CC85C1A90CE628B6E590F4F181BFCE62C425417CF50 0x4D PUSH7 0x105F8475446473 PUSH16 0x6C634300080700330000000000000000 ",
"sourceMap": "272:326:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;344:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;292:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;373:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;318:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;344:23;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;292:20::-;;;;;;;;;;;;:::o;373:19::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;318:20::-;;;;;;;;;;;;;:::o;7:118:12:-;94:24;112:5;94:24;:::i;:::-;89:3;82:37;7:118;;:::o;131:364::-;219:3;247:39;280:5;247:39;:::i;:::-;302:71;366:6;361:3;302:71;:::i;:::-;295:78;;382:52;427:6;422:3;415:4;408:5;404:16;382:52;:::i;:::-;459:29;481:6;459:29;:::i;:::-;454:3;450:39;443:46;;223:272;131:364;;;;:::o;501:118::-;588:24;606:5;588:24;:::i;:::-;583:3;576:37;501:118;;:::o;625:222::-;718:4;756:2;745:9;741:18;733:26;;769:71;837:1;826:9;822:17;813:6;769:71;:::i;:::-;625:222;;;;:::o;853:313::-;966:4;1004:2;993:9;989:18;981:26;;1053:9;1047:4;1043:20;1039:1;1028:9;1024:17;1017:47;1081:78;1154:4;1145:6;1081:78;:::i;:::-;1073:86;;853:313;;;;:::o;1172:222::-;1265:4;1303:2;1292:9;1288:18;1280:26;;1316:71;1384:1;1373:9;1369:17;1360:6;1316:71;:::i;:::-;1172:222;;;;:::o;1400:99::-;1452:6;1486:5;1480:12;1470:22;;1400:99;;;:::o;1505:169::-;1589:11;1623:6;1618:3;1611:19;1663:4;1658:3;1654:14;1639:29;;1505:169;;;;:::o;1680:96::-;1717:7;1746:24;1764:5;1746:24;:::i;:::-;1735:35;;1680:96;;;:::o;1782:118::-;1819:7;1859:34;1852:5;1848:46;1837:57;;1782:118;;;:::o;1906:126::-;1943:7;1983:42;1976:5;1972:54;1961:65;;1906:126;;;:::o;2038:307::-;2106:1;2116:113;2130:6;2127:1;2124:13;2116:113;;;2215:1;2210:3;2206:11;2200:18;2196:1;2191:3;2187:11;2180:39;2152:2;2149:1;2145:10;2140:15;;2116:113;;;2247:6;2244:1;2241:13;2238:101;;;2327:1;2318:6;2313:3;2309:16;2302:27;2238:101;2087:258;2038:307;;;:::o;2351:320::-;2395:6;2432:1;2426:4;2422:12;2412:22;;2479:1;2473:4;2469:12;2500:18;2490:81;;2556:4;2548:6;2544:17;2534:27;;2490:81;2618:2;2610:6;2607:14;2587:18;2584:38;2581:84;;;2637:18;;:::i;:::-;2581:84;2402:269;2351:320;;;:::o;2677:180::-;2725:77;2722:1;2715:88;2822:4;2819:1;2812:15;2846:4;2843:1;2836:15;2863:102;2904:6;2955:2;2951:7;2946:2;2939:5;2935:14;2931:28;2921:38;;2863:102;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "211000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"location()": "infinite",
"owner()": "2511",
"price()": "2515",
"size()": "infinite"
}
},
"methodIdentifiers": {
"location()": "516f279e",
"owner()": "8da5cb5b",
"price()": "a035b1fe",
"size()": "949d225d"
}
},
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "uint128",
"name": "_price",
"type": "uint128"
},
{
"internalType": "string",
"name": "_location",
"type": "string"
},
{
"internalType": "string",
"name": "_size",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "location",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "price",
"outputs": [
{
"internalType": "uint128",
"name": "",
"type": "uint128"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "size",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_1765": {
"entryPoint": null,
"id": 1765,
"parameterSlots": 0,
"returnSlots": 0
},
"@_62": {
"entryPoint": null,
"id": 62,
"parameterSlots": 2,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 360,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 414,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "58:269:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "68:22:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "82:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "88:1:11",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "78:3:11"
},
"nodeType": "YulFunctionCall",
"src": "78:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "68:6:11"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "99:38:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "129:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "125:3:11"
},
"nodeType": "YulFunctionCall",
"src": "125:12:11"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "103:18:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "176:51:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "190:27:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "204:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "212:4:11",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "200:3:11"
},
"nodeType": "YulFunctionCall",
"src": "200:17:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "190:6:11"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "156:18:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "149:6:11"
},
"nodeType": "YulFunctionCall",
"src": "149:26:11"
},
"nodeType": "YulIf",
"src": "146:81:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "279:42:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "293:16:11"
},
"nodeType": "YulFunctionCall",
"src": "293:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "293:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "243:18:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "263:2:11"
},
"nodeType": "YulFunctionCall",
"src": "263:14:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "240:2:11"
},
"nodeType": "YulFunctionCall",
"src": "240:38:11"
},
"nodeType": "YulIf",
"src": "237:84:11"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "42:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "51:6:11",
"type": ""
}
],
"src": "7:320:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "361:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "378:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "381:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "371:6:11"
},
"nodeType": "YulFunctionCall",
"src": "371:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "371:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "475:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "478:4:11",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "468:6:11"
},
"nodeType": "YulFunctionCall",
"src": "468:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "468:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "499:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "502:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "492:6:11"
},
"nodeType": "YulFunctionCall",
"src": "492:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "492:15:11"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "333:180:11"
}
]
},
"contents": "{\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n}\n",
"id": 11,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600a81526020017f7a6b4c616e64506c6f74000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5a4b4c0000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620000b8565b508060019080519060200190620000af929190620000b8565b505050620001cd565b828054620000c69062000168565b90600052602060002090601f016020900481019282620000ea576000855562000136565b82601f106200010557805160ff191683800117855562000136565b8280016001018555821562000136579182015b828111156200013557825182559160200191906001019062000118565b5b50905062000145919062000149565b5090565b5b80821115620001645760008160009055506001016200014a565b5090565b600060028204905060018216806200018157607f821691505b602082108114156200019857620001976200019e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61333380620001dd6000396000f3fe60806040523480156200001157600080fd5b50600436106200010c5760003560e01c80636352211e11620000a5578063b88d4fde116200006f578063b88d4fde14620002cd578063c87b56dd14620002ed578063e261f1e51462000323578063e985e9c51462000359576200010c565b80636352211e146200021f57806370a08231146200025557806395d89b41146200028b578063a22cb46514620002ad576200010c565b8063095ea7b311620000e7578063095ea7b3146200019f5780630b34203a14620001bf57806323b872dd14620001df57806342842e0e14620001ff576200010c565b806301ffc9a7146200011157806306fdde031462000147578063081812fc1462000169575b600080fd5b6200012f600480360381019062000129919062001a82565b6200038f565b6040516200013e919062001eee565b60405180910390f35b6200015162000475565b60405162000160919062001f28565b60405180910390f35b62000187600480360381019062000181919062001ae6565b6200050f565b60405162000196919062001e22565b60405180910390f35b620001bd6004803603810190620001b7919062001a3b565b62000599565b005b620001dd6004803603810190620001d791906200198b565b620006c2565b005b620001fd6004803603810190620001f7919062001857565b6200076f565b005b6200021d600480360381019062000217919062001857565b620007d8565b005b6200023d600480360381019062000237919062001ae6565b620007fa565b6040516200024c919062001e22565b60405180910390f35b6200027360048036038101906200026d9190620017de565b620008af565b604051620002829190620020e4565b60405180910390f35b620002956200096a565b604051620002a4919062001f28565b60405180910390f35b620002cb6004803603810190620002c5919062001944565b62000a04565b005b620002eb6004803603810190620002e59190620018b3565b62000a1e565b005b6200030b600480360381019062000305919062001ae6565b62000a89565b6040516200031a919062001f28565b60405180910390f35b6200034160048036038101906200033b919062001ae6565b62000b3d565b60405162000350919062001f0b565b60405180910390f35b62000377600480360381019062000371919062001810565b62000b7d565b60405162000386919062001eee565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806200045b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806200046e57506200046d8262000c11565b5b9050919050565b6060600080546200048690620023bc565b80601f0160208091040260200160405190810160405280929190818152602001828054620004b490620023bc565b8015620005055780601f10620004d95761010080835404028352916020019162000505565b820191906000526020600020905b815481529060010190602001808311620004e757829003601f168201915b5050505050905090565b60006200051c8262000c7b565b6200055e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000555906200205c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000620005a682620007fa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200061a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061190620020a0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166200063b62000ce7565b73ffffffffffffffffffffffffffffffffffffffff1614806200066f57506200066e816200066862000ce7565b62000b7d565b5b620006b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a89062001ff6565b60405180910390fd5b620006bd838362000cef565b505050565b600084848484604051620006d6906200164a565b620006e5949392919062001e93565b604051809103906000f08015801562000702573d6000803e3d6000fd5b5090506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b620007846200077d62000ce7565b8262000daa565b620007c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007bd90620020c2565b60405180910390fd5b620007d383838362000e95565b505050565b620007f58383836040518060200160405280600081525062000a1e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620008a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200089d906200203a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000923576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200091a9062002018565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546200097b90620023bc565b80601f0160208091040260200160405190810160405280929190818152602001828054620009a990620023bc565b8015620009fa5780601f10620009ce57610100808354040283529160200191620009fa565b820191906000526020600020905b815481529060010190602001808311620009dc57829003601f168201915b5050505050905090565b62000a1a62000a1262000ce7565b83836200110e565b5050565b62000a3362000a2c62000ce7565b8362000daa565b62000a75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a6c90620020c2565b60405180910390fd5b62000a838484848462001280565b50505050565b606062000a968262000c7b565b62000ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000acf906200207e565b60405180910390fd5b600062000ae4620012e3565b9050600081511162000b06576040518060200160405280600081525062000b35565b8062000b1284620012fa565b60405160200162000b2592919062001dfa565b6040516020818303038152906040525b915050919050565b6006818154811062000b4e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1662000d6483620007fa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600062000db78262000c7b565b62000df9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000df09062001fd4565b60405180910390fd5b600062000e0683620007fa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148062000e7857508373ffffffffffffffffffffffffffffffffffffffff1662000e60846200050f565b73ffffffffffffffffffffffffffffffffffffffff16145b8062000e8c575062000e8b818562000b7d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1662000eb782620007fa565b73ffffffffffffffffffffffffffffffffffffffff161462000f10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f079062001f6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000f83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f7a9062001f90565b60405180910390fd5b62000f9083838362001474565b62000f9d60008262000cef565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000fef91906200226e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620010489190620021d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200110983838362001479565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562001180576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620011779062001fb2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405162001273919062001eee565b60405180910390a3505050565b6200128d84848462000e95565b6200129b848484846200147e565b620012dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620012d49062001f4c565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060600082141562001344576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506200146f565b600082905060005b600082146200137c578080620013629062002428565b915050600a8262001374919062002236565b91506200134c565b60008167ffffffffffffffff8111156200139b576200139a6200256a565b5b6040519080825280601f01601f191660200182016040528015620013ce5781602001600182028036833780820191505090505b5090505b600085146200146857600182620013ea91906200226e565b9150600a85620013fb919062002476565b6030620014099190620021d9565b60f81b8183815181106200142257620014216200253b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8562001460919062002236565b9450620013d2565b8093505050505b919050565b505050565b505050565b6000620014a18473ffffffffffffffffffffffffffffffffffffffff1662001627565b156200161a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620014cd62000ce7565b8786866040518563ffffffff1660e01b8152600401620014f1949392919062001e3f565b602060405180830381600087803b1580156200150c57600080fd5b505af19250505080156200154057506040513d601f19601f820116820180604052508101906200153d919062001ab4565b60015b620015c9573d806000811462001573576040519150601f19603f3d011682016040523d82523d6000602084013e62001578565b606091505b50600081511415620015c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620015b89062001f4c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200161f565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61092f80620029cf83390190565b60006200166f62001669846200212a565b62002101565b9050828152602081018484840111156200168e576200168d6200259e565b5b6200169b84828562002377565b509392505050565b6000620016ba620016b48462002160565b62002101565b905082815260208101848484011115620016d957620016d86200259e565b5b620016e684828562002377565b509392505050565b600081359050620016ff816200294c565b92915050565b600081359050620017168162002966565b92915050565b6000813590506200172d8162002980565b92915050565b600081519050620017448162002980565b92915050565b600082601f83011262001762576200176162002599565b5b81356200177484826020860162001658565b91505092915050565b600082601f83011262001795576200179462002599565b5b8135620017a7848260208601620016a3565b91505092915050565b600081359050620017c1816200299a565b92915050565b600081359050620017d881620029b4565b92915050565b600060208284031215620017f757620017f6620025a8565b5b60006200180784828501620016ee565b91505092915050565b600080604083850312156200182a5762001829620025a8565b5b60006200183a85828601620016ee565b92505060206200184d85828601620016ee565b9150509250929050565b600080600060608486031215620018735762001872620025a8565b5b60006200188386828701620016ee565b93505060206200189686828701620016ee565b9250506040620018a986828701620017c7565b9150509250925092565b60008060008060808587031215620018d057620018cf620025a8565b5b6000620018e087828801620016ee565b9450506020620018f387828801620016ee565b93505060406200190687828801620017c7565b925050606085013567ffffffffffffffff8111156200192a5762001929620025a3565b5b62001938878288016200174a565b91505092959194509250565b600080604083850312156200195e576200195d620025a8565b5b60006200196e85828601620016ee565b9250506020620019818582860162001705565b9150509250929050565b60008060008060808587031215620019a857620019a7620025a8565b5b6000620019b887828801620016ee565b9450506020620019cb87828801620017b0565b935050604085013567ffffffffffffffff811115620019ef57620019ee620025a3565b5b620019fd878288016200177d565b925050606085013567ffffffffffffffff81111562001a215762001a20620025a3565b5b62001a2f878288016200177d565b91505092959194509250565b6000806040838503121562001a555762001a54620025a8565b5b600062001a6585828601620016ee565b925050602062001a7885828601620017c7565b9150509250929050565b60006020828403121562001a9b5762001a9a620025a8565b5b600062001aab848285016200171c565b91505092915050565b60006020828403121562001acd5762001acc620025a8565b5b600062001add8482850162001733565b91505092915050565b60006020828403121562001aff5762001afe620025a8565b5b600062001b0f84828501620017c7565b91505092915050565b62001b2381620022a9565b82525050565b62001b3481620022bd565b82525050565b600062001b478262002196565b62001b538185620021ac565b935062001b6581856020860162002386565b62001b7081620025ad565b840191505092915050565b62001b86816200233b565b82525050565b600062001b9982620021a1565b62001ba58185620021bd565b935062001bb781856020860162002386565b62001bc281620025ad565b840191505092915050565b600062001bda82620021a1565b62001be68185620021ce565b935062001bf881856020860162002386565b80840191505092915050565b600062001c13603283620021bd565b915062001c2082620025be565b604082019050919050565b600062001c3a602583620021bd565b915062001c47826200260d565b604082019050919050565b600062001c61602483620021bd565b915062001c6e826200265c565b604082019050919050565b600062001c88601983620021bd565b915062001c9582620026ab565b602082019050919050565b600062001caf602c83620021bd565b915062001cbc82620026d4565b604082019050919050565b600062001cd6603883620021bd565b915062001ce38262002723565b604082019050919050565b600062001cfd602a83620021bd565b915062001d0a8262002772565b604082019050919050565b600062001d24602983620021bd565b915062001d3182620027c1565b604082019050919050565b600062001d4b602c83620021bd565b915062001d588262002810565b604082019050919050565b600062001d72602f83620021bd565b915062001d7f826200285f565b604082019050919050565b600062001d99602183620021bd565b915062001da682620028ae565b604082019050919050565b600062001dc0603183620021bd565b915062001dcd82620028fd565b604082019050919050565b62001de381620022f5565b82525050565b62001df48162002331565b82525050565b600062001e08828562001bcd565b915062001e16828462001bcd565b91508190509392505050565b600060208201905062001e39600083018462001b18565b92915050565b600060808201905062001e56600083018762001b18565b62001e65602083018662001b18565b62001e74604083018562001de9565b818103606083015262001e88818462001b3a565b905095945050505050565b600060808201905062001eaa600083018762001b18565b62001eb9602083018662001dd8565b818103604083015262001ecd818562001b8c565b9050818103606083015262001ee3818462001b8c565b905095945050505050565b600060208201905062001f05600083018462001b29565b92915050565b600060208201905062001f22600083018462001b7b565b92915050565b6000602082019050818103600083015262001f44818462001b8c565b905092915050565b6000602082019050818103600083015262001f678162001c04565b9050919050565b6000602082019050818103600083015262001f898162001c2b565b9050919050565b6000602082019050818103600083015262001fab8162001c52565b9050919050565b6000602082019050818103600083015262001fcd8162001c79565b9050919050565b6000602082019050818103600083015262001fef8162001ca0565b9050919050565b60006020820190508181036000830152620020118162001cc7565b9050919050565b60006020820190508181036000830152620020338162001cee565b9050919050565b60006020820190508181036000830152620020558162001d15565b9050919050565b60006020820190508181036000830152620020778162001d3c565b9050919050565b60006020820190508181036000830152620020998162001d63565b9050919050565b60006020820190508181036000830152620020bb8162001d8a565b9050919050565b60006020820190508181036000830152620020dd8162001db1565b9050919050565b6000602082019050620020fb600083018462001de9565b92915050565b60006200210d62002120565b90506200211b8282620023f2565b919050565b6000604051905090565b600067ffffffffffffffff8211156200214857620021476200256a565b5b6200215382620025ad565b9050602081019050919050565b600067ffffffffffffffff8211156200217e576200217d6200256a565b5b6200218982620025ad565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000620021e68262002331565b9150620021f38362002331565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200222b576200222a620024ae565b5b828201905092915050565b6000620022438262002331565b9150620022508362002331565b925082620022635762002262620024dd565b5b828204905092915050565b60006200227b8262002331565b9150620022888362002331565b9250828210156200229e576200229d620024ae565b5b828203905092915050565b6000620022b68262002311565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600062002348826200234f565b9050919050565b60006200235c8262002363565b9050919050565b6000620023708262002311565b9050919050565b82818337600083830152505050565b60005b83811015620023a657808201518184015260208101905062002389565b83811115620023b6576000848401525b50505050565b60006002820490506001821680620023d557607f821691505b60208210811415620023ec57620023eb6200250c565b5b50919050565b620023fd82620025ad565b810181811067ffffffffffffffff821117156200241f576200241e6200256a565b5b80604052505050565b6000620024358262002331565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200246b576200246a620024ae565b5b600182019050919050565b6000620024838262002331565b9150620024908362002331565b925082620024a357620024a2620024dd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6200295781620022a9565b81146200296357600080fd5b50565b6200297181620022bd565b81146200297d57600080fd5b50565b6200298b81620022c9565b81146200299757600080fd5b50565b620029a581620022f5565b8114620029b157600080fd5b50565b620029bf8162002331565b8114620029cb57600080fd5b5056fe60806040523480156200001157600080fd5b506040516200092f3803806200092f833981810160405281019062000037919062000248565b836000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055508160029080519060200190620000c8929190620000ec565b508060039080519060200190620000e1929190620000ec565b505050505062000500565b828054620000fa90620003dd565b90600052602060002090601f0160209004810192826200011e57600085556200016a565b82601f106200013957805160ff19168380011785556200016a565b828001600101855582156200016a579182015b82811115620001695782518255916020019190600101906200014c565b5b5090506200017991906200017d565b5090565b5b80821115620001985760008160009055506001016200017e565b5090565b6000620001b3620001ad8462000321565b620002f8565b905082815260208101848484011115620001d257620001d1620004ac565b5b620001df848285620003a7565b509392505050565b600081519050620001f881620004cc565b92915050565b600082601f830112620002165762000215620004a7565b5b8151620002288482602086016200019c565b91505092915050565b6000815190506200024281620004e6565b92915050565b60008060008060808587031215620002655762000264620004b6565b5b60006200027587828801620001e7565b9450506020620002888782880162000231565b935050604085015167ffffffffffffffff811115620002ac57620002ab620004b1565b5b620002ba87828801620001fe565b925050606085015167ffffffffffffffff811115620002de57620002dd620004b1565b5b620002ec87828801620001fe565b91505092959194509250565b60006200030462000317565b905062000312828262000413565b919050565b6000604051905090565b600067ffffffffffffffff8211156200033f576200033e62000478565b5b6200034a82620004bb565b9050602081019050919050565b6000620003648262000387565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620003c7578082015181840152602081019050620003aa565b83811115620003d7576000848401525b50505050565b60006002820490506001821680620003f657607f821691505b602082108114156200040d576200040c62000449565b5b50919050565b6200041e82620004bb565b810181811067ffffffffffffffff8211171562000440576200043f62000478565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620004d78162000357565b8114620004e357600080fd5b50565b620004f1816200036b565b8114620004fd57600080fd5b50565b61041f80620005106000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063516f279e146100515780638da5cb5b1461006f578063949d225d1461008d578063a035b1fe146100ab575b600080fd5b6100596100c9565b604051610066919061029d565b60405180910390f35b610077610157565b6040516100849190610282565b60405180910390f35b61009561017b565b6040516100a2919061029d565b60405180910390f35b6100b3610209565b6040516100c091906102bf565b60405180910390f35b600280546100d690610377565b80601f016020809104026020016040519081016040528092919081815260200182805461010290610377565b801561014f5780601f106101245761010080835404028352916020019161014f565b820191906000526020600020905b81548152906001019060200180831161013257829003601f168201915b505050505081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6003805461018890610377565b80601f01602080910402602001604051908101604052809291908181526020018280546101b490610377565b80156102015780601f106101d657610100808354040283529160200191610201565b820191906000526020600020905b8154815290600101906020018083116101e457829003601f168201915b505050505081565b600160009054906101000a90046fffffffffffffffffffffffffffffffff1681565b610234816102f6565b82525050565b6000610245826102da565b61024f81856102e5565b935061025f818560208601610344565b610268816103d8565b840191505092915050565b61027c81610308565b82525050565b6000602082019050610297600083018461022b565b92915050565b600060208201905081810360008301526102b7818461023a565b905092915050565b60006020820190506102d46000830184610273565b92915050565b600081519050919050565b600082825260208201905092915050565b600061030182610324565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015610362578082015181840152602081019050610347565b83811115610371576000848401525b50505050565b6000600282049050600182168061038f57607f821691505b602082108114156103a3576103a26103a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f830116905091905056fea264697066735822122073a682ed4975097efa2bf5bb6ac220643160baed35b421d42a19eb3c2da88d8e64736f6c63430008070033a26469706673582212208bc5ffa571dd35460e14e4380cc8f531862445d74ace3e89efdf8c0d908f8c9264736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0xA DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x7A6B4C616E64506C6F7400000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5A4B4C0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0xB8 JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0xB8 JUMP JUMPDEST POP POP POP PUSH3 0x1CD JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0xC6 SWAP1 PUSH3 0x168 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0xEA JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x136 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x105 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x136 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x136 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x135 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x118 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x145 SWAP2 SWAP1 PUSH3 0x149 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x164 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x14A JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x181 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x198 JUMPI PUSH3 0x197 PUSH3 0x19E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x3333 DUP1 PUSH3 0x1DD PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH3 0x10C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH3 0xA5 JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH3 0x6F JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH3 0x2CD JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH3 0x2ED JUMPI DUP1 PUSH4 0xE261F1E5 EQ PUSH3 0x323 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH3 0x359 JUMPI PUSH3 0x10C JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH3 0x21F JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH3 0x255 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH3 0x28B JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH3 0x2AD JUMPI PUSH3 0x10C JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH3 0xE7 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH3 0x19F JUMPI DUP1 PUSH4 0xB34203A EQ PUSH3 0x1BF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH3 0x1DF JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH3 0x1FF JUMPI PUSH3 0x10C JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH3 0x111 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH3 0x147 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH3 0x169 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x12F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x129 SWAP2 SWAP1 PUSH3 0x1A82 JUMP JUMPDEST PUSH3 0x38F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x13E SWAP2 SWAP1 PUSH3 0x1EEE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x151 PUSH3 0x475 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x160 SWAP2 SWAP1 PUSH3 0x1F28 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x187 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x181 SWAP2 SWAP1 PUSH3 0x1AE6 JUMP JUMPDEST PUSH3 0x50F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x196 SWAP2 SWAP1 PUSH3 0x1E22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x1BD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x1B7 SWAP2 SWAP1 PUSH3 0x1A3B JUMP JUMPDEST PUSH3 0x599 JUMP JUMPDEST STOP JUMPDEST PUSH3 0x1DD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x1D7 SWAP2 SWAP1 PUSH3 0x198B JUMP JUMPDEST PUSH3 0x6C2 JUMP JUMPDEST STOP JUMPDEST PUSH3 0x1FD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x1F7 SWAP2 SWAP1 PUSH3 0x1857 JUMP JUMPDEST PUSH3 0x76F JUMP JUMPDEST STOP JUMPDEST PUSH3 0x21D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x217 SWAP2 SWAP1 PUSH3 0x1857 JUMP JUMPDEST PUSH3 0x7D8 JUMP JUMPDEST STOP JUMPDEST PUSH3 0x23D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x237 SWAP2 SWAP1 PUSH3 0x1AE6 JUMP JUMPDEST PUSH3 0x7FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x24C SWAP2 SWAP1 PUSH3 0x1E22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x273 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x26D SWAP2 SWAP1 PUSH3 0x17DE JUMP JUMPDEST PUSH3 0x8AF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x282 SWAP2 SWAP1 PUSH3 0x20E4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x295 PUSH3 0x96A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x2A4 SWAP2 SWAP1 PUSH3 0x1F28 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x2CB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x2C5 SWAP2 SWAP1 PUSH3 0x1944 JUMP JUMPDEST PUSH3 0xA04 JUMP JUMPDEST STOP JUMPDEST PUSH3 0x2EB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x2E5 SWAP2 SWAP1 PUSH3 0x18B3 JUMP JUMPDEST PUSH3 0xA1E JUMP JUMPDEST STOP JUMPDEST PUSH3 0x30B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x305 SWAP2 SWAP1 PUSH3 0x1AE6 JUMP JUMPDEST PUSH3 0xA89 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x31A SWAP2 SWAP1 PUSH3 0x1F28 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x341 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x33B SWAP2 SWAP1 PUSH3 0x1AE6 JUMP JUMPDEST PUSH3 0xB3D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x350 SWAP2 SWAP1 PUSH3 0x1F0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x377 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x371 SWAP2 SWAP1 PUSH3 0x1810 JUMP JUMPDEST PUSH3 0xB7D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x386 SWAP2 SWAP1 PUSH3 0x1EEE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH3 0x45B JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH3 0x46E JUMPI POP PUSH3 0x46D DUP3 PUSH3 0xC11 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH3 0x486 SWAP1 PUSH3 0x23BC JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH3 0x4B4 SWAP1 PUSH3 0x23BC JUMP JUMPDEST DUP1 ISZERO PUSH3 0x505 JUMPI DUP1 PUSH1 0x1F LT PUSH3 0x4D9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH3 0x505 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH3 0x4E7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x51C DUP3 PUSH3 0xC7B JUMP JUMPDEST PUSH3 0x55E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x555 SWAP1 PUSH3 0x205C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x5A6 DUP3 PUSH3 0x7FA JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x61A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x611 SWAP1 PUSH3 0x20A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0x63B PUSH3 0xCE7 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH3 0x66F JUMPI POP PUSH3 0x66E DUP2 PUSH3 0x668 PUSH3 0xCE7 JUMP JUMPDEST PUSH3 0xB7D JUMP JUMPDEST JUMPDEST PUSH3 0x6B1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x6A8 SWAP1 PUSH3 0x1FF6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x6BD DUP4 DUP4 PUSH3 0xCEF JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH3 0x6D6 SWAP1 PUSH3 0x164A JUMP JUMPDEST PUSH3 0x6E5 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH3 0x1E93 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH3 0x702 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP SWAP1 POP PUSH1 0x6 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH3 0x784 PUSH3 0x77D PUSH3 0xCE7 JUMP JUMPDEST DUP3 PUSH3 0xDAA JUMP JUMPDEST PUSH3 0x7C6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x7BD SWAP1 PUSH3 0x20C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x7D3 DUP4 DUP4 DUP4 PUSH3 0xE95 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH3 0x7F5 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH3 0xA1E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x8A6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x89D SWAP1 PUSH3 0x203A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x923 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x91A SWAP1 PUSH3 0x2018 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH3 0x97B SWAP1 PUSH3 0x23BC JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH3 0x9A9 SWAP1 PUSH3 0x23BC JUMP JUMPDEST DUP1 ISZERO PUSH3 0x9FA JUMPI DUP1 PUSH1 0x1F LT PUSH3 0x9CE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH3 0x9FA JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH3 0x9DC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH3 0xA1A PUSH3 0xA12 PUSH3 0xCE7 JUMP JUMPDEST DUP4 DUP4 PUSH3 0x110E JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH3 0xA33 PUSH3 0xA2C PUSH3 0xCE7 JUMP JUMPDEST DUP4 PUSH3 0xDAA JUMP JUMPDEST PUSH3 0xA75 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xA6C SWAP1 PUSH3 0x20C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0xA83 DUP5 DUP5 DUP5 DUP5 PUSH3 0x1280 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH3 0xA96 DUP3 PUSH3 0xC7B JUMP JUMPDEST PUSH3 0xAD8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xACF SWAP1 PUSH3 0x207E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH3 0xAE4 PUSH3 0x12E3 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH3 0xB06 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH3 0xB35 JUMP JUMPDEST DUP1 PUSH3 0xB12 DUP5 PUSH3 0x12FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH3 0xB25 SWAP3 SWAP2 SWAP1 PUSH3 0x1DFA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x6 DUP2 DUP2 SLOAD DUP2 LT PUSH3 0xB4E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0xD64 DUP4 PUSH3 0x7FA JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xDB7 DUP3 PUSH3 0xC7B JUMP JUMPDEST PUSH3 0xDF9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xDF0 SWAP1 PUSH3 0x1FD4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH3 0xE06 DUP4 PUSH3 0x7FA JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH3 0xE78 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0xE60 DUP5 PUSH3 0x50F JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH3 0xE8C JUMPI POP PUSH3 0xE8B DUP2 DUP6 PUSH3 0xB7D JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0xEB7 DUP3 PUSH3 0x7FA JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH3 0xF10 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xF07 SWAP1 PUSH3 0x1F6E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0xF83 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xF7A SWAP1 PUSH3 0x1F90 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0xF90 DUP4 DUP4 DUP4 PUSH3 0x1474 JUMP JUMPDEST PUSH3 0xF9D PUSH1 0x0 DUP3 PUSH3 0xCEF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0xFEF SWAP2 SWAP1 PUSH3 0x226E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x1048 SWAP2 SWAP1 PUSH3 0x21D9 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH3 0x1109 DUP4 DUP4 DUP4 PUSH3 0x1479 JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x1180 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x1177 SWAP1 PUSH3 0x1FB2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH3 0x1273 SWAP2 SWAP1 PUSH3 0x1EEE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH3 0x128D DUP5 DUP5 DUP5 PUSH3 0xE95 JUMP JUMPDEST PUSH3 0x129B DUP5 DUP5 DUP5 DUP5 PUSH3 0x147E JUMP JUMPDEST PUSH3 0x12DD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x12D4 SWAP1 PUSH3 0x1F4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH3 0x1344 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH3 0x146F JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH3 0x137C JUMPI DUP1 DUP1 PUSH3 0x1362 SWAP1 PUSH3 0x2428 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH3 0x1374 SWAP2 SWAP1 PUSH3 0x2236 JUMP JUMPDEST SWAP2 POP PUSH3 0x134C JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x139B JUMPI PUSH3 0x139A PUSH3 0x256A JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH3 0x13CE JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH3 0x1468 JUMPI PUSH1 0x1 DUP3 PUSH3 0x13EA SWAP2 SWAP1 PUSH3 0x226E JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH3 0x13FB SWAP2 SWAP1 PUSH3 0x2476 JUMP JUMPDEST PUSH1 0x30 PUSH3 0x1409 SWAP2 SWAP1 PUSH3 0x21D9 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH3 0x1422 JUMPI PUSH3 0x1421 PUSH3 0x253B JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH3 0x1460 SWAP2 SWAP1 PUSH3 0x2236 JUMP JUMPDEST SWAP5 POP PUSH3 0x13D2 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x14A1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0x1627 JUMP JUMPDEST ISZERO PUSH3 0x161A JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH3 0x14CD PUSH3 0xCE7 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x14F1 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH3 0x1E3F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0x150C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH3 0x1540 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH3 0x153D SWAP2 SWAP1 PUSH3 0x1AB4 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH3 0x15C9 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH3 0x1573 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 PUSH3 0x1578 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH3 0x15C1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x15B8 SWAP1 PUSH3 0x1F4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH3 0x161F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x92F DUP1 PUSH3 0x29CF DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x166F PUSH3 0x1669 DUP5 PUSH3 0x212A JUMP JUMPDEST PUSH3 0x2101 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x168E JUMPI PUSH3 0x168D PUSH3 0x259E JUMP JUMPDEST JUMPDEST PUSH3 0x169B DUP5 DUP3 DUP6 PUSH3 0x2377 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x16BA PUSH3 0x16B4 DUP5 PUSH3 0x2160 JUMP JUMPDEST PUSH3 0x2101 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x16D9 JUMPI PUSH3 0x16D8 PUSH3 0x259E JUMP JUMPDEST JUMPDEST PUSH3 0x16E6 DUP5 DUP3 DUP6 PUSH3 0x2377 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH3 0x16FF DUP2 PUSH3 0x294C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH3 0x1716 DUP2 PUSH3 0x2966 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH3 0x172D DUP2 PUSH3 0x2980 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x1744 DUP2 PUSH3 0x2980 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x1762 JUMPI PUSH3 0x1761 PUSH3 0x2599 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH3 0x1774 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x1658 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x1795 JUMPI PUSH3 0x1794 PUSH3 0x2599 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH3 0x17A7 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x16A3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH3 0x17C1 DUP2 PUSH3 0x299A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH3 0x17D8 DUP2 PUSH3 0x29B4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x17F7 JUMPI PUSH3 0x17F6 PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x1807 DUP5 DUP3 DUP6 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x182A JUMPI PUSH3 0x1829 PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x183A DUP6 DUP3 DUP7 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH3 0x184D DUP6 DUP3 DUP7 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1873 JUMPI PUSH3 0x1872 PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x1883 DUP7 DUP3 DUP8 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH3 0x1896 DUP7 DUP3 DUP8 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH3 0x18A9 DUP7 DUP3 DUP8 ADD PUSH3 0x17C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x18D0 JUMPI PUSH3 0x18CF PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x18E0 DUP8 DUP3 DUP9 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH3 0x18F3 DUP8 DUP3 DUP9 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH3 0x1906 DUP8 DUP3 DUP9 ADD PUSH3 0x17C7 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x192A JUMPI PUSH3 0x1929 PUSH3 0x25A3 JUMP JUMPDEST JUMPDEST PUSH3 0x1938 DUP8 DUP3 DUP9 ADD PUSH3 0x174A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x195E JUMPI PUSH3 0x195D PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x196E DUP6 DUP3 DUP7 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH3 0x1981 DUP6 DUP3 DUP7 ADD PUSH3 0x1705 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x19A8 JUMPI PUSH3 0x19A7 PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x19B8 DUP8 DUP3 DUP9 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH3 0x19CB DUP8 DUP3 DUP9 ADD PUSH3 0x17B0 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x19EF JUMPI PUSH3 0x19EE PUSH3 0x25A3 JUMP JUMPDEST JUMPDEST PUSH3 0x19FD DUP8 DUP3 DUP9 ADD PUSH3 0x177D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x1A21 JUMPI PUSH3 0x1A20 PUSH3 0x25A3 JUMP JUMPDEST JUMPDEST PUSH3 0x1A2F DUP8 DUP3 DUP9 ADD PUSH3 0x177D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1A55 JUMPI PUSH3 0x1A54 PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x1A65 DUP6 DUP3 DUP7 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH3 0x1A78 DUP6 DUP3 DUP7 ADD PUSH3 0x17C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x1A9B JUMPI PUSH3 0x1A9A PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x1AAB DUP5 DUP3 DUP6 ADD PUSH3 0x171C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x1ACD JUMPI PUSH3 0x1ACC PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x1ADD DUP5 DUP3 DUP6 ADD PUSH3 0x1733 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x1AFF JUMPI PUSH3 0x1AFE PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x1B0F DUP5 DUP3 DUP6 ADD PUSH3 0x17C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x1B23 DUP2 PUSH3 0x22A9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH3 0x1B34 DUP2 PUSH3 0x22BD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1B47 DUP3 PUSH3 0x2196 JUMP JUMPDEST PUSH3 0x1B53 DUP2 DUP6 PUSH3 0x21AC JUMP JUMPDEST SWAP4 POP PUSH3 0x1B65 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH3 0x2386 JUMP JUMPDEST PUSH3 0x1B70 DUP2 PUSH3 0x25AD JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x1B86 DUP2 PUSH3 0x233B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1B99 DUP3 PUSH3 0x21A1 JUMP JUMPDEST PUSH3 0x1BA5 DUP2 DUP6 PUSH3 0x21BD JUMP JUMPDEST SWAP4 POP PUSH3 0x1BB7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH3 0x2386 JUMP JUMPDEST PUSH3 0x1BC2 DUP2 PUSH3 0x25AD JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1BDA DUP3 PUSH3 0x21A1 JUMP JUMPDEST PUSH3 0x1BE6 DUP2 DUP6 PUSH3 0x21CE JUMP JUMPDEST SWAP4 POP PUSH3 0x1BF8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH3 0x2386 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1C13 PUSH1 0x32 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1C20 DUP3 PUSH3 0x25BE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1C3A PUSH1 0x25 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1C47 DUP3 PUSH3 0x260D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1C61 PUSH1 0x24 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1C6E DUP3 PUSH3 0x265C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1C88 PUSH1 0x19 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1C95 DUP3 PUSH3 0x26AB JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1CAF PUSH1 0x2C DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1CBC DUP3 PUSH3 0x26D4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1CD6 PUSH1 0x38 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1CE3 DUP3 PUSH3 0x2723 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1CFD PUSH1 0x2A DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1D0A DUP3 PUSH3 0x2772 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1D24 PUSH1 0x29 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1D31 DUP3 PUSH3 0x27C1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1D4B PUSH1 0x2C DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1D58 DUP3 PUSH3 0x2810 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1D72 PUSH1 0x2F DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1D7F DUP3 PUSH3 0x285F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1D99 PUSH1 0x21 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1DA6 DUP3 PUSH3 0x28AE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1DC0 PUSH1 0x31 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1DCD DUP3 PUSH3 0x28FD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x1DE3 DUP2 PUSH3 0x22F5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH3 0x1DF4 DUP2 PUSH3 0x2331 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1E08 DUP3 DUP6 PUSH3 0x1BCD JUMP JUMPDEST SWAP2 POP PUSH3 0x1E16 DUP3 DUP5 PUSH3 0x1BCD JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x1E39 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x1B18 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH3 0x1E56 PUSH1 0x0 DUP4 ADD DUP8 PUSH3 0x1B18 JUMP JUMPDEST PUSH3 0x1E65 PUSH1 0x20 DUP4 ADD DUP7 PUSH3 0x1B18 JUMP JUMPDEST PUSH3 0x1E74 PUSH1 0x40 DUP4 ADD DUP6 PUSH3 0x1DE9 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH3 0x1E88 DUP2 DUP5 PUSH3 0x1B3A JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH3 0x1EAA PUSH1 0x0 DUP4 ADD DUP8 PUSH3 0x1B18 JUMP JUMPDEST PUSH3 0x1EB9 PUSH1 0x20 DUP4 ADD DUP7 PUSH3 0x1DD8 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH3 0x1ECD DUP2 DUP6 PUSH3 0x1B8C JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH3 0x1EE3 DUP2 DUP5 PUSH3 0x1B8C JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x1F05 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x1B29 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x1F22 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x1B7B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1F44 DUP2 DUP5 PUSH3 0x1B8C JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1F67 DUP2 PUSH3 0x1C04 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1F89 DUP2 PUSH3 0x1C2B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1FAB DUP2 PUSH3 0x1C52 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1FCD DUP2 PUSH3 0x1C79 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1FEF DUP2 PUSH3 0x1CA0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x2011 DUP2 PUSH3 0x1CC7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x2033 DUP2 PUSH3 0x1CEE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x2055 DUP2 PUSH3 0x1D15 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x2077 DUP2 PUSH3 0x1D3C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x2099 DUP2 PUSH3 0x1D63 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x20BB DUP2 PUSH3 0x1D8A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x20DD DUP2 PUSH3 0x1DB1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x20FB PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x1DE9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x210D PUSH3 0x2120 JUMP JUMPDEST SWAP1 POP PUSH3 0x211B DUP3 DUP3 PUSH3 0x23F2 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x2148 JUMPI PUSH3 0x2147 PUSH3 0x256A JUMP JUMPDEST JUMPDEST PUSH3 0x2153 DUP3 PUSH3 0x25AD JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x217E JUMPI PUSH3 0x217D PUSH3 0x256A JUMP JUMPDEST JUMPDEST PUSH3 0x2189 DUP3 PUSH3 0x25AD JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x21E6 DUP3 PUSH3 0x2331 JUMP JUMPDEST SWAP2 POP PUSH3 0x21F3 DUP4 PUSH3 0x2331 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x222B JUMPI PUSH3 0x222A PUSH3 0x24AE JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2243 DUP3 PUSH3 0x2331 JUMP JUMPDEST SWAP2 POP PUSH3 0x2250 DUP4 PUSH3 0x2331 JUMP JUMPDEST SWAP3 POP DUP3 PUSH3 0x2263 JUMPI PUSH3 0x2262 PUSH3 0x24DD JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x227B DUP3 PUSH3 0x2331 JUMP JUMPDEST SWAP2 POP PUSH3 0x2288 DUP4 PUSH3 0x2331 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH3 0x229E JUMPI PUSH3 0x229D PUSH3 0x24AE JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x22B6 DUP3 PUSH3 0x2311 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2348 DUP3 PUSH3 0x234F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x235C DUP3 PUSH3 0x2363 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2370 DUP3 PUSH3 0x2311 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x23A6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x2389 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x23B6 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x23D5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x23EC JUMPI PUSH3 0x23EB PUSH3 0x250C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x23FD DUP3 PUSH3 0x25AD JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x241F JUMPI PUSH3 0x241E PUSH3 0x256A JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2435 DUP3 PUSH3 0x2331 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH3 0x246B JUMPI PUSH3 0x246A PUSH3 0x24AE JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2483 DUP3 PUSH3 0x2331 JUMP JUMPDEST SWAP2 POP PUSH3 0x2490 DUP4 PUSH3 0x2331 JUMP JUMPDEST SWAP3 POP DUP3 PUSH3 0x24A3 JUMPI PUSH3 0x24A2 PUSH3 0x24DD JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH3 0x2957 DUP2 PUSH3 0x22A9 JUMP JUMPDEST DUP2 EQ PUSH3 0x2963 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x2971 DUP2 PUSH3 0x22BD JUMP JUMPDEST DUP2 EQ PUSH3 0x297D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x298B DUP2 PUSH3 0x22C9 JUMP JUMPDEST DUP2 EQ PUSH3 0x2997 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x29A5 DUP2 PUSH3 0x22F5 JUMP JUMPDEST DUP2 EQ PUSH3 0x29B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x29BF DUP2 PUSH3 0x2331 JUMP JUMPDEST DUP2 EQ PUSH3 0x29CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x92F CODESIZE SUB DUP1 PUSH3 0x92F DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x248 JUMP JUMPDEST DUP4 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH1 0x2 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xC8 SWAP3 SWAP2 SWAP1 PUSH3 0xEC JUMP JUMPDEST POP DUP1 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xE1 SWAP3 SWAP2 SWAP1 PUSH3 0xEC JUMP JUMPDEST POP POP POP POP POP PUSH3 0x500 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0xFA SWAP1 PUSH3 0x3DD JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x11E JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x16A JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x139 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x16A JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x16A JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x169 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x14C JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x179 SWAP2 SWAP1 PUSH3 0x17D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x198 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x17E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1B3 PUSH3 0x1AD DUP5 PUSH3 0x321 JUMP JUMPDEST PUSH3 0x2F8 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x1D2 JUMPI PUSH3 0x1D1 PUSH3 0x4AC JUMP JUMPDEST JUMPDEST PUSH3 0x1DF DUP5 DUP3 DUP6 PUSH3 0x3A7 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x1F8 DUP2 PUSH3 0x4CC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x216 JUMPI PUSH3 0x215 PUSH3 0x4A7 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x228 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x19C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x242 DUP2 PUSH3 0x4E6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x265 JUMPI PUSH3 0x264 PUSH3 0x4B6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x275 DUP8 DUP3 DUP9 ADD PUSH3 0x1E7 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH3 0x288 DUP8 DUP3 DUP9 ADD PUSH3 0x231 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x2AC JUMPI PUSH3 0x2AB PUSH3 0x4B1 JUMP JUMPDEST JUMPDEST PUSH3 0x2BA DUP8 DUP3 DUP9 ADD PUSH3 0x1FE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x2DE JUMPI PUSH3 0x2DD PUSH3 0x4B1 JUMP JUMPDEST JUMPDEST PUSH3 0x2EC DUP8 DUP3 DUP9 ADD PUSH3 0x1FE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x304 PUSH3 0x317 JUMP JUMPDEST SWAP1 POP PUSH3 0x312 DUP3 DUP3 PUSH3 0x413 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x33F JUMPI PUSH3 0x33E PUSH3 0x478 JUMP JUMPDEST JUMPDEST PUSH3 0x34A DUP3 PUSH3 0x4BB JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x364 DUP3 PUSH3 0x387 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x3C7 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x3AA JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x3D7 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x3F6 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x40D JUMPI PUSH3 0x40C PUSH3 0x449 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x41E DUP3 PUSH3 0x4BB JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x440 JUMPI PUSH3 0x43F PUSH3 0x478 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x4D7 DUP2 PUSH3 0x357 JUMP JUMPDEST DUP2 EQ PUSH3 0x4E3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x4F1 DUP2 PUSH3 0x36B JUMP JUMPDEST DUP2 EQ PUSH3 0x4FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x41F DUP1 PUSH3 0x510 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x516F279E EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0x949D225D EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0xA035B1FE EQ PUSH2 0xAB JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0xC9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x29D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x77 PUSH2 0x157 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x282 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x95 PUSH2 0x17B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x29D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB3 PUSH2 0x209 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x2BF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH2 0xD6 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x102 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x14F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x124 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x14F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x132 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH2 0x188 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x1B4 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x201 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1D6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x201 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1E4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0x234 DUP2 PUSH2 0x2F6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x245 DUP3 PUSH2 0x2DA JUMP JUMPDEST PUSH2 0x24F DUP2 DUP6 PUSH2 0x2E5 JUMP JUMPDEST SWAP4 POP PUSH2 0x25F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x344 JUMP JUMPDEST PUSH2 0x268 DUP2 PUSH2 0x3D8 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x27C DUP2 PUSH2 0x308 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x297 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x22B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2B7 DUP2 DUP5 PUSH2 0x23A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2D4 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x273 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x301 DUP3 PUSH2 0x324 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x362 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x347 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x371 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x38F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x3A3 JUMPI PUSH2 0x3A2 PUSH2 0x3A9 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH20 0xA682ED4975097EFA2BF5BB6AC220643160BAED35 0xB4 0x21 0xD4 0x2A NOT 0xEB EXTCODECOPY 0x2D 0xA8 DUP14 DUP15 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP12 0xC5 SELFDESTRUCT 0xA5 PUSH18 0xDD35460E14E4380CC8F531862445D74ACE3E DUP10 0xEF 0xDF DUP13 0xD SWAP1 DUP16 DUP13 SWAP3 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "608:386:10:-:0;;;718:44;;;;;;;;;;1390:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1464:5;1456;:13;;;;;;;;;;;;:::i;:::-;;1489:7;1479;:17;;;;;;;;;;;;:::i;:::-;;1390:113;;608:386:10;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:320:11:-;51:6;88:1;82:4;78:12;68:22;;135:1;129:4;125:12;156:18;146:81;;212:4;204:6;200:17;190:27;;146:81;274:2;266:6;263:14;243:18;240:38;237:84;;;293:18;;:::i;:::-;237:84;58:269;7:320;;;:::o;333:180::-;381:77;378:1;371:88;478:4;475:1;468:15;502:4;499:1;492:15;608:386:10;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_864": {
"entryPoint": 5241,
"id": 864,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_748": {
"entryPoint": 3311,
"id": 748,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_216": {
"entryPoint": 4835,
"id": 216,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_853": {
"entryPoint": 5236,
"id": 853,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_842": {
"entryPoint": 5246,
"id": 842,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_438": {
"entryPoint": 3195,
"id": 438,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_479": {
"entryPoint": 3498,
"id": 479,
"parameterSlots": 2,
"returnSlots": 1
},
"@_msgSender_1461": {
"entryPoint": 3303,
"id": 1461,
"parameterSlots": 0,
"returnSlots": 1
},
"@_safeTransfer_420": {
"entryPoint": 4736,
"id": 420,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_780": {
"entryPoint": 4366,
"id": 780,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_724": {
"entryPoint": 3733,
"id": 724,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_259": {
"entryPoint": 1433,
"id": 259,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_117": {
"entryPoint": 2223,
"id": 117,
"parameterSlots": 1,
"returnSlots": 1
},
"@create_1795": {
"entryPoint": 1730,
"id": 1795,
"parameterSlots": 4,
"returnSlots": 0
},
"@getApproved_280": {
"entryPoint": 1295,
"id": 280,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_315": {
"entryPoint": 2941,
"id": 315,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1172": {
"entryPoint": 5671,
"id": 1172,
"parameterSlots": 1,
"returnSlots": 1
},
"@lands_1757": {
"entryPoint": 2877,
"id": 1757,
"parameterSlots": 0,
"returnSlots": 0
},
"@name_155": {
"entryPoint": 1141,
"id": 155,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_145": {
"entryPoint": 2042,
"id": 145,
"parameterSlots": 1,
"returnSlots": 1
},
"@safeTransferFrom_361": {
"entryPoint": 2008,
"id": 361,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_391": {
"entryPoint": 2590,
"id": 391,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_297": {
"entryPoint": 2564,
"id": 297,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1697": {
"entryPoint": 3089,
"id": 1697,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_93": {
"entryPoint": 911,
"id": 93,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_165": {
"entryPoint": 2410,
"id": 165,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1556": {
"entryPoint": 4858,
"id": 1556,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_207": {
"entryPoint": 2697,
"id": 207,
"parameterSlots": 1,
"returnSlots": 1
},
"@transferFrom_342": {
"entryPoint": 1903,
"id": 342,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 5720,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 5795,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 5870,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 5893,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 5916,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 5939,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 5962,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 6013,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint128": {
"entryPoint": 6064,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 6087,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 6110,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 6160,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 6231,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 6323,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 6468,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint128t_string_memory_ptrt_string_memory_ptr": {
"entryPoint": 6539,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 6715,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 6786,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 6836,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 6886,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 6936,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 6953,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 6970,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_contract$_Land_$1751_to_t_address_fromStack": {
"entryPoint": 7035,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7052,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 7117,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7172,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7211,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7250,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7289,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7328,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7367,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7406,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7445,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7484,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7523,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7562,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7601,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint128_to_t_uint128_fromStack": {
"entryPoint": 7640,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 7657,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 7674,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 7714,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed": {
"entryPoint": 7743,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint128_t_string_memory_ptr_t_string_memory_ptr__to_t_address_t_uint128_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7827,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 7918,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_contract$_Land_$1751__to_t_address__fromStack_reversed": {
"entryPoint": 7947,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7976,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8012,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8046,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8080,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8114,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8148,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8182,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8216,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8250,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8284,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8318,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8352,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8386,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 8420,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 8449,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 8480,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 8490,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 8544,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 8598,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 8609,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 8620,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 8637,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 8654,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 8665,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 8758,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 8814,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 8873,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 8893,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 8905,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint128": {
"entryPoint": 8949,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 8977,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 9009,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_contract$_Land_$1751_to_t_address": {
"entryPoint": 9019,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_address": {
"entryPoint": 9039,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_uint160": {
"entryPoint": 9059,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 9079,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 9094,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 9148,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 9202,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 9256,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 9334,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 9390,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 9437,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 9484,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 9531,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 9578,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 9625,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 9630,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 9635,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 9640,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 9645,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 9662,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48": {
"entryPoint": 9741,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 9820,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 9899,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c": {
"entryPoint": 9940,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d": {
"entryPoint": 10019,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba": {
"entryPoint": 10098,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397": {
"entryPoint": 10177,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d": {
"entryPoint": 10256,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb": {
"entryPoint": 10335,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 10414,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2": {
"entryPoint": 10493,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 10572,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 10598,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 10624,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint128": {
"entryPoint": 10650,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 10676,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:32116:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:327:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:74:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "166:6:11"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "125:40:11"
},
"nodeType": "YulFunctionCall",
"src": "125:48:11"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "109:15:11"
},
"nodeType": "YulFunctionCall",
"src": "109:65:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "190:5:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "197:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "183:6:11"
},
"nodeType": "YulFunctionCall",
"src": "183:21:11"
},
"nodeType": "YulExpressionStatement",
"src": "183:21:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "213:27:11",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "228:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "224:3:11"
},
"nodeType": "YulFunctionCall",
"src": "224:16:11"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "217:3:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "278:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "280:77:11"
},
"nodeType": "YulFunctionCall",
"src": "280:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "280:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "259:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "264:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "255:3:11"
},
"nodeType": "YulFunctionCall",
"src": "255:16:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "273:3:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "252:2:11"
},
"nodeType": "YulFunctionCall",
"src": "252:25:11"
},
"nodeType": "YulIf",
"src": "249:112:11"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "394:3:11"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "399:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "404:6:11"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "370:23:11"
},
"nodeType": "YulFunctionCall",
"src": "370:41:11"
},
"nodeType": "YulExpressionStatement",
"src": "370:41:11"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:11",
"type": ""
}
],
"src": "7:410:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "507:328:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "517:75:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "584:6:11"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "542:41:11"
},
"nodeType": "YulFunctionCall",
"src": "542:49:11"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "526:15:11"
},
"nodeType": "YulFunctionCall",
"src": "526:66:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "517:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "608:5:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "615:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "601:6:11"
},
"nodeType": "YulFunctionCall",
"src": "601:21:11"
},
"nodeType": "YulExpressionStatement",
"src": "601:21:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "631:27:11",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "646:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "653:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "642:3:11"
},
"nodeType": "YulFunctionCall",
"src": "642:16:11"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "635:3:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "696:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "698:77:11"
},
"nodeType": "YulFunctionCall",
"src": "698:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "698:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "677:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "682:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "673:3:11"
},
"nodeType": "YulFunctionCall",
"src": "673:16:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "691:3:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "670:2:11"
},
"nodeType": "YulFunctionCall",
"src": "670:25:11"
},
"nodeType": "YulIf",
"src": "667:112:11"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "812:3:11"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "817:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "822:6:11"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "788:23:11"
},
"nodeType": "YulFunctionCall",
"src": "788:41:11"
},
"nodeType": "YulExpressionStatement",
"src": "788:41:11"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "480:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "485:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "493:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "501:5:11",
"type": ""
}
],
"src": "423:412:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "893:87:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "903:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "925:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "912:12:11"
},
"nodeType": "YulFunctionCall",
"src": "912:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "903:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "968:5:11"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "941:26:11"
},
"nodeType": "YulFunctionCall",
"src": "941:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "941:33:11"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "871:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "879:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "887:5:11",
"type": ""
}
],
"src": "841:139:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1035:84:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1045:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1067:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1054:12:11"
},
"nodeType": "YulFunctionCall",
"src": "1054:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1045:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1107:5:11"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "1083:23:11"
},
"nodeType": "YulFunctionCall",
"src": "1083:30:11"
},
"nodeType": "YulExpressionStatement",
"src": "1083:30:11"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1013:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1021:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1029:5:11",
"type": ""
}
],
"src": "986:133:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1176:86:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1186:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1208:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1195:12:11"
},
"nodeType": "YulFunctionCall",
"src": "1195:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1186:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1250:5:11"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1224:25:11"
},
"nodeType": "YulFunctionCall",
"src": "1224:32:11"
},
"nodeType": "YulExpressionStatement",
"src": "1224:32:11"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1154:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1162:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1170:5:11",
"type": ""
}
],
"src": "1125:137:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1330:79:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1340:22:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1355:6:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1349:5:11"
},
"nodeType": "YulFunctionCall",
"src": "1349:13:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1340:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1397:5:11"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1371:25:11"
},
"nodeType": "YulFunctionCall",
"src": "1371:32:11"
},
"nodeType": "YulExpressionStatement",
"src": "1371:32:11"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1308:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1316:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1324:5:11",
"type": ""
}
],
"src": "1268:141:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1489:277:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1538:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1540:77:11"
},
"nodeType": "YulFunctionCall",
"src": "1540:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "1540:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1517:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1525:4:11",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1513:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1513:17:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1532:3:11"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1509:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1509:27:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1502:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1502:35:11"
},
"nodeType": "YulIf",
"src": "1499:122:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1630:34:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1657:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1644:12:11"
},
"nodeType": "YulFunctionCall",
"src": "1644:20:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1634:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1673:87:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1733:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1741:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1729:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1729:17:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1748:6:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1756:3:11"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1682:46:11"
},
"nodeType": "YulFunctionCall",
"src": "1682:78:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1673:5:11"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1467:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1475:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1483:5:11",
"type": ""
}
],
"src": "1428:338:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1848:278:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1897:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1899:77:11"
},
"nodeType": "YulFunctionCall",
"src": "1899:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "1899:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1876:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1884:4:11",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1872:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1872:17:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1891:3:11"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1868:3:11"
},
"nodeType": "YulFunctionCall",
"src": "1868:27:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1861:6:11"
},
"nodeType": "YulFunctionCall",
"src": "1861:35:11"
},
"nodeType": "YulIf",
"src": "1858:122:11"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1989:34:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2016:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2003:12:11"
},
"nodeType": "YulFunctionCall",
"src": "2003:20:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1993:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2032:88:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2093:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2101:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2089:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2089:17:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2108:6:11"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2116:3:11"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2041:47:11"
},
"nodeType": "YulFunctionCall",
"src": "2041:79:11"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2032:5:11"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1826:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1834:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1842:5:11",
"type": ""
}
],
"src": "1786:340:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2184:87:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2194:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2216:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2203:12:11"
},
"nodeType": "YulFunctionCall",
"src": "2203:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2194:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2259:5:11"
}
],
"functionName": {
"name": "validator_revert_t_uint128",
"nodeType": "YulIdentifier",
"src": "2232:26:11"
},
"nodeType": "YulFunctionCall",
"src": "2232:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "2232:33:11"
}
]
},
"name": "abi_decode_t_uint128",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2162:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2170:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2178:5:11",
"type": ""
}
],
"src": "2132:139:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2329:87:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2339:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2361:6:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2348:12:11"
},
"nodeType": "YulFunctionCall",
"src": "2348:20:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2339:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2404:5:11"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2377:26:11"
},
"nodeType": "YulFunctionCall",
"src": "2377:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "2377:33:11"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2307:6:11",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2315:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2323:5:11",
"type": ""
}
],
"src": "2277:139:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2488:263:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2534:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2536:77:11"
},
"nodeType": "YulFunctionCall",
"src": "2536:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "2536:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2509:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2518:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2505:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2505:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2530:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2501:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2501:32:11"
},
"nodeType": "YulIf",
"src": "2498:119:11"
},
{
"nodeType": "YulBlock",
"src": "2627:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2642:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2656:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2646:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2671:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2706:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2717:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2702:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2702:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2726:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2681:20:11"
},
"nodeType": "YulFunctionCall",
"src": "2681:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2671:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2458:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2469:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2481:6:11",
"type": ""
}
],
"src": "2422:329:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2840:391:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2886:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2888:77:11"
},
"nodeType": "YulFunctionCall",
"src": "2888:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "2888:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2861:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2870:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2857:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2857:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2882:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2853:3:11"
},
"nodeType": "YulFunctionCall",
"src": "2853:32:11"
},
"nodeType": "YulIf",
"src": "2850:119:11"
},
{
"nodeType": "YulBlock",
"src": "2979:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2994:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3008:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2998:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3023:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3058:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3069:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3054:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3054:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3078:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3033:20:11"
},
"nodeType": "YulFunctionCall",
"src": "3033:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3023:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3106:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3121:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3135:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3125:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3151:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3186:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3197:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3182:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3182:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3206:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3161:20:11"
},
"nodeType": "YulFunctionCall",
"src": "3161:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3151:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2802:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2813:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2825:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2833:6:11",
"type": ""
}
],
"src": "2757:474:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3337:519:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3383:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3385:77:11"
},
"nodeType": "YulFunctionCall",
"src": "3385:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "3385:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3358:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3367:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3354:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3354:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3379:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3350:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3350:32:11"
},
"nodeType": "YulIf",
"src": "3347:119:11"
},
{
"nodeType": "YulBlock",
"src": "3476:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3491:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3505:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3495:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3520:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3555:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3566:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3551:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3551:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3575:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3530:20:11"
},
"nodeType": "YulFunctionCall",
"src": "3530:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3520:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3603:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3618:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3632:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3622:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3648:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3683:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3694:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3679:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3679:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3703:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3658:20:11"
},
"nodeType": "YulFunctionCall",
"src": "3658:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3648:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3731:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3746:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3760:2:11",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3750:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3776:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3811:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3822:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3807:3:11"
},
"nodeType": "YulFunctionCall",
"src": "3807:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3831:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3786:20:11"
},
"nodeType": "YulFunctionCall",
"src": "3786:53:11"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3776:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3291:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3302:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3314:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3322:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3330:6:11",
"type": ""
}
],
"src": "3237:619:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3988:817:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4035:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4037:77:11"
},
"nodeType": "YulFunctionCall",
"src": "4037:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "4037:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4009:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4018:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4005:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4005:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4030:3:11",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4001:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4001:33:11"
},
"nodeType": "YulIf",
"src": "3998:120:11"
},
{
"nodeType": "YulBlock",
"src": "4128:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4143:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4157:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4147:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4172:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4207:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4218:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4203:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4203:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4227:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4182:20:11"
},
"nodeType": "YulFunctionCall",
"src": "4182:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4172:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4255:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4270:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4284:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4274:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4300:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4335:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4346:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4331:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4331:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4355:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4310:20:11"
},
"nodeType": "YulFunctionCall",
"src": "4310:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4300:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4383:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4398:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4412:2:11",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4402:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4428:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4463:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4474:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4459:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4459:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4483:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4438:20:11"
},
"nodeType": "YulFunctionCall",
"src": "4438:53:11"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4428:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4511:287:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4526:46:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4557:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4568:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4553:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4553:18:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4540:12:11"
},
"nodeType": "YulFunctionCall",
"src": "4540:32:11"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4530:6:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4619:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "4621:77:11"
},
"nodeType": "YulFunctionCall",
"src": "4621:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "4621:79:11"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4591:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4599:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4588:2:11"
},
"nodeType": "YulFunctionCall",
"src": "4588:30:11"
},
"nodeType": "YulIf",
"src": "4585:117:11"
},
{
"nodeType": "YulAssignment",
"src": "4716:72:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4760:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4771:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4756:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4756:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4780:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4726:29:11"
},
"nodeType": "YulFunctionCall",
"src": "4726:62:11"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4716:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3934:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3945:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3957:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3965:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3973:6:11",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3981:6:11",
"type": ""
}
],
"src": "3862:943:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4891:388:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4937:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4939:77:11"
},
"nodeType": "YulFunctionCall",
"src": "4939:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "4939:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4912:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4921:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4908:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4908:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4933:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4904:3:11"
},
"nodeType": "YulFunctionCall",
"src": "4904:32:11"
},
"nodeType": "YulIf",
"src": "4901:119:11"
},
{
"nodeType": "YulBlock",
"src": "5030:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5045:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5059:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5049:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5074:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5109:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5120:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5105:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5105:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5129:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5084:20:11"
},
"nodeType": "YulFunctionCall",
"src": "5084:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5074:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5157:115:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5172:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5186:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5176:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5202:60:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5234:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5245:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5230:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5230:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5254:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "5212:17:11"
},
"nodeType": "YulFunctionCall",
"src": "5212:50:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5202:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4853:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4864:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4876:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4884:6:11",
"type": ""
}
],
"src": "4811:468:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5422:988:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5469:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5471:77:11"
},
"nodeType": "YulFunctionCall",
"src": "5471:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "5471:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5443:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5452:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5439:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5439:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5464:3:11",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5435:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5435:33:11"
},
"nodeType": "YulIf",
"src": "5432:120:11"
},
{
"nodeType": "YulBlock",
"src": "5562:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5577:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5591:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5581:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5606:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5641:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5652:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5637:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5637:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5661:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5616:20:11"
},
"nodeType": "YulFunctionCall",
"src": "5616:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5606:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5689:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5704:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5718:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5708:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5734:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5769:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5780:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5765:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5765:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5789:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint128",
"nodeType": "YulIdentifier",
"src": "5744:20:11"
},
"nodeType": "YulFunctionCall",
"src": "5744:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5734:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5817:288:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5832:46:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5863:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5874:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5859:3:11"
},
"nodeType": "YulFunctionCall",
"src": "5859:18:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5846:12:11"
},
"nodeType": "YulFunctionCall",
"src": "5846:32:11"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5836:6:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5925:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "5927:77:11"
},
"nodeType": "YulFunctionCall",
"src": "5927:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "5927:79:11"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5897:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5905:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5894:2:11"
},
"nodeType": "YulFunctionCall",
"src": "5894:30:11"
},
"nodeType": "YulIf",
"src": "5891:117:11"
},
{
"nodeType": "YulAssignment",
"src": "6022:73:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6067:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6078:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6063:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6063:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6087:7:11"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6032:30:11"
},
"nodeType": "YulFunctionCall",
"src": "6032:63:11"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "6022:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6115:288:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6130:46:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6161:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6172:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6157:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6157:18:11"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6144:12:11"
},
"nodeType": "YulFunctionCall",
"src": "6144:32:11"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6134:6:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6223:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "6225:77:11"
},
"nodeType": "YulFunctionCall",
"src": "6225:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "6225:79:11"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6195:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6203:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "6192:2:11"
},
"nodeType": "YulFunctionCall",
"src": "6192:30:11"
},
"nodeType": "YulIf",
"src": "6189:117:11"
},
{
"nodeType": "YulAssignment",
"src": "6320:73:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6365:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6376:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6361:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6361:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6385:7:11"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6330:30:11"
},
"nodeType": "YulFunctionCall",
"src": "6330:63:11"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "6320:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint128t_string_memory_ptrt_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5368:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5379:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5391:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5399:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5407:6:11",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "5415:6:11",
"type": ""
}
],
"src": "5285:1125:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6499:391:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6545:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6547:77:11"
},
"nodeType": "YulFunctionCall",
"src": "6547:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "6547:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6520:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6529:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6516:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6516:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6541:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6512:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6512:32:11"
},
"nodeType": "YulIf",
"src": "6509:119:11"
},
{
"nodeType": "YulBlock",
"src": "6638:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6653:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6667:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6657:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6682:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6717:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6728:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6713:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6713:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6737:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6692:20:11"
},
"nodeType": "YulFunctionCall",
"src": "6692:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6682:6:11"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6765:118:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6780:16:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6794:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6784:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6810:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6845:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6856:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6841:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6841:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6865:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "6820:20:11"
},
"nodeType": "YulFunctionCall",
"src": "6820:53:11"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6810:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6461:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6472:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6484:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6492:6:11",
"type": ""
}
],
"src": "6416:474:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6961:262:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7007:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7009:77:11"
},
"nodeType": "YulFunctionCall",
"src": "7009:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "7009:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6982:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6991:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6978:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6978:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7003:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6974:3:11"
},
"nodeType": "YulFunctionCall",
"src": "6974:32:11"
},
"nodeType": "YulIf",
"src": "6971:119:11"
},
{
"nodeType": "YulBlock",
"src": "7100:116:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7115:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7129:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7119:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7144:62:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7178:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7189:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7174:3:11"
},
"nodeType": "YulFunctionCall",
"src": "7174:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7198:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "7154:19:11"
},
"nodeType": "YulFunctionCall",
"src": "7154:52:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7144:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6931:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6942:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6954:6:11",
"type": ""
}
],
"src": "6896:327:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7305:273:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7351:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7353:77:11"
},
"nodeType": "YulFunctionCall",
"src": "7353:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "7353:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7326:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7335:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7322:3:11"
},
"nodeType": "YulFunctionCall",
"src": "7322:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7347:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7318:3:11"
},
"nodeType": "YulFunctionCall",
"src": "7318:32:11"
},
"nodeType": "YulIf",
"src": "7315:119:11"
},
{
"nodeType": "YulBlock",
"src": "7444:127:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7459:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7473:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7463:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7488:73:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7533:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7544:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7529:3:11"
},
"nodeType": "YulFunctionCall",
"src": "7529:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7553:7:11"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "7498:30:11"
},
"nodeType": "YulFunctionCall",
"src": "7498:63:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7488:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7275:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7286:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7298:6:11",
"type": ""
}
],
"src": "7229:349:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7650:263:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7696:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "7698:77:11"
},
"nodeType": "YulFunctionCall",
"src": "7698:79:11"
},
"nodeType": "YulExpressionStatement",
"src": "7698:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7671:7:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7680:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7667:3:11"
},
"nodeType": "YulFunctionCall",
"src": "7667:23:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7692:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7663:3:11"
},
"nodeType": "YulFunctionCall",
"src": "7663:32:11"
},
"nodeType": "YulIf",
"src": "7660:119:11"
},
{
"nodeType": "YulBlock",
"src": "7789:117:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7804:15:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7818:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7808:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7833:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7868:9:11"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7879:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7864:3:11"
},
"nodeType": "YulFunctionCall",
"src": "7864:22:11"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7888:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "7843:20:11"
},
"nodeType": "YulFunctionCall",
"src": "7843:53:11"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7833:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7620:9:11",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7631:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7643:6:11",
"type": ""
}
],
"src": "7584:329:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7984:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8001:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8024:5:11"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "8006:17:11"
},
"nodeType": "YulFunctionCall",
"src": "8006:24:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7994:6:11"
},
"nodeType": "YulFunctionCall",
"src": "7994:37:11"
},
"nodeType": "YulExpressionStatement",
"src": "7994:37:11"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7972:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7979:3:11",
"type": ""
}
],
"src": "7919:118:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8102:50:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8119:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8139:5:11"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "8124:14:11"
},
"nodeType": "YulFunctionCall",
"src": "8124:21:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8112:6:11"
},
"nodeType": "YulFunctionCall",
"src": "8112:34:11"
},
"nodeType": "YulExpressionStatement",
"src": "8112:34:11"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8090:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8097:3:11",
"type": ""
}
],
"src": "8043:109:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8248:270:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8258:52:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8304:5:11"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8272:31:11"
},
"nodeType": "YulFunctionCall",
"src": "8272:38:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8262:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8319:77:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8384:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8389:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8326:57:11"
},
"nodeType": "YulFunctionCall",
"src": "8326:70:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8319:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8431:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8438:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8427:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8427:16:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8445:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8450:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "8405:21:11"
},
"nodeType": "YulFunctionCall",
"src": "8405:52:11"
},
"nodeType": "YulExpressionStatement",
"src": "8405:52:11"
},
{
"nodeType": "YulAssignment",
"src": "8466:46:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8477:3:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8504:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8482:21:11"
},
"nodeType": "YulFunctionCall",
"src": "8482:29:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8473:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8473:39:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8466:3:11"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8229:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8236:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8244:3:11",
"type": ""
}
],
"src": "8158:360:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8602:79:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8619:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8668:5:11"
}
],
"functionName": {
"name": "convert_t_contract$_Land_$1751_to_t_address",
"nodeType": "YulIdentifier",
"src": "8624:43:11"
},
"nodeType": "YulFunctionCall",
"src": "8624:50:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8612:6:11"
},
"nodeType": "YulFunctionCall",
"src": "8612:63:11"
},
"nodeType": "YulExpressionStatement",
"src": "8612:63:11"
}
]
},
"name": "abi_encode_t_contract$_Land_$1751_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8590:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8597:3:11",
"type": ""
}
],
"src": "8524:157:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8779:272:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8789:53:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8836:5:11"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8803:32:11"
},
"nodeType": "YulFunctionCall",
"src": "8803:39:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8793:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8851:78:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8917:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8922:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8858:58:11"
},
"nodeType": "YulFunctionCall",
"src": "8858:71:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8851:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8964:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8971:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8960:3:11"
},
"nodeType": "YulFunctionCall",
"src": "8960:16:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8978:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8983:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "8938:21:11"
},
"nodeType": "YulFunctionCall",
"src": "8938:52:11"
},
"nodeType": "YulExpressionStatement",
"src": "8938:52:11"
},
{
"nodeType": "YulAssignment",
"src": "8999:46:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9010:3:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9037:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "9015:21:11"
},
"nodeType": "YulFunctionCall",
"src": "9015:29:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9006:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9006:39:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8999:3:11"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8760:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8767:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8775:3:11",
"type": ""
}
],
"src": "8687:364:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9167:267:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9177:53:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9224:5:11"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9191:32:11"
},
"nodeType": "YulFunctionCall",
"src": "9191:39:11"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "9181:6:11",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9239:96:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9323:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9328:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "9246:76:11"
},
"nodeType": "YulFunctionCall",
"src": "9246:89:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9239:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9370:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9377:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9366:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9366:16:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9384:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9389:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "9344:21:11"
},
"nodeType": "YulFunctionCall",
"src": "9344:52:11"
},
"nodeType": "YulExpressionStatement",
"src": "9344:52:11"
},
{
"nodeType": "YulAssignment",
"src": "9405:23:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9416:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9421:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9412:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9412:16:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9405:3:11"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "9148:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9155:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9163:3:11",
"type": ""
}
],
"src": "9057:377:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9586:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9596:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9662:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9667:2:11",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9603:58:11"
},
"nodeType": "YulFunctionCall",
"src": "9603:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9596:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9768:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "9679:88:11"
},
"nodeType": "YulFunctionCall",
"src": "9679:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "9679:93:11"
},
{
"nodeType": "YulAssignment",
"src": "9781:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9792:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9797:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9788:3:11"
},
"nodeType": "YulFunctionCall",
"src": "9788:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9781:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9574:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9582:3:11",
"type": ""
}
],
"src": "9440:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9958:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9968:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10034:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10039:2:11",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9975:58:11"
},
"nodeType": "YulFunctionCall",
"src": "9975:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9968:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10140:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulIdentifier",
"src": "10051:88:11"
},
"nodeType": "YulFunctionCall",
"src": "10051:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "10051:93:11"
},
{
"nodeType": "YulAssignment",
"src": "10153:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10164:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10169:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10160:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10160:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10153:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9946:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9954:3:11",
"type": ""
}
],
"src": "9812:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10330:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10340:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10406:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10411:2:11",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10347:58:11"
},
"nodeType": "YulFunctionCall",
"src": "10347:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10340:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10512:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "10423:88:11"
},
"nodeType": "YulFunctionCall",
"src": "10423:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "10423:93:11"
},
{
"nodeType": "YulAssignment",
"src": "10525:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10536:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10541:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10532:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10532:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10525:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10318:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10326:3:11",
"type": ""
}
],
"src": "10184:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10702:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10712:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10778:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10783:2:11",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10719:58:11"
},
"nodeType": "YulFunctionCall",
"src": "10719:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10712:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10884:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "10795:88:11"
},
"nodeType": "YulFunctionCall",
"src": "10795:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "10795:93:11"
},
{
"nodeType": "YulAssignment",
"src": "10897:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10908:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10913:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10904:3:11"
},
"nodeType": "YulFunctionCall",
"src": "10904:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10897:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10690:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10698:3:11",
"type": ""
}
],
"src": "10556:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11074:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11084:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11150:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11155:2:11",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11091:58:11"
},
"nodeType": "YulFunctionCall",
"src": "11091:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11084:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11256:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulIdentifier",
"src": "11167:88:11"
},
"nodeType": "YulFunctionCall",
"src": "11167:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "11167:93:11"
},
{
"nodeType": "YulAssignment",
"src": "11269:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11280:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11285:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11276:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11276:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11269:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11062:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11070:3:11",
"type": ""
}
],
"src": "10928:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11446:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11456:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11522:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11527:2:11",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11463:58:11"
},
"nodeType": "YulFunctionCall",
"src": "11463:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11456:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11628:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulIdentifier",
"src": "11539:88:11"
},
"nodeType": "YulFunctionCall",
"src": "11539:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "11539:93:11"
},
{
"nodeType": "YulAssignment",
"src": "11641:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11652:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11657:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11648:3:11"
},
"nodeType": "YulFunctionCall",
"src": "11648:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11641:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11434:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11442:3:11",
"type": ""
}
],
"src": "11300:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11818:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11828:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11894:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11899:2:11",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11835:58:11"
},
"nodeType": "YulFunctionCall",
"src": "11835:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11828:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12000:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "11911:88:11"
},
"nodeType": "YulFunctionCall",
"src": "11911:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "11911:93:11"
},
{
"nodeType": "YulAssignment",
"src": "12013:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12024:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12029:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12020:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12020:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12013:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11806:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11814:3:11",
"type": ""
}
],
"src": "11672:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12190:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12200:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12266:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12271:2:11",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12207:58:11"
},
"nodeType": "YulFunctionCall",
"src": "12207:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12200:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12372:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulIdentifier",
"src": "12283:88:11"
},
"nodeType": "YulFunctionCall",
"src": "12283:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "12283:93:11"
},
{
"nodeType": "YulAssignment",
"src": "12385:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12396:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12401:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12392:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12392:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12385:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12178:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12186:3:11",
"type": ""
}
],
"src": "12044:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12562:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12572:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12638:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12643:2:11",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12579:58:11"
},
"nodeType": "YulFunctionCall",
"src": "12579:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12572:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12744:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulIdentifier",
"src": "12655:88:11"
},
"nodeType": "YulFunctionCall",
"src": "12655:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "12655:93:11"
},
{
"nodeType": "YulAssignment",
"src": "12757:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12768:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12773:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12764:3:11"
},
"nodeType": "YulFunctionCall",
"src": "12764:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12757:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12550:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12558:3:11",
"type": ""
}
],
"src": "12416:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12934:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12944:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13010:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13015:2:11",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12951:58:11"
},
"nodeType": "YulFunctionCall",
"src": "12951:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12944:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13116:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulIdentifier",
"src": "13027:88:11"
},
"nodeType": "YulFunctionCall",
"src": "13027:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "13027:93:11"
},
{
"nodeType": "YulAssignment",
"src": "13129:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13140:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13145:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13136:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13136:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13129:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12922:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12930:3:11",
"type": ""
}
],
"src": "12788:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13306:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13316:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13382:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13387:2:11",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13323:58:11"
},
"nodeType": "YulFunctionCall",
"src": "13323:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13316:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13488:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "13399:88:11"
},
"nodeType": "YulFunctionCall",
"src": "13399:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "13399:93:11"
},
{
"nodeType": "YulAssignment",
"src": "13501:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13512:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13517:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13508:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13508:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13501:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13294:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13302:3:11",
"type": ""
}
],
"src": "13160:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13678:220:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13688:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13754:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13759:2:11",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13695:58:11"
},
"nodeType": "YulFunctionCall",
"src": "13695:67:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13688:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13860:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulIdentifier",
"src": "13771:88:11"
},
"nodeType": "YulFunctionCall",
"src": "13771:93:11"
},
"nodeType": "YulExpressionStatement",
"src": "13771:93:11"
},
{
"nodeType": "YulAssignment",
"src": "13873:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13884:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13889:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13880:3:11"
},
"nodeType": "YulFunctionCall",
"src": "13880:12:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13873:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13666:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13674:3:11",
"type": ""
}
],
"src": "13532:366:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13969:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13986:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14009:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint128",
"nodeType": "YulIdentifier",
"src": "13991:17:11"
},
"nodeType": "YulFunctionCall",
"src": "13991:24:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13979:6:11"
},
"nodeType": "YulFunctionCall",
"src": "13979:37:11"
},
"nodeType": "YulExpressionStatement",
"src": "13979:37:11"
}
]
},
"name": "abi_encode_t_uint128_to_t_uint128_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "13957:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13964:3:11",
"type": ""
}
],
"src": "13904:118:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14093:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14110:3:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "14133:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "14115:17:11"
},
"nodeType": "YulFunctionCall",
"src": "14115:24:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14103:6:11"
},
"nodeType": "YulFunctionCall",
"src": "14103:37:11"
},
"nodeType": "YulExpressionStatement",
"src": "14103:37:11"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "14081:5:11",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14088:3:11",
"type": ""
}
],
"src": "14028:118:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14336:251:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14347:102:11",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14436:6:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14445:3:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "14354:81:11"
},
"nodeType": "YulFunctionCall",
"src": "14354:95:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14347:3:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14459:102:11",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "14548:6:11"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14557:3:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "14466:81:11"
},
"nodeType": "YulFunctionCall",
"src": "14466:95:11"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14459:3:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "14571:10:11",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14578:3:11"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14571:3:11"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14307:3:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "14313:6:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14321:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14332:3:11",
"type": ""
}
],
"src": "14152:435:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14691:124:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14701:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14713:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14724:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14709:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14709:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14701:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "14781:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14794:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14805:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14790:3:11"
},
"nodeType": "YulFunctionCall",
"src": "14790:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "14737:43:11"
},
"nodeType": "YulFunctionCall",
"src": "14737:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "14737:71:11"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14663:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "14675:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14686:4:11",
"type": ""
}
],
"src": "14593:222:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15021:440:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15031:27:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15043:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15054:3:11",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15039:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15039:19:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15031:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15112:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15125:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15136:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15121:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15121:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "15068:43:11"
},
"nodeType": "YulFunctionCall",
"src": "15068:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "15068:71:11"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "15193:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15206:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15217:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15202:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15202:18:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "15149:43:11"
},
"nodeType": "YulFunctionCall",
"src": "15149:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "15149:72:11"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "15275:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15288:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15299:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15284:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15284:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "15231:43:11"
},
"nodeType": "YulFunctionCall",
"src": "15231:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "15231:72:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15324:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15335:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15320:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15320:18:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15344:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15350:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15340:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15340:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15313:6:11"
},
"nodeType": "YulFunctionCall",
"src": "15313:48:11"
},
"nodeType": "YulExpressionStatement",
"src": "15313:48:11"
},
{
"nodeType": "YulAssignment",
"src": "15370:84:11",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "15440:6:11"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15449:4:11"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15378:61:11"
},
"nodeType": "YulFunctionCall",
"src": "15378:76:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15370:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14969:9:11",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "14981:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "14989:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "14997:6:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15005:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15016:4:11",
"type": ""
}
],
"src": "14821:640:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15689:513:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15699:27:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15711:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15722:3:11",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15707:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15707:19:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15699:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "15780:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15793:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15804:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15789:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15789:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "15736:43:11"
},
"nodeType": "YulFunctionCall",
"src": "15736:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "15736:71:11"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "15861:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15874:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15885:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15870:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15870:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint128_to_t_uint128_fromStack",
"nodeType": "YulIdentifier",
"src": "15817:43:11"
},
"nodeType": "YulFunctionCall",
"src": "15817:72:11"
},
"nodeType": "YulExpressionStatement",
"src": "15817:72:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15910:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15921:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15906:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15906:18:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15930:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15936:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15926:3:11"
},
"nodeType": "YulFunctionCall",
"src": "15926:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15899:6:11"
},
"nodeType": "YulFunctionCall",
"src": "15899:48:11"
},
"nodeType": "YulExpressionStatement",
"src": "15899:48:11"
},
{
"nodeType": "YulAssignment",
"src": "15956:86:11",
"value": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "16028:6:11"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16037:4:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15964:63:11"
},
"nodeType": "YulFunctionCall",
"src": "15964:78:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15956:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16063:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16074:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16059:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16059:18:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16083:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16089:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16079:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16079:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16052:6:11"
},
"nodeType": "YulFunctionCall",
"src": "16052:48:11"
},
"nodeType": "YulExpressionStatement",
"src": "16052:48:11"
},
{
"nodeType": "YulAssignment",
"src": "16109:86:11",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "16181:6:11"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16190:4:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16117:63:11"
},
"nodeType": "YulFunctionCall",
"src": "16117:78:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16109:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_uint128_t_string_memory_ptr_t_string_memory_ptr__to_t_address_t_uint128_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15637:9:11",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "15649:6:11",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "15657:6:11",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "15665:6:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "15673:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15684:4:11",
"type": ""
}
],
"src": "15467:735:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16300:118:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16310:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16322:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16333:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16318:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16318:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16310:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16384:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16397:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16408:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16393:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16393:17:11"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "16346:37:11"
},
"nodeType": "YulFunctionCall",
"src": "16346:65:11"
},
"nodeType": "YulExpressionStatement",
"src": "16346:65:11"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16272:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16284:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16295:4:11",
"type": ""
}
],
"src": "16208:210:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16535:137:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16545:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16557:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16568:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16553:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16553:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16545:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16638:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16651:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16662:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16647:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16647:17:11"
}
],
"functionName": {
"name": "abi_encode_t_contract$_Land_$1751_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "16581:56:11"
},
"nodeType": "YulFunctionCall",
"src": "16581:84:11"
},
"nodeType": "YulExpressionStatement",
"src": "16581:84:11"
}
]
},
"name": "abi_encode_tuple_t_contract$_Land_$1751__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16507:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16519:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16530:4:11",
"type": ""
}
],
"src": "16424:248:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16796:195:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16806:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16818:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16829:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16814:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16814:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16806:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16853:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16864:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16849:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16849:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16872:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16878:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16868:3:11"
},
"nodeType": "YulFunctionCall",
"src": "16868:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16842:6:11"
},
"nodeType": "YulFunctionCall",
"src": "16842:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "16842:47:11"
},
{
"nodeType": "YulAssignment",
"src": "16898:86:11",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16970:6:11"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16979:4:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16906:63:11"
},
"nodeType": "YulFunctionCall",
"src": "16906:78:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16898:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16768:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16780:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16791:4:11",
"type": ""
}
],
"src": "16678:313:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17168:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17178:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17190:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17201:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17186:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17186:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17178:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17225:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17236:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17221:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17221:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17244:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17250:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17240:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17240:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17214:6:11"
},
"nodeType": "YulFunctionCall",
"src": "17214:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "17214:47:11"
},
{
"nodeType": "YulAssignment",
"src": "17270:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17404:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17278:124:11"
},
"nodeType": "YulFunctionCall",
"src": "17278:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17270:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17148:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17163:4:11",
"type": ""
}
],
"src": "16997:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17593:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17603:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17615:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17626:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17611:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17611:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17603:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17650:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17661:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17646:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17646:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17669:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17675:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17665:3:11"
},
"nodeType": "YulFunctionCall",
"src": "17665:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17639:6:11"
},
"nodeType": "YulFunctionCall",
"src": "17639:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "17639:47:11"
},
{
"nodeType": "YulAssignment",
"src": "17695:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17829:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17703:124:11"
},
"nodeType": "YulFunctionCall",
"src": "17703:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17695:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17573:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17588:4:11",
"type": ""
}
],
"src": "17422:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18018:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18028:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18040:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18051:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18036:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18036:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18028:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18075:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18086:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18071:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18071:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18094:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18100:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18090:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18090:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18064:6:11"
},
"nodeType": "YulFunctionCall",
"src": "18064:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "18064:47:11"
},
{
"nodeType": "YulAssignment",
"src": "18120:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18254:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18128:124:11"
},
"nodeType": "YulFunctionCall",
"src": "18128:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18120:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17998:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18013:4:11",
"type": ""
}
],
"src": "17847:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18443:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18453:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18465:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18476:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18461:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18461:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18453:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18500:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18511:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18496:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18496:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18519:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18525:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18515:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18515:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18489:6:11"
},
"nodeType": "YulFunctionCall",
"src": "18489:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "18489:47:11"
},
{
"nodeType": "YulAssignment",
"src": "18545:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18679:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18553:124:11"
},
"nodeType": "YulFunctionCall",
"src": "18553:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18545:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18423:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18438:4:11",
"type": ""
}
],
"src": "18272:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18868:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18878:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18890:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18901:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18886:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18886:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18878:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18925:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18936:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18921:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18921:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18944:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18950:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18940:3:11"
},
"nodeType": "YulFunctionCall",
"src": "18940:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18914:6:11"
},
"nodeType": "YulFunctionCall",
"src": "18914:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "18914:47:11"
},
{
"nodeType": "YulAssignment",
"src": "18970:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19104:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18978:124:11"
},
"nodeType": "YulFunctionCall",
"src": "18978:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18970:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18848:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18863:4:11",
"type": ""
}
],
"src": "18697:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19293:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19303:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19315:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19326:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19311:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19311:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19303:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19350:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19361:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19346:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19346:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19369:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19375:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19365:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19365:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19339:6:11"
},
"nodeType": "YulFunctionCall",
"src": "19339:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "19339:47:11"
},
{
"nodeType": "YulAssignment",
"src": "19395:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19529:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19403:124:11"
},
"nodeType": "YulFunctionCall",
"src": "19403:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19395:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19273:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19288:4:11",
"type": ""
}
],
"src": "19122:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19718:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19728:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19740:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19751:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19736:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19736:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19728:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19775:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19786:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19771:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19771:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19794:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19800:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19790:3:11"
},
"nodeType": "YulFunctionCall",
"src": "19790:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19764:6:11"
},
"nodeType": "YulFunctionCall",
"src": "19764:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "19764:47:11"
},
{
"nodeType": "YulAssignment",
"src": "19820:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19954:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19828:124:11"
},
"nodeType": "YulFunctionCall",
"src": "19828:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19820:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19698:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19713:4:11",
"type": ""
}
],
"src": "19547:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20143:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20153:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20165:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20176:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20161:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20161:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20153:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20200:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20211:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20196:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20196:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20219:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20225:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20215:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20215:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20189:6:11"
},
"nodeType": "YulFunctionCall",
"src": "20189:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "20189:47:11"
},
{
"nodeType": "YulAssignment",
"src": "20245:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20379:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20253:124:11"
},
"nodeType": "YulFunctionCall",
"src": "20253:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20245:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20123:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20138:4:11",
"type": ""
}
],
"src": "19972:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20568:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20578:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20590:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20601:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20586:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20586:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20578:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20625:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20636:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20621:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20621:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20644:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20650:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20640:3:11"
},
"nodeType": "YulFunctionCall",
"src": "20640:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20614:6:11"
},
"nodeType": "YulFunctionCall",
"src": "20614:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "20614:47:11"
},
{
"nodeType": "YulAssignment",
"src": "20670:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20804:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20678:124:11"
},
"nodeType": "YulFunctionCall",
"src": "20678:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20670:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20548:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20563:4:11",
"type": ""
}
],
"src": "20397:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20993:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21003:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21015:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21026:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21011:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21011:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21003:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21050:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21061:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21046:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21046:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21069:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21075:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21065:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21065:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21039:6:11"
},
"nodeType": "YulFunctionCall",
"src": "21039:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "21039:47:11"
},
{
"nodeType": "YulAssignment",
"src": "21095:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21229:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21103:124:11"
},
"nodeType": "YulFunctionCall",
"src": "21103:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21095:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20973:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20988:4:11",
"type": ""
}
],
"src": "20822:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21418:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21428:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21440:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21451:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21436:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21436:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21428:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21475:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21486:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21471:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21471:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21494:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21500:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21490:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21490:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21464:6:11"
},
"nodeType": "YulFunctionCall",
"src": "21464:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "21464:47:11"
},
{
"nodeType": "YulAssignment",
"src": "21520:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21654:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21528:124:11"
},
"nodeType": "YulFunctionCall",
"src": "21528:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21520:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21398:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21413:4:11",
"type": ""
}
],
"src": "21247:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21843:248:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21853:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21865:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21876:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21861:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21861:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21853:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21900:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21911:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21896:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21896:17:11"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21919:4:11"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21925:9:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21915:3:11"
},
"nodeType": "YulFunctionCall",
"src": "21915:20:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21889:6:11"
},
"nodeType": "YulFunctionCall",
"src": "21889:47:11"
},
"nodeType": "YulExpressionStatement",
"src": "21889:47:11"
},
{
"nodeType": "YulAssignment",
"src": "21945:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22079:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21953:124:11"
},
"nodeType": "YulFunctionCall",
"src": "21953:131:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21945:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21823:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21838:4:11",
"type": ""
}
],
"src": "21672:419:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22195:124:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22205:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22217:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22228:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22213:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22213:18:11"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22205:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "22285:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22298:9:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22309:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22294:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22294:17:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "22241:43:11"
},
"nodeType": "YulFunctionCall",
"src": "22241:71:11"
},
"nodeType": "YulExpressionStatement",
"src": "22241:71:11"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22167:9:11",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "22179:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22190:4:11",
"type": ""
}
],
"src": "22097:222:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22366:88:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22376:30:11",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "22386:18:11"
},
"nodeType": "YulFunctionCall",
"src": "22386:20:11"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22376:6:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22435:6:11"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "22443:4:11"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "22415:19:11"
},
"nodeType": "YulFunctionCall",
"src": "22415:33:11"
},
"nodeType": "YulExpressionStatement",
"src": "22415:33:11"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "22350:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "22359:6:11",
"type": ""
}
],
"src": "22325:129:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22500:35:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22510:19:11",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22526:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "22520:5:11"
},
"nodeType": "YulFunctionCall",
"src": "22520:9:11"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22510:6:11"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "22493:6:11",
"type": ""
}
],
"src": "22460:75:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22607:241:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "22712:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "22714:16:11"
},
"nodeType": "YulFunctionCall",
"src": "22714:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "22714:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22684:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22692:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "22681:2:11"
},
"nodeType": "YulFunctionCall",
"src": "22681:30:11"
},
"nodeType": "YulIf",
"src": "22678:56:11"
},
{
"nodeType": "YulAssignment",
"src": "22744:37:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22774:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "22752:21:11"
},
"nodeType": "YulFunctionCall",
"src": "22752:29:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "22744:4:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "22818:23:11",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "22830:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22836:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22826:3:11"
},
"nodeType": "YulFunctionCall",
"src": "22826:15:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "22818:4:11"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "22591:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "22602:4:11",
"type": ""
}
],
"src": "22541:307:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22921:241:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "23026:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "23028:16:11"
},
"nodeType": "YulFunctionCall",
"src": "23028:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "23028:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22998:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23006:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "22995:2:11"
},
"nodeType": "YulFunctionCall",
"src": "22995:30:11"
},
"nodeType": "YulIf",
"src": "22992:56:11"
},
{
"nodeType": "YulAssignment",
"src": "23058:37:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23088:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "23066:21:11"
},
"nodeType": "YulFunctionCall",
"src": "23066:29:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "23058:4:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "23132:23:11",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "23144:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23150:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23140:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23140:15:11"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "23132:4:11"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "22905:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "22916:4:11",
"type": ""
}
],
"src": "22854:308:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23226:40:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23237:22:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23253:5:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "23247:5:11"
},
"nodeType": "YulFunctionCall",
"src": "23247:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23237:6:11"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "23209:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23219:6:11",
"type": ""
}
],
"src": "23168:98:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23331:40:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23342:22:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "23358:5:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "23352:5:11"
},
"nodeType": "YulFunctionCall",
"src": "23352:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23342:6:11"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "23314:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23324:6:11",
"type": ""
}
],
"src": "23272:99:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23472:73:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23489:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23494:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23482:6:11"
},
"nodeType": "YulFunctionCall",
"src": "23482:19:11"
},
"nodeType": "YulExpressionStatement",
"src": "23482:19:11"
},
{
"nodeType": "YulAssignment",
"src": "23510:29:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23529:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23534:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23525:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23525:14:11"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "23510:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "23444:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23449:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "23460:11:11",
"type": ""
}
],
"src": "23377:168:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23647:73:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23664:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "23669:6:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23657:6:11"
},
"nodeType": "YulFunctionCall",
"src": "23657:19:11"
},
"nodeType": "YulExpressionStatement",
"src": "23657:19:11"
},
{
"nodeType": "YulAssignment",
"src": "23685:29:11",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23704:3:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23709:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23700:3:11"
},
"nodeType": "YulFunctionCall",
"src": "23700:14:11"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "23685:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "23619:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23624:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "23635:11:11",
"type": ""
}
],
"src": "23551:169:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23840:34:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23850:18:11",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23865:3:11"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "23850:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "23812:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "23817:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "23828:11:11",
"type": ""
}
],
"src": "23726:148:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23924:261:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23934:25:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "23957:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "23939:17:11"
},
"nodeType": "YulFunctionCall",
"src": "23939:20:11"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "23934:1:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "23968:25:11",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "23991:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "23973:17:11"
},
"nodeType": "YulFunctionCall",
"src": "23973:20:11"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "23968:1:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "24131:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "24133:16:11"
},
"nodeType": "YulFunctionCall",
"src": "24133:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "24133:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24052:1:11"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24059:66:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24127:1:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24055:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24055:74:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "24049:2:11"
},
"nodeType": "YulFunctionCall",
"src": "24049:81:11"
},
"nodeType": "YulIf",
"src": "24046:107:11"
},
{
"nodeType": "YulAssignment",
"src": "24163:16:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24174:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24177:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24170:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24170:9:11"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "24163:3:11"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "23911:1:11",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "23914:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "23920:3:11",
"type": ""
}
],
"src": "23880:305:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24233:143:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24243:25:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24266:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "24248:17:11"
},
"nodeType": "YulFunctionCall",
"src": "24248:20:11"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24243:1:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "24277:25:11",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24300:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "24282:17:11"
},
"nodeType": "YulFunctionCall",
"src": "24282:20:11"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24277:1:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "24324:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "24326:16:11"
},
"nodeType": "YulFunctionCall",
"src": "24326:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "24326:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24321:1:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "24314:6:11"
},
"nodeType": "YulFunctionCall",
"src": "24314:9:11"
},
"nodeType": "YulIf",
"src": "24311:35:11"
},
{
"nodeType": "YulAssignment",
"src": "24356:14:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24365:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24368:1:11"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "24361:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24361:9:11"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "24356:1:11"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "24222:1:11",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "24225:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "24231:1:11",
"type": ""
}
],
"src": "24191:185:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24427:146:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24437:25:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24460:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "24442:17:11"
},
"nodeType": "YulFunctionCall",
"src": "24442:20:11"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24437:1:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "24471:25:11",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24494:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "24476:17:11"
},
"nodeType": "YulFunctionCall",
"src": "24476:20:11"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24471:1:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "24518:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "24520:16:11"
},
"nodeType": "YulFunctionCall",
"src": "24520:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "24520:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24512:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24515:1:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "24509:2:11"
},
"nodeType": "YulFunctionCall",
"src": "24509:8:11"
},
"nodeType": "YulIf",
"src": "24506:34:11"
},
{
"nodeType": "YulAssignment",
"src": "24550:17:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "24562:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "24565:1:11"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24558:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24558:9:11"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "24550:4:11"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "24413:1:11",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "24416:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "24422:4:11",
"type": ""
}
],
"src": "24382:191:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24624:51:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24634:35:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24663:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "24645:17:11"
},
"nodeType": "YulFunctionCall",
"src": "24645:24:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "24634:7:11"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24606:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "24616:7:11",
"type": ""
}
],
"src": "24579:96:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24723:48:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24733:32:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24758:5:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "24751:6:11"
},
"nodeType": "YulFunctionCall",
"src": "24751:13:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "24744:6:11"
},
"nodeType": "YulFunctionCall",
"src": "24744:21:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "24733:7:11"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24705:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "24715:7:11",
"type": ""
}
],
"src": "24681:90:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24821:105:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24831:89:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24846:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24853:66:11",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "24842:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24842:78:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "24831:7:11"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24803:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "24813:7:11",
"type": ""
}
],
"src": "24777:149:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24977:73:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24987:57:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25002:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25009:34:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "24998:3:11"
},
"nodeType": "YulFunctionCall",
"src": "24998:46:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "24987:7:11"
}
]
}
]
},
"name": "cleanup_t_uint128",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24959:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "24969:7:11",
"type": ""
}
],
"src": "24932:118:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25101:81:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25111:65:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25126:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25133:42:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "25122:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25122:54:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "25111:7:11"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25083:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "25093:7:11",
"type": ""
}
],
"src": "25056:126:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25233:32:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25243:16:11",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "25254:5:11"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "25243:7:11"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25215:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "25225:7:11",
"type": ""
}
],
"src": "25188:77:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25344:66:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25354:50:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25398:5:11"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulIdentifier",
"src": "25367:30:11"
},
"nodeType": "YulFunctionCall",
"src": "25367:37:11"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "25354:9:11"
}
]
}
]
},
"name": "convert_t_contract$_Land_$1751_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25324:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "25334:9:11",
"type": ""
}
],
"src": "25271:139:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25476:66:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25486:50:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25530:5:11"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulIdentifier",
"src": "25499:30:11"
},
"nodeType": "YulFunctionCall",
"src": "25499:37:11"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "25486:9:11"
}
]
}
]
},
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25456:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "25466:9:11",
"type": ""
}
],
"src": "25416:126:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25608:53:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25618:37:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "25649:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "25631:17:11"
},
"nodeType": "YulFunctionCall",
"src": "25631:24:11"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "25618:9:11"
}
]
}
]
},
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "25588:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "25598:9:11",
"type": ""
}
],
"src": "25548:113:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25718:103:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "25741:3:11"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "25746:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25751:6:11"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "25728:12:11"
},
"nodeType": "YulFunctionCall",
"src": "25728:30:11"
},
"nodeType": "YulExpressionStatement",
"src": "25728:30:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "25799:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25804:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25795:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25795:16:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25813:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25788:6:11"
},
"nodeType": "YulFunctionCall",
"src": "25788:27:11"
},
"nodeType": "YulExpressionStatement",
"src": "25788:27:11"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "25700:3:11",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "25705:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25710:6:11",
"type": ""
}
],
"src": "25667:154:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25876:258:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "25886:10:11",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "25895:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "25890:1:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "25955:63:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "25980:3:11"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "25985:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25976:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25976:11:11"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "25999:3:11"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "26004:1:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25995:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25995:11:11"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "25989:5:11"
},
"nodeType": "YulFunctionCall",
"src": "25989:18:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25969:6:11"
},
"nodeType": "YulFunctionCall",
"src": "25969:39:11"
},
"nodeType": "YulExpressionStatement",
"src": "25969:39:11"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "25916:1:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "25919:6:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "25913:2:11"
},
"nodeType": "YulFunctionCall",
"src": "25913:13:11"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "25927:19:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25929:15:11",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "25938:1:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25941:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25934:3:11"
},
"nodeType": "YulFunctionCall",
"src": "25934:10:11"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "25929:1:11"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "25909:3:11",
"statements": []
},
"src": "25905:113:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26052:76:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "26102:3:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26107:6:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26098:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26098:16:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26116:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26091:6:11"
},
"nodeType": "YulFunctionCall",
"src": "26091:27:11"
},
"nodeType": "YulExpressionStatement",
"src": "26091:27:11"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "26033:1:11"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26036:6:11"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "26030:2:11"
},
"nodeType": "YulFunctionCall",
"src": "26030:13:11"
},
"nodeType": "YulIf",
"src": "26027:101:11"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "25858:3:11",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "25863:3:11",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "25868:6:11",
"type": ""
}
],
"src": "25827:307:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26191:269:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26201:22:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "26215:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26221:1:11",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "26211:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26211:12:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26201:6:11"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "26232:38:11",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "26262:4:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26268:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "26258:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26258:12:11"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "26236:18:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26309:51:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26323:27:11",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26337:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26345:4:11",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "26333:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26333:17:11"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26323:6:11"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "26289:18:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "26282:6:11"
},
"nodeType": "YulFunctionCall",
"src": "26282:26:11"
},
"nodeType": "YulIf",
"src": "26279:81:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26412:42:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "26426:16:11"
},
"nodeType": "YulFunctionCall",
"src": "26426:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "26426:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "26376:18:11"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26399:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26407:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "26396:2:11"
},
"nodeType": "YulFunctionCall",
"src": "26396:14:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26373:2:11"
},
"nodeType": "YulFunctionCall",
"src": "26373:38:11"
},
"nodeType": "YulIf",
"src": "26370:84:11"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "26175:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "26184:6:11",
"type": ""
}
],
"src": "26140:320:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26509:238:11",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "26519:58:11",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26541:6:11"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "26571:4:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "26549:21:11"
},
"nodeType": "YulFunctionCall",
"src": "26549:27:11"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26537:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26537:40:11"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "26523:10:11",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26688:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "26690:16:11"
},
"nodeType": "YulFunctionCall",
"src": "26690:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "26690:18:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "26631:10:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26643:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "26628:2:11"
},
"nodeType": "YulFunctionCall",
"src": "26628:34:11"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "26667:10:11"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26679:6:11"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "26664:2:11"
},
"nodeType": "YulFunctionCall",
"src": "26664:22:11"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "26625:2:11"
},
"nodeType": "YulFunctionCall",
"src": "26625:62:11"
},
"nodeType": "YulIf",
"src": "26622:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26726:2:11",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "26730:10:11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26719:6:11"
},
"nodeType": "YulFunctionCall",
"src": "26719:22:11"
},
"nodeType": "YulExpressionStatement",
"src": "26719:22:11"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26495:6:11",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "26503:4:11",
"type": ""
}
],
"src": "26466:281:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26796:190:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26806:33:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26833:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "26815:17:11"
},
"nodeType": "YulFunctionCall",
"src": "26815:24:11"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26806:5:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "26929:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "26931:16:11"
},
"nodeType": "YulFunctionCall",
"src": "26931:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "26931:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26854:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26861:66:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "26851:2:11"
},
"nodeType": "YulFunctionCall",
"src": "26851:77:11"
},
"nodeType": "YulIf",
"src": "26848:103:11"
},
{
"nodeType": "YulAssignment",
"src": "26960:20:11",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26971:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26978:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26967:3:11"
},
"nodeType": "YulFunctionCall",
"src": "26967:13:11"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "26960:3:11"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26782:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "26792:3:11",
"type": ""
}
],
"src": "26753:233:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27026:142:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27036:25:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27059:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27041:17:11"
},
"nodeType": "YulFunctionCall",
"src": "27041:20:11"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27036:1:11"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27070:25:11",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27093:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27075:17:11"
},
"nodeType": "YulFunctionCall",
"src": "27075:20:11"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27070:1:11"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "27117:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "27119:16:11"
},
"nodeType": "YulFunctionCall",
"src": "27119:18:11"
},
"nodeType": "YulExpressionStatement",
"src": "27119:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27114:1:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27107:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27107:9:11"
},
"nodeType": "YulIf",
"src": "27104:35:11"
},
{
"nodeType": "YulAssignment",
"src": "27148:14:11",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "27157:1:11"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "27160:1:11"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "27153:3:11"
},
"nodeType": "YulFunctionCall",
"src": "27153:9:11"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "27148:1:11"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "27015:1:11",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "27018:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "27024:1:11",
"type": ""
}
],
"src": "26992:176:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27202:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27219:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27222:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27212:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27212:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "27212:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27316:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27319:4:11",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27309:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27309:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "27309:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27340:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27343:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27333:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27333:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "27333:15:11"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "27174:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27388:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27405:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27408:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27398:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27398:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "27398:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27502:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27505:4:11",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27495:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27495:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "27495:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27526:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27529:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27519:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27519:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "27519:15:11"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "27360:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27574:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27591:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27594:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27584:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27584:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "27584:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27688:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27691:4:11",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27681:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27681:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "27681:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27712:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27715:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27705:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27705:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "27705:15:11"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "27546:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27760:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27777:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27780:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27770:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27770:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "27770:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27874:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27877:4:11",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27867:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27867:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "27867:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27898:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27901:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27891:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27891:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "27891:15:11"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "27732:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27946:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27963:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27966:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27956:6:11"
},
"nodeType": "YulFunctionCall",
"src": "27956:88:11"
},
"nodeType": "YulExpressionStatement",
"src": "27956:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28060:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28063:4:11",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28053:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28053:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "28053:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28084:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28087:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28077:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28077:15:11"
},
"nodeType": "YulExpressionStatement",
"src": "28077:15:11"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "27918:180:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28193:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28210:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28213:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28203:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28203:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "28203:12:11"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "28104:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28316:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28333:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28336:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28326:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28326:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "28326:12:11"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "28227:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28439:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28456:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28459:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28449:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28449:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "28449:12:11"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "28350:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28562:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28579:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28582:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "28572:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28572:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "28572:12:11"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "28473:117:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28644:54:11",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28654:38:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28672:5:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28679:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28668:3:11"
},
"nodeType": "YulFunctionCall",
"src": "28668:14:11"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28688:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "28684:3:11"
},
"nodeType": "YulFunctionCall",
"src": "28684:7:11"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "28664:3:11"
},
"nodeType": "YulFunctionCall",
"src": "28664:28:11"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "28654:6:11"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28627:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "28637:6:11",
"type": ""
}
],
"src": "28596:102:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28810:131:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "28832:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28840:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28828:3:11"
},
"nodeType": "YulFunctionCall",
"src": "28828:14:11"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "28844:34:11",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28821:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28821:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "28821:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "28900:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28908:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28896:3:11"
},
"nodeType": "YulFunctionCall",
"src": "28896:15:11"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "28913:20:11",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28889:6:11"
},
"nodeType": "YulFunctionCall",
"src": "28889:45:11"
},
"nodeType": "YulExpressionStatement",
"src": "28889:45:11"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "28802:6:11",
"type": ""
}
],
"src": "28704:237:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29053:118:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29075:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29083:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29071:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29071:14:11"
},
{
"hexValue": "4552433732313a207472616e736665722066726f6d20696e636f727265637420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29087:34:11",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29064:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29064:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "29064:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29143:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29151:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29139:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29139:15:11"
},
{
"hexValue": "6f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29156:7:11",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29132:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29132:32:11"
},
"nodeType": "YulExpressionStatement",
"src": "29132:32:11"
}
]
},
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "29045:6:11",
"type": ""
}
],
"src": "28947:224:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29283:117:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29305:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29313:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29301:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29301:14:11"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29317:34:11",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29294:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29294:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "29294:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29373:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29381:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29369:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29369:15:11"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29386:6:11",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29362:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29362:31:11"
},
"nodeType": "YulExpressionStatement",
"src": "29362:31:11"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "29275:6:11",
"type": ""
}
],
"src": "29177:223:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29512:69:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29534:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29542:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29530:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29530:14:11"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29546:27:11",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29523:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29523:51:11"
},
"nodeType": "YulExpressionStatement",
"src": "29523:51:11"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "29504:6:11",
"type": ""
}
],
"src": "29406:175:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29693:125:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29715:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29723:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29711:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29711:14:11"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29727:34:11",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29704:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29704:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "29704:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29783:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29791:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29779:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29779:15:11"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29796:14:11",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29772:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29772:39:11"
},
"nodeType": "YulExpressionStatement",
"src": "29772:39:11"
}
]
},
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "29685:6:11",
"type": ""
}
],
"src": "29587:231:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29930:137:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "29952:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29960:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29948:3:11"
},
"nodeType": "YulFunctionCall",
"src": "29948:14:11"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "29964:34:11",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "29941:6:11"
},
"nodeType": "YulFunctionCall",
"src": "29941:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "29941:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30020:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30028:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30016:3:11"
},
"nodeType": "YulFunctionCall",
"src": "30016:15:11"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30033:26:11",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30009:6:11"
},
"nodeType": "YulFunctionCall",
"src": "30009:51:11"
},
"nodeType": "YulExpressionStatement",
"src": "30009:51:11"
}
]
},
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "29922:6:11",
"type": ""
}
],
"src": "29824:243:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30179:123:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30201:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30209:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30197:3:11"
},
"nodeType": "YulFunctionCall",
"src": "30197:14:11"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30213:34:11",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30190:6:11"
},
"nodeType": "YulFunctionCall",
"src": "30190:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "30190:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30269:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30277:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30265:3:11"
},
"nodeType": "YulFunctionCall",
"src": "30265:15:11"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30282:12:11",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30258:6:11"
},
"nodeType": "YulFunctionCall",
"src": "30258:37:11"
},
"nodeType": "YulExpressionStatement",
"src": "30258:37:11"
}
]
},
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30171:6:11",
"type": ""
}
],
"src": "30073:229:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30414:122:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30436:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30444:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30432:3:11"
},
"nodeType": "YulFunctionCall",
"src": "30432:14:11"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30448:34:11",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30425:6:11"
},
"nodeType": "YulFunctionCall",
"src": "30425:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "30425:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30504:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30512:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30500:3:11"
},
"nodeType": "YulFunctionCall",
"src": "30500:15:11"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30517:11:11",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30493:6:11"
},
"nodeType": "YulFunctionCall",
"src": "30493:36:11"
},
"nodeType": "YulExpressionStatement",
"src": "30493:36:11"
}
]
},
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30406:6:11",
"type": ""
}
],
"src": "30308:228:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30648:125:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30670:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30678:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30666:3:11"
},
"nodeType": "YulFunctionCall",
"src": "30666:14:11"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30682:34:11",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30659:6:11"
},
"nodeType": "YulFunctionCall",
"src": "30659:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "30659:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30738:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30746:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30734:3:11"
},
"nodeType": "YulFunctionCall",
"src": "30734:15:11"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30751:14:11",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30727:6:11"
},
"nodeType": "YulFunctionCall",
"src": "30727:39:11"
},
"nodeType": "YulExpressionStatement",
"src": "30727:39:11"
}
]
},
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30640:6:11",
"type": ""
}
],
"src": "30542:231:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30885:128:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30907:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30915:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30903:3:11"
},
"nodeType": "YulFunctionCall",
"src": "30903:14:11"
},
{
"hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30919:34:11",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30896:6:11"
},
"nodeType": "YulFunctionCall",
"src": "30896:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "30896:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "30975:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30983:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30971:3:11"
},
"nodeType": "YulFunctionCall",
"src": "30971:15:11"
},
{
"hexValue": "6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "30988:17:11",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "30964:6:11"
},
"nodeType": "YulFunctionCall",
"src": "30964:42:11"
},
"nodeType": "YulExpressionStatement",
"src": "30964:42:11"
}
]
},
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "30877:6:11",
"type": ""
}
],
"src": "30779:234:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31125:114:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31147:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31155:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31143:3:11"
},
"nodeType": "YulFunctionCall",
"src": "31143:14:11"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31159:34:11",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31136:6:11"
},
"nodeType": "YulFunctionCall",
"src": "31136:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "31136:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31215:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31223:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31211:3:11"
},
"nodeType": "YulFunctionCall",
"src": "31211:15:11"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31228:3:11",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31204:6:11"
},
"nodeType": "YulFunctionCall",
"src": "31204:28:11"
},
"nodeType": "YulExpressionStatement",
"src": "31204:28:11"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31117:6:11",
"type": ""
}
],
"src": "31019:220:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31351:130:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31373:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31381:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31369:3:11"
},
"nodeType": "YulFunctionCall",
"src": "31369:14:11"
},
{
"hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31385:34:11",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31362:6:11"
},
"nodeType": "YulFunctionCall",
"src": "31362:58:11"
},
"nodeType": "YulExpressionStatement",
"src": "31362:58:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "31441:6:11"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31449:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31437:3:11"
},
"nodeType": "YulFunctionCall",
"src": "31437:15:11"
},
{
"hexValue": "776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "31454:19:11",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "31430:6:11"
},
"nodeType": "YulFunctionCall",
"src": "31430:44:11"
},
"nodeType": "YulExpressionStatement",
"src": "31430:44:11"
}
]
},
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "31343:6:11",
"type": ""
}
],
"src": "31245:236:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31530:79:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "31587:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31596:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31599:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "31589:6:11"
},
"nodeType": "YulFunctionCall",
"src": "31589:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "31589:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31553:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31578:5:11"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "31560:17:11"
},
"nodeType": "YulFunctionCall",
"src": "31560:24:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "31550:2:11"
},
"nodeType": "YulFunctionCall",
"src": "31550:35:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "31543:6:11"
},
"nodeType": "YulFunctionCall",
"src": "31543:43:11"
},
"nodeType": "YulIf",
"src": "31540:63:11"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "31523:5:11",
"type": ""
}
],
"src": "31487:122:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31655:76:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "31709:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31718:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31721:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "31711:6:11"
},
"nodeType": "YulFunctionCall",
"src": "31711:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "31711:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31678:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31700:5:11"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "31685:14:11"
},
"nodeType": "YulFunctionCall",
"src": "31685:21:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "31675:2:11"
},
"nodeType": "YulFunctionCall",
"src": "31675:32:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "31668:6:11"
},
"nodeType": "YulFunctionCall",
"src": "31668:40:11"
},
"nodeType": "YulIf",
"src": "31665:60:11"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "31648:5:11",
"type": ""
}
],
"src": "31615:116:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31779:78:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "31835:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31844:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31847:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "31837:6:11"
},
"nodeType": "YulFunctionCall",
"src": "31837:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "31837:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31802:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31826:5:11"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "31809:16:11"
},
"nodeType": "YulFunctionCall",
"src": "31809:23:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "31799:2:11"
},
"nodeType": "YulFunctionCall",
"src": "31799:34:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "31792:6:11"
},
"nodeType": "YulFunctionCall",
"src": "31792:42:11"
},
"nodeType": "YulIf",
"src": "31789:62:11"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "31772:5:11",
"type": ""
}
],
"src": "31737:120:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31906:79:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "31963:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31972:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31975:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "31965:6:11"
},
"nodeType": "YulFunctionCall",
"src": "31965:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "31965:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31929:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "31954:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint128",
"nodeType": "YulIdentifier",
"src": "31936:17:11"
},
"nodeType": "YulFunctionCall",
"src": "31936:24:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "31926:2:11"
},
"nodeType": "YulFunctionCall",
"src": "31926:35:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "31919:6:11"
},
"nodeType": "YulFunctionCall",
"src": "31919:43:11"
},
"nodeType": "YulIf",
"src": "31916:63:11"
}
]
},
"name": "validator_revert_t_uint128",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "31899:5:11",
"type": ""
}
],
"src": "31863:122:11"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32034:79:11",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "32091:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32100:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32103:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "32093:6:11"
},
"nodeType": "YulFunctionCall",
"src": "32093:12:11"
},
"nodeType": "YulExpressionStatement",
"src": "32093:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32057:5:11"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32082:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "32064:17:11"
},
"nodeType": "YulFunctionCall",
"src": "32064:24:11"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "32054:2:11"
},
"nodeType": "YulFunctionCall",
"src": "32054:35:11"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "32047:6:11"
},
"nodeType": "YulFunctionCall",
"src": "32047:43:11"
},
"nodeType": "YulIf",
"src": "32044:63:11"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32027:5:11",
"type": ""
}
],
"src": "31991:122:11"
}
]
},
"contents": "{\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_t_uint128(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint128(value)\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address(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_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint128t_string_memory_ptrt_string_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint128(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 64))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value2 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(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_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_contract$_Land_$1751_to_t_address_fromStack(value, pos) {\n mstore(pos, convert_t_contract$_Land_$1751_to_t_address(value))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 50)\n store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 56)\n store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 42)\n store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 47)\n store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 49)\n store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_t_uint128_to_t_uint128_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint128(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_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\n\n }\n\n function abi_encode_tuple_t_address_t_uint128_t_string_memory_ptr_t_string_memory_ptr__to_t_address_t_uint128_t_string_memory_ptr_t_string_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint128_to_t_uint128_fromStack(value1, add(headStart, 32))\n\n mstore(add(headStart, 64), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value2, tail)\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value3, tail)\n\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_contract$_Land_$1751__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_contract$_Land_$1751_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__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_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__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_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__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_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__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_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__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_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__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_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__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_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__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_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__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_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__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_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__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_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__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_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack( tail)\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 allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\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 array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function checked_div_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n\n r := div(x, y)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function cleanup_t_uint128(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function convert_t_contract$_Land_$1751_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_address(value)\n }\n\n function convert_t_uint160_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_uint160(value)\n }\n\n function convert_t_uint160_to_t_uint160(value) -> converted {\n converted := cleanup_t_uint160(value)\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function 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 increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n function mod_t_uint256(x, y) -> r {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\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 store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to non ERC721Re\")\n\n mstore(add(memPtr, 32), \"ceiver implementer\")\n\n }\n\n function store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer from incorrect \")\n\n mstore(add(memPtr, 32), \"owner\")\n\n }\n\n function store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\n\n }\n\n function store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: operator query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve caller is not ow\")\n\n mstore(add(memPtr, 32), \"ner nor approved for all\")\n\n }\n\n function store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: balance query for the ze\")\n\n mstore(add(memPtr, 32), \"ro address\")\n\n }\n\n function store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: owner query for nonexist\")\n\n mstore(add(memPtr, 32), \"ent token\")\n\n }\n\n function store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approved query for nonex\")\n\n mstore(add(memPtr, 32), \"istent token\")\n\n }\n\n function store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Metadata: URI query for no\")\n\n mstore(add(memPtr, 32), \"nexistent token\")\n\n }\n\n function store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approval to current owne\")\n\n mstore(add(memPtr, 32), \"r\")\n\n }\n\n function store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer caller is not o\")\n\n mstore(add(memPtr, 32), \"wner nor approved\")\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 validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint128(value) {\n if iszero(eq(value, cleanup_t_uint128(value))) { revert(0, 0) }\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 11,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b50600436106200010c5760003560e01c80636352211e11620000a5578063b88d4fde116200006f578063b88d4fde14620002cd578063c87b56dd14620002ed578063e261f1e51462000323578063e985e9c51462000359576200010c565b80636352211e146200021f57806370a08231146200025557806395d89b41146200028b578063a22cb46514620002ad576200010c565b8063095ea7b311620000e7578063095ea7b3146200019f5780630b34203a14620001bf57806323b872dd14620001df57806342842e0e14620001ff576200010c565b806301ffc9a7146200011157806306fdde031462000147578063081812fc1462000169575b600080fd5b6200012f600480360381019062000129919062001a82565b6200038f565b6040516200013e919062001eee565b60405180910390f35b6200015162000475565b60405162000160919062001f28565b60405180910390f35b62000187600480360381019062000181919062001ae6565b6200050f565b60405162000196919062001e22565b60405180910390f35b620001bd6004803603810190620001b7919062001a3b565b62000599565b005b620001dd6004803603810190620001d791906200198b565b620006c2565b005b620001fd6004803603810190620001f7919062001857565b6200076f565b005b6200021d600480360381019062000217919062001857565b620007d8565b005b6200023d600480360381019062000237919062001ae6565b620007fa565b6040516200024c919062001e22565b60405180910390f35b6200027360048036038101906200026d9190620017de565b620008af565b604051620002829190620020e4565b60405180910390f35b620002956200096a565b604051620002a4919062001f28565b60405180910390f35b620002cb6004803603810190620002c5919062001944565b62000a04565b005b620002eb6004803603810190620002e59190620018b3565b62000a1e565b005b6200030b600480360381019062000305919062001ae6565b62000a89565b6040516200031a919062001f28565b60405180910390f35b6200034160048036038101906200033b919062001ae6565b62000b3d565b60405162000350919062001f0b565b60405180910390f35b62000377600480360381019062000371919062001810565b62000b7d565b60405162000386919062001eee565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806200045b57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806200046e57506200046d8262000c11565b5b9050919050565b6060600080546200048690620023bc565b80601f0160208091040260200160405190810160405280929190818152602001828054620004b490620023bc565b8015620005055780601f10620004d95761010080835404028352916020019162000505565b820191906000526020600020905b815481529060010190602001808311620004e757829003601f168201915b5050505050905090565b60006200051c8262000c7b565b6200055e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000555906200205c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000620005a682620007fa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156200061a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061190620020a0565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166200063b62000ce7565b73ffffffffffffffffffffffffffffffffffffffff1614806200066f57506200066e816200066862000ce7565b62000b7d565b5b620006b1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006a89062001ff6565b60405180910390fd5b620006bd838362000cef565b505050565b600084848484604051620006d6906200164a565b620006e5949392919062001e93565b604051809103906000f08015801562000702573d6000803e3d6000fd5b5090506006819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505050565b620007846200077d62000ce7565b8262000daa565b620007c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007bd90620020c2565b60405180910390fd5b620007d383838362000e95565b505050565b620007f58383836040518060200160405280600081525062000a1e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415620008a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200089d906200203a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000923576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200091a9062002018565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546200097b90620023bc565b80601f0160208091040260200160405190810160405280929190818152602001828054620009a990620023bc565b8015620009fa5780601f10620009ce57610100808354040283529160200191620009fa565b820191906000526020600020905b815481529060010190602001808311620009dc57829003601f168201915b5050505050905090565b62000a1a62000a1262000ce7565b83836200110e565b5050565b62000a3362000a2c62000ce7565b8362000daa565b62000a75576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a6c90620020c2565b60405180910390fd5b62000a838484848462001280565b50505050565b606062000a968262000c7b565b62000ad8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000acf906200207e565b60405180910390fd5b600062000ae4620012e3565b9050600081511162000b06576040518060200160405280600081525062000b35565b8062000b1284620012fa565b60405160200162000b2592919062001dfa565b6040516020818303038152906040525b915050919050565b6006818154811062000b4e57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1662000d6483620007fa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600062000db78262000c7b565b62000df9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000df09062001fd4565b60405180910390fd5b600062000e0683620007fa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148062000e7857508373ffffffffffffffffffffffffffffffffffffffff1662000e60846200050f565b73ffffffffffffffffffffffffffffffffffffffff16145b8062000e8c575062000e8b818562000b7d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1662000eb782620007fa565b73ffffffffffffffffffffffffffffffffffffffff161462000f10576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f079062001f6e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000f83576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000f7a9062001f90565b60405180910390fd5b62000f9083838362001474565b62000f9d60008262000cef565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000fef91906200226e565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620010489190620021d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200110983838362001479565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562001180576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620011779062001fb2565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405162001273919062001eee565b60405180910390a3505050565b6200128d84848462000e95565b6200129b848484846200147e565b620012dd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620012d49062001f4c565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060600082141562001344576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506200146f565b600082905060005b600082146200137c578080620013629062002428565b915050600a8262001374919062002236565b91506200134c565b60008167ffffffffffffffff8111156200139b576200139a6200256a565b5b6040519080825280601f01601f191660200182016040528015620013ce5781602001600182028036833780820191505090505b5090505b600085146200146857600182620013ea91906200226e565b9150600a85620013fb919062002476565b6030620014099190620021d9565b60f81b8183815181106200142257620014216200253b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8562001460919062002236565b9450620013d2565b8093505050505b919050565b505050565b505050565b6000620014a18473ffffffffffffffffffffffffffffffffffffffff1662001627565b156200161a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620014cd62000ce7565b8786866040518563ffffffff1660e01b8152600401620014f1949392919062001e3f565b602060405180830381600087803b1580156200150c57600080fd5b505af19250505080156200154057506040513d601f19601f820116820180604052508101906200153d919062001ab4565b60015b620015c9573d806000811462001573576040519150601f19603f3d011682016040523d82523d6000602084013e62001578565b606091505b50600081511415620015c1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620015b89062001f4c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200161f565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b61092f80620029cf83390190565b60006200166f62001669846200212a565b62002101565b9050828152602081018484840111156200168e576200168d6200259e565b5b6200169b84828562002377565b509392505050565b6000620016ba620016b48462002160565b62002101565b905082815260208101848484011115620016d957620016d86200259e565b5b620016e684828562002377565b509392505050565b600081359050620016ff816200294c565b92915050565b600081359050620017168162002966565b92915050565b6000813590506200172d8162002980565b92915050565b600081519050620017448162002980565b92915050565b600082601f83011262001762576200176162002599565b5b81356200177484826020860162001658565b91505092915050565b600082601f83011262001795576200179462002599565b5b8135620017a7848260208601620016a3565b91505092915050565b600081359050620017c1816200299a565b92915050565b600081359050620017d881620029b4565b92915050565b600060208284031215620017f757620017f6620025a8565b5b60006200180784828501620016ee565b91505092915050565b600080604083850312156200182a5762001829620025a8565b5b60006200183a85828601620016ee565b92505060206200184d85828601620016ee565b9150509250929050565b600080600060608486031215620018735762001872620025a8565b5b60006200188386828701620016ee565b93505060206200189686828701620016ee565b9250506040620018a986828701620017c7565b9150509250925092565b60008060008060808587031215620018d057620018cf620025a8565b5b6000620018e087828801620016ee565b9450506020620018f387828801620016ee565b93505060406200190687828801620017c7565b925050606085013567ffffffffffffffff8111156200192a5762001929620025a3565b5b62001938878288016200174a565b91505092959194509250565b600080604083850312156200195e576200195d620025a8565b5b60006200196e85828601620016ee565b9250506020620019818582860162001705565b9150509250929050565b60008060008060808587031215620019a857620019a7620025a8565b5b6000620019b887828801620016ee565b9450506020620019cb87828801620017b0565b935050604085013567ffffffffffffffff811115620019ef57620019ee620025a3565b5b620019fd878288016200177d565b925050606085013567ffffffffffffffff81111562001a215762001a20620025a3565b5b62001a2f878288016200177d565b91505092959194509250565b6000806040838503121562001a555762001a54620025a8565b5b600062001a6585828601620016ee565b925050602062001a7885828601620017c7565b9150509250929050565b60006020828403121562001a9b5762001a9a620025a8565b5b600062001aab848285016200171c565b91505092915050565b60006020828403121562001acd5762001acc620025a8565b5b600062001add8482850162001733565b91505092915050565b60006020828403121562001aff5762001afe620025a8565b5b600062001b0f84828501620017c7565b91505092915050565b62001b2381620022a9565b82525050565b62001b3481620022bd565b82525050565b600062001b478262002196565b62001b538185620021ac565b935062001b6581856020860162002386565b62001b7081620025ad565b840191505092915050565b62001b86816200233b565b82525050565b600062001b9982620021a1565b62001ba58185620021bd565b935062001bb781856020860162002386565b62001bc281620025ad565b840191505092915050565b600062001bda82620021a1565b62001be68185620021ce565b935062001bf881856020860162002386565b80840191505092915050565b600062001c13603283620021bd565b915062001c2082620025be565b604082019050919050565b600062001c3a602583620021bd565b915062001c47826200260d565b604082019050919050565b600062001c61602483620021bd565b915062001c6e826200265c565b604082019050919050565b600062001c88601983620021bd565b915062001c9582620026ab565b602082019050919050565b600062001caf602c83620021bd565b915062001cbc82620026d4565b604082019050919050565b600062001cd6603883620021bd565b915062001ce38262002723565b604082019050919050565b600062001cfd602a83620021bd565b915062001d0a8262002772565b604082019050919050565b600062001d24602983620021bd565b915062001d3182620027c1565b604082019050919050565b600062001d4b602c83620021bd565b915062001d588262002810565b604082019050919050565b600062001d72602f83620021bd565b915062001d7f826200285f565b604082019050919050565b600062001d99602183620021bd565b915062001da682620028ae565b604082019050919050565b600062001dc0603183620021bd565b915062001dcd82620028fd565b604082019050919050565b62001de381620022f5565b82525050565b62001df48162002331565b82525050565b600062001e08828562001bcd565b915062001e16828462001bcd565b91508190509392505050565b600060208201905062001e39600083018462001b18565b92915050565b600060808201905062001e56600083018762001b18565b62001e65602083018662001b18565b62001e74604083018562001de9565b818103606083015262001e88818462001b3a565b905095945050505050565b600060808201905062001eaa600083018762001b18565b62001eb9602083018662001dd8565b818103604083015262001ecd818562001b8c565b9050818103606083015262001ee3818462001b8c565b905095945050505050565b600060208201905062001f05600083018462001b29565b92915050565b600060208201905062001f22600083018462001b7b565b92915050565b6000602082019050818103600083015262001f44818462001b8c565b905092915050565b6000602082019050818103600083015262001f678162001c04565b9050919050565b6000602082019050818103600083015262001f898162001c2b565b9050919050565b6000602082019050818103600083015262001fab8162001c52565b9050919050565b6000602082019050818103600083015262001fcd8162001c79565b9050919050565b6000602082019050818103600083015262001fef8162001ca0565b9050919050565b60006020820190508181036000830152620020118162001cc7565b9050919050565b60006020820190508181036000830152620020338162001cee565b9050919050565b60006020820190508181036000830152620020558162001d15565b9050919050565b60006020820190508181036000830152620020778162001d3c565b9050919050565b60006020820190508181036000830152620020998162001d63565b9050919050565b60006020820190508181036000830152620020bb8162001d8a565b9050919050565b60006020820190508181036000830152620020dd8162001db1565b9050919050565b6000602082019050620020fb600083018462001de9565b92915050565b60006200210d62002120565b90506200211b8282620023f2565b919050565b6000604051905090565b600067ffffffffffffffff8211156200214857620021476200256a565b5b6200215382620025ad565b9050602081019050919050565b600067ffffffffffffffff8211156200217e576200217d6200256a565b5b6200218982620025ad565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000620021e68262002331565b9150620021f38362002331565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200222b576200222a620024ae565b5b828201905092915050565b6000620022438262002331565b9150620022508362002331565b925082620022635762002262620024dd565b5b828204905092915050565b60006200227b8262002331565b9150620022888362002331565b9250828210156200229e576200229d620024ae565b5b828203905092915050565b6000620022b68262002311565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600062002348826200234f565b9050919050565b60006200235c8262002363565b9050919050565b6000620023708262002311565b9050919050565b82818337600083830152505050565b60005b83811015620023a657808201518184015260208101905062002389565b83811115620023b6576000848401525b50505050565b60006002820490506001821680620023d557607f821691505b60208210811415620023ec57620023eb6200250c565b5b50919050565b620023fd82620025ad565b810181811067ffffffffffffffff821117156200241f576200241e6200256a565b5b80604052505050565b6000620024358262002331565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200246b576200246a620024ae565b5b600182019050919050565b6000620024838262002331565b9150620024908362002331565b925082620024a357620024a2620024dd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6200295781620022a9565b81146200296357600080fd5b50565b6200297181620022bd565b81146200297d57600080fd5b50565b6200298b81620022c9565b81146200299757600080fd5b50565b620029a581620022f5565b8114620029b157600080fd5b50565b620029bf8162002331565b8114620029cb57600080fd5b5056fe60806040523480156200001157600080fd5b506040516200092f3803806200092f833981810160405281019062000037919062000248565b836000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055508160029080519060200190620000c8929190620000ec565b508060039080519060200190620000e1929190620000ec565b505050505062000500565b828054620000fa90620003dd565b90600052602060002090601f0160209004810192826200011e57600085556200016a565b82601f106200013957805160ff19168380011785556200016a565b828001600101855582156200016a579182015b82811115620001695782518255916020019190600101906200014c565b5b5090506200017991906200017d565b5090565b5b80821115620001985760008160009055506001016200017e565b5090565b6000620001b3620001ad8462000321565b620002f8565b905082815260208101848484011115620001d257620001d1620004ac565b5b620001df848285620003a7565b509392505050565b600081519050620001f881620004cc565b92915050565b600082601f830112620002165762000215620004a7565b5b8151620002288482602086016200019c565b91505092915050565b6000815190506200024281620004e6565b92915050565b60008060008060808587031215620002655762000264620004b6565b5b60006200027587828801620001e7565b9450506020620002888782880162000231565b935050604085015167ffffffffffffffff811115620002ac57620002ab620004b1565b5b620002ba87828801620001fe565b925050606085015167ffffffffffffffff811115620002de57620002dd620004b1565b5b620002ec87828801620001fe565b91505092959194509250565b60006200030462000317565b905062000312828262000413565b919050565b6000604051905090565b600067ffffffffffffffff8211156200033f576200033e62000478565b5b6200034a82620004bb565b9050602081019050919050565b6000620003648262000387565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620003c7578082015181840152602081019050620003aa565b83811115620003d7576000848401525b50505050565b60006002820490506001821680620003f657607f821691505b602082108114156200040d576200040c62000449565b5b50919050565b6200041e82620004bb565b810181811067ffffffffffffffff8211171562000440576200043f62000478565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620004d78162000357565b8114620004e357600080fd5b50565b620004f1816200036b565b8114620004fd57600080fd5b50565b61041f80620005106000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c8063516f279e146100515780638da5cb5b1461006f578063949d225d1461008d578063a035b1fe146100ab575b600080fd5b6100596100c9565b604051610066919061029d565b60405180910390f35b610077610157565b6040516100849190610282565b60405180910390f35b61009561017b565b6040516100a2919061029d565b60405180910390f35b6100b3610209565b6040516100c091906102bf565b60405180910390f35b600280546100d690610377565b80601f016020809104026020016040519081016040528092919081815260200182805461010290610377565b801561014f5780601f106101245761010080835404028352916020019161014f565b820191906000526020600020905b81548152906001019060200180831161013257829003601f168201915b505050505081565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6003805461018890610377565b80601f01602080910402602001604051908101604052809291908181526020018280546101b490610377565b80156102015780601f106101d657610100808354040283529160200191610201565b820191906000526020600020905b8154815290600101906020018083116101e457829003601f168201915b505050505081565b600160009054906101000a90046fffffffffffffffffffffffffffffffff1681565b610234816102f6565b82525050565b6000610245826102da565b61024f81856102e5565b935061025f818560208601610344565b610268816103d8565b840191505092915050565b61027c81610308565b82525050565b6000602082019050610297600083018461022b565b92915050565b600060208201905081810360008301526102b7818461023a565b905092915050565b60006020820190506102d46000830184610273565b92915050565b600081519050919050565b600082825260208201905092915050565b600061030182610324565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015610362578082015181840152602081019050610347565b83811115610371576000848401525b50505050565b6000600282049050600182168061038f57607f821691505b602082108114156103a3576103a26103a9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f830116905091905056fea264697066735822122073a682ed4975097efa2bf5bb6ac220643160baed35b421d42a19eb3c2da88d8e64736f6c63430008070033a26469706673582212208bc5ffa571dd35460e14e4380cc8f531862445d74ace3e89efdf8c0d908f8c9264736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH3 0x10C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH3 0xA5 JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH3 0x6F JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH3 0x2CD JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH3 0x2ED JUMPI DUP1 PUSH4 0xE261F1E5 EQ PUSH3 0x323 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH3 0x359 JUMPI PUSH3 0x10C JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH3 0x21F JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH3 0x255 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH3 0x28B JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH3 0x2AD JUMPI PUSH3 0x10C JUMP JUMPDEST DUP1 PUSH4 0x95EA7B3 GT PUSH3 0xE7 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH3 0x19F JUMPI DUP1 PUSH4 0xB34203A EQ PUSH3 0x1BF JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH3 0x1DF JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH3 0x1FF JUMPI PUSH3 0x10C JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH3 0x111 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH3 0x147 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH3 0x169 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH3 0x12F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x129 SWAP2 SWAP1 PUSH3 0x1A82 JUMP JUMPDEST PUSH3 0x38F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x13E SWAP2 SWAP1 PUSH3 0x1EEE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x151 PUSH3 0x475 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x160 SWAP2 SWAP1 PUSH3 0x1F28 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x187 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x181 SWAP2 SWAP1 PUSH3 0x1AE6 JUMP JUMPDEST PUSH3 0x50F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x196 SWAP2 SWAP1 PUSH3 0x1E22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x1BD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x1B7 SWAP2 SWAP1 PUSH3 0x1A3B JUMP JUMPDEST PUSH3 0x599 JUMP JUMPDEST STOP JUMPDEST PUSH3 0x1DD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x1D7 SWAP2 SWAP1 PUSH3 0x198B JUMP JUMPDEST PUSH3 0x6C2 JUMP JUMPDEST STOP JUMPDEST PUSH3 0x1FD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x1F7 SWAP2 SWAP1 PUSH3 0x1857 JUMP JUMPDEST PUSH3 0x76F JUMP JUMPDEST STOP JUMPDEST PUSH3 0x21D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x217 SWAP2 SWAP1 PUSH3 0x1857 JUMP JUMPDEST PUSH3 0x7D8 JUMP JUMPDEST STOP JUMPDEST PUSH3 0x23D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x237 SWAP2 SWAP1 PUSH3 0x1AE6 JUMP JUMPDEST PUSH3 0x7FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x24C SWAP2 SWAP1 PUSH3 0x1E22 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x273 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x26D SWAP2 SWAP1 PUSH3 0x17DE JUMP JUMPDEST PUSH3 0x8AF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x282 SWAP2 SWAP1 PUSH3 0x20E4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x295 PUSH3 0x96A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x2A4 SWAP2 SWAP1 PUSH3 0x1F28 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x2CB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x2C5 SWAP2 SWAP1 PUSH3 0x1944 JUMP JUMPDEST PUSH3 0xA04 JUMP JUMPDEST STOP JUMPDEST PUSH3 0x2EB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x2E5 SWAP2 SWAP1 PUSH3 0x18B3 JUMP JUMPDEST PUSH3 0xA1E JUMP JUMPDEST STOP JUMPDEST PUSH3 0x30B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x305 SWAP2 SWAP1 PUSH3 0x1AE6 JUMP JUMPDEST PUSH3 0xA89 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x31A SWAP2 SWAP1 PUSH3 0x1F28 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x341 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x33B SWAP2 SWAP1 PUSH3 0x1AE6 JUMP JUMPDEST PUSH3 0xB3D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x350 SWAP2 SWAP1 PUSH3 0x1F0B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH3 0x377 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH3 0x371 SWAP2 SWAP1 PUSH3 0x1810 JUMP JUMPDEST PUSH3 0xB7D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH3 0x386 SWAP2 SWAP1 PUSH3 0x1EEE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH3 0x45B JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH3 0x46E JUMPI POP PUSH3 0x46D DUP3 PUSH3 0xC11 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH3 0x486 SWAP1 PUSH3 0x23BC JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH3 0x4B4 SWAP1 PUSH3 0x23BC JUMP JUMPDEST DUP1 ISZERO PUSH3 0x505 JUMPI DUP1 PUSH1 0x1F LT PUSH3 0x4D9 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH3 0x505 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH3 0x4E7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x51C DUP3 PUSH3 0xC7B JUMP JUMPDEST PUSH3 0x55E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x555 SWAP1 PUSH3 0x205C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x5A6 DUP3 PUSH3 0x7FA JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x61A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x611 SWAP1 PUSH3 0x20A0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0x63B PUSH3 0xCE7 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH3 0x66F JUMPI POP PUSH3 0x66E DUP2 PUSH3 0x668 PUSH3 0xCE7 JUMP JUMPDEST PUSH3 0xB7D JUMP JUMPDEST JUMPDEST PUSH3 0x6B1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x6A8 SWAP1 PUSH3 0x1FF6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x6BD DUP4 DUP4 PUSH3 0xCEF JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 DUP5 DUP5 PUSH1 0x40 MLOAD PUSH3 0x6D6 SWAP1 PUSH3 0x164A JUMP JUMPDEST PUSH3 0x6E5 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH3 0x1E93 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 PUSH1 0x0 CREATE DUP1 ISZERO DUP1 ISZERO PUSH3 0x702 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP SWAP1 POP PUSH1 0x6 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH3 0x784 PUSH3 0x77D PUSH3 0xCE7 JUMP JUMPDEST DUP3 PUSH3 0xDAA JUMP JUMPDEST PUSH3 0x7C6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x7BD SWAP1 PUSH3 0x20C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x7D3 DUP4 DUP4 DUP4 PUSH3 0xE95 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH3 0x7F5 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH3 0xA1E JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x8A6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x89D SWAP1 PUSH3 0x203A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x923 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x91A SWAP1 PUSH3 0x2018 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH3 0x97B SWAP1 PUSH3 0x23BC JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH3 0x9A9 SWAP1 PUSH3 0x23BC JUMP JUMPDEST DUP1 ISZERO PUSH3 0x9FA JUMPI DUP1 PUSH1 0x1F LT PUSH3 0x9CE JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH3 0x9FA JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH3 0x9DC JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH3 0xA1A PUSH3 0xA12 PUSH3 0xCE7 JUMP JUMPDEST DUP4 DUP4 PUSH3 0x110E JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH3 0xA33 PUSH3 0xA2C PUSH3 0xCE7 JUMP JUMPDEST DUP4 PUSH3 0xDAA JUMP JUMPDEST PUSH3 0xA75 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xA6C SWAP1 PUSH3 0x20C2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0xA83 DUP5 DUP5 DUP5 DUP5 PUSH3 0x1280 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH3 0xA96 DUP3 PUSH3 0xC7B JUMP JUMPDEST PUSH3 0xAD8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xACF SWAP1 PUSH3 0x207E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH3 0xAE4 PUSH3 0x12E3 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH3 0xB06 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH3 0xB35 JUMP JUMPDEST DUP1 PUSH3 0xB12 DUP5 PUSH3 0x12FA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH3 0xB25 SWAP3 SWAP2 SWAP1 PUSH3 0x1DFA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x6 DUP2 DUP2 SLOAD DUP2 LT PUSH3 0xB4E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0xD64 DUP4 PUSH3 0x7FA JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0xDB7 DUP3 PUSH3 0xC7B JUMP JUMPDEST PUSH3 0xDF9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xDF0 SWAP1 PUSH3 0x1FD4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH3 0xE06 DUP4 PUSH3 0x7FA JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH3 0xE78 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0xE60 DUP5 PUSH3 0x50F JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH3 0xE8C JUMPI POP PUSH3 0xE8B DUP2 DUP6 PUSH3 0xB7D JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0xEB7 DUP3 PUSH3 0x7FA JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH3 0xF10 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xF07 SWAP1 PUSH3 0x1F6E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0xF83 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0xF7A SWAP1 PUSH3 0x1F90 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0xF90 DUP4 DUP4 DUP4 PUSH3 0x1474 JUMP JUMPDEST PUSH3 0xF9D PUSH1 0x0 DUP3 PUSH3 0xCEF JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0xFEF SWAP2 SWAP1 PUSH3 0x226E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH3 0x1048 SWAP2 SWAP1 PUSH3 0x21D9 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH3 0x1109 DUP4 DUP4 DUP4 PUSH3 0x1479 JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x1180 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x1177 SWAP1 PUSH3 0x1FB2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH3 0x1273 SWAP2 SWAP1 PUSH3 0x1EEE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH3 0x128D DUP5 DUP5 DUP5 PUSH3 0xE95 JUMP JUMPDEST PUSH3 0x129B DUP5 DUP5 DUP5 DUP5 PUSH3 0x147E JUMP JUMPDEST PUSH3 0x12DD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x12D4 SWAP1 PUSH3 0x1F4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH3 0x1344 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH3 0x146F JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH3 0x137C JUMPI DUP1 DUP1 PUSH3 0x1362 SWAP1 PUSH3 0x2428 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH3 0x1374 SWAP2 SWAP1 PUSH3 0x2236 JUMP JUMPDEST SWAP2 POP PUSH3 0x134C JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x139B JUMPI PUSH3 0x139A PUSH3 0x256A JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH3 0x13CE JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH3 0x1468 JUMPI PUSH1 0x1 DUP3 PUSH3 0x13EA SWAP2 SWAP1 PUSH3 0x226E JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH3 0x13FB SWAP2 SWAP1 PUSH3 0x2476 JUMP JUMPDEST PUSH1 0x30 PUSH3 0x1409 SWAP2 SWAP1 PUSH3 0x21D9 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH3 0x1422 JUMPI PUSH3 0x1421 PUSH3 0x253B JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH3 0x1460 SWAP2 SWAP1 PUSH3 0x2236 JUMP JUMPDEST SWAP5 POP PUSH3 0x13D2 JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x14A1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0x1627 JUMP JUMPDEST ISZERO PUSH3 0x161A JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH3 0x14CD PUSH3 0xCE7 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x14F1 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH3 0x1E3F JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0x150C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH3 0x1540 JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH3 0x153D SWAP2 SWAP1 PUSH3 0x1AB4 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH3 0x15C9 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH3 0x1573 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 PUSH3 0x1578 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH3 0x15C1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x15B8 SWAP1 PUSH3 0x1F4C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH3 0x161F JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x92F DUP1 PUSH3 0x29CF DUP4 CODECOPY ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x166F PUSH3 0x1669 DUP5 PUSH3 0x212A JUMP JUMPDEST PUSH3 0x2101 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x168E JUMPI PUSH3 0x168D PUSH3 0x259E JUMP JUMPDEST JUMPDEST PUSH3 0x169B DUP5 DUP3 DUP6 PUSH3 0x2377 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x16BA PUSH3 0x16B4 DUP5 PUSH3 0x2160 JUMP JUMPDEST PUSH3 0x2101 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x16D9 JUMPI PUSH3 0x16D8 PUSH3 0x259E JUMP JUMPDEST JUMPDEST PUSH3 0x16E6 DUP5 DUP3 DUP6 PUSH3 0x2377 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH3 0x16FF DUP2 PUSH3 0x294C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH3 0x1716 DUP2 PUSH3 0x2966 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH3 0x172D DUP2 PUSH3 0x2980 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x1744 DUP2 PUSH3 0x2980 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x1762 JUMPI PUSH3 0x1761 PUSH3 0x2599 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH3 0x1774 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x1658 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x1795 JUMPI PUSH3 0x1794 PUSH3 0x2599 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH3 0x17A7 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x16A3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH3 0x17C1 DUP2 PUSH3 0x299A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH3 0x17D8 DUP2 PUSH3 0x29B4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x17F7 JUMPI PUSH3 0x17F6 PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x1807 DUP5 DUP3 DUP6 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x182A JUMPI PUSH3 0x1829 PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x183A DUP6 DUP3 DUP7 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH3 0x184D DUP6 DUP3 DUP7 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x1873 JUMPI PUSH3 0x1872 PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x1883 DUP7 DUP3 DUP8 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH3 0x1896 DUP7 DUP3 DUP8 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH3 0x18A9 DUP7 DUP3 DUP8 ADD PUSH3 0x17C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x18D0 JUMPI PUSH3 0x18CF PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x18E0 DUP8 DUP3 DUP9 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH3 0x18F3 DUP8 DUP3 DUP9 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH3 0x1906 DUP8 DUP3 DUP9 ADD PUSH3 0x17C7 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x192A JUMPI PUSH3 0x1929 PUSH3 0x25A3 JUMP JUMPDEST JUMPDEST PUSH3 0x1938 DUP8 DUP3 DUP9 ADD PUSH3 0x174A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x195E JUMPI PUSH3 0x195D PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x196E DUP6 DUP3 DUP7 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH3 0x1981 DUP6 DUP3 DUP7 ADD PUSH3 0x1705 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x19A8 JUMPI PUSH3 0x19A7 PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x19B8 DUP8 DUP3 DUP9 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH3 0x19CB DUP8 DUP3 DUP9 ADD PUSH3 0x17B0 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x19EF JUMPI PUSH3 0x19EE PUSH3 0x25A3 JUMP JUMPDEST JUMPDEST PUSH3 0x19FD DUP8 DUP3 DUP9 ADD PUSH3 0x177D JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x1A21 JUMPI PUSH3 0x1A20 PUSH3 0x25A3 JUMP JUMPDEST JUMPDEST PUSH3 0x1A2F DUP8 DUP3 DUP9 ADD PUSH3 0x177D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1A55 JUMPI PUSH3 0x1A54 PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x1A65 DUP6 DUP3 DUP7 ADD PUSH3 0x16EE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH3 0x1A78 DUP6 DUP3 DUP7 ADD PUSH3 0x17C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x1A9B JUMPI PUSH3 0x1A9A PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x1AAB DUP5 DUP3 DUP6 ADD PUSH3 0x171C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x1ACD JUMPI PUSH3 0x1ACC PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x1ADD DUP5 DUP3 DUP6 ADD PUSH3 0x1733 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x1AFF JUMPI PUSH3 0x1AFE PUSH3 0x25A8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x1B0F DUP5 DUP3 DUP6 ADD PUSH3 0x17C7 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x1B23 DUP2 PUSH3 0x22A9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH3 0x1B34 DUP2 PUSH3 0x22BD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1B47 DUP3 PUSH3 0x2196 JUMP JUMPDEST PUSH3 0x1B53 DUP2 DUP6 PUSH3 0x21AC JUMP JUMPDEST SWAP4 POP PUSH3 0x1B65 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH3 0x2386 JUMP JUMPDEST PUSH3 0x1B70 DUP2 PUSH3 0x25AD JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x1B86 DUP2 PUSH3 0x233B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1B99 DUP3 PUSH3 0x21A1 JUMP JUMPDEST PUSH3 0x1BA5 DUP2 DUP6 PUSH3 0x21BD JUMP JUMPDEST SWAP4 POP PUSH3 0x1BB7 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH3 0x2386 JUMP JUMPDEST PUSH3 0x1BC2 DUP2 PUSH3 0x25AD JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1BDA DUP3 PUSH3 0x21A1 JUMP JUMPDEST PUSH3 0x1BE6 DUP2 DUP6 PUSH3 0x21CE JUMP JUMPDEST SWAP4 POP PUSH3 0x1BF8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH3 0x2386 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1C13 PUSH1 0x32 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1C20 DUP3 PUSH3 0x25BE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1C3A PUSH1 0x25 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1C47 DUP3 PUSH3 0x260D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1C61 PUSH1 0x24 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1C6E DUP3 PUSH3 0x265C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1C88 PUSH1 0x19 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1C95 DUP3 PUSH3 0x26AB JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1CAF PUSH1 0x2C DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1CBC DUP3 PUSH3 0x26D4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1CD6 PUSH1 0x38 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1CE3 DUP3 PUSH3 0x2723 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1CFD PUSH1 0x2A DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1D0A DUP3 PUSH3 0x2772 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1D24 PUSH1 0x29 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1D31 DUP3 PUSH3 0x27C1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1D4B PUSH1 0x2C DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1D58 DUP3 PUSH3 0x2810 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1D72 PUSH1 0x2F DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1D7F DUP3 PUSH3 0x285F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1D99 PUSH1 0x21 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1DA6 DUP3 PUSH3 0x28AE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1DC0 PUSH1 0x31 DUP4 PUSH3 0x21BD JUMP JUMPDEST SWAP2 POP PUSH3 0x1DCD DUP3 PUSH3 0x28FD JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x1DE3 DUP2 PUSH3 0x22F5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH3 0x1DF4 DUP2 PUSH3 0x2331 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1E08 DUP3 DUP6 PUSH3 0x1BCD JUMP JUMPDEST SWAP2 POP PUSH3 0x1E16 DUP3 DUP5 PUSH3 0x1BCD JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x1E39 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x1B18 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH3 0x1E56 PUSH1 0x0 DUP4 ADD DUP8 PUSH3 0x1B18 JUMP JUMPDEST PUSH3 0x1E65 PUSH1 0x20 DUP4 ADD DUP7 PUSH3 0x1B18 JUMP JUMPDEST PUSH3 0x1E74 PUSH1 0x40 DUP4 ADD DUP6 PUSH3 0x1DE9 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH3 0x1E88 DUP2 DUP5 PUSH3 0x1B3A JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH3 0x1EAA PUSH1 0x0 DUP4 ADD DUP8 PUSH3 0x1B18 JUMP JUMPDEST PUSH3 0x1EB9 PUSH1 0x20 DUP4 ADD DUP7 PUSH3 0x1DD8 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH3 0x1ECD DUP2 DUP6 PUSH3 0x1B8C JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH3 0x1EE3 DUP2 DUP5 PUSH3 0x1B8C JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x1F05 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x1B29 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x1F22 PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x1B7B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1F44 DUP2 DUP5 PUSH3 0x1B8C JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1F67 DUP2 PUSH3 0x1C04 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1F89 DUP2 PUSH3 0x1C2B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1FAB DUP2 PUSH3 0x1C52 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1FCD DUP2 PUSH3 0x1C79 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x1FEF DUP2 PUSH3 0x1CA0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x2011 DUP2 PUSH3 0x1CC7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x2033 DUP2 PUSH3 0x1CEE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x2055 DUP2 PUSH3 0x1D15 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x2077 DUP2 PUSH3 0x1D3C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x2099 DUP2 PUSH3 0x1D63 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x20BB DUP2 PUSH3 0x1D8A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x20DD DUP2 PUSH3 0x1DB1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH3 0x20FB PUSH1 0x0 DUP4 ADD DUP5 PUSH3 0x1DE9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x210D PUSH3 0x2120 JUMP JUMPDEST SWAP1 POP PUSH3 0x211B DUP3 DUP3 PUSH3 0x23F2 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x2148 JUMPI PUSH3 0x2147 PUSH3 0x256A JUMP JUMPDEST JUMPDEST PUSH3 0x2153 DUP3 PUSH3 0x25AD JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x217E JUMPI PUSH3 0x217D PUSH3 0x256A JUMP JUMPDEST JUMPDEST PUSH3 0x2189 DUP3 PUSH3 0x25AD JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x21E6 DUP3 PUSH3 0x2331 JUMP JUMPDEST SWAP2 POP PUSH3 0x21F3 DUP4 PUSH3 0x2331 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x222B JUMPI PUSH3 0x222A PUSH3 0x24AE JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2243 DUP3 PUSH3 0x2331 JUMP JUMPDEST SWAP2 POP PUSH3 0x2250 DUP4 PUSH3 0x2331 JUMP JUMPDEST SWAP3 POP DUP3 PUSH3 0x2263 JUMPI PUSH3 0x2262 PUSH3 0x24DD JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x227B DUP3 PUSH3 0x2331 JUMP JUMPDEST SWAP2 POP PUSH3 0x2288 DUP4 PUSH3 0x2331 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH3 0x229E JUMPI PUSH3 0x229D PUSH3 0x24AE JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x22B6 DUP3 PUSH3 0x2311 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2348 DUP3 PUSH3 0x234F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x235C DUP3 PUSH3 0x2363 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2370 DUP3 PUSH3 0x2311 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x23A6 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x2389 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x23B6 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x23D5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x23EC JUMPI PUSH3 0x23EB PUSH3 0x250C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x23FD DUP3 PUSH3 0x25AD JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x241F JUMPI PUSH3 0x241E PUSH3 0x256A JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2435 DUP3 PUSH3 0x2331 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH3 0x246B JUMPI PUSH3 0x246A PUSH3 0x24AE JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2483 DUP3 PUSH3 0x2331 JUMP JUMPDEST SWAP2 POP PUSH3 0x2490 DUP4 PUSH3 0x2331 JUMP JUMPDEST SWAP3 POP DUP3 PUSH3 0x24A3 JUMPI PUSH3 0x24A2 PUSH3 0x24DD JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH3 0x2957 DUP2 PUSH3 0x22A9 JUMP JUMPDEST DUP2 EQ PUSH3 0x2963 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x2971 DUP2 PUSH3 0x22BD JUMP JUMPDEST DUP2 EQ PUSH3 0x297D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x298B DUP2 PUSH3 0x22C9 JUMP JUMPDEST DUP2 EQ PUSH3 0x2997 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x29A5 DUP2 PUSH3 0x22F5 JUMP JUMPDEST DUP2 EQ PUSH3 0x29B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x29BF DUP2 PUSH3 0x2331 JUMP JUMPDEST DUP2 EQ PUSH3 0x29CB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x92F CODESIZE SUB DUP1 PUSH3 0x92F DUP4 CODECOPY DUP2 DUP2 ADD PUSH1 0x40 MSTORE DUP2 ADD SWAP1 PUSH3 0x37 SWAP2 SWAP1 PUSH3 0x248 JUMP JUMPDEST DUP4 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP3 PUSH1 0x1 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH1 0x2 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xC8 SWAP3 SWAP2 SWAP1 PUSH3 0xEC JUMP JUMPDEST POP DUP1 PUSH1 0x3 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xE1 SWAP3 SWAP2 SWAP1 PUSH3 0xEC JUMP JUMPDEST POP POP POP POP POP PUSH3 0x500 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0xFA SWAP1 PUSH3 0x3DD JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x11E JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x16A JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x139 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x16A JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x16A JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x169 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x14C JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x179 SWAP2 SWAP1 PUSH3 0x17D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x198 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x17E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH3 0x1B3 PUSH3 0x1AD DUP5 PUSH3 0x321 JUMP JUMPDEST PUSH3 0x2F8 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH3 0x1D2 JUMPI PUSH3 0x1D1 PUSH3 0x4AC JUMP JUMPDEST JUMPDEST PUSH3 0x1DF DUP5 DUP3 DUP6 PUSH3 0x3A7 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x1F8 DUP2 PUSH3 0x4CC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x216 JUMPI PUSH3 0x215 PUSH3 0x4A7 JUMP JUMPDEST JUMPDEST DUP2 MLOAD PUSH3 0x228 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH3 0x19C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x242 DUP2 PUSH3 0x4E6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH3 0x265 JUMPI PUSH3 0x264 PUSH3 0x4B6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x275 DUP8 DUP3 DUP9 ADD PUSH3 0x1E7 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH3 0x288 DUP8 DUP3 DUP9 ADD PUSH3 0x231 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 DUP6 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x2AC JUMPI PUSH3 0x2AB PUSH3 0x4B1 JUMP JUMPDEST JUMPDEST PUSH3 0x2BA DUP8 DUP3 DUP9 ADD PUSH3 0x1FE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD MLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x2DE JUMPI PUSH3 0x2DD PUSH3 0x4B1 JUMP JUMPDEST JUMPDEST PUSH3 0x2EC DUP8 DUP3 DUP9 ADD PUSH3 0x1FE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x304 PUSH3 0x317 JUMP JUMPDEST SWAP1 POP PUSH3 0x312 DUP3 DUP3 PUSH3 0x413 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH3 0x33F JUMPI PUSH3 0x33E PUSH3 0x478 JUMP JUMPDEST JUMPDEST PUSH3 0x34A DUP3 PUSH3 0x4BB JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x364 DUP3 PUSH3 0x387 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x3C7 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x3AA JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x3D7 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x3F6 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x40D JUMPI PUSH3 0x40C PUSH3 0x449 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x41E DUP3 PUSH3 0x4BB JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH3 0x440 JUMPI PUSH3 0x43F PUSH3 0x478 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x4D7 DUP2 PUSH3 0x357 JUMP JUMPDEST DUP2 EQ PUSH3 0x4E3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH3 0x4F1 DUP2 PUSH3 0x36B JUMP JUMPDEST DUP2 EQ PUSH3 0x4FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x41F DUP1 PUSH3 0x510 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x516F279E EQ PUSH2 0x51 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x6F JUMPI DUP1 PUSH4 0x949D225D EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0xA035B1FE EQ PUSH2 0xAB JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x59 PUSH2 0xC9 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x66 SWAP2 SWAP1 PUSH2 0x29D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x77 PUSH2 0x157 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x282 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x95 PUSH2 0x17B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x29D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB3 PUSH2 0x209 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xC0 SWAP2 SWAP1 PUSH2 0x2BF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x2 DUP1 SLOAD PUSH2 0xD6 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x102 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x14F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x124 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x14F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x132 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x3 DUP1 SLOAD PUSH2 0x188 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x1B4 SWAP1 PUSH2 0x377 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x201 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x1D6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x201 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1E4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH2 0x234 DUP2 PUSH2 0x2F6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x245 DUP3 PUSH2 0x2DA JUMP JUMPDEST PUSH2 0x24F DUP2 DUP6 PUSH2 0x2E5 JUMP JUMPDEST SWAP4 POP PUSH2 0x25F DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x344 JUMP JUMPDEST PUSH2 0x268 DUP2 PUSH2 0x3D8 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x27C DUP2 PUSH2 0x308 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x297 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x22B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2B7 DUP2 DUP5 PUSH2 0x23A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2D4 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x273 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x301 DUP3 PUSH2 0x324 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH16 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x362 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x347 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x371 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x38F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x3A3 JUMPI PUSH2 0x3A2 PUSH2 0x3A9 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH20 0xA682ED4975097EFA2BF5BB6AC220643160BAED35 0xB4 0x21 0xD4 0x2A NOT 0xEB EXTCODECOPY 0x2D 0xA8 DUP14 DUP15 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP12 0xC5 SELFDESTRUCT 0xA5 PUSH18 0xDD35460E14E4380CC8F531862445D74ACE3E DUP10 0xEF 0xDF DUP13 0xD SWAP1 DUP16 DUP13 SWAP3 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "608:386:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2488:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3999:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3537:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;793:199:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4726:330:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5122:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2191:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1929:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2650:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4283:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5367:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2818:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;692:19:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4502:162:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1570:300;1672:4;1722:25;1707:40;;;:11;:40;;;;:104;;;;1778:33;1763:48;;;:11;:48;;;;1707:104;:156;;;;1827:36;1851:11;1827:23;:36::i;:::-;1707:156;1688:175;;1570:300;;;:::o;2488:98::-;2542:13;2574:5;2567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2488:98;:::o;3999:217::-;4075:7;4102:16;4110:7;4102;:16::i;:::-;4094:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4185:15;:24;4201:7;4185:24;;;;;;;;;;;;;;;;;;;;;4178:31;;3999:217;;;:::o;3537:401::-;3617:13;3633:23;3648:7;3633:14;:23::i;:::-;3617:39;;3680:5;3674:11;;:2;:11;;;;3666:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:5;3755:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3780:37;3797:5;3804:12;:10;:12::i;:::-;3780:16;:37::i;:::-;3755:62;3734:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3910:21;3919:2;3923:7;3910:8;:21::i;:::-;3607:331;3537:401;;:::o;793:199:10:-;905:9;926:6;934;942:9;953:5;917:42;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;905:54;;969:5;980:4;969:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;894:98;793:199;;;;:::o;4726:330:0:-;4915:41;4934:12;:10;:12::i;:::-;4948:7;4915:18;:41::i;:::-;4907:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5021:28;5031:4;5037:2;5041:7;5021:9;:28::i;:::-;4726:330;;;:::o;5122:179::-;5255:39;5272:4;5278:2;5282:7;5255:39;;;;;;;;;;;;:16;:39::i;:::-;5122:179;;;:::o;2191:235::-;2263:7;2282:13;2298:7;:16;2306:7;2298:16;;;;;;;;;;;;;;;;;;;;;2282:32;;2349:1;2332:19;;:5;:19;;;;2324:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2414:5;2407:12;;;2191:235;;;:::o;1929:205::-;2001:7;2045:1;2028:19;;:5;:19;;;;2020:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;2111:9;:16;2121:5;2111:16;;;;;;;;;;;;;;;;2104:23;;1929:205;;;:::o;2650:102::-;2706:13;2738:7;2731:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2650:102;:::o;4283:153::-;4377:52;4396:12;:10;:12::i;:::-;4410:8;4420;4377:18;:52::i;:::-;4283:153;;:::o;5367:320::-;5536:41;5555:12;:10;:12::i;:::-;5569:7;5536:18;:41::i;:::-;5528:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5641:39;5655:4;5661:2;5665:7;5674:5;5641:13;:39::i;:::-;5367:320;;;;:::o;2818:329::-;2891:13;2924:16;2932:7;2924;:16::i;:::-;2916:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;3003:21;3027:10;:8;:10::i;:::-;3003:34;;3078:1;3060:7;3054:21;:25;:86;;;;;;;;;;;;;;;;;3106:7;3115:18;:7;:16;:18::i;:::-;3089:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3054:86;3047:93;;;2818:329;;;:::o;692:19:10:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4502:162:0:-;4599:4;4622:18;:25;4641:5;4622:25;;;;;;;;;;;;;;;:35;4648:8;4622:35;;;;;;;;;;;;;;;;;;;;;;;;;4615:42;;4502:162;;;;:::o;829:155:8:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;7159:125:0:-;7224:4;7275:1;7247:30;;:7;:16;7255:7;7247:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7240:37;;7159:125;;;:::o;640:96:6:-;693:7;719:10;712:17;;640:96;:::o;11168:171:0:-;11269:2;11242:15;:24;11258:7;11242:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11324:7;11320:2;11286:46;;11295:23;11310:7;11295:14;:23::i;:::-;11286:46;;;;;;;;;;;;11168:171;;:::o;7442:344::-;7535:4;7559:16;7567:7;7559;:16::i;:::-;7551:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7634:13;7650:23;7665:7;7650:14;:23::i;:::-;7634:39;;7702:5;7691:16;;:7;:16;;;:51;;;;7735:7;7711:31;;:20;7723:7;7711:11;:20::i;:::-;:31;;;7691:51;:87;;;;7746:32;7763:5;7770:7;7746:16;:32::i;:::-;7691:87;7683:96;;;7442:344;;;;:::o;10452:605::-;10606:4;10579:31;;:23;10594:7;10579:14;:23::i;:::-;:31;;;10571:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10684:1;10670:16;;:2;:16;;;;10662:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10738:39;10759:4;10765:2;10769:7;10738:20;:39::i;:::-;10839:29;10856:1;10860:7;10839:8;:29::i;:::-;10898:1;10879:9;:15;10889:4;10879:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10926:1;10909:9;:13;10919:2;10909:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10956:2;10937:7;:16;10945:7;10937:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10993:7;10989:2;10974:27;;10983:4;10974:27;;;;;;;;;;;;11012:38;11032:4;11038:2;11042:7;11012:19;:38::i;:::-;10452:605;;;:::o;11474:307::-;11624:8;11615:17;;:5;:17;;;;11607:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11710:8;11672:18;:25;11691:5;11672:25;;;;;;;;;;;;;;;:35;11698:8;11672:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11755:8;11733:41;;11748:5;11733:41;;;11765:8;11733:41;;;;;;:::i;:::-;;;;;;;;11474:307;;;:::o;6549:::-;6700:28;6710:4;6716:2;6720:7;6700:9;:28::i;:::-;6746:48;6769:4;6775:2;6779:7;6788:5;6746:22;:48::i;:::-;6738:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6549:307;;;;:::o;3388:92::-;3439:13;3464:9;;;;;;;;;;;;;;3388:92;:::o;328:703:7:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;13668:122:0:-;;;;:::o;14162:121::-;;;;:::o;12334:778::-;12484:4;12504:15;:2;:13;;;:15::i;:::-;12500:606;;;12555:2;12539:36;;;12576:12;:10;:12::i;:::-;12590:4;12596:7;12605:5;12539:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12535:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12795:1;12778:6;:13;:18;12774:266;;;12820:60;;;;;;;;;;:::i;:::-;;;;;;;;12774:266;12992:6;12986:13;12977:6;12973:2;12969:15;12962:38;12535:519;12671:41;;;12661:51;;;:6;:51;;;;12654:58;;;;;12500:606;13091:4;13084:11;;12334:778;;;;;;;:::o;1175:320:5:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;-1:-1:-1:-;;;;;;;;:::o;7:410:11:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:::-;2323:5;2361:6;2348:20;2339:29;;2377:33;2404:5;2377:33;:::i;:::-;2277:139;;;;:::o;2422:329::-;2481:6;2530:2;2518:9;2509:7;2505:23;2501:32;2498:119;;;2536:79;;:::i;:::-;2498:119;2656:1;2681:53;2726:7;2717:6;2706:9;2702:22;2681:53;:::i;:::-;2671:63;;2627:117;2422:329;;;;:::o;2757:474::-;2825:6;2833;2882:2;2870:9;2861:7;2857:23;2853:32;2850:119;;;2888:79;;:::i;:::-;2850:119;3008:1;3033:53;3078:7;3069:6;3058:9;3054:22;3033:53;:::i;:::-;3023:63;;2979:117;3135:2;3161:53;3206:7;3197:6;3186:9;3182:22;3161:53;:::i;:::-;3151:63;;3106:118;2757:474;;;;;:::o;3237:619::-;3314:6;3322;3330;3379:2;3367:9;3358:7;3354:23;3350:32;3347:119;;;3385:79;;:::i;:::-;3347:119;3505:1;3530:53;3575:7;3566:6;3555:9;3551:22;3530:53;:::i;:::-;3520:63;;3476:117;3632:2;3658:53;3703:7;3694:6;3683:9;3679:22;3658:53;:::i;:::-;3648:63;;3603:118;3760:2;3786:53;3831:7;3822:6;3811:9;3807:22;3786:53;:::i;:::-;3776:63;;3731:118;3237:619;;;;;:::o;3862:943::-;3957:6;3965;3973;3981;4030:3;4018:9;4009:7;4005:23;4001:33;3998:120;;;4037:79;;:::i;:::-;3998:120;4157:1;4182:53;4227:7;4218:6;4207:9;4203:22;4182:53;:::i;:::-;4172:63;;4128:117;4284:2;4310:53;4355:7;4346:6;4335:9;4331:22;4310:53;:::i;:::-;4300:63;;4255:118;4412:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4383:118;4568:2;4557:9;4553:18;4540:32;4599:18;4591:6;4588:30;4585:117;;;4621:79;;:::i;:::-;4585:117;4726:62;4780:7;4771:6;4760:9;4756:22;4726:62;:::i;:::-;4716:72;;4511:287;3862:943;;;;;;;:::o;4811:468::-;4876:6;4884;4933:2;4921:9;4912:7;4908:23;4904:32;4901:119;;;4939:79;;:::i;:::-;4901:119;5059:1;5084:53;5129:7;5120:6;5109:9;5105:22;5084:53;:::i;:::-;5074:63;;5030:117;5186:2;5212:50;5254:7;5245:6;5234:9;5230:22;5212:50;:::i;:::-;5202:60;;5157:115;4811:468;;;;;:::o;5285:1125::-;5391:6;5399;5407;5415;5464:3;5452:9;5443:7;5439:23;5435:33;5432:120;;;5471:79;;:::i;:::-;5432:120;5591:1;5616:53;5661:7;5652:6;5641:9;5637:22;5616:53;:::i;:::-;5606:63;;5562:117;5718:2;5744:53;5789:7;5780:6;5769:9;5765:22;5744:53;:::i;:::-;5734:63;;5689:118;5874:2;5863:9;5859:18;5846:32;5905:18;5897:6;5894:30;5891:117;;;5927:79;;:::i;:::-;5891:117;6032:63;6087:7;6078:6;6067:9;6063:22;6032:63;:::i;:::-;6022:73;;5817:288;6172:2;6161:9;6157:18;6144:32;6203:18;6195:6;6192:30;6189:117;;;6225:79;;:::i;:::-;6189:117;6330:63;6385:7;6376:6;6365:9;6361:22;6330:63;:::i;:::-;6320:73;;6115:288;5285:1125;;;;;;;:::o;6416:474::-;6484:6;6492;6541:2;6529:9;6520:7;6516:23;6512:32;6509:119;;;6547:79;;:::i;:::-;6509:119;6667:1;6692:53;6737:7;6728:6;6717:9;6713:22;6692:53;:::i;:::-;6682:63;;6638:117;6794:2;6820:53;6865:7;6856:6;6845:9;6841:22;6820:53;:::i;:::-;6810:63;;6765:118;6416:474;;;;;:::o;6896:327::-;6954:6;7003:2;6991:9;6982:7;6978:23;6974:32;6971:119;;;7009:79;;:::i;:::-;6971:119;7129:1;7154:52;7198:7;7189:6;7178:9;7174:22;7154:52;:::i;:::-;7144:62;;7100:116;6896:327;;;;:::o;7229:349::-;7298:6;7347:2;7335:9;7326:7;7322:23;7318:32;7315:119;;;7353:79;;:::i;:::-;7315:119;7473:1;7498:63;7553:7;7544:6;7533:9;7529:22;7498:63;:::i;:::-;7488:73;;7444:127;7229:349;;;;:::o;7584:329::-;7643:6;7692:2;7680:9;7671:7;7667:23;7663:32;7660:119;;;7698:79;;:::i;:::-;7660:119;7818:1;7843:53;7888:7;7879:6;7868:9;7864:22;7843:53;:::i;:::-;7833:63;;7789:117;7584:329;;;;:::o;7919:118::-;8006:24;8024:5;8006:24;:::i;:::-;8001:3;7994:37;7919:118;;:::o;8043:109::-;8124:21;8139:5;8124:21;:::i;:::-;8119:3;8112:34;8043:109;;:::o;8158:360::-;8244:3;8272:38;8304:5;8272:38;:::i;:::-;8326:70;8389:6;8384:3;8326:70;:::i;:::-;8319:77;;8405:52;8450:6;8445:3;8438:4;8431:5;8427:16;8405:52;:::i;:::-;8482:29;8504:6;8482:29;:::i;:::-;8477:3;8473:39;8466:46;;8248:270;8158:360;;;;:::o;8524:157::-;8624:50;8668:5;8624:50;:::i;:::-;8619:3;8612:63;8524:157;;:::o;8687:364::-;8775:3;8803:39;8836:5;8803:39;:::i;:::-;8858:71;8922:6;8917:3;8858:71;:::i;:::-;8851:78;;8938:52;8983:6;8978:3;8971:4;8964:5;8960:16;8938:52;:::i;:::-;9015:29;9037:6;9015:29;:::i;:::-;9010:3;9006:39;8999:46;;8779:272;8687:364;;;;:::o;9057:377::-;9163:3;9191:39;9224:5;9191:39;:::i;:::-;9246:89;9328:6;9323:3;9246:89;:::i;:::-;9239:96;;9344:52;9389:6;9384:3;9377:4;9370:5;9366:16;9344:52;:::i;:::-;9421:6;9416:3;9412:16;9405:23;;9167:267;9057:377;;;;:::o;9440:366::-;9582:3;9603:67;9667:2;9662:3;9603:67;:::i;:::-;9596:74;;9679:93;9768:3;9679:93;:::i;:::-;9797:2;9792:3;9788:12;9781:19;;9440:366;;;:::o;9812:::-;9954:3;9975:67;10039:2;10034:3;9975:67;:::i;:::-;9968:74;;10051:93;10140:3;10051:93;:::i;:::-;10169:2;10164:3;10160:12;10153:19;;9812:366;;;:::o;10184:::-;10326:3;10347:67;10411:2;10406:3;10347:67;:::i;:::-;10340:74;;10423:93;10512:3;10423:93;:::i;:::-;10541:2;10536:3;10532:12;10525:19;;10184:366;;;:::o;10556:::-;10698:3;10719:67;10783:2;10778:3;10719:67;:::i;:::-;10712:74;;10795:93;10884:3;10795:93;:::i;:::-;10913:2;10908:3;10904:12;10897:19;;10556:366;;;:::o;10928:::-;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:::-;11442:3;11463:67;11527:2;11522:3;11463:67;:::i;:::-;11456:74;;11539:93;11628:3;11539:93;:::i;:::-;11657:2;11652:3;11648:12;11641:19;;11300:366;;;:::o;11672:::-;11814:3;11835:67;11899:2;11894:3;11835:67;:::i;:::-;11828:74;;11911:93;12000:3;11911:93;:::i;:::-;12029:2;12024:3;12020:12;12013:19;;11672:366;;;:::o;12044:::-;12186:3;12207:67;12271:2;12266:3;12207:67;:::i;:::-;12200:74;;12283:93;12372:3;12283:93;:::i;:::-;12401:2;12396:3;12392:12;12385:19;;12044:366;;;:::o;12416:::-;12558:3;12579:67;12643:2;12638:3;12579:67;:::i;:::-;12572:74;;12655:93;12744:3;12655:93;:::i;:::-;12773:2;12768:3;12764:12;12757:19;;12416:366;;;:::o;12788:::-;12930:3;12951:67;13015:2;13010:3;12951:67;:::i;:::-;12944:74;;13027:93;13116:3;13027:93;:::i;:::-;13145:2;13140:3;13136:12;13129:19;;12788:366;;;:::o;13160:::-;13302:3;13323:67;13387:2;13382:3;13323:67;:::i;:::-;13316:74;;13399:93;13488:3;13399:93;:::i;:::-;13517:2;13512:3;13508:12;13501:19;;13160:366;;;:::o;13532:::-;13674:3;13695:67;13759:2;13754:3;13695:67;:::i;:::-;13688:74;;13771:93;13860:3;13771:93;:::i;:::-;13889:2;13884:3;13880:12;13873:19;;13532:366;;;:::o;13904:118::-;13991:24;14009:5;13991:24;:::i;:::-;13986:3;13979:37;13904:118;;:::o;14028:::-;14115:24;14133:5;14115:24;:::i;:::-;14110:3;14103:37;14028:118;;:::o;14152:435::-;14332:3;14354:95;14445:3;14436:6;14354:95;:::i;:::-;14347:102;;14466:95;14557:3;14548:6;14466:95;:::i;:::-;14459:102;;14578:3;14571:10;;14152:435;;;;;:::o;14593:222::-;14686:4;14724:2;14713:9;14709:18;14701:26;;14737:71;14805:1;14794:9;14790:17;14781:6;14737:71;:::i;:::-;14593:222;;;;:::o;14821:640::-;15016:4;15054:3;15043:9;15039:19;15031:27;;15068:71;15136:1;15125:9;15121:17;15112:6;15068:71;:::i;:::-;15149:72;15217:2;15206:9;15202:18;15193:6;15149:72;:::i;:::-;15231;15299:2;15288:9;15284:18;15275:6;15231:72;:::i;:::-;15350:9;15344:4;15340:20;15335:2;15324:9;15320:18;15313:48;15378:76;15449:4;15440:6;15378:76;:::i;:::-;15370:84;;14821:640;;;;;;;:::o;15467:735::-;15684:4;15722:3;15711:9;15707:19;15699:27;;15736:71;15804:1;15793:9;15789:17;15780:6;15736:71;:::i;:::-;15817:72;15885:2;15874:9;15870:18;15861:6;15817:72;:::i;:::-;15936:9;15930:4;15926:20;15921:2;15910:9;15906:18;15899:48;15964:78;16037:4;16028:6;15964:78;:::i;:::-;15956:86;;16089:9;16083:4;16079:20;16074:2;16063:9;16059:18;16052:48;16117:78;16190:4;16181:6;16117:78;:::i;:::-;16109:86;;15467:735;;;;;;;:::o;16208:210::-;16295:4;16333:2;16322:9;16318:18;16310:26;;16346:65;16408:1;16397:9;16393:17;16384:6;16346:65;:::i;:::-;16208:210;;;;:::o;16424:248::-;16530:4;16568:2;16557:9;16553:18;16545:26;;16581:84;16662:1;16651:9;16647:17;16638:6;16581:84;:::i;:::-;16424:248;;;;:::o;16678:313::-;16791:4;16829:2;16818:9;16814:18;16806:26;;16878:9;16872:4;16868:20;16864:1;16853:9;16849:17;16842:47;16906:78;16979:4;16970:6;16906:78;:::i;:::-;16898:86;;16678:313;;;;:::o;16997:419::-;17163:4;17201:2;17190:9;17186:18;17178:26;;17250:9;17244:4;17240:20;17236:1;17225:9;17221:17;17214:47;17278:131;17404:4;17278:131;:::i;:::-;17270:139;;16997:419;;;:::o;17422:::-;17588:4;17626:2;17615:9;17611:18;17603:26;;17675:9;17669:4;17665:20;17661:1;17650:9;17646:17;17639:47;17703:131;17829:4;17703:131;:::i;:::-;17695:139;;17422:419;;;:::o;17847:::-;18013:4;18051:2;18040:9;18036:18;18028:26;;18100:9;18094:4;18090:20;18086:1;18075:9;18071:17;18064:47;18128:131;18254:4;18128:131;:::i;:::-;18120:139;;17847:419;;;:::o;18272:::-;18438:4;18476:2;18465:9;18461:18;18453:26;;18525:9;18519:4;18515:20;18511:1;18500:9;18496:17;18489:47;18553:131;18679:4;18553:131;:::i;:::-;18545:139;;18272:419;;;:::o;18697:::-;18863:4;18901:2;18890:9;18886:18;18878:26;;18950:9;18944:4;18940:20;18936:1;18925:9;18921:17;18914:47;18978:131;19104:4;18978:131;:::i;:::-;18970:139;;18697:419;;;:::o;19122:::-;19288:4;19326:2;19315:9;19311:18;19303:26;;19375:9;19369:4;19365:20;19361:1;19350:9;19346:17;19339:47;19403:131;19529:4;19403:131;:::i;:::-;19395:139;;19122:419;;;:::o;19547:::-;19713:4;19751:2;19740:9;19736:18;19728:26;;19800:9;19794:4;19790:20;19786:1;19775:9;19771:17;19764:47;19828:131;19954:4;19828:131;:::i;:::-;19820:139;;19547:419;;;:::o;19972:::-;20138:4;20176:2;20165:9;20161:18;20153:26;;20225:9;20219:4;20215:20;20211:1;20200:9;20196:17;20189:47;20253:131;20379:4;20253:131;:::i;:::-;20245:139;;19972:419;;;:::o;20397:::-;20563:4;20601:2;20590:9;20586:18;20578:26;;20650:9;20644:4;20640:20;20636:1;20625:9;20621:17;20614:47;20678:131;20804:4;20678:131;:::i;:::-;20670:139;;20397:419;;;:::o;20822:::-;20988:4;21026:2;21015:9;21011:18;21003:26;;21075:9;21069:4;21065:20;21061:1;21050:9;21046:17;21039:47;21103:131;21229:4;21103:131;:::i;:::-;21095:139;;20822:419;;;:::o;21247:::-;21413:4;21451:2;21440:9;21436:18;21428:26;;21500:9;21494:4;21490:20;21486:1;21475:9;21471:17;21464:47;21528:131;21654:4;21528:131;:::i;:::-;21520:139;;21247:419;;;:::o;21672:::-;21838:4;21876:2;21865:9;21861:18;21853:26;;21925:9;21919:4;21915:20;21911:1;21900:9;21896:17;21889:47;21953:131;22079:4;21953:131;:::i;:::-;21945:139;;21672:419;;;:::o;22097:222::-;22190:4;22228:2;22217:9;22213:18;22205:26;;22241:71;22309:1;22298:9;22294:17;22285:6;22241:71;:::i;:::-;22097:222;;;;:::o;22325:129::-;22359:6;22386:20;;:::i;:::-;22376:30;;22415:33;22443:4;22435:6;22415:33;:::i;:::-;22325:129;;;:::o;22460:75::-;22493:6;22526:2;22520:9;22510:19;;22460:75;:::o;22541:307::-;22602:4;22692:18;22684:6;22681:30;22678:56;;;22714:18;;:::i;:::-;22678:56;22752:29;22774:6;22752:29;:::i;:::-;22744:37;;22836:4;22830;22826:15;22818:23;;22541:307;;;:::o;22854:308::-;22916:4;23006:18;22998:6;22995:30;22992:56;;;23028:18;;:::i;:::-;22992:56;23066:29;23088:6;23066:29;:::i;:::-;23058:37;;23150:4;23144;23140:15;23132:23;;22854:308;;;:::o;23168:98::-;23219:6;23253:5;23247:12;23237:22;;23168:98;;;:::o;23272:99::-;23324:6;23358:5;23352:12;23342:22;;23272:99;;;:::o;23377:168::-;23460:11;23494:6;23489:3;23482:19;23534:4;23529:3;23525:14;23510:29;;23377:168;;;;:::o;23551:169::-;23635:11;23669:6;23664:3;23657:19;23709:4;23704:3;23700:14;23685:29;;23551:169;;;;:::o;23726:148::-;23828:11;23865:3;23850:18;;23726:148;;;;:::o;23880:305::-;23920:3;23939:20;23957:1;23939:20;:::i;:::-;23934:25;;23973:20;23991:1;23973:20;:::i;:::-;23968:25;;24127:1;24059:66;24055:74;24052:1;24049:81;24046:107;;;24133:18;;:::i;:::-;24046:107;24177:1;24174;24170:9;24163:16;;23880:305;;;;:::o;24191:185::-;24231:1;24248:20;24266:1;24248:20;:::i;:::-;24243:25;;24282:20;24300:1;24282:20;:::i;:::-;24277:25;;24321:1;24311:35;;24326:18;;:::i;:::-;24311:35;24368:1;24365;24361:9;24356:14;;24191:185;;;;:::o;24382:191::-;24422:4;24442:20;24460:1;24442:20;:::i;:::-;24437:25;;24476:20;24494:1;24476:20;:::i;:::-;24471:25;;24515:1;24512;24509:8;24506:34;;;24520:18;;:::i;:::-;24506:34;24565:1;24562;24558:9;24550:17;;24382:191;;;;:::o;24579:96::-;24616:7;24645:24;24663:5;24645:24;:::i;:::-;24634:35;;24579:96;;;:::o;24681:90::-;24715:7;24758:5;24751:13;24744:21;24733:32;;24681:90;;;:::o;24777:149::-;24813:7;24853:66;24846:5;24842:78;24831:89;;24777:149;;;:::o;24932:118::-;24969:7;25009:34;25002:5;24998:46;24987:57;;24932:118;;;:::o;25056:126::-;25093:7;25133:42;25126:5;25122:54;25111:65;;25056:126;;;:::o;25188:77::-;25225:7;25254:5;25243:16;;25188:77;;;:::o;25271:139::-;25334:9;25367:37;25398:5;25367:37;:::i;:::-;25354:50;;25271:139;;;:::o;25416:126::-;25466:9;25499:37;25530:5;25499:37;:::i;:::-;25486:50;;25416:126;;;:::o;25548:113::-;25598:9;25631:24;25649:5;25631:24;:::i;:::-;25618:37;;25548:113;;;:::o;25667:154::-;25751:6;25746:3;25741;25728:30;25813:1;25804:6;25799:3;25795:16;25788:27;25667:154;;;:::o;25827:307::-;25895:1;25905:113;25919:6;25916:1;25913:13;25905:113;;;26004:1;25999:3;25995:11;25989:18;25985:1;25980:3;25976:11;25969:39;25941:2;25938:1;25934:10;25929:15;;25905:113;;;26036:6;26033:1;26030:13;26027:101;;;26116:1;26107:6;26102:3;26098:16;26091:27;26027:101;25876:258;25827:307;;;:::o;26140:320::-;26184:6;26221:1;26215:4;26211:12;26201:22;;26268:1;26262:4;26258:12;26289:18;26279:81;;26345:4;26337:6;26333:17;26323:27;;26279:81;26407:2;26399:6;26396:14;26376:18;26373:38;26370:84;;;26426:18;;:::i;:::-;26370:84;26191:269;26140:320;;;:::o;26466:281::-;26549:27;26571:4;26549:27;:::i;:::-;26541:6;26537:40;26679:6;26667:10;26664:22;26643:18;26631:10;26628:34;26625:62;26622:88;;;26690:18;;:::i;:::-;26622:88;26730:10;26726:2;26719:22;26509:238;26466:281;;:::o;26753:233::-;26792:3;26815:24;26833:5;26815:24;:::i;:::-;26806:33;;26861:66;26854:5;26851:77;26848:103;;;26931:18;;:::i;:::-;26848:103;26978:1;26971:5;26967:13;26960:20;;26753:233;;;:::o;26992:176::-;27024:1;27041:20;27059:1;27041:20;:::i;:::-;27036:25;;27075:20;27093:1;27075:20;:::i;:::-;27070:25;;27114:1;27104:35;;27119:18;;:::i;:::-;27104:35;27160:1;27157;27153:9;27148:14;;26992:176;;;;:::o;27174:180::-;27222:77;27219:1;27212:88;27319:4;27316:1;27309:15;27343:4;27340:1;27333:15;27360:180;27408:77;27405:1;27398:88;27505:4;27502:1;27495:15;27529:4;27526:1;27519:15;27546:180;27594:77;27591:1;27584:88;27691:4;27688:1;27681:15;27715:4;27712:1;27705:15;27732:180;27780:77;27777:1;27770:88;27877:4;27874:1;27867:15;27901:4;27898:1;27891:15;27918:180;27966:77;27963:1;27956:88;28063:4;28060:1;28053:15;28087:4;28084:1;28077:15;28104:117;28213:1;28210;28203:12;28227:117;28336:1;28333;28326:12;28350:117;28459:1;28456;28449:12;28473:117;28582:1;28579;28572:12;28596:102;28637:6;28688:2;28684:7;28679:2;28672:5;28668:14;28664:28;28654:38;;28596:102;;;:::o;28704:237::-;28844:34;28840:1;28832:6;28828:14;28821:58;28913:20;28908:2;28900:6;28896:15;28889:45;28704:237;:::o;28947:224::-;29087:34;29083:1;29075:6;29071:14;29064:58;29156:7;29151:2;29143:6;29139:15;29132:32;28947:224;:::o;29177:223::-;29317:34;29313:1;29305:6;29301:14;29294:58;29386:6;29381:2;29373:6;29369:15;29362:31;29177:223;:::o;29406:175::-;29546:27;29542:1;29534:6;29530:14;29523:51;29406:175;:::o;29587:231::-;29727:34;29723:1;29715:6;29711:14;29704:58;29796:14;29791:2;29783:6;29779:15;29772:39;29587:231;:::o;29824:243::-;29964:34;29960:1;29952:6;29948:14;29941:58;30033:26;30028:2;30020:6;30016:15;30009:51;29824:243;:::o;30073:229::-;30213:34;30209:1;30201:6;30197:14;30190:58;30282:12;30277:2;30269:6;30265:15;30258:37;30073:229;:::o;30308:228::-;30448:34;30444:1;30436:6;30432:14;30425:58;30517:11;30512:2;30504:6;30500:15;30493:36;30308:228;:::o;30542:231::-;30682:34;30678:1;30670:6;30666:14;30659:58;30751:14;30746:2;30738:6;30734:15;30727:39;30542:231;:::o;30779:234::-;30919:34;30915:1;30907:6;30903:14;30896:58;30988:17;30983:2;30975:6;30971:15;30964:42;30779:234;:::o;31019:220::-;31159:34;31155:1;31147:6;31143:14;31136:58;31228:3;31223:2;31215:6;31211:15;31204:28;31019:220;:::o;31245:236::-;31385:34;31381:1;31373:6;31369:14;31362:58;31454:19;31449:2;31441:6;31437:15;31430:44;31245:236;:::o;31487:122::-;31560:24;31578:5;31560:24;:::i;:::-;31553:5;31550:35;31540:63;;31599:1;31596;31589:12;31540:63;31487:122;:::o;31615:116::-;31685:21;31700:5;31685:21;:::i;:::-;31678:5;31675:32;31665:60;;31721:1;31718;31711:12;31665:60;31615:116;:::o;31737:120::-;31809:23;31826:5;31809:23;:::i;:::-;31802:5;31799:34;31789:62;;31847:1;31844;31837:12;31789:62;31737:120;:::o;31863:122::-;31936:24;31954:5;31936:24;:::i;:::-;31929:5;31926:35;31916:63;;31975:1;31972;31965:12;31916:63;31863:122;:::o;31991:::-;32064:24;32082:5;32064:24;:::i;:::-;32057:5;32054:35;32044:63;;32103:1;32100;32093:12;32044:63;31991:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "2621400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2924",
"create(address,uint128,string,string)": "infinite",
"getApproved(uint256)": "5228",
"isApprovedForAll(address,address)": "infinite",
"lands(uint256)": "5108",
"name()": "infinite",
"ownerOf(uint256)": "3000",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "797",
"symbol()": "infinite",
"tokenURI(uint256)": "3373",
"transferFrom(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"create(address,uint128,string,string)": "0b34203a",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"lands(uint256)": "e261f1e5",
"name()": "06fdde03",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "uint128",
"name": "_price",
"type": "uint128"
},
{
"internalType": "string",
"name": "_location",
"type": "string"
},
{
"internalType": "string",
"name": "_size",
"type": "string"
}
],
"name": "create",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "lands",
"outputs": [
{
"internalType": "contract Land",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "_owner",
"type": "address"
},
{
"internalType": "uint128",
"name": "_price",
"type": "uint128"
},
{
"internalType": "string",
"name": "_location",
"type": "string"
},
{
"internalType": "string",
"name": "_size",
"type": "string"
}
],
"name": "create",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "lands",
"outputs": [
{
"internalType": "contract Land",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"PlotLand.sol": "LandFactory"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0x11b84bb56dc112a6590bfe3e0efa118aa1b5891132342200d04c4ef544cb93de",
"license": "MIT",
"urls": [
"bzz-raw://cbc4803332d45dff58f865ed21c942fe4668e47cc7196c8dfe84102040b1d70f",
"dweb:/ipfs/QmXhZLsocznRWCSyhjo3vo66Z1VsuuNptAVb6ASPYsWtGx"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0x516a22876c1fab47f49b1bc22b4614491cd05338af8bd2e7b382da090a079990",
"license": "MIT",
"urls": [
"bzz-raw://a439187f7126d31add4557f82d8aed6be0162007cd7182c48fd934dbab8f3849",
"dweb:/ipfs/QmRPLguRFvrRJS7r6F1bcLvsx6q1VrgjEpZafyeL8D7xZh"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xd5fa74b4fb323776fa4a8158800fec9d5ac0fec0d6dd046dd93798632ada265f",
"license": "MIT",
"urls": [
"bzz-raw://33017a30a99cc5411a9e376622c31fc4a55cfc6a335e2f57f00cbf24a817ff3f",
"dweb:/ipfs/QmWNQtWTPhA7Lo8nbxbc8KFMvZwbFYB8fSeEQ3vuapSV4a"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol": {
"keccak256": "0x1cbe42915bc66227970fe99bc0f783eb1de30f2b48f984af01ad45edb9658698",
"license": "MIT",
"urls": [
"bzz-raw://2baa08eb67d9da46e6c4c049f17b7684a1c68c5268d0f466cfa0eb23ce2bf9b0",
"dweb:/ipfs/Qmdnj8zj4PfErB2HM2eKmDt7FrqrhggsZ6Qd8MpD593tgj"
]
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9",
"license": "MIT",
"urls": [
"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146",
"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf"
]
},
"@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0x2ccf9d2313a313d41a791505f2b5abfdc62191b5d4334f7f7a82691c088a1c87",
"license": "MIT",
"urls": [
"bzz-raw://b3a57d0854b2fdce6ebff933a48dca2445643d1eccfc27f00292e937f26c6a58",
"dweb:/ipfs/QmW45rZooS9TqR4YXUbjRbtf2Bpb5ouSarBvfW1LdGprvV"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45",
"license": "MIT",
"urls": [
"bzz-raw://8179c356adb19e70d6b31a1eedc8c5c7f0c00e669e2540f4099e3844c6074d30",
"dweb:/ipfs/QmWFbivarEobbqhS1go64ootVuHfVohBseerYy9FTEd1W2"
]
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b",
"license": "MIT",
"urls": [
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d",
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43"
]
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
},
"PlotLand.sol": {
"keccak256": "0xb5ef70d376ace804f661a675fbba91ada1e9629f0ecdc2ebd5f7aa459258efed",
"license": "MIT",
"urls": [
"bzz-raw://37a23820722caa1fbb5b5006df169cf043790113cb717e009abcf2cc6ce36141",
"dweb:/ipfs/QmeBtvjh33c9y4iwLfN6F2fPDnLr4NcWFTAoyVAPxrV59G"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
contract ERC721MerkleDrop is ERC721 {
bytes32 immutable public root;
constructor(string memory name, string memory symbol, bytes32 merkleroot)
ERC721(name, symbol)
{
root = merkleroot;
}
function redeem(address account, uint256 tokenId, bytes32[] calldata proof)
external
{
require(_verify(_leaf(account, tokenId), proof), "Invalid merkle proof");
_safeMint(account, tokenId);
}
function _leaf(address account, uint256 tokenId)
internal pure returns (bytes32)
{
return keccak256(abi.encodePacked(tokenId, account));
}
function _verify(bytes32 leaf, bytes32[] memory proof)
internal view returns (bool)
{
return MerkleProof.verify(proof, root, leaf);
}
}
// contracts/GameItem.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
contract LandToken is ERC721URIStorage, Ownable {
using Counters for Counters.Counter;
Counters.Counter private _tokenIds;
constructor() ERC721("zkLandToken", "ZKL") {}
// Set an array of hashes
bytes32[] private hashes;
// Set a static public on-chain TokenURL
// Set TokenURL as a constant to as to save gas
function assignLands(address receiver, string memory tokenURI)
public
onlyOwner
returns (uint256)
{
// Increment our token ID by one
_tokenIds.increment();
// Generate a token ID for the NFT to be created
uint256 newItemId = _tokenIds.current();
// Mints a new land NFT
_mint(receiver, newItemId);
_setTokenURI(newItemId, tokenURI);
// Hash all data and assign to hashes array
hashes.push(hash(msg.sender, receiver, newItemId, tokenURI));
return newItemId;
}
function getAllHashed() public view returns (bytes32[] memory) {
return hashes;
}
// addr: 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4,
// addr: 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db,
// URL: https://gateway.pinata.cloud/ipfs/QmbdGNCYQp5oZxvphJ9CSNFbtSDb6vvpcgJ6Q97k1ZP6fA
function hash(
address _sender,
address _receiver,
uint256 _newItemId,
string memory _tokenURI)
private pure returns (bytes32) {
return keccak256(abi.encodePacked(_sender, _receiver, _newItemId, _tokenURI));
}
}
View raw

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

This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_167": {
"entryPoint": null,
"id": 167,
"parameterSlots": 2,
"returnSlots": 0
},
"@_1913": {
"entryPoint": null,
"id": 1913,
"parameterSlots": 0,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_1566": {
"entryPoint": 216,
"id": 1566,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 224,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 598,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 652,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "58:269:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "68:22:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "82:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "88:1:13",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "78:3:13"
},
"nodeType": "YulFunctionCall",
"src": "78:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "68:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "99:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "129:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "125:3:13"
},
"nodeType": "YulFunctionCall",
"src": "125:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "103:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "176:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "190:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "204:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "212:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "200:3:13"
},
"nodeType": "YulFunctionCall",
"src": "200:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "190:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "156:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "149:6:13"
},
"nodeType": "YulFunctionCall",
"src": "149:26:13"
},
"nodeType": "YulIf",
"src": "146:81:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "279:42:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "293:16:13"
},
"nodeType": "YulFunctionCall",
"src": "293:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "293:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "243:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "263:2:13"
},
"nodeType": "YulFunctionCall",
"src": "263:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "240:2:13"
},
"nodeType": "YulFunctionCall",
"src": "240:38:13"
},
"nodeType": "YulIf",
"src": "237:84:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "42:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "51:6:13",
"type": ""
}
],
"src": "7:320:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "361:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "378:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "381:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "371:6:13"
},
"nodeType": "YulFunctionCall",
"src": "371:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "371:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "475:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "478:4:13",
"type": "",
"value": "0x2
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