Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pedrohba1/3ad1a14ab5ad4ec5aca16ae6414ffb67 to your computer and use it in GitHub Desktop.
Save pedrohba1/3ad1a14ab5ad4ec5aca16ae6414ffb67 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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/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 (last updated v4.6.0) (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`.
*
* 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;
/**
* @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 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 the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @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);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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/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);
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
{
"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": {
"@_1601": {
"entryPoint": null,
"id": 1601,
"parameterSlots": 0,
"returnSlots": 0
},
"@_62": {
"entryPoint": null,
"id": 62,
"parameterSlots": 2,
"returnSlots": 0
},
"@_afterTokenTransfer_864": {
"entryPoint": 1412,
"id": 864,
"parameterSlots": 3,
"returnSlots": 0
},
"@_beforeTokenTransfer_853": {
"entryPoint": 1407,
"id": 853,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_842": {
"entryPoint": 857,
"id": 842,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_438": {
"entryPoint": 1299,
"id": 438,
"parameterSlots": 1,
"returnSlots": 1
},
"@_mint_589": {
"entryPoint": 351,
"id": 589,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_1333": {
"entryPoint": 1452,
"id": 1333,
"parameterSlots": 0,
"returnSlots": 1
},
"@_safeMint_494": {
"entryPoint": 203,
"id": 494,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_523": {
"entryPoint": 241,
"id": 523,
"parameterSlots": 3,
"returnSlots": 0
},
"@isContract_1044": {
"entryPoint": 1417,
"id": 1044,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 1636,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 1659,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1709,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 1726,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1791,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1830,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1869,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1908,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"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": 1925,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2009,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2043,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2077,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 2111,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 2122,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 2139,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 2156,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 2249,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 2269,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 2313,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 2345,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory": {
"entryPoint": 2355,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 2409,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 2463,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 2510,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2557,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 2562,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 2579,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 2658,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6": {
"entryPoint": 2699,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 2740,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7580:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "69:79:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "79:22:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "94:6:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "88:5:10"
},
"nodeType": "YulFunctionCall",
"src": "88:13:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "79:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "136:5:10"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "110:25:10"
},
"nodeType": "YulFunctionCall",
"src": "110:32:10"
},
"nodeType": "YulExpressionStatement",
"src": "110:32:10"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "47:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "55:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "63:5:10",
"type": ""
}
],
"src": "7:141:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "230:273:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "276:83:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "278:77:10"
},
"nodeType": "YulFunctionCall",
"src": "278:79:10"
},
"nodeType": "YulExpressionStatement",
"src": "278:79:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "251:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "260:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "247:3:10"
},
"nodeType": "YulFunctionCall",
"src": "247:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "272:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "243:3:10"
},
"nodeType": "YulFunctionCall",
"src": "243:32:10"
},
"nodeType": "YulIf",
"src": "240:119:10"
},
{
"nodeType": "YulBlock",
"src": "369:127:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "384:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "398:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "388:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "413:73:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "458:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "469:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "454:3:10"
},
"nodeType": "YulFunctionCall",
"src": "454:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "478:7:10"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "423:30:10"
},
"nodeType": "YulFunctionCall",
"src": "423:63:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "413:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "200:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "211:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "223:6:10",
"type": ""
}
],
"src": "154:349:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "574:53:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "591:3:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "614:5:10"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "596:17:10"
},
"nodeType": "YulFunctionCall",
"src": "596:24:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "584:6:10"
},
"nodeType": "YulFunctionCall",
"src": "584:37:10"
},
"nodeType": "YulExpressionStatement",
"src": "584:37:10"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "562:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "569:3:10",
"type": ""
}
],
"src": "509:118:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "723:270:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "733:52:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "779:5:10"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "747:31:10"
},
"nodeType": "YulFunctionCall",
"src": "747:38:10"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "737:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "794:77:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "859:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "864:6:10"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "801:57:10"
},
"nodeType": "YulFunctionCall",
"src": "801:70:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "794:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "906:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "913:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "902:3:10"
},
"nodeType": "YulFunctionCall",
"src": "902:16:10"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "920:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "925:6:10"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "880:21:10"
},
"nodeType": "YulFunctionCall",
"src": "880:52:10"
},
"nodeType": "YulExpressionStatement",
"src": "880:52:10"
},
{
"nodeType": "YulAssignment",
"src": "941:46:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "952:3:10"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "979:6:10"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "957:21:10"
},
"nodeType": "YulFunctionCall",
"src": "957:29:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "948:3:10"
},
"nodeType": "YulFunctionCall",
"src": "948:39:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "941:3:10"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "704:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "711:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "719:3:10",
"type": ""
}
],
"src": "633:360:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1145:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1155:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1221:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1226:2:10",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1162:58:10"
},
"nodeType": "YulFunctionCall",
"src": "1162:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1155:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1327:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "1238:88:10"
},
"nodeType": "YulFunctionCall",
"src": "1238:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "1238:93:10"
},
{
"nodeType": "YulAssignment",
"src": "1340:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1351:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1356:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1347:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1347:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1340:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1133:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1141:3:10",
"type": ""
}
],
"src": "999:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1517:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1527:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1593:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1598:2:10",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1534:58:10"
},
"nodeType": "YulFunctionCall",
"src": "1534:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1527:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1699:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "1610:88:10"
},
"nodeType": "YulFunctionCall",
"src": "1610:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "1610:93:10"
},
{
"nodeType": "YulAssignment",
"src": "1712:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1723:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1728:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1719:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1719:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1712:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1505:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1513:3:10",
"type": ""
}
],
"src": "1371:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1889:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1899:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1965:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1970:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1906:58:10"
},
"nodeType": "YulFunctionCall",
"src": "1906:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1899:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2071:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulIdentifier",
"src": "1982:88:10"
},
"nodeType": "YulFunctionCall",
"src": "1982:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "1982:93:10"
},
{
"nodeType": "YulAssignment",
"src": "2084:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2095:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2100:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2091:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2091:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2084:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1877:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1885:3:10",
"type": ""
}
],
"src": "1743:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2180:53:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2197:3:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2220:5:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2202:17:10"
},
"nodeType": "YulFunctionCall",
"src": "2202:24:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2190:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2190:37:10"
},
"nodeType": "YulExpressionStatement",
"src": "2190:37:10"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2168:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2175:3:10",
"type": ""
}
],
"src": "2115:118:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2439:440:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2449:27:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2461:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2472:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2457:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2457:19:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2449:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2530:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2543:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2554:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2539:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2539:17:10"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "2486:43:10"
},
"nodeType": "YulFunctionCall",
"src": "2486:71:10"
},
"nodeType": "YulExpressionStatement",
"src": "2486:71:10"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2611:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2624:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2635:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2620:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2620:18:10"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "2567:43:10"
},
"nodeType": "YulFunctionCall",
"src": "2567:72:10"
},
"nodeType": "YulExpressionStatement",
"src": "2567:72:10"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2693:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2706:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2717:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2702:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2702:18:10"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "2649:43:10"
},
"nodeType": "YulFunctionCall",
"src": "2649:72:10"
},
"nodeType": "YulExpressionStatement",
"src": "2649:72:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2742:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2753:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2738:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2738:18:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2762:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2768:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2758:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2758:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2731:6:10"
},
"nodeType": "YulFunctionCall",
"src": "2731:48:10"
},
"nodeType": "YulExpressionStatement",
"src": "2731:48:10"
},
{
"nodeType": "YulAssignment",
"src": "2788:84:10",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2858:6:10"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2867:4:10"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2796:61:10"
},
"nodeType": "YulFunctionCall",
"src": "2796:76:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2788:4:10"
}
]
}
]
},
"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": "2387:9:10",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "2399:6:10",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2407:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2415:6:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2423:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2434:4:10",
"type": ""
}
],
"src": "2239:640:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3056:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3066:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3078:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3089:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3074:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3074:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3066:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3113:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3124:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3109:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3109:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3132:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3138:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3128:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3128:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3102:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3102:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "3102:47:10"
},
{
"nodeType": "YulAssignment",
"src": "3158:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3292:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3166:124:10"
},
"nodeType": "YulFunctionCall",
"src": "3166:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3158:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3036:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3051:4:10",
"type": ""
}
],
"src": "2885:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3481:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3491:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3503:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3514:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3499:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3499:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3491:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3538:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3549:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3534:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3534:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3557:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3563:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3553:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3553:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3527:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3527:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "3527:47:10"
},
{
"nodeType": "YulAssignment",
"src": "3583:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3717:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3591:124:10"
},
"nodeType": "YulFunctionCall",
"src": "3591:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3583:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3461:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3476:4:10",
"type": ""
}
],
"src": "3310:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3906:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3916:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3928:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3939:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3924:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3924:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3916:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3963:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3974:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3959:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3959:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3982:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3988:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3978:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3978:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3952:6:10"
},
"nodeType": "YulFunctionCall",
"src": "3952:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "3952:47:10"
},
{
"nodeType": "YulAssignment",
"src": "4008:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4142:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4016:124:10"
},
"nodeType": "YulFunctionCall",
"src": "4016:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4008:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3886:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3901:4:10",
"type": ""
}
],
"src": "3735:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4200:35:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4210:19:10",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4226:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4220:5:10"
},
"nodeType": "YulFunctionCall",
"src": "4220:9:10"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4210:6:10"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4193:6:10",
"type": ""
}
],
"src": "4160:75:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4299:40:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4310:22:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4326:5:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4320:5:10"
},
"nodeType": "YulFunctionCall",
"src": "4320:12:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4310:6:10"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4282:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4292:6:10",
"type": ""
}
],
"src": "4241:98:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4440:73:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4457:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4462:6:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4450:6:10"
},
"nodeType": "YulFunctionCall",
"src": "4450:19:10"
},
"nodeType": "YulExpressionStatement",
"src": "4450:19:10"
},
{
"nodeType": "YulAssignment",
"src": "4478:29:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4497:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4502:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4493:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4493:14:10"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4478:11:10"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4412:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4417:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4428:11:10",
"type": ""
}
],
"src": "4345:168:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4615:73:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4632:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4637:6:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4625:6:10"
},
"nodeType": "YulFunctionCall",
"src": "4625:19:10"
},
"nodeType": "YulExpressionStatement",
"src": "4625:19:10"
},
{
"nodeType": "YulAssignment",
"src": "4653:29:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4672:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4677:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4668:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4668:14:10"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "4653:11:10"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4587:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4592:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "4603:11:10",
"type": ""
}
],
"src": "4519:169:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4738:261:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4748:25:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4771:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4753:17:10"
},
"nodeType": "YulFunctionCall",
"src": "4753:20:10"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4748:1:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4782:25:10",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4805:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4787:17:10"
},
"nodeType": "YulFunctionCall",
"src": "4787:20:10"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4782:1:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4945:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4947:16:10"
},
"nodeType": "YulFunctionCall",
"src": "4947:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "4947:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4866:1:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4873:66:10",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4941:1:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4869:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4869:74:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4863:2:10"
},
"nodeType": "YulFunctionCall",
"src": "4863:81:10"
},
"nodeType": "YulIf",
"src": "4860:107:10"
},
{
"nodeType": "YulAssignment",
"src": "4977:16:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4988:1:10"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4991:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4984:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4984:9:10"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4977:3:10"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4725:1:10",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4728:1:10",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "4734:3:10",
"type": ""
}
],
"src": "4694:305:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5050:51:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5060:35:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5089:5:10"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "5071:17:10"
},
"nodeType": "YulFunctionCall",
"src": "5071:24:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5060:7:10"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5032:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5042:7:10",
"type": ""
}
],
"src": "5005:96:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5151:105:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5161:89:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5176:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5183:66:10",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5172:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5172:78:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5161:7:10"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5133:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5143:7:10",
"type": ""
}
],
"src": "5107:149:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5307:81:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5317:65:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5332:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5339:42:10",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5328:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5328:54:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5317:7:10"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5289:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5299:7:10",
"type": ""
}
],
"src": "5262:126:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5439:32:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5449:16:10",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5460:5:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "5449:7:10"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5421:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "5431:7:10",
"type": ""
}
],
"src": "5394:77:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5526:258:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5536:10:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5545:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "5540:1:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5605:63:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5630:3:10"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5635:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5626:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5626:11:10"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5649:3:10"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5654:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5645:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5645:11:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5639:5:10"
},
"nodeType": "YulFunctionCall",
"src": "5639:18:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5619:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5619:39:10"
},
"nodeType": "YulExpressionStatement",
"src": "5619:39:10"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5566:1:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5569:6:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "5563:2:10"
},
"nodeType": "YulFunctionCall",
"src": "5563:13:10"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "5577:19:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5579:15:10",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5588:1:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5591:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5584:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5584:10:10"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5579:1:10"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "5559:3:10",
"statements": []
},
"src": "5555:113:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5702:76:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "5752:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5757:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5748:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5748:16:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5766:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5741:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5741:27:10"
},
"nodeType": "YulExpressionStatement",
"src": "5741:27:10"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "5683:1:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5686:6:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5680:2:10"
},
"nodeType": "YulFunctionCall",
"src": "5680:13:10"
},
"nodeType": "YulIf",
"src": "5677:101:10"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "5508:3:10",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "5513:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5518:6:10",
"type": ""
}
],
"src": "5477:307:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5841:269:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5851:22:10",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5865:4:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5871:1:10",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "5861:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5861:12:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5851:6:10"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "5882:38:10",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "5912:4:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5918:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5908:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5908:12:10"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "5886:18:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5959:51:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5973:27:10",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5987:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5995:4:10",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "5983:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5983:17:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "5973:6:10"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "5939:18:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5932:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5932:26:10"
},
"nodeType": "YulIf",
"src": "5929:81:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6062:42:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "6076:16:10"
},
"nodeType": "YulFunctionCall",
"src": "6076:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "6076:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "6026:18:10"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6049:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6057:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6046:2:10"
},
"nodeType": "YulFunctionCall",
"src": "6046:14:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6023:2:10"
},
"nodeType": "YulFunctionCall",
"src": "6023:38:10"
},
"nodeType": "YulIf",
"src": "6020:84:10"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "5825:4:10",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "5834:6:10",
"type": ""
}
],
"src": "5790:320:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6144:152:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6161:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6164:77:10",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6154:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6154:88:10"
},
"nodeType": "YulExpressionStatement",
"src": "6154:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6258:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6261:4:10",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6251:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6251:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "6251:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6282:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6285:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6275:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6275:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "6275:15:10"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "6116:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6330:152:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6347:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6350:77:10",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6340:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6340:88:10"
},
"nodeType": "YulExpressionStatement",
"src": "6340:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6444:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6447:4:10",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6437:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6437:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "6437:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6468:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6471:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6461:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6461:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "6461:15:10"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "6302:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6577:28:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6594:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6597:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6587:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6587:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "6587:12:10"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "6488:117:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6700:28:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6717:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6720:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6710:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6710:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "6710:12:10"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "6611:117:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6782:54:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6792:38:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6810:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6817:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6806:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6806:14:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6826:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "6822:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6822:7:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "6802:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6802:28:10"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "6792:6:10"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6765:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "6775:6:10",
"type": ""
}
],
"src": "6734:102:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6948:131:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6970:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6978:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6966:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6966:14:10"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6982:34:10",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6959:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6959:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "6959:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7038:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7046:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7034:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7034:15:10"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7051:20:10",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7027:6:10"
},
"nodeType": "YulFunctionCall",
"src": "7027:45:10"
},
"nodeType": "YulExpressionStatement",
"src": "7027:45:10"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6940:6:10",
"type": ""
}
],
"src": "6842:237:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7191:72:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7213:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7221:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7209:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7209:14:10"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7225:30:10",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7202:6:10"
},
"nodeType": "YulFunctionCall",
"src": "7202:54:10"
},
"nodeType": "YulExpressionStatement",
"src": "7202:54:10"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7183:6:10",
"type": ""
}
],
"src": "7085:178:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7375:76:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7397:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7405:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7393:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7393:14:10"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "7409:34:10",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7386:6:10"
},
"nodeType": "YulFunctionCall",
"src": "7386:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "7386:58:10"
}
]
},
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7367:6:10",
"type": ""
}
],
"src": "7269:182:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7499:78:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7555:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7564:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7567:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7557:6:10"
},
"nodeType": "YulFunctionCall",
"src": "7557:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "7557:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7522:5:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7546:5:10"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "7529:16:10"
},
"nodeType": "YulFunctionCall",
"src": "7529:23:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "7519:2:10"
},
"nodeType": "YulFunctionCall",
"src": "7519:34:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "7512:6:10"
},
"nodeType": "YulFunctionCall",
"src": "7512:42:10"
},
"nodeType": "YulIf",
"src": "7509:62:10"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7492:5:10",
"type": ""
}
],
"src": "7457:120:10"
}
]
},
"contents": "{\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\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_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(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_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_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_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_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_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__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_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__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_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function array_length_t_bytes_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 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 cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\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 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_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\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 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_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: token already minted\")\n\n }\n\n function store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: mint to the zero address\")\n\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 10,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600781526020017f4d79546f6b656e000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d544b0000000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620005b4565b508060019080519060200190620000af929190620005b4565b505050620000c5336001620000cb60201b60201c565b62000ace565b620000ed828260405180602001604052806000815250620000f160201b60201c565b5050565b6200010383836200015f60201b60201c565b6200011860008484846200035960201b60201c565b6200015a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200015190620007d9565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001c9906200081d565b60405180910390fd5b620001e3816200051360201b60201c565b1562000226576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021d90620007fb565b60405180910390fd5b6200023a600083836200057f60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200028c91906200086c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a462000355600083836200058460201b60201c565b5050565b6000620003878473ffffffffffffffffffffffffffffffffffffffff166200058960201b620009fc1760201c565b1562000506578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620003b9620005ac60201b60201c565b8786866040518563ffffffff1660e01b8152600401620003dd949392919062000785565b602060405180830381600087803b158015620003f857600080fd5b505af19250505080156200042c57506040513d601f19601f820116820180604052508101906200042991906200067b565b60015b620004b5573d80600081146200045f576040519150601f19603f3d011682016040523d82523d6000602084013e62000464565b606091505b50600081511415620004ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004a490620007d9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200050b565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600033905090565b828054620005c29062000969565b90600052602060002090601f016020900481019282620005e6576000855562000632565b82601f106200060157805160ff191683800117855562000632565b8280016001018555821562000632579182015b828111156200063157825182559160200191906001019062000614565b5b50905062000641919062000645565b5090565b5b808211156200066057600081600090555060010162000646565b5090565b600081519050620006758162000ab4565b92915050565b600060208284031215620006945762000693620009fd565b5b6000620006a48482850162000664565b91505092915050565b620006b881620008c9565b82525050565b6000620006cb826200083f565b620006d781856200084a565b9350620006e981856020860162000933565b620006f48162000a02565b840191505092915050565b60006200070e6032836200085b565b91506200071b8262000a13565b604082019050919050565b600062000735601c836200085b565b9150620007428262000a62565b602082019050919050565b60006200075c6020836200085b565b9150620007698262000a8b565b602082019050919050565b6200077f8162000929565b82525050565b60006080820190506200079c6000830187620006ad565b620007ab6020830186620006ad565b620007ba604083018562000774565b8181036060830152620007ce8184620006be565b905095945050505050565b60006020820190508181036000830152620007f481620006ff565b9050919050565b60006020820190508181036000830152620008168162000726565b9050919050565b6000602082019050818103600083015262000838816200074d565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620008798262000929565b9150620008868362000929565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620008be57620008bd6200099f565b5b828201905092915050565b6000620008d68262000909565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200095357808201518184015260208101905062000936565b8381111562000963576000848401525b50505050565b600060028204905060018216806200098257607f821691505b60208210811415620009995762000998620009ce565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b62000abf81620008dd565b811462000acb57600080fd5b50565b6123ee8062000ade6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb46514610224578063b88d4fde14610240578063c87b56dd1461025c578063e985e9c51461028c576100cf565b80636352211e146101a657806370a08231146101d657806395d89b4114610206576100cf565b806301ffc9a7146100d457806306fdde0314610104578063081812fc14610122578063095ea7b31461015257806323b872dd1461016e57806342842e0e1461018a575b600080fd5b6100ee60048036038101906100e99190611679565b6102bc565b6040516100fb91906119ff565b60405180910390f35b61010c61039e565b6040516101199190611a1a565b60405180910390f35b61013c600480360381019061013791906116d3565b610430565b6040516101499190611998565b60405180910390f35b61016c60048036038101906101679190611639565b6104b5565b005b61018860048036038101906101839190611523565b6105cd565b005b6101a4600480360381019061019f9190611523565b61062d565b005b6101c060048036038101906101bb91906116d3565b61064d565b6040516101cd9190611998565b60405180910390f35b6101f060048036038101906101eb91906114b6565b6106ff565b6040516101fd9190611bbc565b60405180910390f35b61020e6107b7565b60405161021b9190611a1a565b60405180910390f35b61023e600480360381019061023991906115f9565b610849565b005b61025a60048036038101906102559190611576565b61085f565b005b610276600480360381019061027191906116d3565b6108c1565b6040516102839190611a1a565b60405180910390f35b6102a660048036038101906102a191906114e3565b610968565b6040516102b391906119ff565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610397575061039682610a1f565b5b9050919050565b6060600080546103ad90611de1565b80601f01602080910402602001604051908101604052809291908181526020018280546103d990611de1565b80156104265780601f106103fb57610100808354040283529160200191610426565b820191906000526020600020905b81548152906001019060200180831161040957829003601f168201915b5050505050905090565b600061043b82610a89565b61047a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047190611b3c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104c08261064d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890611b7c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610550610af5565b73ffffffffffffffffffffffffffffffffffffffff16148061057f575061057e81610579610af5565b610968565b5b6105be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b590611adc565b60405180910390fd5b6105c88383610afd565b505050565b6105de6105d8610af5565b82610bb6565b61061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611b9c565b60405180910390fd5b610628838383610c94565b505050565b6106488383836040518060200160405280600081525061085f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed90611b1c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076790611afc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107c690611de1565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290611de1565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b61085b610854610af5565b8383610efb565b5050565b61087061086a610af5565b83610bb6565b6108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611b9c565b60405180910390fd5b6108bb84848484611068565b50505050565b60606108cc82610a89565b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290611b5c565b60405180910390fd5b60006109156110c4565b905060008151116109355760405180602001604052806000815250610960565b8061093f846110db565b604051602001610950929190611974565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610b708361064d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610bc182610a89565b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790611abc565b60405180910390fd5b6000610c0b8361064d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610c4d5750610c4c8185610968565b5b80610c8b57508373ffffffffffffffffffffffffffffffffffffffff16610c7384610430565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610cb48261064d565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190611a5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190611a7c565b60405180910390fd5b610d8583838361123c565b610d90600082610afd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610de09190611cf7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e379190611c70565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ef6838383611241565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190611a9c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161105b91906119ff565b60405180910390a3505050565b611073848484610c94565b61107f84848484611246565b6110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590611a3c565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000821415611123576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611237565b600082905060005b6000821461115557808061113e90611e44565b915050600a8261114e9190611cc6565b915061112b565b60008167ffffffffffffffff81111561117157611170611f7a565b5b6040519080825280601f01601f1916602001820160405280156111a35781602001600182028036833780820191505090505b5090505b60008514611230576001826111bc9190611cf7565b9150600a856111cb9190611e8d565b60306111d79190611c70565b60f81b8183815181106111ed576111ec611f4b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856112299190611cc6565b94506111a7565b8093505050505b919050565b505050565b505050565b60006112678473ffffffffffffffffffffffffffffffffffffffff166109fc565b156113d0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611290610af5565b8786866040518563ffffffff1660e01b81526004016112b294939291906119b3565b602060405180830381600087803b1580156112cc57600080fd5b505af19250505080156112fd57506040513d601f19601f820116820180604052508101906112fa91906116a6565b60015b611380573d806000811461132d576040519150601f19603f3d011682016040523d82523d6000602084013e611332565b606091505b50600081511415611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90611a3c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506113d5565b600190505b949350505050565b60006113f06113eb84611bfc565b611bd7565b90508281526020810184848401111561140c5761140b611fae565b5b611417848285611d9f565b509392505050565b60008135905061142e8161235c565b92915050565b60008135905061144381612373565b92915050565b6000813590506114588161238a565b92915050565b60008151905061146d8161238a565b92915050565b600082601f83011261148857611487611fa9565b5b81356114988482602086016113dd565b91505092915050565b6000813590506114b0816123a1565b92915050565b6000602082840312156114cc576114cb611fb8565b5b60006114da8482850161141f565b91505092915050565b600080604083850312156114fa576114f9611fb8565b5b60006115088582860161141f565b92505060206115198582860161141f565b9150509250929050565b60008060006060848603121561153c5761153b611fb8565b5b600061154a8682870161141f565b935050602061155b8682870161141f565b925050604061156c868287016114a1565b9150509250925092565b600080600080608085870312156115905761158f611fb8565b5b600061159e8782880161141f565b94505060206115af8782880161141f565b93505060406115c0878288016114a1565b925050606085013567ffffffffffffffff8111156115e1576115e0611fb3565b5b6115ed87828801611473565b91505092959194509250565b600080604083850312156116105761160f611fb8565b5b600061161e8582860161141f565b925050602061162f85828601611434565b9150509250929050565b600080604083850312156116505761164f611fb8565b5b600061165e8582860161141f565b925050602061166f858286016114a1565b9150509250929050565b60006020828403121561168f5761168e611fb8565b5b600061169d84828501611449565b91505092915050565b6000602082840312156116bc576116bb611fb8565b5b60006116ca8482850161145e565b91505092915050565b6000602082840312156116e9576116e8611fb8565b5b60006116f7848285016114a1565b91505092915050565b61170981611d2b565b82525050565b61171881611d3d565b82525050565b600061172982611c2d565b6117338185611c43565b9350611743818560208601611dae565b61174c81611fbd565b840191505092915050565b600061176282611c38565b61176c8185611c54565b935061177c818560208601611dae565b61178581611fbd565b840191505092915050565b600061179b82611c38565b6117a58185611c65565b93506117b5818560208601611dae565b80840191505092915050565b60006117ce603283611c54565b91506117d982611fce565b604082019050919050565b60006117f1602583611c54565b91506117fc8261201d565b604082019050919050565b6000611814602483611c54565b915061181f8261206c565b604082019050919050565b6000611837601983611c54565b9150611842826120bb565b602082019050919050565b600061185a602c83611c54565b9150611865826120e4565b604082019050919050565b600061187d603883611c54565b915061188882612133565b604082019050919050565b60006118a0602a83611c54565b91506118ab82612182565b604082019050919050565b60006118c3602983611c54565b91506118ce826121d1565b604082019050919050565b60006118e6602c83611c54565b91506118f182612220565b604082019050919050565b6000611909602f83611c54565b91506119148261226f565b604082019050919050565b600061192c602183611c54565b9150611937826122be565b604082019050919050565b600061194f603183611c54565b915061195a8261230d565b604082019050919050565b61196e81611d95565b82525050565b60006119808285611790565b915061198c8284611790565b91508190509392505050565b60006020820190506119ad6000830184611700565b92915050565b60006080820190506119c86000830187611700565b6119d56020830186611700565b6119e26040830185611965565b81810360608301526119f4818461171e565b905095945050505050565b6000602082019050611a14600083018461170f565b92915050565b60006020820190508181036000830152611a348184611757565b905092915050565b60006020820190508181036000830152611a55816117c1565b9050919050565b60006020820190508181036000830152611a75816117e4565b9050919050565b60006020820190508181036000830152611a9581611807565b9050919050565b60006020820190508181036000830152611ab58161182a565b9050919050565b60006020820190508181036000830152611ad58161184d565b9050919050565b60006020820190508181036000830152611af581611870565b9050919050565b60006020820190508181036000830152611b1581611893565b9050919050565b60006020820190508181036000830152611b35816118b6565b9050919050565b60006020820190508181036000830152611b55816118d9565b9050919050565b60006020820190508181036000830152611b75816118fc565b9050919050565b60006020820190508181036000830152611b958161191f565b9050919050565b60006020820190508181036000830152611bb581611942565b9050919050565b6000602082019050611bd16000830184611965565b92915050565b6000611be1611bf2565b9050611bed8282611e13565b919050565b6000604051905090565b600067ffffffffffffffff821115611c1757611c16611f7a565b5b611c2082611fbd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611c7b82611d95565b9150611c8683611d95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611cbb57611cba611ebe565b5b828201905092915050565b6000611cd182611d95565b9150611cdc83611d95565b925082611cec57611ceb611eed565b5b828204905092915050565b6000611d0282611d95565b9150611d0d83611d95565b925082821015611d2057611d1f611ebe565b5b828203905092915050565b6000611d3682611d75565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015611dcc578082015181840152602081019050611db1565b83811115611ddb576000848401525b50505050565b60006002820490506001821680611df957607f821691505b60208210811415611e0d57611e0c611f1c565b5b50919050565b611e1c82611fbd565b810181811067ffffffffffffffff82111715611e3b57611e3a611f7a565b5b80604052505050565b6000611e4f82611d95565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611e8257611e81611ebe565b5b600182019050919050565b6000611e9882611d95565b9150611ea383611d95565b925082611eb357611eb2611eed565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61236581611d2b565b811461237057600080fd5b50565b61237c81611d3d565b811461238757600080fd5b50565b61239381611d49565b811461239e57600080fd5b50565b6123aa81611d95565b81146123b557600080fd5b5056fea264697066735822122000a0435c99901ac6e6de30ac6cfcbc1d13d71158154710d00459e97e4717e25c64736f6c63430008070033",
"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 0x7 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D79546F6B656E00000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D544B0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0x96 SWAP3 SWAP2 SWAP1 PUSH3 0x5B4 JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xAF SWAP3 SWAP2 SWAP1 PUSH3 0x5B4 JUMP JUMPDEST POP POP POP PUSH3 0xC5 CALLER PUSH1 0x1 PUSH3 0xCB PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xACE JUMP JUMPDEST PUSH3 0xED DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH3 0xF1 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH3 0x103 DUP4 DUP4 PUSH3 0x15F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x118 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH3 0x359 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x15A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x151 SWAP1 PUSH3 0x7D9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH3 0x1D2 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x1C9 SWAP1 PUSH3 0x81D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x1E3 DUP2 PUSH3 0x513 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0x226 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x21D SWAP1 PUSH3 0x7FB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH3 0x23A PUSH1 0x0 DUP4 DUP4 PUSH3 0x57F PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST 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 0x28C SWAP2 SWAP1 PUSH3 0x86C 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 PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 PUSH3 0x355 PUSH1 0x0 DUP4 DUP4 PUSH3 0x584 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x387 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH3 0x589 PUSH1 0x20 SHL PUSH3 0x9FC OR PUSH1 0x20 SHR JUMP JUMPDEST ISZERO PUSH3 0x506 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH3 0x3B9 PUSH3 0x5AC PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x3DD SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH3 0x785 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH3 0x3F8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH3 0x42C 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 0x429 SWAP2 SWAP1 PUSH3 0x67B JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH3 0x4B5 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH3 0x45F 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 0x464 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH3 0x4AD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x4A4 SWAP1 PUSH3 0x7D9 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 0x50B JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP 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 POP POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x5C2 SWAP1 PUSH3 0x969 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x5E6 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x632 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x601 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x632 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x632 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x631 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x614 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x641 SWAP2 SWAP1 PUSH3 0x645 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x660 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x646 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH3 0x675 DUP2 PUSH3 0xAB4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH3 0x694 JUMPI PUSH3 0x693 PUSH3 0x9FD JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH3 0x6A4 DUP5 DUP3 DUP6 ADD PUSH3 0x664 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x6B8 DUP2 PUSH3 0x8C9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x6CB DUP3 PUSH3 0x83F JUMP JUMPDEST PUSH3 0x6D7 DUP2 DUP6 PUSH3 0x84A JUMP JUMPDEST SWAP4 POP PUSH3 0x6E9 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH3 0x933 JUMP JUMPDEST PUSH3 0x6F4 DUP2 PUSH3 0xA02 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x70E PUSH1 0x32 DUP4 PUSH3 0x85B JUMP JUMPDEST SWAP2 POP PUSH3 0x71B DUP3 PUSH3 0xA13 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x735 PUSH1 0x1C DUP4 PUSH3 0x85B JUMP JUMPDEST SWAP2 POP PUSH3 0x742 DUP3 PUSH3 0xA62 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x75C PUSH1 0x20 DUP4 PUSH3 0x85B JUMP JUMPDEST SWAP2 POP PUSH3 0x769 DUP3 PUSH3 0xA8B JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x77F DUP2 PUSH3 0x929 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH3 0x79C PUSH1 0x0 DUP4 ADD DUP8 PUSH3 0x6AD JUMP JUMPDEST PUSH3 0x7AB PUSH1 0x20 DUP4 ADD DUP7 PUSH3 0x6AD JUMP JUMPDEST PUSH3 0x7BA PUSH1 0x40 DUP4 ADD DUP6 PUSH3 0x774 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH3 0x7CE DUP2 DUP5 PUSH3 0x6BE JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH3 0x7F4 DUP2 PUSH3 0x6FF 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 0x816 DUP2 PUSH3 0x726 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 0x838 DUP2 PUSH3 0x74D JUMP JUMPDEST 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 PUSH3 0x879 DUP3 PUSH3 0x929 JUMP JUMPDEST SWAP2 POP PUSH3 0x886 DUP4 PUSH3 0x929 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH3 0x8BE JUMPI PUSH3 0x8BD PUSH3 0x99F JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x8D6 DUP3 PUSH3 0x909 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 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 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x953 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x936 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x963 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 0x982 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x999 JUMPI PUSH3 0x998 PUSH3 0x9CE JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 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 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 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 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH3 0xABF DUP2 PUSH3 0x8DD JUMP JUMPDEST DUP2 EQ PUSH3 0xACB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x23EE DUP1 PUSH3 0xADE 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 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x224 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x240 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x28C JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1A6 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x206 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x152 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x16E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x18A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0x1679 JUMP JUMPDEST PUSH2 0x2BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFB SWAP2 SWAP1 PUSH2 0x19FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10C PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1A1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x16D3 JUMP JUMPDEST PUSH2 0x430 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x149 SWAP2 SWAP1 PUSH2 0x1998 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x167 SWAP2 SWAP1 PUSH2 0x1639 JUMP JUMPDEST PUSH2 0x4B5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x188 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x183 SWAP2 SWAP1 PUSH2 0x1523 JUMP JUMPDEST PUSH2 0x5CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19F SWAP2 SWAP1 PUSH2 0x1523 JUMP JUMPDEST PUSH2 0x62D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BB SWAP2 SWAP1 PUSH2 0x16D3 JUMP JUMPDEST PUSH2 0x64D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0x1998 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0x14B6 JUMP JUMPDEST PUSH2 0x6FF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP2 SWAP1 PUSH2 0x1BBC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20E PUSH2 0x7B7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21B SWAP2 SWAP1 PUSH2 0x1A1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x15F9 JUMP JUMPDEST PUSH2 0x849 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x1576 JUMP JUMPDEST PUSH2 0x85F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x276 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x16D3 JUMP JUMPDEST PUSH2 0x8C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x1A1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A1 SWAP2 SWAP1 PUSH2 0x14E3 JUMP JUMPDEST PUSH2 0x968 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x19FF 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 PUSH2 0x387 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x397 JUMPI POP PUSH2 0x396 DUP3 PUSH2 0xA1F JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3AD SWAP1 PUSH2 0x1DE1 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 0x3D9 SWAP1 PUSH2 0x1DE1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x426 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3FB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x426 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 0x409 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43B DUP3 PUSH2 0xA89 JUMP JUMPDEST PUSH2 0x47A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x471 SWAP1 PUSH2 0x1B3C 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 PUSH2 0x4C0 DUP3 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x531 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x528 SWAP1 PUSH2 0x1B7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x550 PUSH2 0xAF5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x57F JUMPI POP PUSH2 0x57E DUP2 PUSH2 0x579 PUSH2 0xAF5 JUMP JUMPDEST PUSH2 0x968 JUMP JUMPDEST JUMPDEST PUSH2 0x5BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5B5 SWAP1 PUSH2 0x1ADC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5C8 DUP4 DUP4 PUSH2 0xAFD JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5DE PUSH2 0x5D8 PUSH2 0xAF5 JUMP JUMPDEST DUP3 PUSH2 0xBB6 JUMP JUMPDEST PUSH2 0x61D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x614 SWAP1 PUSH2 0x1B9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x628 DUP4 DUP4 DUP4 PUSH2 0xC94 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x648 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x85F 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 PUSH2 0x6F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6ED SWAP1 PUSH2 0x1B1C 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 PUSH2 0x770 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x767 SWAP1 PUSH2 0x1AFC 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 PUSH2 0x7C6 SWAP1 PUSH2 0x1DE1 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 0x7F2 SWAP1 PUSH2 0x1DE1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x83F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x814 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x83F 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 0x822 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x85B PUSH2 0x854 PUSH2 0xAF5 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xEFB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x870 PUSH2 0x86A PUSH2 0xAF5 JUMP JUMPDEST DUP4 PUSH2 0xBB6 JUMP JUMPDEST PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A6 SWAP1 PUSH2 0x1B9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8BB DUP5 DUP5 DUP5 DUP5 PUSH2 0x1068 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x8CC DUP3 PUSH2 0xA89 JUMP JUMPDEST PUSH2 0x90B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x902 SWAP1 PUSH2 0x1B5C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x915 PUSH2 0x10C4 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x935 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x960 JUMP JUMPDEST DUP1 PUSH2 0x93F DUP5 PUSH2 0x10DB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x950 SWAP3 SWAP2 SWAP1 PUSH2 0x1974 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 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 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 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 PUSH2 0xB70 DUP4 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBC1 DUP3 PUSH2 0xA89 JUMP JUMPDEST PUSH2 0xC00 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x1ABC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xC0B DUP4 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xC4D JUMPI POP PUSH2 0xC4C DUP2 DUP6 PUSH2 0x968 JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xC8B JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC73 DUP5 PUSH2 0x430 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCB4 DUP3 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD0A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD01 SWAP1 PUSH2 0x1A5C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD7A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD71 SWAP1 PUSH2 0x1A7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD85 DUP4 DUP4 DUP4 PUSH2 0x123C JUMP JUMPDEST PUSH2 0xD90 PUSH1 0x0 DUP3 PUSH2 0xAFD 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 PUSH2 0xDE0 SWAP2 SWAP1 PUSH2 0x1CF7 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 PUSH2 0xE37 SWAP2 SWAP1 PUSH2 0x1C70 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 PUSH2 0xEF6 DUP4 DUP4 DUP4 PUSH2 0x1241 JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF6A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF61 SWAP1 PUSH2 0x1A9C 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 PUSH2 0x105B SWAP2 SWAP1 PUSH2 0x19FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1073 DUP5 DUP5 DUP5 PUSH2 0xC94 JUMP JUMPDEST PUSH2 0x107F DUP5 DUP5 DUP5 DUP5 PUSH2 0x1246 JUMP JUMPDEST PUSH2 0x10BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10B5 SWAP1 PUSH2 0x1A3C 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 PUSH2 0x1123 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 PUSH2 0x1237 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1155 JUMPI DUP1 DUP1 PUSH2 0x113E SWAP1 PUSH2 0x1E44 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x114E SWAP2 SWAP1 PUSH2 0x1CC6 JUMP JUMPDEST SWAP2 POP PUSH2 0x112B JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1171 JUMPI PUSH2 0x1170 PUSH2 0x1F7A 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 PUSH2 0x11A3 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 PUSH2 0x1230 JUMPI PUSH1 0x1 DUP3 PUSH2 0x11BC SWAP2 SWAP1 PUSH2 0x1CF7 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x11CB SWAP2 SWAP1 PUSH2 0x1E8D JUMP JUMPDEST PUSH1 0x30 PUSH2 0x11D7 SWAP2 SWAP1 PUSH2 0x1C70 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x11ED JUMPI PUSH2 0x11EC PUSH2 0x1F4B JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1229 SWAP2 SWAP1 PUSH2 0x1CC6 JUMP JUMPDEST SWAP5 POP PUSH2 0x11A7 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 PUSH2 0x1267 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x9FC JUMP JUMPDEST ISZERO PUSH2 0x13D0 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x1290 PUSH2 0xAF5 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12B2 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x19B3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x12FD JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x12FA SWAP2 SWAP1 PUSH2 0x16A6 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1380 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x132D JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1332 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x1378 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x136F SWAP1 PUSH2 0x1A3C 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 PUSH2 0x13D5 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13F0 PUSH2 0x13EB DUP5 PUSH2 0x1BFC JUMP JUMPDEST PUSH2 0x1BD7 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x140C JUMPI PUSH2 0x140B PUSH2 0x1FAE JUMP JUMPDEST JUMPDEST PUSH2 0x1417 DUP5 DUP3 DUP6 PUSH2 0x1D9F JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x142E DUP2 PUSH2 0x235C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1443 DUP2 PUSH2 0x2373 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1458 DUP2 PUSH2 0x238A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x146D DUP2 PUSH2 0x238A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1488 JUMPI PUSH2 0x1487 PUSH2 0x1FA9 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1498 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x13DD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14B0 DUP2 PUSH2 0x23A1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14CC JUMPI PUSH2 0x14CB PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x14DA DUP5 DUP3 DUP6 ADD PUSH2 0x141F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x14FA JUMPI PUSH2 0x14F9 PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1508 DUP6 DUP3 DUP7 ADD PUSH2 0x141F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1519 DUP6 DUP3 DUP7 ADD PUSH2 0x141F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x153C JUMPI PUSH2 0x153B PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x154A DUP7 DUP3 DUP8 ADD PUSH2 0x141F JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x155B DUP7 DUP3 DUP8 ADD PUSH2 0x141F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x156C DUP7 DUP3 DUP8 ADD PUSH2 0x14A1 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 PUSH2 0x1590 JUMPI PUSH2 0x158F PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x159E DUP8 DUP3 DUP9 ADD PUSH2 0x141F JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x15AF DUP8 DUP3 DUP9 ADD PUSH2 0x141F JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x15C0 DUP8 DUP3 DUP9 ADD PUSH2 0x14A1 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x15E1 JUMPI PUSH2 0x15E0 PUSH2 0x1FB3 JUMP JUMPDEST JUMPDEST PUSH2 0x15ED DUP8 DUP3 DUP9 ADD PUSH2 0x1473 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1610 JUMPI PUSH2 0x160F PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x161E DUP6 DUP3 DUP7 ADD PUSH2 0x141F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x162F DUP6 DUP3 DUP7 ADD PUSH2 0x1434 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1650 JUMPI PUSH2 0x164F PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x165E DUP6 DUP3 DUP7 ADD PUSH2 0x141F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x166F DUP6 DUP3 DUP7 ADD PUSH2 0x14A1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x168F JUMPI PUSH2 0x168E PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x169D DUP5 DUP3 DUP6 ADD PUSH2 0x1449 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16BC JUMPI PUSH2 0x16BB PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x16CA DUP5 DUP3 DUP6 ADD PUSH2 0x145E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16E9 JUMPI PUSH2 0x16E8 PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x16F7 DUP5 DUP3 DUP6 ADD PUSH2 0x14A1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1709 DUP2 PUSH2 0x1D2B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1718 DUP2 PUSH2 0x1D3D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1729 DUP3 PUSH2 0x1C2D JUMP JUMPDEST PUSH2 0x1733 DUP2 DUP6 PUSH2 0x1C43 JUMP JUMPDEST SWAP4 POP PUSH2 0x1743 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DAE JUMP JUMPDEST PUSH2 0x174C DUP2 PUSH2 0x1FBD JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1762 DUP3 PUSH2 0x1C38 JUMP JUMPDEST PUSH2 0x176C DUP2 DUP6 PUSH2 0x1C54 JUMP JUMPDEST SWAP4 POP PUSH2 0x177C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DAE JUMP JUMPDEST PUSH2 0x1785 DUP2 PUSH2 0x1FBD JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x179B DUP3 PUSH2 0x1C38 JUMP JUMPDEST PUSH2 0x17A5 DUP2 DUP6 PUSH2 0x1C65 JUMP JUMPDEST SWAP4 POP PUSH2 0x17B5 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DAE JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17CE PUSH1 0x32 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x17D9 DUP3 PUSH2 0x1FCE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17F1 PUSH1 0x25 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x17FC DUP3 PUSH2 0x201D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1814 PUSH1 0x24 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x181F DUP3 PUSH2 0x206C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1837 PUSH1 0x19 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x1842 DUP3 PUSH2 0x20BB JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x185A PUSH1 0x2C DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x1865 DUP3 PUSH2 0x20E4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x187D PUSH1 0x38 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x1888 DUP3 PUSH2 0x2133 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18A0 PUSH1 0x2A DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x18AB DUP3 PUSH2 0x2182 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18C3 PUSH1 0x29 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x18CE DUP3 PUSH2 0x21D1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18E6 PUSH1 0x2C DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x18F1 DUP3 PUSH2 0x2220 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1909 PUSH1 0x2F DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x1914 DUP3 PUSH2 0x226F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x192C PUSH1 0x21 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x1937 DUP3 PUSH2 0x22BE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x194F PUSH1 0x31 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x195A DUP3 PUSH2 0x230D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x196E DUP2 PUSH2 0x1D95 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1980 DUP3 DUP6 PUSH2 0x1790 JUMP JUMPDEST SWAP2 POP PUSH2 0x198C DUP3 DUP5 PUSH2 0x1790 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x19AD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1700 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x19C8 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x1700 JUMP JUMPDEST PUSH2 0x19D5 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1700 JUMP JUMPDEST PUSH2 0x19E2 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1965 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x19F4 DUP2 DUP5 PUSH2 0x171E JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A14 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x170F 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 0x1A34 DUP2 DUP5 PUSH2 0x1757 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 PUSH2 0x1A55 DUP2 PUSH2 0x17C1 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 PUSH2 0x1A75 DUP2 PUSH2 0x17E4 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 PUSH2 0x1A95 DUP2 PUSH2 0x1807 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 PUSH2 0x1AB5 DUP2 PUSH2 0x182A 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 PUSH2 0x1AD5 DUP2 PUSH2 0x184D 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 PUSH2 0x1AF5 DUP2 PUSH2 0x1870 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 PUSH2 0x1B15 DUP2 PUSH2 0x1893 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 PUSH2 0x1B35 DUP2 PUSH2 0x18B6 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 PUSH2 0x1B55 DUP2 PUSH2 0x18D9 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 PUSH2 0x1B75 DUP2 PUSH2 0x18FC 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 PUSH2 0x1B95 DUP2 PUSH2 0x191F 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 PUSH2 0x1BB5 DUP2 PUSH2 0x1942 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1BD1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1965 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BE1 PUSH2 0x1BF2 JUMP JUMPDEST SWAP1 POP PUSH2 0x1BED DUP3 DUP3 PUSH2 0x1E13 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1C17 JUMPI PUSH2 0x1C16 PUSH2 0x1F7A JUMP JUMPDEST JUMPDEST PUSH2 0x1C20 DUP3 PUSH2 0x1FBD 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 PUSH2 0x1C7B DUP3 PUSH2 0x1D95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1C86 DUP4 PUSH2 0x1D95 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1CBB JUMPI PUSH2 0x1CBA PUSH2 0x1EBE JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CD1 DUP3 PUSH2 0x1D95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CDC DUP4 PUSH2 0x1D95 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1CEC JUMPI PUSH2 0x1CEB PUSH2 0x1EED JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D02 DUP3 PUSH2 0x1D95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D0D DUP4 PUSH2 0x1D95 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1D20 JUMPI PUSH2 0x1D1F PUSH2 0x1EBE JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D36 DUP3 PUSH2 0x1D75 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 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 PUSH2 0x1DCC JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1DB1 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1DDB 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 0x1DF9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1E0D JUMPI PUSH2 0x1E0C PUSH2 0x1F1C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1E1C DUP3 PUSH2 0x1FBD JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1E3B JUMPI PUSH2 0x1E3A PUSH2 0x1F7A JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E4F DUP3 PUSH2 0x1D95 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1E82 JUMPI PUSH2 0x1E81 PUSH2 0x1EBE JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E98 DUP3 PUSH2 0x1D95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1EA3 DUP4 PUSH2 0x1D95 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1EB3 JUMPI PUSH2 0x1EB2 PUSH2 0x1EED 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 PUSH2 0x2365 DUP2 PUSH2 0x1D2B JUMP JUMPDEST DUP2 EQ PUSH2 0x2370 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x237C DUP2 PUSH2 0x1D3D JUMP JUMPDEST DUP2 EQ PUSH2 0x2387 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2393 DUP2 PUSH2 0x1D49 JUMP JUMPDEST DUP2 EQ PUSH2 0x239E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x23AA DUP2 PUSH2 0x1D95 JUMP JUMPDEST DUP2 EQ PUSH2 0x23B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 STOP LOG0 NUMBER 0x5C SWAP10 SWAP1 BYTE 0xC6 0xE6 0xDE ADDRESS 0xAC PUSH13 0xFCBC1D13D71158154710D00459 0xE9 PUSH31 0x4717E25C64736F6C6343000807003300000000000000000000000000000000 ",
"sourceMap": "116:113:9:-:0;;;147:80;;;;;;;;;;1390:113:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1464:5;1456;:13;;;;;;;;;;;;:::i;:::-;;1489:7;1479;:17;;;;;;;;;;;;:::i;:::-;;1390:113;;196:24:9::1;206:10;218:1;196:9;;;:24;;:::i;:::-;116:113:::0;;8117:108:0;8192:26;8202:2;8206:7;8192:26;;;;;;;;;;;;:9;;;:26;;:::i;:::-;8117:108;;:::o;8446:311::-;8571:18;8577:2;8581:7;8571:5;;;:18;;:::i;:::-;8620:54;8651:1;8655:2;8659:7;8668:5;8620:22;;;:54;;:::i;:::-;8599:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8446:311;;;:::o;9079:427::-;9172:1;9158:16;;:2;:16;;;;9150:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9230:16;9238:7;9230;;;:16;;:::i;:::-;9229:17;9221:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9290:45;9319:1;9323:2;9327:7;9290:20;;;:45;;:::i;:::-;9363:1;9346:9;:13;9356:2;9346:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9393:2;9374:7;:16;9382:7;9374:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9436:7;9432:2;9411:33;;9428:1;9411:33;;;;;;;;;;;;9455:44;9483:1;9487:2;9491:7;9455:19;;;:44;;:::i;:::-;9079:427;;:::o;12335:778::-;12485:4;12505:15;:2;:13;;;;;;;:15;;:::i;:::-;12501:606;;;12556:2;12540:36;;;12577:12;:10;;;:12;;:::i;:::-;12591:4;12597:7;12606:5;12540:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12536:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12796:1;12779:6;:13;:18;12775:266;;;12821:60;;;;;;;;;;:::i;:::-;;;;;;;;12775:266;12993:6;12987:13;12978:6;12974:2;12970:15;12963:38;12536:519;12672:41;;;12662:51;;;:6;:51;;;;12655:58;;;;;12501:606;13092:4;13085:11;;12335:778;;;;;;;:::o;7160:125::-;7225:4;7276:1;7248:30;;:7;:16;7256:7;7248:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7241:37;;7160:125;;;:::o;13669:122::-;;;;:::o;14163:121::-;;;;:::o;1175:320:4:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;640:96:5:-;693:7;719:10;712:17;;640:96;:::o;116:113:9:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:141:10:-;63:5;94:6;88:13;79:22;;110:32;136:5;110:32;:::i;:::-;7:141;;;;:::o;154:349::-;223:6;272:2;260:9;251:7;247:23;243:32;240:119;;;278:79;;:::i;:::-;240:119;398:1;423:63;478:7;469:6;458:9;454:22;423:63;:::i;:::-;413:73;;369:127;154:349;;;;:::o;509:118::-;596:24;614:5;596:24;:::i;:::-;591:3;584:37;509:118;;:::o;633:360::-;719:3;747:38;779:5;747:38;:::i;:::-;801:70;864:6;859:3;801:70;:::i;:::-;794:77;;880:52;925:6;920:3;913:4;906:5;902:16;880:52;:::i;:::-;957:29;979:6;957:29;:::i;:::-;952:3;948:39;941:46;;723:270;633:360;;;;:::o;999:366::-;1141:3;1162:67;1226:2;1221:3;1162:67;:::i;:::-;1155:74;;1238:93;1327:3;1238:93;:::i;:::-;1356:2;1351:3;1347:12;1340:19;;999:366;;;:::o;1371:::-;1513:3;1534:67;1598:2;1593:3;1534:67;:::i;:::-;1527:74;;1610:93;1699:3;1610:93;:::i;:::-;1728:2;1723:3;1719:12;1712:19;;1371:366;;;:::o;1743:::-;1885:3;1906:67;1970:2;1965:3;1906:67;:::i;:::-;1899:74;;1982:93;2071:3;1982:93;:::i;:::-;2100:2;2095:3;2091:12;2084:19;;1743:366;;;:::o;2115:118::-;2202:24;2220:5;2202:24;:::i;:::-;2197:3;2190:37;2115:118;;:::o;2239:640::-;2434:4;2472:3;2461:9;2457:19;2449:27;;2486:71;2554:1;2543:9;2539:17;2530:6;2486:71;:::i;:::-;2567:72;2635:2;2624:9;2620:18;2611:6;2567:72;:::i;:::-;2649;2717:2;2706:9;2702:18;2693:6;2649:72;:::i;:::-;2768:9;2762:4;2758:20;2753:2;2742:9;2738:18;2731:48;2796:76;2867:4;2858:6;2796:76;:::i;:::-;2788:84;;2239:640;;;;;;;:::o;2885:419::-;3051:4;3089:2;3078:9;3074:18;3066:26;;3138:9;3132:4;3128:20;3124:1;3113:9;3109:17;3102:47;3166:131;3292:4;3166:131;:::i;:::-;3158:139;;2885:419;;;:::o;3310:::-;3476:4;3514:2;3503:9;3499:18;3491:26;;3563:9;3557:4;3553:20;3549:1;3538:9;3534:17;3527:47;3591:131;3717:4;3591:131;:::i;:::-;3583:139;;3310:419;;;:::o;3735:::-;3901:4;3939:2;3928:9;3924:18;3916:26;;3988:9;3982:4;3978:20;3974:1;3963:9;3959:17;3952:47;4016:131;4142:4;4016:131;:::i;:::-;4008:139;;3735:419;;;:::o;4241:98::-;4292:6;4326:5;4320:12;4310:22;;4241:98;;;:::o;4345:168::-;4428:11;4462:6;4457:3;4450:19;4502:4;4497:3;4493:14;4478:29;;4345:168;;;;:::o;4519:169::-;4603:11;4637:6;4632:3;4625:19;4677:4;4672:3;4668:14;4653:29;;4519:169;;;;:::o;4694:305::-;4734:3;4753:20;4771:1;4753:20;:::i;:::-;4748:25;;4787:20;4805:1;4787:20;:::i;:::-;4782:25;;4941:1;4873:66;4869:74;4866:1;4863:81;4860:107;;;4947:18;;:::i;:::-;4860:107;4991:1;4988;4984:9;4977:16;;4694:305;;;;:::o;5005:96::-;5042:7;5071:24;5089:5;5071:24;:::i;:::-;5060:35;;5005:96;;;:::o;5107:149::-;5143:7;5183:66;5176:5;5172:78;5161:89;;5107:149;;;:::o;5262:126::-;5299:7;5339:42;5332:5;5328:54;5317:65;;5262:126;;;:::o;5394:77::-;5431:7;5460:5;5449:16;;5394:77;;;:::o;5477:307::-;5545:1;5555:113;5569:6;5566:1;5563:13;5555:113;;;5654:1;5649:3;5645:11;5639:18;5635:1;5630:3;5626:11;5619:39;5591:2;5588:1;5584:10;5579:15;;5555:113;;;5686:6;5683:1;5680:13;5677:101;;;5766:1;5757:6;5752:3;5748:16;5741:27;5677:101;5526:258;5477:307;;;:::o;5790:320::-;5834:6;5871:1;5865:4;5861:12;5851:22;;5918:1;5912:4;5908:12;5939:18;5929:81;;5995:4;5987:6;5983:17;5973:27;;5929:81;6057:2;6049:6;6046:14;6026:18;6023:38;6020:84;;;6076:18;;:::i;:::-;6020:84;5841:269;5790:320;;;:::o;6116:180::-;6164:77;6161:1;6154:88;6261:4;6258:1;6251:15;6285:4;6282:1;6275:15;6302:180;6350:77;6347:1;6340:88;6447:4;6444:1;6437:15;6471:4;6468:1;6461:15;6611:117;6720:1;6717;6710:12;6734:102;6775:6;6826:2;6822:7;6817:2;6810:5;6806:14;6802:28;6792:38;;6734:102;;;:::o;6842:237::-;6982:34;6978:1;6970:6;6966:14;6959:58;7051:20;7046:2;7038:6;7034:15;7027:45;6842:237;:::o;7085:178::-;7225:30;7221:1;7213:6;7209:14;7202:54;7085:178;:::o;7269:182::-;7409:34;7405:1;7397:6;7393:14;7386:58;7269:182;:::o;7457:120::-;7529:23;7546:5;7529:23;:::i;:::-;7522:5;7519:34;7509:62;;7567:1;7564;7557:12;7509:62;7457:120;:::o;116:113:9:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_864": {
"entryPoint": 4673,
"id": 864,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_748": {
"entryPoint": 2813,
"id": 748,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_216": {
"entryPoint": 4292,
"id": 216,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_853": {
"entryPoint": 4668,
"id": 853,
"parameterSlots": 3,
"returnSlots": 0
},
"@_checkOnERC721Received_842": {
"entryPoint": 4678,
"id": 842,
"parameterSlots": 4,
"returnSlots": 1
},
"@_exists_438": {
"entryPoint": 2697,
"id": 438,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_479": {
"entryPoint": 2998,
"id": 479,
"parameterSlots": 2,
"returnSlots": 1
},
"@_msgSender_1333": {
"entryPoint": 2805,
"id": 1333,
"parameterSlots": 0,
"returnSlots": 1
},
"@_safeTransfer_420": {
"entryPoint": 4200,
"id": 420,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_780": {
"entryPoint": 3835,
"id": 780,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transfer_724": {
"entryPoint": 3220,
"id": 724,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_259": {
"entryPoint": 1205,
"id": 259,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_117": {
"entryPoint": 1791,
"id": 117,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_280": {
"entryPoint": 1072,
"id": 280,
"parameterSlots": 1,
"returnSlots": 1
},
"@isApprovedForAll_315": {
"entryPoint": 2408,
"id": 315,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1044": {
"entryPoint": 2556,
"id": 1044,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_155": {
"entryPoint": 926,
"id": 155,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_145": {
"entryPoint": 1613,
"id": 145,
"parameterSlots": 1,
"returnSlots": 1
},
"@safeTransferFrom_361": {
"entryPoint": 1581,
"id": 361,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_391": {
"entryPoint": 2143,
"id": 391,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_297": {
"entryPoint": 2121,
"id": 297,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1569": {
"entryPoint": 2591,
"id": 1569,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_93": {
"entryPoint": 700,
"id": 93,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_165": {
"entryPoint": 1975,
"id": 165,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1428": {
"entryPoint": 4315,
"id": 1428,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_207": {
"entryPoint": 2241,
"id": 207,
"parameterSlots": 1,
"returnSlots": 1
},
"@transferFrom_342": {
"entryPoint": 1485,
"id": 342,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 5085,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 5151,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 5172,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 5193,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 5214,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 5235,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 5281,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 5302,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 5347,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 5411,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 5494,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 5625,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 5689,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 5753,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 5798,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 5843,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 5888,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 5903,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 5918,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5975,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 6032,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6081,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6116,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6151,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6186,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6221,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6256,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6291,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6326,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6361,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6396,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6431,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6466,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 6501,
"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": 6516,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 6552,
"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": 6579,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 6655,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6682,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6716,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6748,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6780,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6812,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6844,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6876,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6908,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6940,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6972,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7004,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7036,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7068,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 7100,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 7127,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 7154,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 7164,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 7213,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 7224,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 7235,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 7252,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 7269,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 7280,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_div_t_uint256": {
"entryPoint": 7366,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 7415,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 7467,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 7485,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 7497,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 7541,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 7573,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory": {
"entryPoint": 7583,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory": {
"entryPoint": 7598,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 7649,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 7699,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"increment_t_uint256": {
"entryPoint": 7748,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mod_t_uint256": {
"entryPoint": 7821,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 7870,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 7917,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 7964,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 8011,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 8058,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 8105,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 8110,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 8115,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 8120,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 8125,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 8142,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48": {
"entryPoint": 8221,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 8300,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 8379,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c": {
"entryPoint": 8420,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d": {
"entryPoint": 8499,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba": {
"entryPoint": 8578,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397": {
"entryPoint": 8657,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d": {
"entryPoint": 8736,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb": {
"entryPoint": 8815,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 8894,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2": {
"entryPoint": 8973,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 9052,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 9075,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 9098,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 9121,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:27818:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:327:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:74:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "166:6:10"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "125:40:10"
},
"nodeType": "YulFunctionCall",
"src": "125:48:10"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "109:15:10"
},
"nodeType": "YulFunctionCall",
"src": "109:65:10"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "190:5:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "197:6:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "183:6:10"
},
"nodeType": "YulFunctionCall",
"src": "183:21:10"
},
"nodeType": "YulExpressionStatement",
"src": "183:21:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "213:27:10",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "228:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "235:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "224:3:10"
},
"nodeType": "YulFunctionCall",
"src": "224:16:10"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "217:3:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "278:83:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "280:77:10"
},
"nodeType": "YulFunctionCall",
"src": "280:79:10"
},
"nodeType": "YulExpressionStatement",
"src": "280:79:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "259:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "264:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "255:3:10"
},
"nodeType": "YulFunctionCall",
"src": "255:16:10"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "273:3:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "252:2:10"
},
"nodeType": "YulFunctionCall",
"src": "252:25:10"
},
"nodeType": "YulIf",
"src": "249:112:10"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "394:3:10"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "399:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "404:6:10"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "370:23:10"
},
"nodeType": "YulFunctionCall",
"src": "370:41:10"
},
"nodeType": "YulExpressionStatement",
"src": "370:41:10"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:10",
"type": ""
}
],
"src": "7:410:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "475:87:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "485:29:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "507:6:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "494:12:10"
},
"nodeType": "YulFunctionCall",
"src": "494:20:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "485:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "550:5:10"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "523:26:10"
},
"nodeType": "YulFunctionCall",
"src": "523:33:10"
},
"nodeType": "YulExpressionStatement",
"src": "523:33:10"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "453:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "461:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "469:5:10",
"type": ""
}
],
"src": "423:139:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "617:84:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "627:29:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "649:6:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "636:12:10"
},
"nodeType": "YulFunctionCall",
"src": "636:20:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "627:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "689:5:10"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "665:23:10"
},
"nodeType": "YulFunctionCall",
"src": "665:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "665:30:10"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "595:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "603:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "611:5:10",
"type": ""
}
],
"src": "568:133:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "758:86:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "768:29:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "790:6:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "777:12:10"
},
"nodeType": "YulFunctionCall",
"src": "777:20:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "768:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "832:5:10"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "806:25:10"
},
"nodeType": "YulFunctionCall",
"src": "806:32:10"
},
"nodeType": "YulExpressionStatement",
"src": "806:32:10"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "736:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "744:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "752:5:10",
"type": ""
}
],
"src": "707:137:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "912:79:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "922:22:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "937:6:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "931:5:10"
},
"nodeType": "YulFunctionCall",
"src": "931:13:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "922:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "979:5:10"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "953:25:10"
},
"nodeType": "YulFunctionCall",
"src": "953:32:10"
},
"nodeType": "YulExpressionStatement",
"src": "953:32:10"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "890:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "898:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "906:5:10",
"type": ""
}
],
"src": "850:141:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1071:277:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1120:83:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "1122:77:10"
},
"nodeType": "YulFunctionCall",
"src": "1122:79:10"
},
"nodeType": "YulExpressionStatement",
"src": "1122:79:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1099:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1107:4:10",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1095:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1095:17:10"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1114:3:10"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1091:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1091:27:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1084:6:10"
},
"nodeType": "YulFunctionCall",
"src": "1084:35:10"
},
"nodeType": "YulIf",
"src": "1081:122:10"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1212:34:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1239:6:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1226:12:10"
},
"nodeType": "YulFunctionCall",
"src": "1226:20:10"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1216:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1255:87:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1315:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1323:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1311:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1311:17:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1330:6:10"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1338:3:10"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1264:46:10"
},
"nodeType": "YulFunctionCall",
"src": "1264:78:10"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1255:5:10"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1049:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1057:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1065:5:10",
"type": ""
}
],
"src": "1010:338:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1406:87:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1416:29:10",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1438:6:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1425:12:10"
},
"nodeType": "YulFunctionCall",
"src": "1425:20:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1416:5:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1481:5:10"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1454:26:10"
},
"nodeType": "YulFunctionCall",
"src": "1454:33:10"
},
"nodeType": "YulExpressionStatement",
"src": "1454:33:10"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1384:6:10",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1392:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1400:5:10",
"type": ""
}
],
"src": "1354:139:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1565:263:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1611:83:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1613:77:10"
},
"nodeType": "YulFunctionCall",
"src": "1613:79:10"
},
"nodeType": "YulExpressionStatement",
"src": "1613:79:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1586:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1595:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1582:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1582:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1607:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1578:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1578:32:10"
},
"nodeType": "YulIf",
"src": "1575:119:10"
},
{
"nodeType": "YulBlock",
"src": "1704:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1719:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1733:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1723:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1748:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1783:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1794:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1779:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1779:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1803:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1758:20:10"
},
"nodeType": "YulFunctionCall",
"src": "1758:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1748:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1535:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1546:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1558:6:10",
"type": ""
}
],
"src": "1499:329:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1917:391:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1963:83:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1965:77:10"
},
"nodeType": "YulFunctionCall",
"src": "1965:79:10"
},
"nodeType": "YulExpressionStatement",
"src": "1965:79:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1938:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1947:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1934:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1934:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1959:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1930:3:10"
},
"nodeType": "YulFunctionCall",
"src": "1930:32:10"
},
"nodeType": "YulIf",
"src": "1927:119:10"
},
{
"nodeType": "YulBlock",
"src": "2056:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2071:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2085:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2075:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2100:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2135:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2146:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2131:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2131:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2155:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2110:20:10"
},
"nodeType": "YulFunctionCall",
"src": "2110:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2100:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2183:118:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2198:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2212:2:10",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2202:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2228:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2263:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2274:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2259:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2259:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2283:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2238:20:10"
},
"nodeType": "YulFunctionCall",
"src": "2238:53:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2228:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1879:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1890:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1902:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1910:6:10",
"type": ""
}
],
"src": "1834:474:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2414:519:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2460:83:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2462:77:10"
},
"nodeType": "YulFunctionCall",
"src": "2462:79:10"
},
"nodeType": "YulExpressionStatement",
"src": "2462:79:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2435:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2444:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2431:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2431:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2456:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2427:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2427:32:10"
},
"nodeType": "YulIf",
"src": "2424:119:10"
},
{
"nodeType": "YulBlock",
"src": "2553:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2568:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2582:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2572:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2597:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2632:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2643:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2628:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2628:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2652:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2607:20:10"
},
"nodeType": "YulFunctionCall",
"src": "2607:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2597:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2680:118:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2695:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2709:2:10",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2699:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2725:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2760:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2771:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2756:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2756:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2780:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2735:20:10"
},
"nodeType": "YulFunctionCall",
"src": "2735:53:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2725:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "2808:118:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2823:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2837:2:10",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2827:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2853:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2888:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2899:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2884:3:10"
},
"nodeType": "YulFunctionCall",
"src": "2884:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2908:7:10"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "2863:20:10"
},
"nodeType": "YulFunctionCall",
"src": "2863:53:10"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "2853:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2368:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2379:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2391:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2399:6:10",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "2407:6:10",
"type": ""
}
],
"src": "2314:619:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3065:817:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3112:83:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3114:77:10"
},
"nodeType": "YulFunctionCall",
"src": "3114:79:10"
},
"nodeType": "YulExpressionStatement",
"src": "3114:79:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3086:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3095:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3082:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3082:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3107:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3078:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3078:33:10"
},
"nodeType": "YulIf",
"src": "3075:120:10"
},
{
"nodeType": "YulBlock",
"src": "3205:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3220:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3234:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3224:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3249:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3284:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3295:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3280:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3280:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3304:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3259:20:10"
},
"nodeType": "YulFunctionCall",
"src": "3259:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3249:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3332:118:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3347:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3361:2:10",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3351:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3377:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3412:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3423:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3408:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3408:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3432:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3387:20:10"
},
"nodeType": "YulFunctionCall",
"src": "3387:53:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3377:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3460:118:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3475:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3489:2:10",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3479:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3505:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3540:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3551:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3536:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3536:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3560:7:10"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3515:20:10"
},
"nodeType": "YulFunctionCall",
"src": "3515:53:10"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3505:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3588:287:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3603:46:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3634:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3645:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3630:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3630:18:10"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3617:12:10"
},
"nodeType": "YulFunctionCall",
"src": "3617:32:10"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3607:6:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3696:83:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "3698:77:10"
},
"nodeType": "YulFunctionCall",
"src": "3698:79:10"
},
"nodeType": "YulExpressionStatement",
"src": "3698:79:10"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3668:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3676:18:10",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3665:2:10"
},
"nodeType": "YulFunctionCall",
"src": "3665:30:10"
},
"nodeType": "YulIf",
"src": "3662:117:10"
},
{
"nodeType": "YulAssignment",
"src": "3793:72:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3837:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3848:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3833:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3833:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3857:7:10"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3803:29:10"
},
"nodeType": "YulFunctionCall",
"src": "3803:62:10"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "3793:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3011:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3022:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3034:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3042:6:10",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3050:6:10",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3058:6:10",
"type": ""
}
],
"src": "2939:943:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3968:388:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4014:83:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4016:77:10"
},
"nodeType": "YulFunctionCall",
"src": "4016:79:10"
},
"nodeType": "YulExpressionStatement",
"src": "4016:79:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3989:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3998:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3985:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3985:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4010:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3981:3:10"
},
"nodeType": "YulFunctionCall",
"src": "3981:32:10"
},
"nodeType": "YulIf",
"src": "3978:119:10"
},
{
"nodeType": "YulBlock",
"src": "4107:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4122:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4136:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4126:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4151:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4186:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4197:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4182:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4182:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4206:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4161:20:10"
},
"nodeType": "YulFunctionCall",
"src": "4161:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4151:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4234:115:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4249:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4263:2:10",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4253:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4279:60:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4311:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4322:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4307:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4307:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4331:7:10"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "4289:17:10"
},
"nodeType": "YulFunctionCall",
"src": "4289:50:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4279:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3930:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3941:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3953:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3961:6:10",
"type": ""
}
],
"src": "3888:468:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4445:391:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4491:83:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4493:77:10"
},
"nodeType": "YulFunctionCall",
"src": "4493:79:10"
},
"nodeType": "YulExpressionStatement",
"src": "4493:79:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4466:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4475:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4462:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4462:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4487:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4458:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4458:32:10"
},
"nodeType": "YulIf",
"src": "4455:119:10"
},
{
"nodeType": "YulBlock",
"src": "4584:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4599:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4613:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4603:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4628:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4663:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4674:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4659:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4659:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4683:7:10"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4638:20:10"
},
"nodeType": "YulFunctionCall",
"src": "4638:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4628:6:10"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4711:118:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4726:16:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4740:2:10",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4730:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4756:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4791:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4802:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4787:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4787:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4811:7:10"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4766:20:10"
},
"nodeType": "YulFunctionCall",
"src": "4766:53:10"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4756:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4407:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4418:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4430:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4438:6:10",
"type": ""
}
],
"src": "4362:474:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4907:262:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4953:83:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4955:77:10"
},
"nodeType": "YulFunctionCall",
"src": "4955:79:10"
},
"nodeType": "YulExpressionStatement",
"src": "4955:79:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4928:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4937:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4924:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4924:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4949:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4920:3:10"
},
"nodeType": "YulFunctionCall",
"src": "4920:32:10"
},
"nodeType": "YulIf",
"src": "4917:119:10"
},
{
"nodeType": "YulBlock",
"src": "5046:116:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5061:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5075:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5065:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5090:62:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5124:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5135:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5120:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5120:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5144:7:10"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "5100:19:10"
},
"nodeType": "YulFunctionCall",
"src": "5100:52:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5090:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4877:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4888:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4900:6:10",
"type": ""
}
],
"src": "4842:327:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5251:273:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5297:83:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5299:77:10"
},
"nodeType": "YulFunctionCall",
"src": "5299:79:10"
},
"nodeType": "YulExpressionStatement",
"src": "5299:79:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5272:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5281:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5268:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5268:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5293:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5264:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5264:32:10"
},
"nodeType": "YulIf",
"src": "5261:119:10"
},
{
"nodeType": "YulBlock",
"src": "5390:127:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5405:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5419:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5409:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5434:73:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5479:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5490:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5475:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5475:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5499:7:10"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "5444:30:10"
},
"nodeType": "YulFunctionCall",
"src": "5444:63:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5434:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5221:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5232:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5244:6:10",
"type": ""
}
],
"src": "5175:349:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5596:263:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5642:83:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5644:77:10"
},
"nodeType": "YulFunctionCall",
"src": "5644:79:10"
},
"nodeType": "YulExpressionStatement",
"src": "5644:79:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5617:7:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5626:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5613:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5613:23:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5638:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5609:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5609:32:10"
},
"nodeType": "YulIf",
"src": "5606:119:10"
},
{
"nodeType": "YulBlock",
"src": "5735:117:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5750:15:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5764:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5754:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5779:63:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5814:9:10"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5825:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5810:3:10"
},
"nodeType": "YulFunctionCall",
"src": "5810:22:10"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5834:7:10"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5789:20:10"
},
"nodeType": "YulFunctionCall",
"src": "5789:53:10"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5779:6:10"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5566:9:10",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5577:7:10",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5589:6:10",
"type": ""
}
],
"src": "5530:329:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5930:53:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5947:3:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5970:5:10"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "5952:17:10"
},
"nodeType": "YulFunctionCall",
"src": "5952:24:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5940:6:10"
},
"nodeType": "YulFunctionCall",
"src": "5940:37:10"
},
"nodeType": "YulExpressionStatement",
"src": "5940:37:10"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5918:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5925:3:10",
"type": ""
}
],
"src": "5865:118:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6048:50:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6065:3:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6085:5:10"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "6070:14:10"
},
"nodeType": "YulFunctionCall",
"src": "6070:21:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6058:6:10"
},
"nodeType": "YulFunctionCall",
"src": "6058:34:10"
},
"nodeType": "YulExpressionStatement",
"src": "6058:34:10"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6036:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6043:3:10",
"type": ""
}
],
"src": "5989:109:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6194:270:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6204:52:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6250:5:10"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6218:31:10"
},
"nodeType": "YulFunctionCall",
"src": "6218:38:10"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6208:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6265:77:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6330:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6335:6:10"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6272:57:10"
},
"nodeType": "YulFunctionCall",
"src": "6272:70:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6265:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6377:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6384:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6373:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6373:16:10"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6391:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6396:6:10"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6351:21:10"
},
"nodeType": "YulFunctionCall",
"src": "6351:52:10"
},
"nodeType": "YulExpressionStatement",
"src": "6351:52:10"
},
{
"nodeType": "YulAssignment",
"src": "6412:46:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6423:3:10"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6450:6:10"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "6428:21:10"
},
"nodeType": "YulFunctionCall",
"src": "6428:29:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6419:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6419:39:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6412:3:10"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6175:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6182:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6190:3:10",
"type": ""
}
],
"src": "6104:360:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6562:272:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6572:53:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6619:5:10"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6586:32:10"
},
"nodeType": "YulFunctionCall",
"src": "6586:39:10"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6576:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6634:78:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6700:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6705:6:10"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6641:58:10"
},
"nodeType": "YulFunctionCall",
"src": "6641:71:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6634:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6747:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6754:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6743:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6743:16:10"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6761:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6766:6:10"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "6721:21:10"
},
"nodeType": "YulFunctionCall",
"src": "6721:52:10"
},
"nodeType": "YulExpressionStatement",
"src": "6721:52:10"
},
{
"nodeType": "YulAssignment",
"src": "6782:46:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6793:3:10"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "6820:6:10"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "6798:21:10"
},
"nodeType": "YulFunctionCall",
"src": "6798:29:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6789:3:10"
},
"nodeType": "YulFunctionCall",
"src": "6789:39:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6782:3:10"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6543:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6550:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6558:3:10",
"type": ""
}
],
"src": "6470:364:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6950:267:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6960:53:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7007:5:10"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "6974:32:10"
},
"nodeType": "YulFunctionCall",
"src": "6974:39:10"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "6964:6:10",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7022:96:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7106:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7111:6:10"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "7029:76:10"
},
"nodeType": "YulFunctionCall",
"src": "7029:89:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7022:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7153:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7160:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7149:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7149:16:10"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7167:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7172:6:10"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "7127:21:10"
},
"nodeType": "YulFunctionCall",
"src": "7127:52:10"
},
"nodeType": "YulExpressionStatement",
"src": "7127:52:10"
},
{
"nodeType": "YulAssignment",
"src": "7188:23:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7199:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7204:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7195:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7195:16:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7188:3:10"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6931:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6938:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6946:3:10",
"type": ""
}
],
"src": "6840:377:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7369:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7379:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7445:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7450:2:10",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7386:58:10"
},
"nodeType": "YulFunctionCall",
"src": "7386:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7379:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7551:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "7462:88:10"
},
"nodeType": "YulFunctionCall",
"src": "7462:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "7462:93:10"
},
{
"nodeType": "YulAssignment",
"src": "7564:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7575:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7580:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7571:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7571:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7564:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7357:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7365:3:10",
"type": ""
}
],
"src": "7223:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7741:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7751:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7817:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7822:2:10",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7758:58:10"
},
"nodeType": "YulFunctionCall",
"src": "7758:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7751:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7923:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulIdentifier",
"src": "7834:88:10"
},
"nodeType": "YulFunctionCall",
"src": "7834:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "7834:93:10"
},
{
"nodeType": "YulAssignment",
"src": "7936:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7947:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7952:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7943:3:10"
},
"nodeType": "YulFunctionCall",
"src": "7943:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "7936:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7729:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "7737:3:10",
"type": ""
}
],
"src": "7595:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8113:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8123:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8189:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8194:2:10",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8130:58:10"
},
"nodeType": "YulFunctionCall",
"src": "8130:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8123:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8295:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "8206:88:10"
},
"nodeType": "YulFunctionCall",
"src": "8206:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "8206:93:10"
},
{
"nodeType": "YulAssignment",
"src": "8308:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8319:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8324:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8315:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8315:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8308:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8101:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8109:3:10",
"type": ""
}
],
"src": "7967:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8485:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8495:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8561:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8566:2:10",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8502:58:10"
},
"nodeType": "YulFunctionCall",
"src": "8502:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8495:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8667:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "8578:88:10"
},
"nodeType": "YulFunctionCall",
"src": "8578:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "8578:93:10"
},
{
"nodeType": "YulAssignment",
"src": "8680:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8691:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8696:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8687:3:10"
},
"nodeType": "YulFunctionCall",
"src": "8687:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8680:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8473:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8481:3:10",
"type": ""
}
],
"src": "8339:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8857:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8867:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8933:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8938:2:10",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8874:58:10"
},
"nodeType": "YulFunctionCall",
"src": "8874:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8867:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9039:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulIdentifier",
"src": "8950:88:10"
},
"nodeType": "YulFunctionCall",
"src": "8950:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "8950:93:10"
},
{
"nodeType": "YulAssignment",
"src": "9052:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9063:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9068:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9059:3:10"
},
"nodeType": "YulFunctionCall",
"src": "9059:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9052:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8845:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8853:3:10",
"type": ""
}
],
"src": "8711:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9229:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9239:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9305:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9310:2:10",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9246:58:10"
},
"nodeType": "YulFunctionCall",
"src": "9246:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9239:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9411:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulIdentifier",
"src": "9322:88:10"
},
"nodeType": "YulFunctionCall",
"src": "9322:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "9322:93:10"
},
{
"nodeType": "YulAssignment",
"src": "9424:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9435:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9440:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9431:3:10"
},
"nodeType": "YulFunctionCall",
"src": "9431:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9424:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9217:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9225:3:10",
"type": ""
}
],
"src": "9083:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9601:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9611:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9677:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9682:2:10",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9618:58:10"
},
"nodeType": "YulFunctionCall",
"src": "9618:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9611:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9783:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulIdentifier",
"src": "9694:88:10"
},
"nodeType": "YulFunctionCall",
"src": "9694:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "9694:93:10"
},
{
"nodeType": "YulAssignment",
"src": "9796:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9807:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9812:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9803:3:10"
},
"nodeType": "YulFunctionCall",
"src": "9803:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9796:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9589:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9597:3:10",
"type": ""
}
],
"src": "9455:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9973:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9983:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10049:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10054:2:10",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9990:58:10"
},
"nodeType": "YulFunctionCall",
"src": "9990:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9983:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10155:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulIdentifier",
"src": "10066:88:10"
},
"nodeType": "YulFunctionCall",
"src": "10066:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "10066:93:10"
},
{
"nodeType": "YulAssignment",
"src": "10168:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10179:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10184:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10175:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10175:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10168:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9961:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9969:3:10",
"type": ""
}
],
"src": "9827:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10345:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10355:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10421:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10426:2:10",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10362:58:10"
},
"nodeType": "YulFunctionCall",
"src": "10362:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10355:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10527:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulIdentifier",
"src": "10438:88:10"
},
"nodeType": "YulFunctionCall",
"src": "10438:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "10438:93:10"
},
{
"nodeType": "YulAssignment",
"src": "10540:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10551:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10556:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10547:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10547:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10540:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10333:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10341:3:10",
"type": ""
}
],
"src": "10199:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10717:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10727:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10793:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10798:2:10",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10734:58:10"
},
"nodeType": "YulFunctionCall",
"src": "10734:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10727:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10899:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulIdentifier",
"src": "10810:88:10"
},
"nodeType": "YulFunctionCall",
"src": "10810:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "10810:93:10"
},
{
"nodeType": "YulAssignment",
"src": "10912:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10923:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10928:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10919:3:10"
},
"nodeType": "YulFunctionCall",
"src": "10919:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10912:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10705:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10713:3:10",
"type": ""
}
],
"src": "10571:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11089:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11099:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11165:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11170:2:10",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11106:58:10"
},
"nodeType": "YulFunctionCall",
"src": "11106:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11099:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11271:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "11182:88:10"
},
"nodeType": "YulFunctionCall",
"src": "11182:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "11182:93:10"
},
{
"nodeType": "YulAssignment",
"src": "11284:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11295:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11300:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11291:3:10"
},
"nodeType": "YulFunctionCall",
"src": "11291:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11284:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11077:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11085:3:10",
"type": ""
}
],
"src": "10943:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11461:220:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11471:74:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11537:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11542:2:10",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11478:58:10"
},
"nodeType": "YulFunctionCall",
"src": "11478:67:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11471:3:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11643:3:10"
}
],
"functionName": {
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulIdentifier",
"src": "11554:88:10"
},
"nodeType": "YulFunctionCall",
"src": "11554:93:10"
},
"nodeType": "YulExpressionStatement",
"src": "11554:93:10"
},
{
"nodeType": "YulAssignment",
"src": "11656:19:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11667:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11672:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11663:3:10"
},
"nodeType": "YulFunctionCall",
"src": "11663:12:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11656:3:10"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11449:3:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11457:3:10",
"type": ""
}
],
"src": "11315:366:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11752:53:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11769:3:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11792:5:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "11774:17:10"
},
"nodeType": "YulFunctionCall",
"src": "11774:24:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11762:6:10"
},
"nodeType": "YulFunctionCall",
"src": "11762:37:10"
},
"nodeType": "YulExpressionStatement",
"src": "11762:37:10"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11740:5:10",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11747:3:10",
"type": ""
}
],
"src": "11687:118:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11995:251:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12006:102:10",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12095:6:10"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12104:3:10"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "12013:81:10"
},
"nodeType": "YulFunctionCall",
"src": "12013:95:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12006:3:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12118:102:10",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "12207:6:10"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12216:3:10"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "12125:81:10"
},
"nodeType": "YulFunctionCall",
"src": "12125:95:10"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12118:3:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "12230:10:10",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12237:3:10"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12230:3:10"
}
]
}
]
},
"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": "11966:3:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11972:6:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11980:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11991:3:10",
"type": ""
}
],
"src": "11811:435:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12350:124:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12360:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12372:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12383:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12368:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12368:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12360:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12440:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12453:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12464:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12449:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12449:17:10"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12396:43:10"
},
"nodeType": "YulFunctionCall",
"src": "12396:71:10"
},
"nodeType": "YulExpressionStatement",
"src": "12396:71:10"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12322:9:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12334:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12345:4:10",
"type": ""
}
],
"src": "12252:222:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12680:440:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12690:27:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12702:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12713:3:10",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12698:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12698:19:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12690:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12771:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12784:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12795:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12780:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12780:17:10"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12727:43:10"
},
"nodeType": "YulFunctionCall",
"src": "12727:71:10"
},
"nodeType": "YulExpressionStatement",
"src": "12727:71:10"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "12852:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12865:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12876:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12861:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12861:18:10"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "12808:43:10"
},
"nodeType": "YulFunctionCall",
"src": "12808:72:10"
},
"nodeType": "YulExpressionStatement",
"src": "12808:72:10"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "12934:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12947:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12958:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12943:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12943:18:10"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "12890:43:10"
},
"nodeType": "YulFunctionCall",
"src": "12890:72:10"
},
"nodeType": "YulExpressionStatement",
"src": "12890:72:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12983:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12994:2:10",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12979:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12979:18:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13003:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13009:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12999:3:10"
},
"nodeType": "YulFunctionCall",
"src": "12999:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12972:6:10"
},
"nodeType": "YulFunctionCall",
"src": "12972:48:10"
},
"nodeType": "YulExpressionStatement",
"src": "12972:48:10"
},
{
"nodeType": "YulAssignment",
"src": "13029:84:10",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "13099:6:10"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13108:4:10"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13037:61:10"
},
"nodeType": "YulFunctionCall",
"src": "13037:76:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13029:4:10"
}
]
}
]
},
"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": "12628:9:10",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "12640:6:10",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "12648:6:10",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "12656:6:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "12664:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12675:4:10",
"type": ""
}
],
"src": "12480:640:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13218:118:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13228:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13240:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13251:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13236:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13236:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13228:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13302:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13315:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13326:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13311:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13311:17:10"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "13264:37:10"
},
"nodeType": "YulFunctionCall",
"src": "13264:65:10"
},
"nodeType": "YulExpressionStatement",
"src": "13264:65:10"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13190:9:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13202:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13213:4:10",
"type": ""
}
],
"src": "13126:210:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13460:195:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13470:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13482:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13493:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13478:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13478:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13470:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13517:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13528:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13513:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13513:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13536:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13542:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13532:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13532:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13506:6:10"
},
"nodeType": "YulFunctionCall",
"src": "13506:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "13506:47:10"
},
{
"nodeType": "YulAssignment",
"src": "13562:86:10",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "13634:6:10"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13643:4:10"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13570:63:10"
},
"nodeType": "YulFunctionCall",
"src": "13570:78:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13562:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13432:9:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "13444:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13455:4:10",
"type": ""
}
],
"src": "13342:313:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13832:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13842:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13854:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13865:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13850:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13850:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13842:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13889:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13900:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13885:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13885:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13908:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13914:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13904:3:10"
},
"nodeType": "YulFunctionCall",
"src": "13904:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13878:6:10"
},
"nodeType": "YulFunctionCall",
"src": "13878:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "13878:47:10"
},
{
"nodeType": "YulAssignment",
"src": "13934:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14068:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13942:124:10"
},
"nodeType": "YulFunctionCall",
"src": "13942:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13934:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13812:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13827:4:10",
"type": ""
}
],
"src": "13661:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14257:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14267:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14279:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14290:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14275:3:10"
},
"nodeType": "YulFunctionCall",
"src": "14275:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14267:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14314:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14325:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14310:3:10"
},
"nodeType": "YulFunctionCall",
"src": "14310:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14333:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14339:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14329:3:10"
},
"nodeType": "YulFunctionCall",
"src": "14329:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14303:6:10"
},
"nodeType": "YulFunctionCall",
"src": "14303:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "14303:47:10"
},
{
"nodeType": "YulAssignment",
"src": "14359:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14493:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14367:124:10"
},
"nodeType": "YulFunctionCall",
"src": "14367:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14359:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14237:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14252:4:10",
"type": ""
}
],
"src": "14086:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14682:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14692:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14704:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14715:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14700:3:10"
},
"nodeType": "YulFunctionCall",
"src": "14700:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14692:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14739:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14750:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14735:3:10"
},
"nodeType": "YulFunctionCall",
"src": "14735:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14758:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14764:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14754:3:10"
},
"nodeType": "YulFunctionCall",
"src": "14754:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14728:6:10"
},
"nodeType": "YulFunctionCall",
"src": "14728:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "14728:47:10"
},
{
"nodeType": "YulAssignment",
"src": "14784:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14918:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14792:124:10"
},
"nodeType": "YulFunctionCall",
"src": "14792:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14784:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14662:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14677:4:10",
"type": ""
}
],
"src": "14511:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15107:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15117:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15129:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15140:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15125:3:10"
},
"nodeType": "YulFunctionCall",
"src": "15125:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15117:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15164:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15175:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15160:3:10"
},
"nodeType": "YulFunctionCall",
"src": "15160:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15183:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15189:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15179:3:10"
},
"nodeType": "YulFunctionCall",
"src": "15179:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15153:6:10"
},
"nodeType": "YulFunctionCall",
"src": "15153:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "15153:47:10"
},
{
"nodeType": "YulAssignment",
"src": "15209:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15343:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15217:124:10"
},
"nodeType": "YulFunctionCall",
"src": "15217:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15209:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15087:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15102:4:10",
"type": ""
}
],
"src": "14936:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15532:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15542:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15554:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15565:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15550:3:10"
},
"nodeType": "YulFunctionCall",
"src": "15550:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15542:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15589:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15600:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15585:3:10"
},
"nodeType": "YulFunctionCall",
"src": "15585:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15608:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15614:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15604:3:10"
},
"nodeType": "YulFunctionCall",
"src": "15604:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15578:6:10"
},
"nodeType": "YulFunctionCall",
"src": "15578:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "15578:47:10"
},
{
"nodeType": "YulAssignment",
"src": "15634:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15768:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15642:124:10"
},
"nodeType": "YulFunctionCall",
"src": "15642:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15634:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15512:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15527:4:10",
"type": ""
}
],
"src": "15361:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15957:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15967:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15979:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15990:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15975:3:10"
},
"nodeType": "YulFunctionCall",
"src": "15975:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15967:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16014:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16025:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16010:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16010:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16033:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16039:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16029:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16029:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16003:6:10"
},
"nodeType": "YulFunctionCall",
"src": "16003:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "16003:47:10"
},
{
"nodeType": "YulAssignment",
"src": "16059:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16193:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16067:124:10"
},
"nodeType": "YulFunctionCall",
"src": "16067:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16059:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15937:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15952:4:10",
"type": ""
}
],
"src": "15786:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16382:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16392:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16404:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16415:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16400:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16400:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16392:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16439:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16450:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16435:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16435:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16458:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16464:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16454:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16454:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16428:6:10"
},
"nodeType": "YulFunctionCall",
"src": "16428:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "16428:47:10"
},
{
"nodeType": "YulAssignment",
"src": "16484:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16618:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16492:124:10"
},
"nodeType": "YulFunctionCall",
"src": "16492:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16484:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16362:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16377:4:10",
"type": ""
}
],
"src": "16211:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16807:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16817:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16829:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16840:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16825:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16825:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16817:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16864:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16875:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16860:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16860:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16883:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16889:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16879:3:10"
},
"nodeType": "YulFunctionCall",
"src": "16879:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16853:6:10"
},
"nodeType": "YulFunctionCall",
"src": "16853:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "16853:47:10"
},
{
"nodeType": "YulAssignment",
"src": "16909:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17043:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16917:124:10"
},
"nodeType": "YulFunctionCall",
"src": "16917:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16909:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16787:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16802:4:10",
"type": ""
}
],
"src": "16636:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17232:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17242:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17254:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17265:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17250:3:10"
},
"nodeType": "YulFunctionCall",
"src": "17250:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17242:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17289:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17300:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17285:3:10"
},
"nodeType": "YulFunctionCall",
"src": "17285:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17308:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17314:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17304:3:10"
},
"nodeType": "YulFunctionCall",
"src": "17304:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17278:6:10"
},
"nodeType": "YulFunctionCall",
"src": "17278:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "17278:47:10"
},
{
"nodeType": "YulAssignment",
"src": "17334:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17468:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17342:124:10"
},
"nodeType": "YulFunctionCall",
"src": "17342:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17334:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17212:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17227:4:10",
"type": ""
}
],
"src": "17061:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17657:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17667:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17679:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17690:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17675:3:10"
},
"nodeType": "YulFunctionCall",
"src": "17675:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17667:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17714:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17725:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17710:3:10"
},
"nodeType": "YulFunctionCall",
"src": "17710:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17733:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17739:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17729:3:10"
},
"nodeType": "YulFunctionCall",
"src": "17729:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17703:6:10"
},
"nodeType": "YulFunctionCall",
"src": "17703:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "17703:47:10"
},
{
"nodeType": "YulAssignment",
"src": "17759:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17893:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17767:124:10"
},
"nodeType": "YulFunctionCall",
"src": "17767:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17759:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17637:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17652:4:10",
"type": ""
}
],
"src": "17486:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18082:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18092:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18104:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18115:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18100:3:10"
},
"nodeType": "YulFunctionCall",
"src": "18100:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18092:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18139:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18150:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18135:3:10"
},
"nodeType": "YulFunctionCall",
"src": "18135:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18158:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18164:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18154:3:10"
},
"nodeType": "YulFunctionCall",
"src": "18154:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18128:6:10"
},
"nodeType": "YulFunctionCall",
"src": "18128:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "18128:47:10"
},
{
"nodeType": "YulAssignment",
"src": "18184:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18318:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18192:124:10"
},
"nodeType": "YulFunctionCall",
"src": "18192:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18184:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18062:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18077:4:10",
"type": ""
}
],
"src": "17911:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18507:248:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18517:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18529:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18540:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18525:3:10"
},
"nodeType": "YulFunctionCall",
"src": "18525:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18517:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18564:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18575:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18560:3:10"
},
"nodeType": "YulFunctionCall",
"src": "18560:17:10"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18583:4:10"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18589:9:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18579:3:10"
},
"nodeType": "YulFunctionCall",
"src": "18579:20:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18553:6:10"
},
"nodeType": "YulFunctionCall",
"src": "18553:47:10"
},
"nodeType": "YulExpressionStatement",
"src": "18553:47:10"
},
{
"nodeType": "YulAssignment",
"src": "18609:139:10",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18743:4:10"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18617:124:10"
},
"nodeType": "YulFunctionCall",
"src": "18617:131:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18609:4:10"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18487:9:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18502:4:10",
"type": ""
}
],
"src": "18336:419:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18859:124:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18869:26:10",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18881:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18892:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18877:3:10"
},
"nodeType": "YulFunctionCall",
"src": "18877:18:10"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18869:4:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18949:6:10"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18962:9:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18973:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18958:3:10"
},
"nodeType": "YulFunctionCall",
"src": "18958:17:10"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "18905:43:10"
},
"nodeType": "YulFunctionCall",
"src": "18905:71:10"
},
"nodeType": "YulExpressionStatement",
"src": "18905:71:10"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18831:9:10",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18843:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18854:4:10",
"type": ""
}
],
"src": "18761:222:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19030:88:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19040:30:10",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "19050:18:10"
},
"nodeType": "YulFunctionCall",
"src": "19050:20:10"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19040:6:10"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19099:6:10"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "19107:4:10"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "19079:19:10"
},
"nodeType": "YulFunctionCall",
"src": "19079:33:10"
},
"nodeType": "YulExpressionStatement",
"src": "19079:33:10"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "19014:4:10",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19023:6:10",
"type": ""
}
],
"src": "18989:129:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19164:35:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19174:19:10",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19190:2:10",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "19184:5:10"
},
"nodeType": "YulFunctionCall",
"src": "19184:9:10"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19174:6:10"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19157:6:10",
"type": ""
}
],
"src": "19124:75:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19271:241:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "19376:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "19378:16:10"
},
"nodeType": "YulFunctionCall",
"src": "19378:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "19378:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19348:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19356:18:10",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "19345:2:10"
},
"nodeType": "YulFunctionCall",
"src": "19345:30:10"
},
"nodeType": "YulIf",
"src": "19342:56:10"
},
{
"nodeType": "YulAssignment",
"src": "19408:37:10",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19438:6:10"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "19416:21:10"
},
"nodeType": "YulFunctionCall",
"src": "19416:29:10"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "19408:4:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "19482:23:10",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "19494:4:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19500:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19490:3:10"
},
"nodeType": "YulFunctionCall",
"src": "19490:15:10"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "19482:4:10"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "19255:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "19266:4:10",
"type": ""
}
],
"src": "19205:307:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19576:40:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19587:22:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "19603:5:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "19597:5:10"
},
"nodeType": "YulFunctionCall",
"src": "19597:12:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19587:6:10"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "19559:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "19569:6:10",
"type": ""
}
],
"src": "19518:98:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19681:40:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19692:22:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "19708:5:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "19702:5:10"
},
"nodeType": "YulFunctionCall",
"src": "19702:12:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19692:6:10"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "19664:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "19674:6:10",
"type": ""
}
],
"src": "19622:99:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19822:73:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19839:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "19844:6:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19832:6:10"
},
"nodeType": "YulFunctionCall",
"src": "19832:19:10"
},
"nodeType": "YulExpressionStatement",
"src": "19832:19:10"
},
{
"nodeType": "YulAssignment",
"src": "19860:29:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19879:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19884:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19875:3:10"
},
"nodeType": "YulFunctionCall",
"src": "19875:14:10"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "19860:11:10"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19794:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "19799:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "19810:11:10",
"type": ""
}
],
"src": "19727:168:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19997:73:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20014:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "20019:6:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20007:6:10"
},
"nodeType": "YulFunctionCall",
"src": "20007:19:10"
},
"nodeType": "YulExpressionStatement",
"src": "20007:19:10"
},
{
"nodeType": "YulAssignment",
"src": "20035:29:10",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20054:3:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20059:4:10",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20050:3:10"
},
"nodeType": "YulFunctionCall",
"src": "20050:14:10"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "20035:11:10"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19969:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "19974:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "19985:11:10",
"type": ""
}
],
"src": "19901:169:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20190:34:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20200:18:10",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20215:3:10"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "20200:11:10"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20162:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "20167:6:10",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "20178:11:10",
"type": ""
}
],
"src": "20076:148:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20274:261:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20284:25:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20307:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20289:17:10"
},
"nodeType": "YulFunctionCall",
"src": "20289:20:10"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20284:1:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20318:25:10",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20341:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20323:17:10"
},
"nodeType": "YulFunctionCall",
"src": "20323:20:10"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20318:1:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "20481:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "20483:16:10"
},
"nodeType": "YulFunctionCall",
"src": "20483:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "20483:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20402:1:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20409:66:10",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20477:1:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20405:3:10"
},
"nodeType": "YulFunctionCall",
"src": "20405:74:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "20399:2:10"
},
"nodeType": "YulFunctionCall",
"src": "20399:81:10"
},
"nodeType": "YulIf",
"src": "20396:107:10"
},
{
"nodeType": "YulAssignment",
"src": "20513:16:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20524:1:10"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20527:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20520:3:10"
},
"nodeType": "YulFunctionCall",
"src": "20520:9:10"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "20513:3:10"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "20261:1:10",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "20264:1:10",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "20270:3:10",
"type": ""
}
],
"src": "20230:305:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20583:143:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20593:25:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20616:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20598:17:10"
},
"nodeType": "YulFunctionCall",
"src": "20598:20:10"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20593:1:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20627:25:10",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20650:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20632:17:10"
},
"nodeType": "YulFunctionCall",
"src": "20632:20:10"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20627:1:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "20674:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "20676:16:10"
},
"nodeType": "YulFunctionCall",
"src": "20676:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "20676:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20671:1:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "20664:6:10"
},
"nodeType": "YulFunctionCall",
"src": "20664:9:10"
},
"nodeType": "YulIf",
"src": "20661:35:10"
},
{
"nodeType": "YulAssignment",
"src": "20706:14:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20715:1:10"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20718:1:10"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "20711:3:10"
},
"nodeType": "YulFunctionCall",
"src": "20711:9:10"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "20706:1:10"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "20572:1:10",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "20575:1:10",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "20581:1:10",
"type": ""
}
],
"src": "20541:185:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20777:146:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20787:25:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20810:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20792:17:10"
},
"nodeType": "YulFunctionCall",
"src": "20792:20:10"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20787:1:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "20821:25:10",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20844:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "20826:17:10"
},
"nodeType": "YulFunctionCall",
"src": "20826:20:10"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20821:1:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "20868:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "20870:16:10"
},
"nodeType": "YulFunctionCall",
"src": "20870:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "20870:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20862:1:10"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20865:1:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "20859:2:10"
},
"nodeType": "YulFunctionCall",
"src": "20859:8:10"
},
"nodeType": "YulIf",
"src": "20856:34:10"
},
{
"nodeType": "YulAssignment",
"src": "20900:17:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "20912:1:10"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "20915:1:10"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20908:3:10"
},
"nodeType": "YulFunctionCall",
"src": "20908:9:10"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "20900:4:10"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "20763:1:10",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "20766:1:10",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "20772:4:10",
"type": ""
}
],
"src": "20732:191:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20974:51:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20984:35:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21013:5:10"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "20995:17:10"
},
"nodeType": "YulFunctionCall",
"src": "20995:24:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "20984:7:10"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "20956:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "20966:7:10",
"type": ""
}
],
"src": "20929:96:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21073:48:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21083:32:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21108:5:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21101:6:10"
},
"nodeType": "YulFunctionCall",
"src": "21101:13:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "21094:6:10"
},
"nodeType": "YulFunctionCall",
"src": "21094:21:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21083:7:10"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21055:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21065:7:10",
"type": ""
}
],
"src": "21031:90:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21171:105:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21181:89:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21196:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21203:66:10",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21192:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21192:78:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21181:7:10"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21153:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21163:7:10",
"type": ""
}
],
"src": "21127:149:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21327:81:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21337:65:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "21352:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21359:42:10",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "21348:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21348:54:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21337:7:10"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21309:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21319:7:10",
"type": ""
}
],
"src": "21282:126:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21459:32:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21469:16:10",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "21480:5:10"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "21469:7:10"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "21441:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "21451:7:10",
"type": ""
}
],
"src": "21414:77:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21548:103:10",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "21571:3:10"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "21576:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21581:6:10"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "21558:12:10"
},
"nodeType": "YulFunctionCall",
"src": "21558:30:10"
},
"nodeType": "YulExpressionStatement",
"src": "21558:30:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "21629:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21634:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21625:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21625:16:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21643:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21618:6:10"
},
"nodeType": "YulFunctionCall",
"src": "21618:27:10"
},
"nodeType": "YulExpressionStatement",
"src": "21618:27:10"
}
]
},
"name": "copy_calldata_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "21530:3:10",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "21535:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21540:6:10",
"type": ""
}
],
"src": "21497:154:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21706:258:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "21716:10:10",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "21725:1:10",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "21720:1:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "21785:63:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "21810:3:10"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "21815:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21806:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21806:11:10"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "21829:3:10"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "21834:1:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21825:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21825:11:10"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "21819:5:10"
},
"nodeType": "YulFunctionCall",
"src": "21819:18:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21799:6:10"
},
"nodeType": "YulFunctionCall",
"src": "21799:39:10"
},
"nodeType": "YulExpressionStatement",
"src": "21799:39:10"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "21746:1:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21749:6:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "21743:2:10"
},
"nodeType": "YulFunctionCall",
"src": "21743:13:10"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "21757:19:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21759:15:10",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "21768:1:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21771:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21764:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21764:10:10"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "21759:1:10"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "21739:3:10",
"statements": []
},
"src": "21735:113:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21882:76:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "21932:3:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21937:6:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21928:3:10"
},
"nodeType": "YulFunctionCall",
"src": "21928:16:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21946:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21921:6:10"
},
"nodeType": "YulFunctionCall",
"src": "21921:27:10"
},
"nodeType": "YulExpressionStatement",
"src": "21921:27:10"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "21863:1:10"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "21866:6:10"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "21860:2:10"
},
"nodeType": "YulFunctionCall",
"src": "21860:13:10"
},
"nodeType": "YulIf",
"src": "21857:101:10"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "21688:3:10",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "21693:3:10",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "21698:6:10",
"type": ""
}
],
"src": "21657:307:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22021:269:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22031:22:10",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "22045:4:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22051:1:10",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "22041:3:10"
},
"nodeType": "YulFunctionCall",
"src": "22041:12:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22031:6:10"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "22062:38:10",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "22092:4:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22098:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "22088:3:10"
},
"nodeType": "YulFunctionCall",
"src": "22088:12:10"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "22066:18:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22139:51:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22153:27:10",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22167:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22175:4:10",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "22163:3:10"
},
"nodeType": "YulFunctionCall",
"src": "22163:17:10"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22153:6:10"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "22119:18:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "22112:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22112:26:10"
},
"nodeType": "YulIf",
"src": "22109:81:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22242:42:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "22256:16:10"
},
"nodeType": "YulFunctionCall",
"src": "22256:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "22256:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "22206:18:10"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "22229:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22237:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "22226:2:10"
},
"nodeType": "YulFunctionCall",
"src": "22226:14:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "22203:2:10"
},
"nodeType": "YulFunctionCall",
"src": "22203:38:10"
},
"nodeType": "YulIf",
"src": "22200:84:10"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "22005:4:10",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "22014:6:10",
"type": ""
}
],
"src": "21970:320:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22339:238:10",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "22349:58:10",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22371:6:10"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "22401:4:10"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "22379:21:10"
},
"nodeType": "YulFunctionCall",
"src": "22379:27:10"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22367:3:10"
},
"nodeType": "YulFunctionCall",
"src": "22367:40:10"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "22353:10:10",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22518:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "22520:16:10"
},
"nodeType": "YulFunctionCall",
"src": "22520:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "22520:18:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "22461:10:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22473:18:10",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "22458:2:10"
},
"nodeType": "YulFunctionCall",
"src": "22458:34:10"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "22497:10:10"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22509:6:10"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "22494:2:10"
},
"nodeType": "YulFunctionCall",
"src": "22494:22:10"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "22455:2:10"
},
"nodeType": "YulFunctionCall",
"src": "22455:62:10"
},
"nodeType": "YulIf",
"src": "22452:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22556:2:10",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "22560:10:10"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22549:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22549:22:10"
},
"nodeType": "YulExpressionStatement",
"src": "22549:22:10"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "22325:6:10",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "22333:4:10",
"type": ""
}
],
"src": "22296:281:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22626:190:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22636:33:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22663:5:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22645:17:10"
},
"nodeType": "YulFunctionCall",
"src": "22645:24:10"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22636:5:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22759:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "22761:16:10"
},
"nodeType": "YulFunctionCall",
"src": "22761:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "22761:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22684:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22691:66:10",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "22681:2:10"
},
"nodeType": "YulFunctionCall",
"src": "22681:77:10"
},
"nodeType": "YulIf",
"src": "22678:103:10"
},
{
"nodeType": "YulAssignment",
"src": "22790:20:10",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "22801:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22808:1:10",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22797:3:10"
},
"nodeType": "YulFunctionCall",
"src": "22797:13:10"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "22790:3:10"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "22612:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "22622:3:10",
"type": ""
}
],
"src": "22583:233:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22856:142:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22866:25:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22889:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22871:17:10"
},
"nodeType": "YulFunctionCall",
"src": "22871:20:10"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22866:1:10"
}
]
},
{
"nodeType": "YulAssignment",
"src": "22900:25:10",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22923:1:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "22905:17:10"
},
"nodeType": "YulFunctionCall",
"src": "22905:20:10"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22900:1:10"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "22947:22:10",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "22949:16:10"
},
"nodeType": "YulFunctionCall",
"src": "22949:18:10"
},
"nodeType": "YulExpressionStatement",
"src": "22949:18:10"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22944:1:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "22937:6:10"
},
"nodeType": "YulFunctionCall",
"src": "22937:9:10"
},
"nodeType": "YulIf",
"src": "22934:35:10"
},
{
"nodeType": "YulAssignment",
"src": "22978:14:10",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "22987:1:10"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "22990:1:10"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "22983:3:10"
},
"nodeType": "YulFunctionCall",
"src": "22983:9:10"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "22978:1:10"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "22845:1:10",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "22848:1:10",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "22854:1:10",
"type": ""
}
],
"src": "22822:176:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23032:152:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23049:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23052:77:10",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23042:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23042:88:10"
},
"nodeType": "YulExpressionStatement",
"src": "23042:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23146:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23149:4:10",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23139:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23139:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "23139:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23170:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23173:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "23163:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23163:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "23163:15:10"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "23004:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23218:152:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23235:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23238:77:10",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23228:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23228:88:10"
},
"nodeType": "YulExpressionStatement",
"src": "23228:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23332:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23335:4:10",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23325:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23325:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "23325:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23356:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23359:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "23349:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23349:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "23349:15:10"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "23190:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23404:152:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23421:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23424:77:10",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23414:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23414:88:10"
},
"nodeType": "YulExpressionStatement",
"src": "23414:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23518:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23521:4:10",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23511:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23511:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "23511:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23542:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23545:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "23535:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23535:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "23535:15:10"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "23376:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23590:152:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23607:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23610:77:10",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23600:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23600:88:10"
},
"nodeType": "YulExpressionStatement",
"src": "23600:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23704:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23707:4:10",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23697:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23697:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "23697:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23728:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23731:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "23721:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23721:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "23721:15:10"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "23562:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23776:152:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23793:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23796:77:10",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23786:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23786:88:10"
},
"nodeType": "YulExpressionStatement",
"src": "23786:88:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23890:1:10",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23893:4:10",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23883:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23883:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "23883:15:10"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23914:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23917:4:10",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "23907:6:10"
},
"nodeType": "YulFunctionCall",
"src": "23907:15:10"
},
"nodeType": "YulExpressionStatement",
"src": "23907:15:10"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "23748:180:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24023:28:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24040:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24043:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24033:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24033:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "24033:12:10"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "23934:117:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24146:28:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24163:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24166:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24156:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24156:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "24156:12:10"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "24057:117:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24269:28:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24286:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24289:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24279:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24279:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "24279:12:10"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "24180:117:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24392:28:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24409:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24412:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "24402:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24402:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "24402:12:10"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "24303:117:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24474:54:10",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24484:38:10",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "24502:5:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24509:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24498:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24498:14:10"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24518:2:10",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "24514:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24514:7:10"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "24494:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24494:28:10"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "24484:6:10"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "24457:5:10",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "24467:6:10",
"type": ""
}
],
"src": "24426:102:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24640:131:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24662:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24670:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24658:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24658:14:10"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "24674:34:10",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24651:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24651:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "24651:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24730:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24738:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24726:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24726:15:10"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "24743:20:10",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24719:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24719:45:10"
},
"nodeType": "YulExpressionStatement",
"src": "24719:45:10"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24632:6:10",
"type": ""
}
],
"src": "24534:237:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24883:118:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24905:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24913:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24901:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24901:14:10"
},
{
"hexValue": "4552433732313a207472616e736665722066726f6d20696e636f727265637420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "24917:34:10",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24894:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24894:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "24894:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24973:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24981:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24969:3:10"
},
"nodeType": "YulFunctionCall",
"src": "24969:15:10"
},
{
"hexValue": "6f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "24986:7:10",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24962:6:10"
},
"nodeType": "YulFunctionCall",
"src": "24962:32:10"
},
"nodeType": "YulExpressionStatement",
"src": "24962:32:10"
}
]
},
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24875:6:10",
"type": ""
}
],
"src": "24777:224:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25113:117:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25135:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25143:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25131:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25131:14:10"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25147:34:10",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25124:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25124:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "25124:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25203:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25211:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25199:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25199:15:10"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25216:6:10",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25192:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25192:31:10"
},
"nodeType": "YulExpressionStatement",
"src": "25192:31:10"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25105:6:10",
"type": ""
}
],
"src": "25007:223:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25342:69:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25364:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25372:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25360:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25360:14:10"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25376:27:10",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25353:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25353:51:10"
},
"nodeType": "YulExpressionStatement",
"src": "25353:51:10"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25334:6:10",
"type": ""
}
],
"src": "25236:175:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25523:125:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25545:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25553:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25541:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25541:14:10"
},
{
"hexValue": "4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25557:34:10",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25534:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25534:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "25534:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25613:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25621:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25609:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25609:15:10"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25626:14:10",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25602:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25602:39:10"
},
"nodeType": "YulExpressionStatement",
"src": "25602:39:10"
}
]
},
"name": "store_literal_in_memory_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25515:6:10",
"type": ""
}
],
"src": "25417:231:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25760:137:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25782:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25790:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25778:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25778:14:10"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f74206f77",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25794:34:10",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25771:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25771:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "25771:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25850:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25858:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25846:3:10"
},
"nodeType": "YulFunctionCall",
"src": "25846:15:10"
},
{
"hexValue": "6e6572206e6f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25863:26:10",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25839:6:10"
},
"nodeType": "YulFunctionCall",
"src": "25839:51:10"
},
"nodeType": "YulExpressionStatement",
"src": "25839:51:10"
}
]
},
"name": "store_literal_in_memory_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25752:6:10",
"type": ""
}
],
"src": "25654:243:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26009:123:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26031:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26039:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26027:3:10"
},
"nodeType": "YulFunctionCall",
"src": "26027:14:10"
},
{
"hexValue": "4552433732313a2062616c616e636520717565727920666f7220746865207a65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26043:34:10",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26020:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26020:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "26020:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26099:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26107:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26095:3:10"
},
"nodeType": "YulFunctionCall",
"src": "26095:15:10"
},
{
"hexValue": "726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26112:12:10",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26088:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26088:37:10"
},
"nodeType": "YulExpressionStatement",
"src": "26088:37:10"
}
]
},
"name": "store_literal_in_memory_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26001:6:10",
"type": ""
}
],
"src": "25903:229:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26244:122:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26266:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26274:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26262:3:10"
},
"nodeType": "YulFunctionCall",
"src": "26262:14:10"
},
{
"hexValue": "4552433732313a206f776e657220717565727920666f72206e6f6e6578697374",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26278:34:10",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26255:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26255:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "26255:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26334:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26342:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26330:3:10"
},
"nodeType": "YulFunctionCall",
"src": "26330:15:10"
},
{
"hexValue": "656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26347:11:10",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26323:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26323:36:10"
},
"nodeType": "YulExpressionStatement",
"src": "26323:36:10"
}
]
},
"name": "store_literal_in_memory_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26236:6:10",
"type": ""
}
],
"src": "26138:228:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26478:125:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26500:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26508:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26496:3:10"
},
"nodeType": "YulFunctionCall",
"src": "26496:14:10"
},
{
"hexValue": "4552433732313a20617070726f76656420717565727920666f72206e6f6e6578",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26512:34:10",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26489:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26489:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "26489:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26568:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26576:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26564:3:10"
},
"nodeType": "YulFunctionCall",
"src": "26564:15:10"
},
{
"hexValue": "697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26581:14:10",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26557:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26557:39:10"
},
"nodeType": "YulExpressionStatement",
"src": "26557:39:10"
}
]
},
"name": "store_literal_in_memory_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26470:6:10",
"type": ""
}
],
"src": "26372:231:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26715:128:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26737:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26745:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26733:3:10"
},
"nodeType": "YulFunctionCall",
"src": "26733:14:10"
},
{
"hexValue": "4552433732314d657461646174613a2055524920717565727920666f72206e6f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26749:34:10",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26726:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26726:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "26726:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26805:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26813:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26801:3:10"
},
"nodeType": "YulFunctionCall",
"src": "26801:15:10"
},
{
"hexValue": "6e6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26818:17:10",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26794:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26794:42:10"
},
"nodeType": "YulExpressionStatement",
"src": "26794:42:10"
}
]
},
"name": "store_literal_in_memory_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26707:6:10",
"type": ""
}
],
"src": "26609:234:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26955:114:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "26977:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26985:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26973:3:10"
},
"nodeType": "YulFunctionCall",
"src": "26973:14:10"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "26989:34:10",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "26966:6:10"
},
"nodeType": "YulFunctionCall",
"src": "26966:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "26966:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27045:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27053:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27041:3:10"
},
"nodeType": "YulFunctionCall",
"src": "27041:15:10"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27058:3:10",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27034:6:10"
},
"nodeType": "YulFunctionCall",
"src": "27034:28:10"
},
"nodeType": "YulExpressionStatement",
"src": "27034:28:10"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "26947:6:10",
"type": ""
}
],
"src": "26849:220:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27181:130:10",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27203:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27211:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27199:3:10"
},
"nodeType": "YulFunctionCall",
"src": "27199:14:10"
},
{
"hexValue": "4552433732313a207472616e736665722063616c6c6572206973206e6f74206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27215:34:10",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27192:6:10"
},
"nodeType": "YulFunctionCall",
"src": "27192:58:10"
},
"nodeType": "YulExpressionStatement",
"src": "27192:58:10"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27271:6:10"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27279:2:10",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27267:3:10"
},
"nodeType": "YulFunctionCall",
"src": "27267:15:10"
},
{
"hexValue": "776e6572206e6f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27284:19:10",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27260:6:10"
},
"nodeType": "YulFunctionCall",
"src": "27260:44:10"
},
"nodeType": "YulExpressionStatement",
"src": "27260:44:10"
}
]
},
"name": "store_literal_in_memory_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27173:6:10",
"type": ""
}
],
"src": "27075:236:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27360:79:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "27417:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27426:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27429:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27419:6:10"
},
"nodeType": "YulFunctionCall",
"src": "27419:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "27419:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27383:5:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27408:5:10"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "27390:17:10"
},
"nodeType": "YulFunctionCall",
"src": "27390:24:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "27380:2:10"
},
"nodeType": "YulFunctionCall",
"src": "27380:35:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27373:6:10"
},
"nodeType": "YulFunctionCall",
"src": "27373:43:10"
},
"nodeType": "YulIf",
"src": "27370:63:10"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27353:5:10",
"type": ""
}
],
"src": "27317:122:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27485:76:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "27539:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27548:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27551:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27541:6:10"
},
"nodeType": "YulFunctionCall",
"src": "27541:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "27541:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27508:5:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27530:5:10"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "27515:14:10"
},
"nodeType": "YulFunctionCall",
"src": "27515:21:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "27505:2:10"
},
"nodeType": "YulFunctionCall",
"src": "27505:32:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27498:6:10"
},
"nodeType": "YulFunctionCall",
"src": "27498:40:10"
},
"nodeType": "YulIf",
"src": "27495:60:10"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27478:5:10",
"type": ""
}
],
"src": "27445:116:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27609:78:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "27665:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27674:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27677:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27667:6:10"
},
"nodeType": "YulFunctionCall",
"src": "27667:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "27667:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27632:5:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27656:5:10"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "27639:16:10"
},
"nodeType": "YulFunctionCall",
"src": "27639:23:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "27629:2:10"
},
"nodeType": "YulFunctionCall",
"src": "27629:34:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27622:6:10"
},
"nodeType": "YulFunctionCall",
"src": "27622:42:10"
},
"nodeType": "YulIf",
"src": "27619:62:10"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27602:5:10",
"type": ""
}
],
"src": "27567:120:10"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27736:79:10",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "27793:16:10",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27802:1:10",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27805:1:10",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "27795:6:10"
},
"nodeType": "YulFunctionCall",
"src": "27795:12:10"
},
"nodeType": "YulExpressionStatement",
"src": "27795:12:10"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27759:5:10"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "27784:5:10"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "27766:17:10"
},
"nodeType": "YulFunctionCall",
"src": "27766:24:10"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "27756:2:10"
},
"nodeType": "YulFunctionCall",
"src": "27756:35:10"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "27749:6:10"
},
"nodeType": "YulFunctionCall",
"src": "27749:43:10"
},
"nodeType": "YulIf",
"src": "27746:63:10"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "27729:5:10",
"type": ""
}
],
"src": "27693:122:10"
}
]
},
"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_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 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_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_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_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_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_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_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_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := 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_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 10,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb46514610224578063b88d4fde14610240578063c87b56dd1461025c578063e985e9c51461028c576100cf565b80636352211e146101a657806370a08231146101d657806395d89b4114610206576100cf565b806301ffc9a7146100d457806306fdde0314610104578063081812fc14610122578063095ea7b31461015257806323b872dd1461016e57806342842e0e1461018a575b600080fd5b6100ee60048036038101906100e99190611679565b6102bc565b6040516100fb91906119ff565b60405180910390f35b61010c61039e565b6040516101199190611a1a565b60405180910390f35b61013c600480360381019061013791906116d3565b610430565b6040516101499190611998565b60405180910390f35b61016c60048036038101906101679190611639565b6104b5565b005b61018860048036038101906101839190611523565b6105cd565b005b6101a4600480360381019061019f9190611523565b61062d565b005b6101c060048036038101906101bb91906116d3565b61064d565b6040516101cd9190611998565b60405180910390f35b6101f060048036038101906101eb91906114b6565b6106ff565b6040516101fd9190611bbc565b60405180910390f35b61020e6107b7565b60405161021b9190611a1a565b60405180910390f35b61023e600480360381019061023991906115f9565b610849565b005b61025a60048036038101906102559190611576565b61085f565b005b610276600480360381019061027191906116d3565b6108c1565b6040516102839190611a1a565b60405180910390f35b6102a660048036038101906102a191906114e3565b610968565b6040516102b391906119ff565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061038757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610397575061039682610a1f565b5b9050919050565b6060600080546103ad90611de1565b80601f01602080910402602001604051908101604052809291908181526020018280546103d990611de1565b80156104265780601f106103fb57610100808354040283529160200191610426565b820191906000526020600020905b81548152906001019060200180831161040957829003601f168201915b5050505050905090565b600061043b82610a89565b61047a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047190611b3c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104c08261064d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610531576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052890611b7c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610550610af5565b73ffffffffffffffffffffffffffffffffffffffff16148061057f575061057e81610579610af5565b610968565b5b6105be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b590611adc565b60405180910390fd5b6105c88383610afd565b505050565b6105de6105d8610af5565b82610bb6565b61061d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061490611b9c565b60405180910390fd5b610628838383610c94565b505050565b6106488383836040518060200160405280600081525061085f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156106f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ed90611b1c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610770576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076790611afc565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600180546107c690611de1565b80601f01602080910402602001604051908101604052809291908181526020018280546107f290611de1565b801561083f5780601f106108145761010080835404028352916020019161083f565b820191906000526020600020905b81548152906001019060200180831161082257829003601f168201915b5050505050905090565b61085b610854610af5565b8383610efb565b5050565b61087061086a610af5565b83610bb6565b6108af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a690611b9c565b60405180910390fd5b6108bb84848484611068565b50505050565b60606108cc82610a89565b61090b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090290611b5c565b60405180910390fd5b60006109156110c4565b905060008151116109355760405180602001604052806000815250610960565b8061093f846110db565b604051602001610950929190611974565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610b708361064d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610bc182610a89565b610c00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf790611abc565b60405180910390fd5b6000610c0b8361064d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610c4d5750610c4c8185610968565b5b80610c8b57508373ffffffffffffffffffffffffffffffffffffffff16610c7384610430565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610cb48261064d565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190611a5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7190611a7c565b60405180910390fd5b610d8583838361123c565b610d90600082610afd565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610de09190611cf7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610e379190611c70565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ef6838383611241565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6190611a9c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161105b91906119ff565b60405180910390a3505050565b611073848484610c94565b61107f84848484611246565b6110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b590611a3c565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606000821415611123576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611237565b600082905060005b6000821461115557808061113e90611e44565b915050600a8261114e9190611cc6565b915061112b565b60008167ffffffffffffffff81111561117157611170611f7a565b5b6040519080825280601f01601f1916602001820160405280156111a35781602001600182028036833780820191505090505b5090505b60008514611230576001826111bc9190611cf7565b9150600a856111cb9190611e8d565b60306111d79190611c70565b60f81b8183815181106111ed576111ec611f4b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856112299190611cc6565b94506111a7565b8093505050505b919050565b505050565b505050565b60006112678473ffffffffffffffffffffffffffffffffffffffff166109fc565b156113d0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611290610af5565b8786866040518563ffffffff1660e01b81526004016112b294939291906119b3565b602060405180830381600087803b1580156112cc57600080fd5b505af19250505080156112fd57506040513d601f19601f820116820180604052508101906112fa91906116a6565b60015b611380573d806000811461132d576040519150601f19603f3d011682016040523d82523d6000602084013e611332565b606091505b50600081511415611378576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136f90611a3c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506113d5565b600190505b949350505050565b60006113f06113eb84611bfc565b611bd7565b90508281526020810184848401111561140c5761140b611fae565b5b611417848285611d9f565b509392505050565b60008135905061142e8161235c565b92915050565b60008135905061144381612373565b92915050565b6000813590506114588161238a565b92915050565b60008151905061146d8161238a565b92915050565b600082601f83011261148857611487611fa9565b5b81356114988482602086016113dd565b91505092915050565b6000813590506114b0816123a1565b92915050565b6000602082840312156114cc576114cb611fb8565b5b60006114da8482850161141f565b91505092915050565b600080604083850312156114fa576114f9611fb8565b5b60006115088582860161141f565b92505060206115198582860161141f565b9150509250929050565b60008060006060848603121561153c5761153b611fb8565b5b600061154a8682870161141f565b935050602061155b8682870161141f565b925050604061156c868287016114a1565b9150509250925092565b600080600080608085870312156115905761158f611fb8565b5b600061159e8782880161141f565b94505060206115af8782880161141f565b93505060406115c0878288016114a1565b925050606085013567ffffffffffffffff8111156115e1576115e0611fb3565b5b6115ed87828801611473565b91505092959194509250565b600080604083850312156116105761160f611fb8565b5b600061161e8582860161141f565b925050602061162f85828601611434565b9150509250929050565b600080604083850312156116505761164f611fb8565b5b600061165e8582860161141f565b925050602061166f858286016114a1565b9150509250929050565b60006020828403121561168f5761168e611fb8565b5b600061169d84828501611449565b91505092915050565b6000602082840312156116bc576116bb611fb8565b5b60006116ca8482850161145e565b91505092915050565b6000602082840312156116e9576116e8611fb8565b5b60006116f7848285016114a1565b91505092915050565b61170981611d2b565b82525050565b61171881611d3d565b82525050565b600061172982611c2d565b6117338185611c43565b9350611743818560208601611dae565b61174c81611fbd565b840191505092915050565b600061176282611c38565b61176c8185611c54565b935061177c818560208601611dae565b61178581611fbd565b840191505092915050565b600061179b82611c38565b6117a58185611c65565b93506117b5818560208601611dae565b80840191505092915050565b60006117ce603283611c54565b91506117d982611fce565b604082019050919050565b60006117f1602583611c54565b91506117fc8261201d565b604082019050919050565b6000611814602483611c54565b915061181f8261206c565b604082019050919050565b6000611837601983611c54565b9150611842826120bb565b602082019050919050565b600061185a602c83611c54565b9150611865826120e4565b604082019050919050565b600061187d603883611c54565b915061188882612133565b604082019050919050565b60006118a0602a83611c54565b91506118ab82612182565b604082019050919050565b60006118c3602983611c54565b91506118ce826121d1565b604082019050919050565b60006118e6602c83611c54565b91506118f182612220565b604082019050919050565b6000611909602f83611c54565b91506119148261226f565b604082019050919050565b600061192c602183611c54565b9150611937826122be565b604082019050919050565b600061194f603183611c54565b915061195a8261230d565b604082019050919050565b61196e81611d95565b82525050565b60006119808285611790565b915061198c8284611790565b91508190509392505050565b60006020820190506119ad6000830184611700565b92915050565b60006080820190506119c86000830187611700565b6119d56020830186611700565b6119e26040830185611965565b81810360608301526119f4818461171e565b905095945050505050565b6000602082019050611a14600083018461170f565b92915050565b60006020820190508181036000830152611a348184611757565b905092915050565b60006020820190508181036000830152611a55816117c1565b9050919050565b60006020820190508181036000830152611a75816117e4565b9050919050565b60006020820190508181036000830152611a9581611807565b9050919050565b60006020820190508181036000830152611ab58161182a565b9050919050565b60006020820190508181036000830152611ad58161184d565b9050919050565b60006020820190508181036000830152611af581611870565b9050919050565b60006020820190508181036000830152611b1581611893565b9050919050565b60006020820190508181036000830152611b35816118b6565b9050919050565b60006020820190508181036000830152611b55816118d9565b9050919050565b60006020820190508181036000830152611b75816118fc565b9050919050565b60006020820190508181036000830152611b958161191f565b9050919050565b60006020820190508181036000830152611bb581611942565b9050919050565b6000602082019050611bd16000830184611965565b92915050565b6000611be1611bf2565b9050611bed8282611e13565b919050565b6000604051905090565b600067ffffffffffffffff821115611c1757611c16611f7a565b5b611c2082611fbd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000611c7b82611d95565b9150611c8683611d95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611cbb57611cba611ebe565b5b828201905092915050565b6000611cd182611d95565b9150611cdc83611d95565b925082611cec57611ceb611eed565b5b828204905092915050565b6000611d0282611d95565b9150611d0d83611d95565b925082821015611d2057611d1f611ebe565b5b828203905092915050565b6000611d3682611d75565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015611dcc578082015181840152602081019050611db1565b83811115611ddb576000848401525b50505050565b60006002820490506001821680611df957607f821691505b60208210811415611e0d57611e0c611f1c565b5b50919050565b611e1c82611fbd565b810181811067ffffffffffffffff82111715611e3b57611e3a611f7a565b5b80604052505050565b6000611e4f82611d95565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611e8257611e81611ebe565b5b600182019050919050565b6000611e9882611d95565b9150611ea383611d95565b925082611eb357611eb2611eed565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61236581611d2b565b811461237057600080fd5b50565b61237c81611d3d565b811461238757600080fd5b50565b61239381611d49565b811461239e57600080fd5b50565b6123aa81611d95565b81146123b557600080fd5b5056fea264697066735822122000a0435c99901ac6e6de30ac6cfcbc1d13d71158154710d00459e97e4717e25c64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x224 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x240 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x25C JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x28C JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x1A6 JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1D6 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x206 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x104 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x122 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x152 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x16E JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x18A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xEE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE9 SWAP2 SWAP1 PUSH2 0x1679 JUMP JUMPDEST PUSH2 0x2BC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xFB SWAP2 SWAP1 PUSH2 0x19FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x10C PUSH2 0x39E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x119 SWAP2 SWAP1 PUSH2 0x1A1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x13C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x16D3 JUMP JUMPDEST PUSH2 0x430 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x149 SWAP2 SWAP1 PUSH2 0x1998 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x16C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x167 SWAP2 SWAP1 PUSH2 0x1639 JUMP JUMPDEST PUSH2 0x4B5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x188 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x183 SWAP2 SWAP1 PUSH2 0x1523 JUMP JUMPDEST PUSH2 0x5CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1A4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x19F SWAP2 SWAP1 PUSH2 0x1523 JUMP JUMPDEST PUSH2 0x62D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BB SWAP2 SWAP1 PUSH2 0x16D3 JUMP JUMPDEST PUSH2 0x64D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1CD SWAP2 SWAP1 PUSH2 0x1998 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0x14B6 JUMP JUMPDEST PUSH2 0x6FF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1FD SWAP2 SWAP1 PUSH2 0x1BBC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x20E PUSH2 0x7B7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x21B SWAP2 SWAP1 PUSH2 0x1A1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x23E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x15F9 JUMP JUMPDEST PUSH2 0x849 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x25A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x255 SWAP2 SWAP1 PUSH2 0x1576 JUMP JUMPDEST PUSH2 0x85F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x276 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x271 SWAP2 SWAP1 PUSH2 0x16D3 JUMP JUMPDEST PUSH2 0x8C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x283 SWAP2 SWAP1 PUSH2 0x1A1A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A6 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A1 SWAP2 SWAP1 PUSH2 0x14E3 JUMP JUMPDEST PUSH2 0x968 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2B3 SWAP2 SWAP1 PUSH2 0x19FF 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 PUSH2 0x387 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x397 JUMPI POP PUSH2 0x396 DUP3 PUSH2 0xA1F JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x3AD SWAP1 PUSH2 0x1DE1 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 0x3D9 SWAP1 PUSH2 0x1DE1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x426 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3FB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x426 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 0x409 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43B DUP3 PUSH2 0xA89 JUMP JUMPDEST PUSH2 0x47A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x471 SWAP1 PUSH2 0x1B3C 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 PUSH2 0x4C0 DUP3 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x531 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x528 SWAP1 PUSH2 0x1B7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x550 PUSH2 0xAF5 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x57F JUMPI POP PUSH2 0x57E DUP2 PUSH2 0x579 PUSH2 0xAF5 JUMP JUMPDEST PUSH2 0x968 JUMP JUMPDEST JUMPDEST PUSH2 0x5BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5B5 SWAP1 PUSH2 0x1ADC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5C8 DUP4 DUP4 PUSH2 0xAFD JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x5DE PUSH2 0x5D8 PUSH2 0xAF5 JUMP JUMPDEST DUP3 PUSH2 0xBB6 JUMP JUMPDEST PUSH2 0x61D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x614 SWAP1 PUSH2 0x1B9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x628 DUP4 DUP4 DUP4 PUSH2 0xC94 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x648 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x85F 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 PUSH2 0x6F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6ED SWAP1 PUSH2 0x1B1C 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 PUSH2 0x770 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x767 SWAP1 PUSH2 0x1AFC 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 PUSH2 0x7C6 SWAP1 PUSH2 0x1DE1 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 0x7F2 SWAP1 PUSH2 0x1DE1 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x83F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x814 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x83F 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 0x822 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x85B PUSH2 0x854 PUSH2 0xAF5 JUMP JUMPDEST DUP4 DUP4 PUSH2 0xEFB JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x870 PUSH2 0x86A PUSH2 0xAF5 JUMP JUMPDEST DUP4 PUSH2 0xBB6 JUMP JUMPDEST PUSH2 0x8AF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8A6 SWAP1 PUSH2 0x1B9C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8BB DUP5 DUP5 DUP5 DUP5 PUSH2 0x1068 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x8CC DUP3 PUSH2 0xA89 JUMP JUMPDEST PUSH2 0x90B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x902 SWAP1 PUSH2 0x1B5C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x915 PUSH2 0x10C4 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x935 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x960 JUMP JUMPDEST DUP1 PUSH2 0x93F DUP5 PUSH2 0x10DB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x950 SWAP3 SWAP2 SWAP1 PUSH2 0x1974 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 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 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 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 PUSH2 0xB70 DUP4 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBC1 DUP3 PUSH2 0xA89 JUMP JUMPDEST PUSH2 0xC00 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBF7 SWAP1 PUSH2 0x1ABC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xC0B DUP4 PUSH2 0x64D JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xC4D JUMPI POP PUSH2 0xC4C DUP2 DUP6 PUSH2 0x968 JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xC8B JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xC73 DUP5 PUSH2 0x430 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCB4 DUP3 PUSH2 0x64D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD0A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD01 SWAP1 PUSH2 0x1A5C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xD7A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD71 SWAP1 PUSH2 0x1A7C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xD85 DUP4 DUP4 DUP4 PUSH2 0x123C JUMP JUMPDEST PUSH2 0xD90 PUSH1 0x0 DUP3 PUSH2 0xAFD 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 PUSH2 0xDE0 SWAP2 SWAP1 PUSH2 0x1CF7 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 PUSH2 0xE37 SWAP2 SWAP1 PUSH2 0x1C70 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 PUSH2 0xEF6 DUP4 DUP4 DUP4 PUSH2 0x1241 JUMP JUMPDEST POP POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF6A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF61 SWAP1 PUSH2 0x1A9C 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 PUSH2 0x105B SWAP2 SWAP1 PUSH2 0x19FF JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1073 DUP5 DUP5 DUP5 PUSH2 0xC94 JUMP JUMPDEST PUSH2 0x107F DUP5 DUP5 DUP5 DUP5 PUSH2 0x1246 JUMP JUMPDEST PUSH2 0x10BE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10B5 SWAP1 PUSH2 0x1A3C 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 PUSH2 0x1123 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 PUSH2 0x1237 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x1155 JUMPI DUP1 DUP1 PUSH2 0x113E SWAP1 PUSH2 0x1E44 JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x114E SWAP2 SWAP1 PUSH2 0x1CC6 JUMP JUMPDEST SWAP2 POP PUSH2 0x112B JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1171 JUMPI PUSH2 0x1170 PUSH2 0x1F7A 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 PUSH2 0x11A3 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 PUSH2 0x1230 JUMPI PUSH1 0x1 DUP3 PUSH2 0x11BC SWAP2 SWAP1 PUSH2 0x1CF7 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x11CB SWAP2 SWAP1 PUSH2 0x1E8D JUMP JUMPDEST PUSH1 0x30 PUSH2 0x11D7 SWAP2 SWAP1 PUSH2 0x1C70 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x11ED JUMPI PUSH2 0x11EC PUSH2 0x1F4B JUMP JUMPDEST JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x1229 SWAP2 SWAP1 PUSH2 0x1CC6 JUMP JUMPDEST SWAP5 POP PUSH2 0x11A7 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 PUSH2 0x1267 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x9FC JUMP JUMPDEST ISZERO PUSH2 0x13D0 JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x1290 PUSH2 0xAF5 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x12B2 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x19B3 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x12CC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x12FD JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x12FA SWAP2 SWAP1 PUSH2 0x16A6 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x1380 JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x132D JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1332 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x1378 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x136F SWAP1 PUSH2 0x1A3C 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 PUSH2 0x13D5 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13F0 PUSH2 0x13EB DUP5 PUSH2 0x1BFC JUMP JUMPDEST PUSH2 0x1BD7 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x140C JUMPI PUSH2 0x140B PUSH2 0x1FAE JUMP JUMPDEST JUMPDEST PUSH2 0x1417 DUP5 DUP3 DUP6 PUSH2 0x1D9F JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x142E DUP2 PUSH2 0x235C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1443 DUP2 PUSH2 0x2373 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1458 DUP2 PUSH2 0x238A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x146D DUP2 PUSH2 0x238A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1488 JUMPI PUSH2 0x1487 PUSH2 0x1FA9 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1498 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x13DD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x14B0 DUP2 PUSH2 0x23A1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x14CC JUMPI PUSH2 0x14CB PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x14DA DUP5 DUP3 DUP6 ADD PUSH2 0x141F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x14FA JUMPI PUSH2 0x14F9 PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1508 DUP6 DUP3 DUP7 ADD PUSH2 0x141F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1519 DUP6 DUP3 DUP7 ADD PUSH2 0x141F JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x153C JUMPI PUSH2 0x153B PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x154A DUP7 DUP3 DUP8 ADD PUSH2 0x141F JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x155B DUP7 DUP3 DUP8 ADD PUSH2 0x141F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x156C DUP7 DUP3 DUP8 ADD PUSH2 0x14A1 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 PUSH2 0x1590 JUMPI PUSH2 0x158F PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x159E DUP8 DUP3 DUP9 ADD PUSH2 0x141F JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x15AF DUP8 DUP3 DUP9 ADD PUSH2 0x141F JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x15C0 DUP8 DUP3 DUP9 ADD PUSH2 0x14A1 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x15E1 JUMPI PUSH2 0x15E0 PUSH2 0x1FB3 JUMP JUMPDEST JUMPDEST PUSH2 0x15ED DUP8 DUP3 DUP9 ADD PUSH2 0x1473 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1610 JUMPI PUSH2 0x160F PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x161E DUP6 DUP3 DUP7 ADD PUSH2 0x141F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x162F DUP6 DUP3 DUP7 ADD PUSH2 0x1434 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1650 JUMPI PUSH2 0x164F PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x165E DUP6 DUP3 DUP7 ADD PUSH2 0x141F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x166F DUP6 DUP3 DUP7 ADD PUSH2 0x14A1 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x168F JUMPI PUSH2 0x168E PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x169D DUP5 DUP3 DUP6 ADD PUSH2 0x1449 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16BC JUMPI PUSH2 0x16BB PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x16CA DUP5 DUP3 DUP6 ADD PUSH2 0x145E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x16E9 JUMPI PUSH2 0x16E8 PUSH2 0x1FB8 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x16F7 DUP5 DUP3 DUP6 ADD PUSH2 0x14A1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1709 DUP2 PUSH2 0x1D2B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x1718 DUP2 PUSH2 0x1D3D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1729 DUP3 PUSH2 0x1C2D JUMP JUMPDEST PUSH2 0x1733 DUP2 DUP6 PUSH2 0x1C43 JUMP JUMPDEST SWAP4 POP PUSH2 0x1743 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DAE JUMP JUMPDEST PUSH2 0x174C DUP2 PUSH2 0x1FBD JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1762 DUP3 PUSH2 0x1C38 JUMP JUMPDEST PUSH2 0x176C DUP2 DUP6 PUSH2 0x1C54 JUMP JUMPDEST SWAP4 POP PUSH2 0x177C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DAE JUMP JUMPDEST PUSH2 0x1785 DUP2 PUSH2 0x1FBD JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x179B DUP3 PUSH2 0x1C38 JUMP JUMPDEST PUSH2 0x17A5 DUP2 DUP6 PUSH2 0x1C65 JUMP JUMPDEST SWAP4 POP PUSH2 0x17B5 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1DAE JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17CE PUSH1 0x32 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x17D9 DUP3 PUSH2 0x1FCE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x17F1 PUSH1 0x25 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x17FC DUP3 PUSH2 0x201D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1814 PUSH1 0x24 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x181F DUP3 PUSH2 0x206C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1837 PUSH1 0x19 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x1842 DUP3 PUSH2 0x20BB JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x185A PUSH1 0x2C DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x1865 DUP3 PUSH2 0x20E4 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x187D PUSH1 0x38 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x1888 DUP3 PUSH2 0x2133 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18A0 PUSH1 0x2A DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x18AB DUP3 PUSH2 0x2182 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18C3 PUSH1 0x29 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x18CE DUP3 PUSH2 0x21D1 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x18E6 PUSH1 0x2C DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x18F1 DUP3 PUSH2 0x2220 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1909 PUSH1 0x2F DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x1914 DUP3 PUSH2 0x226F JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x192C PUSH1 0x21 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x1937 DUP3 PUSH2 0x22BE JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x194F PUSH1 0x31 DUP4 PUSH2 0x1C54 JUMP JUMPDEST SWAP2 POP PUSH2 0x195A DUP3 PUSH2 0x230D JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x196E DUP2 PUSH2 0x1D95 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1980 DUP3 DUP6 PUSH2 0x1790 JUMP JUMPDEST SWAP2 POP PUSH2 0x198C DUP3 DUP5 PUSH2 0x1790 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x19AD PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1700 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x19C8 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x1700 JUMP JUMPDEST PUSH2 0x19D5 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1700 JUMP JUMPDEST PUSH2 0x19E2 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1965 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x19F4 DUP2 DUP5 PUSH2 0x171E JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A14 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x170F 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 0x1A34 DUP2 DUP5 PUSH2 0x1757 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 PUSH2 0x1A55 DUP2 PUSH2 0x17C1 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 PUSH2 0x1A75 DUP2 PUSH2 0x17E4 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 PUSH2 0x1A95 DUP2 PUSH2 0x1807 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 PUSH2 0x1AB5 DUP2 PUSH2 0x182A 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 PUSH2 0x1AD5 DUP2 PUSH2 0x184D 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 PUSH2 0x1AF5 DUP2 PUSH2 0x1870 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 PUSH2 0x1B15 DUP2 PUSH2 0x1893 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 PUSH2 0x1B35 DUP2 PUSH2 0x18B6 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 PUSH2 0x1B55 DUP2 PUSH2 0x18D9 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 PUSH2 0x1B75 DUP2 PUSH2 0x18FC 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 PUSH2 0x1B95 DUP2 PUSH2 0x191F 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 PUSH2 0x1BB5 DUP2 PUSH2 0x1942 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1BD1 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1965 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1BE1 PUSH2 0x1BF2 JUMP JUMPDEST SWAP1 POP PUSH2 0x1BED DUP3 DUP3 PUSH2 0x1E13 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1C17 JUMPI PUSH2 0x1C16 PUSH2 0x1F7A JUMP JUMPDEST JUMPDEST PUSH2 0x1C20 DUP3 PUSH2 0x1FBD 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 PUSH2 0x1C7B DUP3 PUSH2 0x1D95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1C86 DUP4 PUSH2 0x1D95 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x1CBB JUMPI PUSH2 0x1CBA PUSH2 0x1EBE JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1CD1 DUP3 PUSH2 0x1D95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CDC DUP4 PUSH2 0x1D95 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1CEC JUMPI PUSH2 0x1CEB PUSH2 0x1EED JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D02 DUP3 PUSH2 0x1D95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D0D DUP4 PUSH2 0x1D95 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x1D20 JUMPI PUSH2 0x1D1F PUSH2 0x1EBE JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D36 DUP3 PUSH2 0x1D75 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 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 PUSH2 0x1DCC JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1DB1 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x1DDB 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 0x1DF9 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1E0D JUMPI PUSH2 0x1E0C PUSH2 0x1F1C JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1E1C DUP3 PUSH2 0x1FBD JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1E3B JUMPI PUSH2 0x1E3A PUSH2 0x1F7A JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E4F DUP3 PUSH2 0x1D95 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x1E82 JUMPI PUSH2 0x1E81 PUSH2 0x1EBE JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E98 DUP3 PUSH2 0x1D95 JUMP JUMPDEST SWAP2 POP PUSH2 0x1EA3 DUP4 PUSH2 0x1D95 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x1EB3 JUMPI PUSH2 0x1EB2 PUSH2 0x1EED 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 PUSH2 0x2365 DUP2 PUSH2 0x1D2B JUMP JUMPDEST DUP2 EQ PUSH2 0x2370 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x237C DUP2 PUSH2 0x1D3D JUMP JUMPDEST DUP2 EQ PUSH2 0x2387 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x2393 DUP2 PUSH2 0x1D49 JUMP JUMPDEST DUP2 EQ PUSH2 0x239E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x23AA DUP2 PUSH2 0x1D95 JUMP JUMPDEST DUP2 EQ PUSH2 0x23B5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 STOP LOG0 NUMBER 0x5C SWAP10 SWAP1 BYTE 0xC6 0xE6 0xDE ADDRESS 0xAC PUSH13 0xFCBC1D13D71158154710D00459 0xE9 PUSH31 0x4717E25C64736F6C6343000807003300000000000000000000000000000000 ",
"sourceMap": "116:113:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1570:300:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2488:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4000:217;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3538:401;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4727:330;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5123:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2191:235;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1929:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2650:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4284:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5368:320;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2818:329;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4503:162;;;;;;;;;;;;;:::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;4000:217::-;4076:7;4103:16;4111:7;4103;:16::i;:::-;4095:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4186:15;:24;4202:7;4186:24;;;;;;;;;;;;;;;;;;;;;4179:31;;4000:217;;;:::o;3538:401::-;3618:13;3634:23;3649:7;3634:14;:23::i;:::-;3618:39;;3681:5;3675:11;;:2;:11;;;;3667:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3772:5;3756:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3781:37;3798:5;3805:12;:10;:12::i;:::-;3781:16;:37::i;:::-;3756:62;3735:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3911:21;3920:2;3924:7;3911:8;:21::i;:::-;3608:331;3538:401;;:::o;4727:330::-;4916:41;4935:12;:10;:12::i;:::-;4949:7;4916:18;:41::i;:::-;4908:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5022:28;5032:4;5038:2;5042:7;5022:9;:28::i;:::-;4727:330;;;:::o;5123:179::-;5256:39;5273:4;5279:2;5283:7;5256:39;;;;;;;;;;;;:16;:39::i;:::-;5123: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;4284:153::-;4378:52;4397:12;:10;:12::i;:::-;4411:8;4421;4378:18;:52::i;:::-;4284:153;;:::o;5368:320::-;5537:41;5556:12;:10;:12::i;:::-;5570:7;5537:18;:41::i;:::-;5529:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5642:39;5656:4;5662:2;5666:7;5675:5;5642:13;:39::i;:::-;5368: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;4503:162::-;4600:4;4623:18;:25;4642:5;4623:25;;;;;;;;;;;;;;;:35;4649:8;4623:35;;;;;;;;;;;;;;;;;;;;;;;;;4616:42;;4503:162;;;;:::o;1175:320:4:-;1235:4;1487:1;1465:7;:19;;;:23;1458:30;;1175:320;;;:::o;829:155:7:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;7160:125:0:-;7225:4;7276:1;7248:30;;:7;:16;7256:7;7248:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7241:37;;7160:125;;;:::o;640:96:5:-;693:7;719:10;712:17;;640:96;:::o;11169:171:0:-;11270:2;11243:15;:24;11259:7;11243:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11325:7;11321:2;11287:46;;11296:23;11311:7;11296:14;:23::i;:::-;11287:46;;;;;;;;;;;;11169:171;;:::o;7443:344::-;7536:4;7560:16;7568:7;7560;:16::i;:::-;7552:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7635:13;7651:23;7666:7;7651:14;:23::i;:::-;7635:39;;7703:5;7692:16;;:7;:16;;;:52;;;;7712:32;7729:5;7736:7;7712:16;:32::i;:::-;7692:52;:87;;;;7772:7;7748:31;;:20;7760:7;7748:11;:20::i;:::-;:31;;;7692:87;7684:96;;;7443:344;;;;:::o;10453:605::-;10607:4;10580:31;;:23;10595:7;10580:14;:23::i;:::-;:31;;;10572:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;10685:1;10671:16;;:2;:16;;;;10663:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10739:39;10760:4;10766:2;10770:7;10739:20;:39::i;:::-;10840:29;10857:1;10861:7;10840:8;:29::i;:::-;10899:1;10880:9;:15;10890:4;10880:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10927:1;10910:9;:13;10920:2;10910:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10957:2;10938:7;:16;10946:7;10938:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10994:7;10990:2;10975:27;;10984:4;10975:27;;;;;;;;;;;;11013:38;11033:4;11039:2;11043:7;11013:19;:38::i;:::-;10453:605;;;:::o;11475:307::-;11625:8;11616:17;;:5;:17;;;;11608:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;11711:8;11673:18;:25;11692:5;11673:25;;;;;;;;;;;;;;;:35;11699:8;11673:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;11756:8;11734:41;;11749:5;11734:41;;;11766:8;11734:41;;;;;;:::i;:::-;;;;;;;;11475:307;;;:::o;6550:::-;6701:28;6711:4;6717:2;6721:7;6701:9;:28::i;:::-;6747:48;6770:4;6776:2;6780:7;6789:5;6747:22;:48::i;:::-;6739:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6550:307;;;;:::o;3389:92::-;3440:13;3465:9;;;;;;;;;;;;;;3389:92;:::o;328:703:6:-;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;13669:122:0:-;;;;:::o;14163:121::-;;;;:::o;12335:778::-;12485:4;12505:15;:2;:13;;;:15::i;:::-;12501:606;;;12556:2;12540:36;;;12577:12;:10;:12::i;:::-;12591:4;12597:7;12606:5;12540:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;12536:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12796:1;12779:6;:13;:18;12775:266;;;12821:60;;;;;;;;;;:::i;:::-;;;;;;;;12775:266;12993:6;12987:13;12978:6;12974:2;12970:15;12963:38;12536:519;12672:41;;;12662:51;;;:6;:51;;;;12655:58;;;;;12501:606;13092:4;13085:11;;12335:778;;;;;;;:::o;7:410:10:-;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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1354:139::-;1400:5;1438:6;1425:20;1416:29;;1454:33;1481:5;1454:33;:::i;:::-;1354:139;;;;:::o;1499:329::-;1558:6;1607:2;1595:9;1586:7;1582:23;1578:32;1575:119;;;1613:79;;:::i;:::-;1575:119;1733:1;1758:53;1803:7;1794:6;1783:9;1779:22;1758:53;:::i;:::-;1748:63;;1704:117;1499:329;;;;:::o;1834:474::-;1902:6;1910;1959:2;1947:9;1938:7;1934:23;1930:32;1927:119;;;1965:79;;:::i;:::-;1927:119;2085:1;2110:53;2155:7;2146:6;2135:9;2131:22;2110:53;:::i;:::-;2100:63;;2056:117;2212:2;2238:53;2283:7;2274:6;2263:9;2259:22;2238:53;:::i;:::-;2228:63;;2183:118;1834:474;;;;;:::o;2314:619::-;2391:6;2399;2407;2456:2;2444:9;2435:7;2431:23;2427:32;2424:119;;;2462:79;;:::i;:::-;2424:119;2582:1;2607:53;2652:7;2643:6;2632:9;2628:22;2607:53;:::i;:::-;2597:63;;2553:117;2709:2;2735:53;2780:7;2771:6;2760:9;2756:22;2735:53;:::i;:::-;2725:63;;2680:118;2837:2;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2808:118;2314:619;;;;;:::o;2939:943::-;3034:6;3042;3050;3058;3107:3;3095:9;3086:7;3082:23;3078:33;3075:120;;;3114:79;;:::i;:::-;3075:120;3234:1;3259:53;3304:7;3295:6;3284:9;3280:22;3259:53;:::i;:::-;3249:63;;3205:117;3361:2;3387:53;3432:7;3423:6;3412:9;3408:22;3387:53;:::i;:::-;3377:63;;3332:118;3489:2;3515:53;3560:7;3551:6;3540:9;3536:22;3515:53;:::i;:::-;3505:63;;3460:118;3645:2;3634:9;3630:18;3617:32;3676:18;3668:6;3665:30;3662:117;;;3698:79;;:::i;:::-;3662:117;3803:62;3857:7;3848:6;3837:9;3833:22;3803:62;:::i;:::-;3793:72;;3588:287;2939:943;;;;;;;:::o;3888:468::-;3953:6;3961;4010:2;3998:9;3989:7;3985:23;3981:32;3978:119;;;4016:79;;:::i;:::-;3978:119;4136:1;4161:53;4206:7;4197:6;4186:9;4182:22;4161:53;:::i;:::-;4151:63;;4107:117;4263:2;4289:50;4331:7;4322:6;4311:9;4307:22;4289:50;:::i;:::-;4279:60;;4234:115;3888:468;;;;;:::o;4362:474::-;4430:6;4438;4487:2;4475:9;4466:7;4462:23;4458:32;4455:119;;;4493:79;;:::i;:::-;4455:119;4613:1;4638:53;4683:7;4674:6;4663:9;4659:22;4638:53;:::i;:::-;4628:63;;4584:117;4740:2;4766:53;4811:7;4802:6;4791:9;4787:22;4766:53;:::i;:::-;4756:63;;4711:118;4362:474;;;;;:::o;4842:327::-;4900:6;4949:2;4937:9;4928:7;4924:23;4920:32;4917:119;;;4955:79;;:::i;:::-;4917:119;5075:1;5100:52;5144:7;5135:6;5124:9;5120:22;5100:52;:::i;:::-;5090:62;;5046:116;4842:327;;;;:::o;5175:349::-;5244:6;5293:2;5281:9;5272:7;5268:23;5264:32;5261:119;;;5299:79;;:::i;:::-;5261:119;5419:1;5444:63;5499:7;5490:6;5479:9;5475:22;5444:63;:::i;:::-;5434:73;;5390:127;5175:349;;;;:::o;5530:329::-;5589:6;5638:2;5626:9;5617:7;5613:23;5609:32;5606:119;;;5644:79;;:::i;:::-;5606:119;5764:1;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5735:117;5530:329;;;;:::o;5865:118::-;5952:24;5970:5;5952:24;:::i;:::-;5947:3;5940:37;5865:118;;:::o;5989:109::-;6070:21;6085:5;6070:21;:::i;:::-;6065:3;6058:34;5989:109;;:::o;6104:360::-;6190:3;6218:38;6250:5;6218:38;:::i;:::-;6272:70;6335:6;6330:3;6272:70;:::i;:::-;6265:77;;6351:52;6396:6;6391:3;6384:4;6377:5;6373:16;6351:52;:::i;:::-;6428:29;6450:6;6428:29;:::i;:::-;6423:3;6419:39;6412:46;;6194:270;6104:360;;;;:::o;6470:364::-;6558:3;6586:39;6619:5;6586:39;:::i;:::-;6641:71;6705:6;6700:3;6641:71;:::i;:::-;6634:78;;6721:52;6766:6;6761:3;6754:4;6747:5;6743:16;6721:52;:::i;:::-;6798:29;6820:6;6798:29;:::i;:::-;6793:3;6789:39;6782:46;;6562:272;6470:364;;;;:::o;6840:377::-;6946:3;6974:39;7007:5;6974:39;:::i;:::-;7029:89;7111:6;7106:3;7029:89;:::i;:::-;7022:96;;7127:52;7172:6;7167:3;7160:4;7153:5;7149:16;7127:52;:::i;:::-;7204:6;7199:3;7195:16;7188:23;;6950:267;6840:377;;;;:::o;7223:366::-;7365:3;7386:67;7450:2;7445:3;7386:67;:::i;:::-;7379:74;;7462:93;7551:3;7462:93;:::i;:::-;7580:2;7575:3;7571:12;7564:19;;7223:366;;;:::o;7595:::-;7737:3;7758:67;7822:2;7817:3;7758:67;:::i;:::-;7751:74;;7834:93;7923:3;7834:93;:::i;:::-;7952:2;7947:3;7943:12;7936:19;;7595:366;;;:::o;7967:::-;8109:3;8130:67;8194:2;8189:3;8130:67;:::i;:::-;8123:74;;8206:93;8295:3;8206:93;:::i;:::-;8324:2;8319:3;8315:12;8308:19;;7967:366;;;:::o;8339:::-;8481:3;8502:67;8566:2;8561:3;8502:67;:::i;:::-;8495:74;;8578:93;8667:3;8578:93;:::i;:::-;8696:2;8691:3;8687:12;8680:19;;8339:366;;;:::o;8711:::-;8853:3;8874:67;8938:2;8933:3;8874:67;:::i;:::-;8867:74;;8950:93;9039:3;8950:93;:::i;:::-;9068:2;9063:3;9059:12;9052:19;;8711:366;;;:::o;9083:::-;9225:3;9246:67;9310:2;9305:3;9246:67;:::i;:::-;9239:74;;9322:93;9411:3;9322:93;:::i;:::-;9440:2;9435:3;9431:12;9424:19;;9083:366;;;:::o;9455:::-;9597:3;9618:67;9682:2;9677:3;9618:67;:::i;:::-;9611:74;;9694:93;9783:3;9694:93;:::i;:::-;9812:2;9807:3;9803:12;9796:19;;9455:366;;;:::o;9827:::-;9969:3;9990:67;10054:2;10049:3;9990:67;:::i;:::-;9983:74;;10066:93;10155:3;10066:93;:::i;:::-;10184:2;10179:3;10175:12;10168:19;;9827:366;;;:::o;10199:::-;10341:3;10362:67;10426:2;10421:3;10362:67;:::i;:::-;10355:74;;10438:93;10527:3;10438:93;:::i;:::-;10556:2;10551:3;10547:12;10540:19;;10199:366;;;:::o;10571:::-;10713:3;10734:67;10798:2;10793:3;10734:67;:::i;:::-;10727:74;;10810:93;10899:3;10810:93;:::i;:::-;10928:2;10923:3;10919:12;10912:19;;10571:366;;;:::o;10943:::-;11085:3;11106:67;11170:2;11165:3;11106:67;:::i;:::-;11099:74;;11182:93;11271:3;11182:93;:::i;:::-;11300:2;11295:3;11291:12;11284:19;;10943:366;;;:::o;11315:::-;11457:3;11478:67;11542:2;11537:3;11478:67;:::i;:::-;11471:74;;11554:93;11643:3;11554:93;:::i;:::-;11672:2;11667:3;11663:12;11656:19;;11315:366;;;:::o;11687:118::-;11774:24;11792:5;11774:24;:::i;:::-;11769:3;11762:37;11687:118;;:::o;11811:435::-;11991:3;12013:95;12104:3;12095:6;12013:95;:::i;:::-;12006:102;;12125:95;12216:3;12207:6;12125:95;:::i;:::-;12118:102;;12237:3;12230:10;;11811:435;;;;;:::o;12252:222::-;12345:4;12383:2;12372:9;12368:18;12360:26;;12396:71;12464:1;12453:9;12449:17;12440:6;12396:71;:::i;:::-;12252:222;;;;:::o;12480:640::-;12675:4;12713:3;12702:9;12698:19;12690:27;;12727:71;12795:1;12784:9;12780:17;12771:6;12727:71;:::i;:::-;12808:72;12876:2;12865:9;12861:18;12852:6;12808:72;:::i;:::-;12890;12958:2;12947:9;12943:18;12934:6;12890:72;:::i;:::-;13009:9;13003:4;12999:20;12994:2;12983:9;12979:18;12972:48;13037:76;13108:4;13099:6;13037:76;:::i;:::-;13029:84;;12480:640;;;;;;;:::o;13126:210::-;13213:4;13251:2;13240:9;13236:18;13228:26;;13264:65;13326:1;13315:9;13311:17;13302:6;13264:65;:::i;:::-;13126:210;;;;:::o;13342:313::-;13455:4;13493:2;13482:9;13478:18;13470:26;;13542:9;13536:4;13532:20;13528:1;13517:9;13513:17;13506:47;13570:78;13643:4;13634:6;13570:78;:::i;:::-;13562:86;;13342:313;;;;:::o;13661:419::-;13827:4;13865:2;13854:9;13850:18;13842:26;;13914:9;13908:4;13904:20;13900:1;13889:9;13885:17;13878:47;13942:131;14068:4;13942:131;:::i;:::-;13934:139;;13661:419;;;:::o;14086:::-;14252:4;14290:2;14279:9;14275:18;14267:26;;14339:9;14333:4;14329:20;14325:1;14314:9;14310:17;14303:47;14367:131;14493:4;14367:131;:::i;:::-;14359:139;;14086:419;;;:::o;14511:::-;14677:4;14715:2;14704:9;14700:18;14692:26;;14764:9;14758:4;14754:20;14750:1;14739:9;14735:17;14728:47;14792:131;14918:4;14792:131;:::i;:::-;14784:139;;14511:419;;;:::o;14936:::-;15102:4;15140:2;15129:9;15125:18;15117:26;;15189:9;15183:4;15179:20;15175:1;15164:9;15160:17;15153:47;15217:131;15343:4;15217:131;:::i;:::-;15209:139;;14936:419;;;:::o;15361:::-;15527:4;15565:2;15554:9;15550:18;15542:26;;15614:9;15608:4;15604:20;15600:1;15589:9;15585:17;15578:47;15642:131;15768:4;15642:131;:::i;:::-;15634:139;;15361:419;;;:::o;15786:::-;15952:4;15990:2;15979:9;15975:18;15967:26;;16039:9;16033:4;16029:20;16025:1;16014:9;16010:17;16003:47;16067:131;16193:4;16067:131;:::i;:::-;16059:139;;15786:419;;;:::o;16211:::-;16377:4;16415:2;16404:9;16400:18;16392:26;;16464:9;16458:4;16454:20;16450:1;16439:9;16435:17;16428:47;16492:131;16618:4;16492:131;:::i;:::-;16484:139;;16211:419;;;:::o;16636:::-;16802:4;16840:2;16829:9;16825:18;16817:26;;16889:9;16883:4;16879:20;16875:1;16864:9;16860:17;16853:47;16917:131;17043:4;16917:131;:::i;:::-;16909:139;;16636:419;;;:::o;17061:::-;17227:4;17265:2;17254:9;17250:18;17242:26;;17314:9;17308:4;17304:20;17300:1;17289:9;17285:17;17278:47;17342:131;17468:4;17342:131;:::i;:::-;17334:139;;17061:419;;;:::o;17486:::-;17652:4;17690:2;17679:9;17675:18;17667:26;;17739:9;17733:4;17729:20;17725:1;17714:9;17710:17;17703:47;17767:131;17893:4;17767:131;:::i;:::-;17759:139;;17486:419;;;:::o;17911:::-;18077:4;18115:2;18104:9;18100:18;18092:26;;18164:9;18158:4;18154:20;18150:1;18139:9;18135:17;18128:47;18192:131;18318:4;18192:131;:::i;:::-;18184:139;;17911:419;;;:::o;18336:::-;18502:4;18540:2;18529:9;18525:18;18517:26;;18589:9;18583:4;18579:20;18575:1;18564:9;18560:17;18553:47;18617:131;18743:4;18617:131;:::i;:::-;18609:139;;18336:419;;;:::o;18761:222::-;18854:4;18892:2;18881:9;18877:18;18869:26;;18905:71;18973:1;18962:9;18958:17;18949:6;18905:71;:::i;:::-;18761:222;;;;:::o;18989:129::-;19023:6;19050:20;;:::i;:::-;19040:30;;19079:33;19107:4;19099:6;19079:33;:::i;:::-;18989:129;;;:::o;19124:75::-;19157:6;19190:2;19184:9;19174:19;;19124:75;:::o;19205:307::-;19266:4;19356:18;19348:6;19345:30;19342:56;;;19378:18;;:::i;:::-;19342:56;19416:29;19438:6;19416:29;:::i;:::-;19408:37;;19500:4;19494;19490:15;19482:23;;19205:307;;;:::o;19518:98::-;19569:6;19603:5;19597:12;19587:22;;19518:98;;;:::o;19622:99::-;19674:6;19708:5;19702:12;19692:22;;19622:99;;;:::o;19727:168::-;19810:11;19844:6;19839:3;19832:19;19884:4;19879:3;19875:14;19860:29;;19727:168;;;;:::o;19901:169::-;19985:11;20019:6;20014:3;20007:19;20059:4;20054:3;20050:14;20035:29;;19901:169;;;;:::o;20076:148::-;20178:11;20215:3;20200:18;;20076:148;;;;:::o;20230:305::-;20270:3;20289:20;20307:1;20289:20;:::i;:::-;20284:25;;20323:20;20341:1;20323:20;:::i;:::-;20318:25;;20477:1;20409:66;20405:74;20402:1;20399:81;20396:107;;;20483:18;;:::i;:::-;20396:107;20527:1;20524;20520:9;20513:16;;20230:305;;;;:::o;20541:185::-;20581:1;20598:20;20616:1;20598:20;:::i;:::-;20593:25;;20632:20;20650:1;20632:20;:::i;:::-;20627:25;;20671:1;20661:35;;20676:18;;:::i;:::-;20661:35;20718:1;20715;20711:9;20706:14;;20541:185;;;;:::o;20732:191::-;20772:4;20792:20;20810:1;20792:20;:::i;:::-;20787:25;;20826:20;20844:1;20826:20;:::i;:::-;20821:25;;20865:1;20862;20859:8;20856:34;;;20870:18;;:::i;:::-;20856:34;20915:1;20912;20908:9;20900:17;;20732:191;;;;:::o;20929:96::-;20966:7;20995:24;21013:5;20995:24;:::i;:::-;20984:35;;20929:96;;;:::o;21031:90::-;21065:7;21108:5;21101:13;21094:21;21083:32;;21031:90;;;:::o;21127:149::-;21163:7;21203:66;21196:5;21192:78;21181:89;;21127:149;;;:::o;21282:126::-;21319:7;21359:42;21352:5;21348:54;21337:65;;21282:126;;;:::o;21414:77::-;21451:7;21480:5;21469:16;;21414:77;;;:::o;21497:154::-;21581:6;21576:3;21571;21558:30;21643:1;21634:6;21629:3;21625:16;21618:27;21497:154;;;:::o;21657:307::-;21725:1;21735:113;21749:6;21746:1;21743:13;21735:113;;;21834:1;21829:3;21825:11;21819:18;21815:1;21810:3;21806:11;21799:39;21771:2;21768:1;21764:10;21759:15;;21735:113;;;21866:6;21863:1;21860:13;21857:101;;;21946:1;21937:6;21932:3;21928:16;21921:27;21857:101;21706:258;21657:307;;;:::o;21970:320::-;22014:6;22051:1;22045:4;22041:12;22031:22;;22098:1;22092:4;22088:12;22119:18;22109:81;;22175:4;22167:6;22163:17;22153:27;;22109:81;22237:2;22229:6;22226:14;22206:18;22203:38;22200:84;;;22256:18;;:::i;:::-;22200:84;22021:269;21970:320;;;:::o;22296:281::-;22379:27;22401:4;22379:27;:::i;:::-;22371:6;22367:40;22509:6;22497:10;22494:22;22473:18;22461:10;22458:34;22455:62;22452:88;;;22520:18;;:::i;:::-;22452:88;22560:10;22556:2;22549:22;22339:238;22296:281;;:::o;22583:233::-;22622:3;22645:24;22663:5;22645:24;:::i;:::-;22636:33;;22691:66;22684:5;22681:77;22678:103;;;22761:18;;:::i;:::-;22678:103;22808:1;22801:5;22797:13;22790:20;;22583:233;;;:::o;22822:176::-;22854:1;22871:20;22889:1;22871:20;:::i;:::-;22866:25;;22905:20;22923:1;22905:20;:::i;:::-;22900:25;;22944:1;22934:35;;22949:18;;:::i;:::-;22934:35;22990:1;22987;22983:9;22978:14;;22822:176;;;;:::o;23004:180::-;23052:77;23049:1;23042:88;23149:4;23146:1;23139:15;23173:4;23170:1;23163:15;23190:180;23238:77;23235:1;23228:88;23335:4;23332:1;23325:15;23359:4;23356:1;23349:15;23376:180;23424:77;23421:1;23414:88;23521:4;23518:1;23511:15;23545:4;23542:1;23535:15;23562:180;23610:77;23607:1;23600:88;23707:4;23704:1;23697:15;23731:4;23728:1;23721:15;23748:180;23796:77;23793:1;23786:88;23893:4;23890:1;23883:15;23917:4;23914:1;23907:15;23934:117;24043:1;24040;24033:12;24057:117;24166:1;24163;24156:12;24180:117;24289:1;24286;24279:12;24303:117;24412:1;24409;24402:12;24426:102;24467:6;24518:2;24514:7;24509:2;24502:5;24498:14;24494:28;24484:38;;24426:102;;;:::o;24534:237::-;24674:34;24670:1;24662:6;24658:14;24651:58;24743:20;24738:2;24730:6;24726:15;24719:45;24534:237;:::o;24777:224::-;24917:34;24913:1;24905:6;24901:14;24894:58;24986:7;24981:2;24973:6;24969:15;24962:32;24777:224;:::o;25007:223::-;25147:34;25143:1;25135:6;25131:14;25124:58;25216:6;25211:2;25203:6;25199:15;25192:31;25007:223;:::o;25236:175::-;25376:27;25372:1;25364:6;25360:14;25353:51;25236:175;:::o;25417:231::-;25557:34;25553:1;25545:6;25541:14;25534:58;25626:14;25621:2;25613:6;25609:15;25602:39;25417:231;:::o;25654:243::-;25794:34;25790:1;25782:6;25778:14;25771:58;25863:26;25858:2;25850:6;25846:15;25839:51;25654:243;:::o;25903:229::-;26043:34;26039:1;26031:6;26027:14;26020:58;26112:12;26107:2;26099:6;26095:15;26088:37;25903:229;:::o;26138:228::-;26278:34;26274:1;26266:6;26262:14;26255:58;26347:11;26342:2;26334:6;26330:15;26323:36;26138:228;:::o;26372:231::-;26512:34;26508:1;26500:6;26496:14;26489:58;26581:14;26576:2;26568:6;26564:15;26557:39;26372:231;:::o;26609:234::-;26749:34;26745:1;26737:6;26733:14;26726:58;26818:17;26813:2;26805:6;26801:15;26794:42;26609:234;:::o;26849:220::-;26989:34;26985:1;26977:6;26973:14;26966:58;27058:3;27053:2;27045:6;27041:15;27034:28;26849:220;:::o;27075:236::-;27215:34;27211:1;27203:6;27199:14;27192:58;27284:19;27279:2;27271:6;27267:15;27260:44;27075:236;:::o;27317:122::-;27390:24;27408:5;27390:24;:::i;:::-;27383:5;27380:35;27370:63;;27429:1;27426;27419:12;27370:63;27317:122;:::o;27445:116::-;27515:21;27530:5;27515:21;:::i;:::-;27508:5;27505:32;27495:60;;27551:1;27548;27541:12;27495:60;27445:116;:::o;27567:120::-;27639:23;27656:5;27639:23;:::i;:::-;27632:5;27629:34;27619:62;;27677:1;27674;27667:12;27619:62;27567:120;:::o;27693:122::-;27766:24;27784:5;27766:24;:::i;:::-;27759:5;27756:35;27746:63;;27805:1;27802;27795:12;27746:63;27693:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1839600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2924",
"getApproved(uint256)": "5205",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"ownerOf(uint256)": "3000",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "infinite",
"supportsInterface(bytes4)": "774",
"symbol()": "infinite",
"tokenURI(uint256)": "3395",
"transferFrom(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"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": "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": "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": "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": "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": {
"contracts/MyNft.sol": "MyNft"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0x921f012325281f7d81e29c53a13824cf6c2c5d77232065d0d4f3f912e97af6ea",
"license": "MIT",
"urls": [
"bzz-raw://7dbcedc364fce0ab5e54d21d4cbd91a97959f52c0674cf5c36a314bb58308f62",
"dweb:/ipfs/QmfYpqHKtu3bSQ9FGvLwzdxRNykStpVPtoLNTaM1KBKj6E"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0x0d4de01fe5360c38b4ad2b0822a12722958428f5138a7ff47c1720eb6fa52bba",
"license": "MIT",
"urls": [
"bzz-raw://77724cecdfba8814632ab58737c2b0f2d4ad2d532bc614aee559b5593c1152f0",
"dweb:/ipfs/QmUcE6gXyv7CQh4sUdcDABYKGTovTe1zLMZSEq95nkc3ph"
]
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xa82b58eca1ee256be466e536706850163d2ec7821945abd6b4778cfb3bee37da",
"license": "MIT",
"urls": [
"bzz-raw://6e75cf83beb757b8855791088546b8337e9d4684e169400c20d44a515353b708",
"dweb:/ipfs/QmYvPafLfoquiDMEj7CKHtvbgHu7TJNPSVPSCjrtjV8HjV"
]
},
"@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"
]
},
"contracts/MyNft.sol": {
"keccak256": "0xa8cc9340143b838a5069956c50db66bd217cdfbbb6906df0c0f7ff4231b1abe7",
"license": "MIT",
"urls": [
"bzz-raw://029b3bc496fbae4246907feebc77b35e113211f56a3b1d61f44c971f14602f92",
"dweb:/ipfs/QmeK6BinrQ1YD6fE4E2xtpKrWi9ephvAU61UKecBDRCVBN"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
contract MyNft is ERC721 {
constructor() ERC721("MyToken", "MTK") {
_safeMint(msg.sender, 1);
}
}
// SPDX-License-Identifier: MIT LICENSE
pragma solidity ^0.8.9;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
interface IERC20N is IERC20 {
function mint(address to, uint256 amount) external;
}
interface IERC721N is IERC721 {
function totalSupply() external view returns (uint256);
}
contract Vault is Ownable, IERC721Receiver {
using SafeMath for uint256;
uint256 public totalStaked;
// struct to store a stake's token, owner, and earning values
struct Stake {
uint24 tokenId;
uint48 timestamp;
address owner;
}
event BlockStaked(address owner, uint256 tokenId, uint256 value);
event BlockUnstaked(address owner, uint256 tokenId, uint256 value);
event Claimed(address owner, uint256 amount);
// maps tokenId to stake
mapping(uint256 => Stake) public vault;
// initialising Nft cotract and coin contract
address public NftAddress;
address public TokenAddress;
// IERC721N nft1 = IERC721N(NftAddress);
// IERC20N token = IERC20N(TokenAddress);
error timeError(uint256 timeleft, uint256 tokenId);
// error timeError(uint256 timeleft, uint256 blockStamp, uint256 tokenId);
constructor() {}
//TODO: revoke ownership of this method to avoid malicious intents
function setNftAddress(address _address) public onlyOwner {
NftAddress = _address;
}
//TODO: revoke ownership of this method to avoid malicious intents
function setTokenAddress(address _address) public onlyOwner {
TokenAddress = _address;
}
function stake(uint256[] calldata tokenIds) external {
IERC721N nft = IERC721N(NftAddress);
uint256 tokenId;
totalStaked += tokenIds.length;
for (uint256 i = 0; i < tokenIds.length; i++) {
tokenId = tokenIds[i];
require(nft.ownerOf(tokenId) == msg.sender, "not your token");
require(vault[tokenId].tokenId == 0, "already staked");
nft.transferFrom(msg.sender, address(this), tokenId);
emit BlockStaked(msg.sender, tokenId, block.timestamp);
vault[tokenId] = Stake({
owner: msg.sender,
tokenId: uint24(tokenId),
timestamp: uint48(block.timestamp)
});
}
}
function _unstakeMany(address account, uint256[] calldata tokenIds)
internal
{
// IERC721N nft = IERC721N(NftAddress);
// uint256 tokenId;
Stake memory staked;
totalStaked -= tokenIds.length;
for (uint256 i = 0; i < tokenIds.length; i++) {
// tokenId = tokenIds[i];
staked = vault[tokenIds[i]];
uint256 timeStamp = stakeStamp(tokenIds[i]);
require(staked.owner == msg.sender, "not an owner");
if(block.timestamp > timeStamp + 60){
revert timeError(timeStamp, tokenIds[i]);
}
delete vault[tokenIds[i]];
emit BlockUnstaked(account, tokenIds[i], block.timestamp);
// nft.transferFrom(address(this), account, tokenIds[i]);
}
}
function blockStamp() public view returns(uint256){
return block.timestamp;
}
function stakeStamp(uint256 id) public view returns(uint256){
return vault[id].timestamp;
}
function unstake(uint256[] calldata tokenIds) external {
_claim(msg.sender, tokenIds, true);
}
function _claim(
address account,
uint256[] calldata tokenIds,
bool _unstake
) internal {
uint256 tokenId;
uint256 earned = 0;
IERC20N token = IERC20N(TokenAddress);
for (uint256 i = 0; i < tokenIds.length; i++) {
tokenId = tokenIds[i];
Stake memory staked = vault[tokenId];
require(staked.owner == account, "not an owner");
uint256 stakedAt = staked.timestamp;
vault[tokenId] = Stake({
owner: account,
tokenId: uint24(tokenId),
timestamp: uint48(block.timestamp)
});
if (block.timestamp - stakedAt > 300) {
earned += 1000 ether;
}
}
if (earned > 0) {
token.mint(msg.sender, earned);
}
if (_unstake) {
_unstakeMany(account, tokenIds);
}
emit Claimed(account, earned);
}
function timeFromStaked(uint256[] calldata tokenIds)
public
view
returns (uint256[] memory)
{
uint256[] memory list = new uint256[](tokenIds.length);
for (uint256 i = 0; i < tokenIds.length; i++) {
uint256 tokenId = tokenIds[i];
Stake memory staked = vault[tokenId];
uint256 stakedAt = staked.timestamp;
list[i] = uint48(block.timestamp) - stakedAt;
}
return list;
}
// should never be used inside of transaction because of gas fee
function balanceOf(address account) public view returns (uint256) {
IERC721N nft = IERC721N(NftAddress);
uint256 balance = 0;
uint256 supply = nft.totalSupply();
for (uint256 i = 1; i <= supply; i++) {
if (vault[i].owner == account) {
balance += 1;
}
}
return balance;
}
// should never be used inside of transaction because of gas fee
function tokensOfOwner(address account)
public
view
returns (uint256[] memory ownerTokens)
{
IERC721N nft = IERC721N(NftAddress);
uint256 supply = nft.totalSupply();
uint256[] memory tmp = new uint256[](supply);
uint256 index = 0;
for (uint256 tokenId = 1; tokenId <= supply; tokenId++) {
if (vault[tokenId].owner == account) {
tmp[index] = vault[tokenId].tokenId;
index += 1;
}
}
uint256[] memory tokens = new uint256[](index);
for (uint256 i = 0; i < index; i++) {
tokens[i] = tmp[i];
}
return tokens;
}
function onERC721Received(
address,
address from,
uint256,
bytes calldata
) external pure override returns (bytes4) {
require(from == address(0x0), "Cannot send nfts to Vault directly");
return IERC721Receiver.onERC721Received.selector;
}
}
This file has been truncated, but you can view the full file.
{
"id": "7cbb96eb8422565e32e5646d2827ae2b",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/MyNft.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.4;\n\nimport \"@openzeppelin/contracts/token/ERC721/ERC721.sol\";\n\ncontract MyNft is ERC721 {\n constructor() ERC721(\"MyToken\", \"MTK\") {\n _safeMint(msg.sender, 1);\n }\n}"
},
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC721.sol\";\nimport \"./IERC721Receiver.sol\";\nimport \"./extensions/IERC721Metadata.sol\";\nimport \"../../utils/Address.sol\";\nimport \"../../utils/Context.sol\";\nimport \"../../utils/Strings.sol\";\nimport \"../../utils/introspection/ERC165.sol\";\n\n/**\n * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including\n * the Metadata extension, but not including the Enumerable extension, which is available separately as\n * {ERC721Enumerable}.\n */\ncontract ERC721 is Context, ERC165, IERC721, IERC721Metadata {\n using Address for address;\n using Strings for uint256;\n\n // Token name\n string private _name;\n\n // Token symbol\n string private _symbol;\n\n // Mapping from token ID to owner address\n mapping(uint256 => address) private _owners;\n\n // Mapping owner address to token count\n mapping(address => uint256) private _balances;\n\n // Mapping from token ID to approved address\n mapping(uint256 => address) private _tokenApprovals;\n\n // Mapping from owner to operator approvals\n mapping(address => mapping(address => bool)) private _operatorApprovals;\n\n /**\n * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {\n return\n interfaceId == type(IERC721).interfaceId ||\n interfaceId == type(IERC721Metadata).interfaceId ||\n super.supportsInterface(interfaceId);\n }\n\n /**\n * @dev See {IERC721-balanceOf}.\n */\n function balanceOf(address owner) public view virtual override returns (uint256) {\n require(owner != address(0), \"ERC721: balance query for the zero address\");\n return _balances[owner];\n }\n\n /**\n * @dev See {IERC721-ownerOf}.\n */\n function ownerOf(uint256 tokenId) public view virtual override returns (address) {\n address owner = _owners[tokenId];\n require(owner != address(0), \"ERC721: owner query for nonexistent token\");\n return owner;\n }\n\n /**\n * @dev See {IERC721Metadata-name}.\n */\n function name() public view virtual override returns (string memory) {\n return _name;\n }\n\n /**\n * @dev See {IERC721Metadata-symbol}.\n */\n function symbol() public view virtual override returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev See {IERC721Metadata-tokenURI}.\n */\n function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {\n require(_exists(tokenId), \"ERC721Metadata: URI query for nonexistent token\");\n\n string memory baseURI = _baseURI();\n return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\";\n }\n\n /**\n * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each\n * token will be the concatenation of the `baseURI` and the `tokenId`. Empty\n * by default, can be overridden in child contracts.\n */\n function _baseURI() internal view virtual returns (string memory) {\n return \"\";\n }\n\n /**\n * @dev See {IERC721-approve}.\n */\n function approve(address to, uint256 tokenId) public virtual override {\n address owner = ERC721.ownerOf(tokenId);\n require(to != owner, \"ERC721: approval to current owner\");\n\n require(\n _msgSender() == owner || isApprovedForAll(owner, _msgSender()),\n \"ERC721: approve caller is not owner nor approved for all\"\n );\n\n _approve(to, tokenId);\n }\n\n /**\n * @dev See {IERC721-getApproved}.\n */\n function getApproved(uint256 tokenId) public view virtual override returns (address) {\n require(_exists(tokenId), \"ERC721: approved query for nonexistent token\");\n\n return _tokenApprovals[tokenId];\n }\n\n /**\n * @dev See {IERC721-setApprovalForAll}.\n */\n function setApprovalForAll(address operator, bool approved) public virtual override {\n _setApprovalForAll(_msgSender(), operator, approved);\n }\n\n /**\n * @dev See {IERC721-isApprovedForAll}.\n */\n function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {\n return _operatorApprovals[owner][operator];\n }\n\n /**\n * @dev See {IERC721-transferFrom}.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n //solhint-disable-next-line max-line-length\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\");\n\n _transfer(from, to, tokenId);\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) public virtual override {\n safeTransferFrom(from, to, tokenId, \"\");\n }\n\n /**\n * @dev See {IERC721-safeTransferFrom}.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes memory _data\n ) public virtual override {\n require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\");\n _safeTransfer(from, to, tokenId, _data);\n }\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * `_data` is additional data, it has no specified format and it is sent in call to `to`.\n *\n * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.\n * implement alternative mechanisms to perform token transfer, such as signature-based.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeTransfer(\n address from,\n address to,\n uint256 tokenId,\n bytes memory _data\n ) internal virtual {\n _transfer(from, to, tokenId);\n require(_checkOnERC721Received(from, to, tokenId, _data), \"ERC721: transfer to non ERC721Receiver implementer\");\n }\n\n /**\n * @dev Returns whether `tokenId` exists.\n *\n * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.\n *\n * Tokens start existing when they are minted (`_mint`),\n * and stop existing when they are burned (`_burn`).\n */\n function _exists(uint256 tokenId) internal view virtual returns (bool) {\n return _owners[tokenId] != address(0);\n }\n\n /**\n * @dev Returns whether `spender` is allowed to manage `tokenId`.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {\n require(_exists(tokenId), \"ERC721: operator query for nonexistent token\");\n address owner = ERC721.ownerOf(tokenId);\n return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);\n }\n\n /**\n * @dev Safely mints `tokenId` and transfers it to `to`.\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function _safeMint(address to, uint256 tokenId) internal virtual {\n _safeMint(to, tokenId, \"\");\n }\n\n /**\n * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is\n * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.\n */\n function _safeMint(\n address to,\n uint256 tokenId,\n bytes memory _data\n ) internal virtual {\n _mint(to, tokenId);\n require(\n _checkOnERC721Received(address(0), to, tokenId, _data),\n \"ERC721: transfer to non ERC721Receiver implementer\"\n );\n }\n\n /**\n * @dev Mints `tokenId` and transfers it to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible\n *\n * Requirements:\n *\n * - `tokenId` must not exist.\n * - `to` cannot be the zero address.\n *\n * Emits a {Transfer} event.\n */\n function _mint(address to, uint256 tokenId) internal virtual {\n require(to != address(0), \"ERC721: mint to the zero address\");\n require(!_exists(tokenId), \"ERC721: token already minted\");\n\n _beforeTokenTransfer(address(0), to, tokenId);\n\n _balances[to] += 1;\n _owners[tokenId] = to;\n\n emit Transfer(address(0), to, tokenId);\n\n _afterTokenTransfer(address(0), to, tokenId);\n }\n\n /**\n * @dev Destroys `tokenId`.\n * The approval is cleared when the token is burned.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n *\n * Emits a {Transfer} event.\n */\n function _burn(uint256 tokenId) internal virtual {\n address owner = ERC721.ownerOf(tokenId);\n\n _beforeTokenTransfer(owner, address(0), tokenId);\n\n // Clear approvals\n _approve(address(0), tokenId);\n\n _balances[owner] -= 1;\n delete _owners[tokenId];\n\n emit Transfer(owner, address(0), tokenId);\n\n _afterTokenTransfer(owner, address(0), tokenId);\n }\n\n /**\n * @dev Transfers `tokenId` from `from` to `to`.\n * As opposed to {transferFrom}, this imposes no restrictions on msg.sender.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n *\n * Emits a {Transfer} event.\n */\n function _transfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {\n require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\");\n require(to != address(0), \"ERC721: transfer to the zero address\");\n\n _beforeTokenTransfer(from, to, tokenId);\n\n // Clear approvals from the previous owner\n _approve(address(0), tokenId);\n\n _balances[from] -= 1;\n _balances[to] += 1;\n _owners[tokenId] = to;\n\n emit Transfer(from, to, tokenId);\n\n _afterTokenTransfer(from, to, tokenId);\n }\n\n /**\n * @dev Approve `to` to operate on `tokenId`\n *\n * Emits a {Approval} event.\n */\n function _approve(address to, uint256 tokenId) internal virtual {\n _tokenApprovals[tokenId] = to;\n emit Approval(ERC721.ownerOf(tokenId), to, tokenId);\n }\n\n /**\n * @dev Approve `operator` to operate on all of `owner` tokens\n *\n * Emits a {ApprovalForAll} event.\n */\n function _setApprovalForAll(\n address owner,\n address operator,\n bool approved\n ) internal virtual {\n require(owner != operator, \"ERC721: approve to caller\");\n _operatorApprovals[owner][operator] = approved;\n emit ApprovalForAll(owner, operator, approved);\n }\n\n /**\n * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.\n * The call is not executed if the target address is not a contract.\n *\n * @param from address representing the previous owner of the given token ID\n * @param to target address that will receive the tokens\n * @param tokenId uint256 ID of the token to be transferred\n * @param _data bytes optional data to send along with the call\n * @return bool whether the call correctly returned the expected magic value\n */\n function _checkOnERC721Received(\n address from,\n address to,\n uint256 tokenId,\n bytes memory _data\n ) private returns (bool) {\n if (to.isContract()) {\n try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {\n return retval == IERC721Receiver.onERC721Received.selector;\n } catch (bytes memory reason) {\n if (reason.length == 0) {\n revert(\"ERC721: transfer to non ERC721Receiver implementer\");\n } else {\n assembly {\n revert(add(32, reason), mload(reason))\n }\n }\n }\n } else {\n return true;\n }\n }\n\n /**\n * @dev Hook that is called before any token transfer. This includes minting\n * and burning.\n *\n * Calling conditions:\n *\n * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be\n * transferred to `to`.\n * - When `from` is zero, `tokenId` will be minted for `to`.\n * - When `to` is zero, ``from``'s `tokenId` will be burned.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _beforeTokenTransfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {}\n\n /**\n * @dev Hook that is called after any transfer of tokens. This includes\n * minting and burning.\n *\n * Calling conditions:\n *\n * - when `from` and `to` are both non-zero.\n * - `from` and `to` are never both zero.\n *\n * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].\n */\n function _afterTokenTransfer(\n address from,\n address to,\n uint256 tokenId\n ) internal virtual {}\n}\n"
},
"@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)\n\npragma solidity ^0.8.0;\n\nimport \"./IERC165.sol\";\n\n/**\n * @dev Implementation of the {IERC165} interface.\n *\n * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check\n * for the additional interface id that will be supported. For example:\n *\n * ```solidity\n * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);\n * }\n * ```\n *\n * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.\n */\nabstract contract ERC165 is IERC165 {\n /**\n * @dev See {IERC165-supportsInterface}.\n */\n function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {\n return interfaceId == type(IERC165).interfaceId;\n }\n}\n"
},
"@openzeppelin/contracts/utils/Strings.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev String operations.\n */\nlibrary Strings {\n bytes16 private constant _HEX_SYMBOLS = \"0123456789abcdef\";\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` decimal representation.\n */\n function toString(uint256 value) internal pure returns (string memory) {\n // Inspired by OraclizeAPI's implementation - MIT licence\n // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol\n\n if (value == 0) {\n return \"0\";\n }\n uint256 temp = value;\n uint256 digits;\n while (temp != 0) {\n digits++;\n temp /= 10;\n }\n bytes memory buffer = new bytes(digits);\n while (value != 0) {\n digits -= 1;\n buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));\n value /= 10;\n }\n return string(buffer);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.\n */\n function toHexString(uint256 value) internal pure returns (string memory) {\n if (value == 0) {\n return \"0x00\";\n }\n uint256 temp = value;\n uint256 length = 0;\n while (temp != 0) {\n length++;\n temp >>= 8;\n }\n return toHexString(value, length);\n }\n\n /**\n * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.\n */\n function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {\n bytes memory buffer = new bytes(2 * length + 2);\n buffer[0] = \"0\";\n buffer[1] = \"x\";\n for (uint256 i = 2 * length + 1; i > 1; --i) {\n buffer[i] = _HEX_SYMBOLS[value & 0xf];\n value >>= 4;\n }\n require(value == 0, \"Strings: hex length insufficient\");\n return string(buffer);\n }\n}\n"
},
"@openzeppelin/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
},
"@openzeppelin/contracts/utils/Address.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)\n\npragma solidity ^0.8.1;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n * ====\n *\n * [IMPORTANT]\n * ====\n * You shouldn't rely on `isContract` to protect against flash loan attacks!\n *\n * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets\n * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract\n * constructor.\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize/address.code.length, which returns 0\n // for contracts in construction, since the code is only stored at the end\n // of the constructor execution.\n\n return account.code.length > 0;\n }\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason, it is bubbled up by this\n * function (like regular Solidity function calls).\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCall(target, data, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value\n ) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(\n address target,\n bytes memory data,\n uint256 value,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n require(isContract(target), \"Address: call to non-contract\");\n\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal view returns (bytes memory) {\n require(isContract(target), \"Address: static call to non-contract\");\n\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(\n address target,\n bytes memory data,\n string memory errorMessage\n ) internal returns (bytes memory) {\n require(isContract(target), \"Address: delegate call to non-contract\");\n\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the\n * revert reason using the provided one.\n *\n * _Available since v4.3._\n */\n function verifyCallResult(\n bool success,\n bytes memory returndata,\n string memory errorMessage\n ) internal pure returns (bytes memory) {\n if (success) {\n return returndata;\n } else {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../IERC721.sol\";\n\n/**\n * @title ERC-721 Non-Fungible Token Standard, optional metadata extension\n * @dev See https://eips.ethereum.org/EIPS/eip-721\n */\ninterface IERC721Metadata is IERC721 {\n /**\n * @dev Returns the token collection name.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the token collection symbol.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.\n */\n function tokenURI(uint256 tokenId) external view returns (string memory);\n}\n"
},
"@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @title ERC721 token receiver interface\n * @dev Interface for any contract that wants to support safeTransfers\n * from ERC721 asset contracts.\n */\ninterface IERC721Receiver {\n /**\n * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}\n * by `operator` from `from`, this function is called.\n *\n * It must return its Solidity selector to confirm the token transfer.\n * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.\n *\n * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.\n */\n function onERC721Received(\n address operator,\n address from,\n uint256 tokenId,\n bytes calldata data\n ) external returns (bytes4);\n}\n"
},
"@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../../utils/introspection/IERC165.sol\";\n\n/**\n * @dev Required interface of an ERC721 compliant contract.\n */\ninterface IERC721 is IERC165 {\n /**\n * @dev Emitted when `tokenId` token is transferred from `from` to `to`.\n */\n event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.\n */\n event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);\n\n /**\n * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.\n */\n event ApprovalForAll(address indexed owner, address indexed operator, bool approved);\n\n /**\n * @dev Returns the number of tokens in ``owner``'s account.\n */\n function balanceOf(address owner) external view returns (uint256 balance);\n\n /**\n * @dev Returns the owner of the `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function ownerOf(uint256 tokenId) external view returns (address owner);\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId,\n bytes calldata data\n ) external;\n\n /**\n * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients\n * are aware of the ERC721 protocol to prevent tokens from being forever locked.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must exist and be owned by `from`.\n * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.\n * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.\n *\n * Emits a {Transfer} event.\n */\n function safeTransferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Transfers `tokenId` token from `from` to `to`.\n *\n * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.\n *\n * Requirements:\n *\n * - `from` cannot be the zero address.\n * - `to` cannot be the zero address.\n * - `tokenId` token must be owned by `from`.\n * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(\n address from,\n address to,\n uint256 tokenId\n ) external;\n\n /**\n * @dev Gives permission to `to` to transfer `tokenId` token to another account.\n * The approval is cleared when the token is transferred.\n *\n * Only a single account can be approved at a time, so approving the zero address clears previous approvals.\n *\n * Requirements:\n *\n * - The caller must own the token or be an approved operator.\n * - `tokenId` must exist.\n *\n * Emits an {Approval} event.\n */\n function approve(address to, uint256 tokenId) external;\n\n /**\n * @dev Approve or remove `operator` as an operator for the caller.\n * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.\n *\n * Requirements:\n *\n * - The `operator` cannot be the caller.\n *\n * Emits an {ApprovalForAll} event.\n */\n function setApprovalForAll(address operator, bool _approved) external;\n\n /**\n * @dev Returns the account approved for `tokenId` token.\n *\n * Requirements:\n *\n * - `tokenId` must exist.\n */\n function getApproved(uint256 tokenId) external view returns (address operator);\n\n /**\n * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.\n *\n * See {setApprovalForAll}\n */\n function isApprovedForAll(address owner, address operator) external view returns (bool);\n}\n"
},
"@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Interface of the ERC165 standard, as defined in the\n * https://eips.ethereum.org/EIPS/eip-165[EIP].\n *\n * Implementers can declare support of contract interfaces, which can then be\n * queried by others ({ERC165Checker}).\n *\n * For an implementation, see {ERC165}.\n */\ninterface IERC165 {\n /**\n * @dev Returns true if this contract implements the interface defined by\n * `interfaceId`. See the corresponding\n * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]\n * to learn more about how these ids are created.\n *\n * This function call must use less than 30 000 gas.\n */\n function supportsInterface(bytes4 interfaceId) external view returns (bool);\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"ERC721": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"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": "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": {
"details": "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}.",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"constructor": {
"details": "Initializes the contract by setting a `name` and a `symbol` to the token collection."
},
"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
},
"evm": {
"assembly": " /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14286 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1390:1503 constructor(string memory name_, string memory symbol_) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n dup2\n add\n 0x40\n mstore\n dup2\n add\n swap1\n tag_2\n swap2\n swap1\n tag_3\n jump\t// in\ntag_2:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1464:1469 name_ */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1456:1461 _name */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1456:1469 _name = name_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_6\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_6:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1489:1496 symbol_ */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1479:1486 _symbol */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1479:1496 _symbol = symbol_ */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_8\n swap3\n swap2\n swap1\n tag_7\n jump\t// in\ntag_8:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1390:1503 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14286 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n jump(tag_9)\ntag_7:\n dup3\n dup1\n sload\n tag_10\n swap1\n tag_11\n jump\t// in\ntag_10:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_13\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_12)\ntag_13:\n dup3\n 0x1f\n lt\n tag_14\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_12)\ntag_14:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_12\n jumpi\n swap2\n dup3\n add\ntag_15:\n dup3\n dup2\n gt\n iszero\n tag_16\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_15)\ntag_16:\ntag_12:\n pop\n swap1\n pop\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\ntag_17:\n pop\n swap1\n jump\t// out\ntag_18:\ntag_19:\n dup1\n dup3\n gt\n iszero\n tag_20\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_19)\ntag_20:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:428 */\ntag_22:\n /* \"#utility.yul\":96:101 */\n 0x00\n /* \"#utility.yul\":121:187 */\n tag_24\n /* \"#utility.yul\":137:186 */\n tag_25\n /* \"#utility.yul\":179:185 */\n dup5\n /* \"#utility.yul\":137:186 */\n tag_26\n jump\t// in\ntag_25:\n /* \"#utility.yul\":121:187 */\n tag_27\n jump\t// in\ntag_24:\n /* \"#utility.yul\":112:187 */\n swap1\n pop\n /* \"#utility.yul\":210:216 */\n dup3\n /* \"#utility.yul\":203:208 */\n dup2\n /* \"#utility.yul\":196:217 */\n mstore\n /* \"#utility.yul\":248:252 */\n 0x20\n /* \"#utility.yul\":241:246 */\n dup2\n /* \"#utility.yul\":237:253 */\n add\n /* \"#utility.yul\":286:289 */\n dup5\n /* \"#utility.yul\":277:283 */\n dup5\n /* \"#utility.yul\":272:275 */\n dup5\n /* \"#utility.yul\":268:284 */\n add\n /* \"#utility.yul\":265:290 */\n gt\n /* \"#utility.yul\":262:374 */\n iszero\n tag_28\n jumpi\n /* \"#utility.yul\":293:372 */\n tag_29\n tag_30\n jump\t// in\ntag_29:\n /* \"#utility.yul\":262:374 */\ntag_28:\n /* \"#utility.yul\":383:422 */\n tag_31\n /* \"#utility.yul\":415:421 */\n dup5\n /* \"#utility.yul\":410:413 */\n dup3\n /* \"#utility.yul\":405:408 */\n dup6\n /* \"#utility.yul\":383:422 */\n tag_32\n jump\t// in\ntag_31:\n /* \"#utility.yul\":102:428 */\n pop\n /* \"#utility.yul\":7:428 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":448:803 */\ntag_33:\n /* \"#utility.yul\":515:520 */\n 0x00\n /* \"#utility.yul\":564:567 */\n dup3\n /* \"#utility.yul\":557:561 */\n 0x1f\n /* \"#utility.yul\":549:555 */\n dup4\n /* \"#utility.yul\":545:562 */\n add\n /* \"#utility.yul\":541:568 */\n slt\n /* \"#utility.yul\":531:653 */\n tag_35\n jumpi\n /* \"#utility.yul\":572:651 */\n tag_36\n tag_37\n jump\t// in\ntag_36:\n /* \"#utility.yul\":531:653 */\ntag_35:\n /* \"#utility.yul\":682:688 */\n dup2\n /* \"#utility.yul\":676:689 */\n mload\n /* \"#utility.yul\":707:797 */\n tag_38\n /* \"#utility.yul\":793:796 */\n dup5\n /* \"#utility.yul\":785:791 */\n dup3\n /* \"#utility.yul\":778:782 */\n 0x20\n /* \"#utility.yul\":770:776 */\n dup7\n /* \"#utility.yul\":766:783 */\n add\n /* \"#utility.yul\":707:797 */\n tag_22\n jump\t// in\ntag_38:\n /* \"#utility.yul\":698:797 */\n swap2\n pop\n /* \"#utility.yul\":521:803 */\n pop\n /* \"#utility.yul\":448:803 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":809:1662 */\ntag_3:\n /* \"#utility.yul\":908:914 */\n 0x00\n /* \"#utility.yul\":916:922 */\n dup1\n /* \"#utility.yul\":965:967 */\n 0x40\n /* \"#utility.yul\":953:962 */\n dup4\n /* \"#utility.yul\":944:951 */\n dup6\n /* \"#utility.yul\":940:963 */\n sub\n /* \"#utility.yul\":936:968 */\n slt\n /* \"#utility.yul\":933:1052 */\n iszero\n tag_40\n jumpi\n /* \"#utility.yul\":971:1050 */\n tag_41\n tag_42\n jump\t// in\ntag_41:\n /* \"#utility.yul\":933:1052 */\ntag_40:\n /* \"#utility.yul\":1112:1113 */\n 0x00\n /* \"#utility.yul\":1101:1110 */\n dup4\n /* \"#utility.yul\":1097:1114 */\n add\n /* \"#utility.yul\":1091:1115 */\n mload\n /* \"#utility.yul\":1142:1160 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1134:1140 */\n dup2\n /* \"#utility.yul\":1131:1161 */\n gt\n /* \"#utility.yul\":1128:1245 */\n iszero\n tag_43\n jumpi\n /* \"#utility.yul\":1164:1243 */\n tag_44\n tag_45\n jump\t// in\ntag_44:\n /* \"#utility.yul\":1128:1245 */\ntag_43:\n /* \"#utility.yul\":1269:1343 */\n tag_46\n /* \"#utility.yul\":1335:1342 */\n dup6\n /* \"#utility.yul\":1326:1332 */\n dup3\n /* \"#utility.yul\":1315:1324 */\n dup7\n /* \"#utility.yul\":1311:1333 */\n add\n /* \"#utility.yul\":1269:1343 */\n tag_33\n jump\t// in\ntag_46:\n /* \"#utility.yul\":1259:1343 */\n swap3\n pop\n /* \"#utility.yul\":1062:1353 */\n pop\n /* \"#utility.yul\":1413:1415 */\n 0x20\n /* \"#utility.yul\":1402:1411 */\n dup4\n /* \"#utility.yul\":1398:1416 */\n add\n /* \"#utility.yul\":1392:1417 */\n mload\n /* \"#utility.yul\":1444:1462 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1436:1442 */\n dup2\n /* \"#utility.yul\":1433:1463 */\n gt\n /* \"#utility.yul\":1430:1547 */\n iszero\n tag_47\n jumpi\n /* \"#utility.yul\":1466:1545 */\n tag_48\n tag_45\n jump\t// in\ntag_48:\n /* \"#utility.yul\":1430:1547 */\ntag_47:\n /* \"#utility.yul\":1571:1645 */\n tag_49\n /* \"#utility.yul\":1637:1644 */\n dup6\n /* \"#utility.yul\":1628:1634 */\n dup3\n /* \"#utility.yul\":1617:1626 */\n dup7\n /* \"#utility.yul\":1613:1635 */\n add\n /* \"#utility.yul\":1571:1645 */\n tag_33\n jump\t// in\ntag_49:\n /* \"#utility.yul\":1561:1645 */\n swap2\n pop\n /* \"#utility.yul\":1363:1655 */\n pop\n /* \"#utility.yul\":809:1662 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1668:1797 */\ntag_27:\n /* \"#utility.yul\":1702:1708 */\n 0x00\n /* \"#utility.yul\":1729:1749 */\n tag_51\n tag_52\n jump\t// in\ntag_51:\n /* \"#utility.yul\":1719:1749 */\n swap1\n pop\n /* \"#utility.yul\":1758:1791 */\n tag_53\n /* \"#utility.yul\":1786:1790 */\n dup3\n /* \"#utility.yul\":1778:1784 */\n dup3\n /* \"#utility.yul\":1758:1791 */\n tag_54\n jump\t// in\ntag_53:\n /* \"#utility.yul\":1668:1797 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1803:1878 */\ntag_52:\n /* \"#utility.yul\":1836:1842 */\n 0x00\n /* \"#utility.yul\":1869:1871 */\n 0x40\n /* \"#utility.yul\":1863:1872 */\n mload\n /* \"#utility.yul\":1853:1872 */\n swap1\n pop\n /* \"#utility.yul\":1803:1878 */\n swap1\n jump\t// out\n /* \"#utility.yul\":1884:2192 */\ntag_26:\n /* \"#utility.yul\":1946:1950 */\n 0x00\n /* \"#utility.yul\":2036:2054 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2028:2034 */\n dup3\n /* \"#utility.yul\":2025:2055 */\n gt\n /* \"#utility.yul\":2022:2078 */\n iszero\n tag_57\n jumpi\n /* \"#utility.yul\":2058:2076 */\n tag_58\n tag_59\n jump\t// in\ntag_58:\n /* \"#utility.yul\":2022:2078 */\ntag_57:\n /* \"#utility.yul\":2096:2125 */\n tag_60\n /* \"#utility.yul\":2118:2124 */\n dup3\n /* \"#utility.yul\":2096:2125 */\n tag_61\n jump\t// in\ntag_60:\n /* \"#utility.yul\":2088:2125 */\n swap1\n pop\n /* \"#utility.yul\":2180:2184 */\n 0x20\n /* \"#utility.yul\":2174:2178 */\n dup2\n /* \"#utility.yul\":2170:2185 */\n add\n /* \"#utility.yul\":2162:2185 */\n swap1\n pop\n /* \"#utility.yul\":1884:2192 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2198:2505 */\ntag_32:\n /* \"#utility.yul\":2266:2267 */\n 0x00\n /* \"#utility.yul\":2276:2389 */\ntag_63:\n /* \"#utility.yul\":2290:2296 */\n dup4\n /* \"#utility.yul\":2287:2288 */\n dup2\n /* \"#utility.yul\":2284:2297 */\n lt\n /* \"#utility.yul\":2276:2389 */\n iszero\n tag_65\n jumpi\n /* \"#utility.yul\":2375:2376 */\n dup1\n /* \"#utility.yul\":2370:2373 */\n dup3\n /* \"#utility.yul\":2366:2377 */\n add\n /* \"#utility.yul\":2360:2378 */\n mload\n /* \"#utility.yul\":2356:2357 */\n dup2\n /* \"#utility.yul\":2351:2354 */\n dup5\n /* \"#utility.yul\":2347:2358 */\n add\n /* \"#utility.yul\":2340:2379 */\n mstore\n /* \"#utility.yul\":2312:2314 */\n 0x20\n /* \"#utility.yul\":2309:2310 */\n dup2\n /* \"#utility.yul\":2305:2315 */\n add\n /* \"#utility.yul\":2300:2315 */\n swap1\n pop\n /* \"#utility.yul\":2276:2389 */\n jump(tag_63)\ntag_65:\n /* \"#utility.yul\":2407:2413 */\n dup4\n /* \"#utility.yul\":2404:2405 */\n dup2\n /* \"#utility.yul\":2401:2414 */\n gt\n /* \"#utility.yul\":2398:2499 */\n iszero\n tag_66\n jumpi\n /* \"#utility.yul\":2487:2488 */\n 0x00\n /* \"#utility.yul\":2478:2484 */\n dup5\n /* \"#utility.yul\":2473:2476 */\n dup5\n /* \"#utility.yul\":2469:2485 */\n add\n /* \"#utility.yul\":2462:2489 */\n mstore\n /* \"#utility.yul\":2398:2499 */\ntag_66:\n /* \"#utility.yul\":2247:2505 */\n pop\n /* \"#utility.yul\":2198:2505 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2511:2831 */\ntag_11:\n /* \"#utility.yul\":2555:2561 */\n 0x00\n /* \"#utility.yul\":2592:2593 */\n 0x02\n /* \"#utility.yul\":2586:2590 */\n dup3\n /* \"#utility.yul\":2582:2594 */\n div\n /* \"#utility.yul\":2572:2594 */\n swap1\n pop\n /* \"#utility.yul\":2639:2640 */\n 0x01\n /* \"#utility.yul\":2633:2637 */\n dup3\n /* \"#utility.yul\":2629:2641 */\n and\n /* \"#utility.yul\":2660:2678 */\n dup1\n /* \"#utility.yul\":2650:2731 */\n tag_68\n jumpi\n /* \"#utility.yul\":2716:2720 */\n 0x7f\n /* \"#utility.yul\":2708:2714 */\n dup3\n /* \"#utility.yul\":2704:2721 */\n and\n /* \"#utility.yul\":2694:2721 */\n swap2\n pop\n /* \"#utility.yul\":2650:2731 */\ntag_68:\n /* \"#utility.yul\":2778:2780 */\n 0x20\n /* \"#utility.yul\":2770:2776 */\n dup3\n /* \"#utility.yul\":2767:2781 */\n lt\n /* \"#utility.yul\":2747:2765 */\n dup2\n /* \"#utility.yul\":2744:2782 */\n eq\n /* \"#utility.yul\":2741:2825 */\n iszero\n tag_69\n jumpi\n /* \"#utility.yul\":2797:2815 */\n tag_70\n tag_71\n jump\t// in\ntag_70:\n /* \"#utility.yul\":2741:2825 */\ntag_69:\n /* \"#utility.yul\":2562:2831 */\n pop\n /* \"#utility.yul\":2511:2831 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2837:3118 */\ntag_54:\n /* \"#utility.yul\":2920:2947 */\n tag_73\n /* \"#utility.yul\":2942:2946 */\n dup3\n /* \"#utility.yul\":2920:2947 */\n tag_61\n jump\t// in\ntag_73:\n /* \"#utility.yul\":2912:2918 */\n dup2\n /* \"#utility.yul\":2908:2948 */\n add\n /* \"#utility.yul\":3050:3056 */\n dup2\n /* \"#utility.yul\":3038:3048 */\n dup2\n /* \"#utility.yul\":3035:3057 */\n lt\n /* \"#utility.yul\":3014:3032 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3002:3012 */\n dup3\n /* \"#utility.yul\":2999:3033 */\n gt\n /* \"#utility.yul\":2996:3058 */\n or\n /* \"#utility.yul\":2993:3081 */\n iszero\n tag_74\n jumpi\n /* \"#utility.yul\":3061:3079 */\n tag_75\n tag_59\n jump\t// in\ntag_75:\n /* \"#utility.yul\":2993:3081 */\ntag_74:\n /* \"#utility.yul\":3101:3111 */\n dup1\n /* \"#utility.yul\":3097:3099 */\n 0x40\n /* \"#utility.yul\":3090:3112 */\n mstore\n /* \"#utility.yul\":2880:3118 */\n pop\n /* \"#utility.yul\":2837:3118 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3124:3304 */\ntag_71:\n /* \"#utility.yul\":3172:3249 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3169:3170 */\n 0x00\n /* \"#utility.yul\":3162:3250 */\n mstore\n /* \"#utility.yul\":3269:3273 */\n 0x22\n /* \"#utility.yul\":3266:3267 */\n 0x04\n /* \"#utility.yul\":3259:3274 */\n mstore\n /* \"#utility.yul\":3293:3297 */\n 0x24\n /* \"#utility.yul\":3290:3291 */\n 0x00\n /* \"#utility.yul\":3283:3298 */\n revert\n /* \"#utility.yul\":3310:3490 */\ntag_59:\n /* \"#utility.yul\":3358:3435 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3355:3356 */\n 0x00\n /* \"#utility.yul\":3348:3436 */\n mstore\n /* \"#utility.yul\":3455:3459 */\n 0x41\n /* \"#utility.yul\":3452:3453 */\n 0x04\n /* \"#utility.yul\":3445:3460 */\n mstore\n /* \"#utility.yul\":3479:3483 */\n 0x24\n /* \"#utility.yul\":3476:3477 */\n 0x00\n /* \"#utility.yul\":3469:3484 */\n revert\n /* \"#utility.yul\":3496:3613 */\ntag_37:\n /* \"#utility.yul\":3605:3606 */\n 0x00\n /* \"#utility.yul\":3602:3603 */\n dup1\n /* \"#utility.yul\":3595:3607 */\n revert\n /* \"#utility.yul\":3619:3736 */\ntag_30:\n /* \"#utility.yul\":3728:3729 */\n 0x00\n /* \"#utility.yul\":3725:3726 */\n dup1\n /* \"#utility.yul\":3718:3730 */\n revert\n /* \"#utility.yul\":3742:3859 */\ntag_45:\n /* \"#utility.yul\":3851:3852 */\n 0x00\n /* \"#utility.yul\":3848:3849 */\n dup1\n /* \"#utility.yul\":3841:3853 */\n revert\n /* \"#utility.yul\":3865:3982 */\ntag_42:\n /* \"#utility.yul\":3974:3975 */\n 0x00\n /* \"#utility.yul\":3971:3972 */\n dup1\n /* \"#utility.yul\":3964:3976 */\n revert\n /* \"#utility.yul\":3988:4090 */\ntag_61:\n /* \"#utility.yul\":4029:4035 */\n 0x00\n /* \"#utility.yul\":4080:4082 */\n 0x1f\n /* \"#utility.yul\":4076:4083 */\n not\n /* \"#utility.yul\":4071:4073 */\n 0x1f\n /* \"#utility.yul\":4064:4069 */\n dup4\n /* \"#utility.yul\":4060:4074 */\n add\n /* \"#utility.yul\":4056:4084 */\n and\n /* \"#utility.yul\":4046:4084 */\n swap1\n pop\n /* \"#utility.yul\":3988:4090 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14286 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\ntag_9:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":628:14286 contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x6352211e\n gt\n tag_16\n jumpi\n dup1\n 0xa22cb465\n gt\n tag_17\n jumpi\n dup1\n 0xa22cb465\n eq\n tag_12\n jumpi\n dup1\n 0xb88d4fde\n eq\n tag_13\n jumpi\n dup1\n 0xc87b56dd\n eq\n tag_14\n jumpi\n dup1\n 0xe985e9c5\n eq\n tag_15\n jumpi\n jump(tag_2)\n tag_17:\n dup1\n 0x6352211e\n eq\n tag_9\n jumpi\n dup1\n 0x70a08231\n eq\n tag_10\n jumpi\n dup1\n 0x95d89b41\n eq\n tag_11\n jumpi\n jump(tag_2)\n tag_16:\n dup1\n 0x01ffc9a7\n eq\n tag_3\n jumpi\n dup1\n 0x06fdde03\n eq\n tag_4\n jumpi\n dup1\n 0x081812fc\n eq\n tag_5\n jumpi\n dup1\n 0x095ea7b3\n eq\n tag_6\n jumpi\n dup1\n 0x23b872dd\n eq\n tag_7\n jumpi\n dup1\n 0x42842e0e\n eq\n tag_8\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_3:\n tag_18\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_19\n swap2\n swap1\n tag_20\n jump\t// in\n tag_19:\n tag_21\n jump\t// in\n tag_18:\n mload(0x40)\n tag_22\n swap2\n swap1\n tag_23\n jump\t// in\n tag_22:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2488:2586 function name() public view virtual override returns (string memory) {... */\n tag_4:\n tag_24\n tag_25\n jump\t// in\n tag_24:\n mload(0x40)\n tag_26\n swap2\n swap1\n tag_27\n jump\t// in\n tag_26:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4000:4217 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_5:\n tag_28\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_29\n swap2\n swap1\n tag_30\n jump\t// in\n tag_29:\n tag_31\n jump\t// in\n tag_28:\n mload(0x40)\n tag_32\n swap2\n swap1\n tag_33\n jump\t// in\n tag_32:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3538:3939 function approve(address to, uint256 tokenId) public virtual override {... */\n tag_6:\n tag_34\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_35\n swap2\n swap1\n tag_36\n jump\t// in\n tag_35:\n tag_37\n jump\t// in\n tag_34:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4727:5057 function transferFrom(... */\n tag_7:\n tag_38\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_39\n swap2\n swap1\n tag_40\n jump\t// in\n tag_39:\n tag_41\n jump\t// in\n tag_38:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5123:5302 function safeTransferFrom(... */\n tag_8:\n tag_42\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_43\n swap2\n swap1\n tag_40\n jump\t// in\n tag_43:\n tag_44\n jump\t// in\n tag_42:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2191:2426 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n tag_9:\n tag_45\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_46\n swap2\n swap1\n tag_30\n jump\t// in\n tag_46:\n tag_47\n jump\t// in\n tag_45:\n mload(0x40)\n tag_48\n swap2\n swap1\n tag_33\n jump\t// in\n tag_48:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2134 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_10:\n tag_49\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_50\n swap2\n swap1\n tag_51\n jump\t// in\n tag_50:\n tag_52\n jump\t// in\n tag_49:\n mload(0x40)\n tag_53\n swap2\n swap1\n tag_54\n jump\t// in\n tag_53:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2650:2752 function symbol() public view virtual override returns (string memory) {... */\n tag_11:\n tag_55\n tag_56\n jump\t// in\n tag_55:\n mload(0x40)\n tag_57\n swap2\n swap1\n tag_27\n jump\t// in\n tag_57:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4284:4437 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_12:\n tag_58\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_59\n swap2\n swap1\n tag_60\n jump\t// in\n tag_59:\n tag_61\n jump\t// in\n tag_58:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5368:5688 function safeTransferFrom(... */\n tag_13:\n tag_62\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_63\n swap2\n swap1\n tag_64\n jump\t// in\n tag_63:\n tag_65\n jump\t// in\n tag_62:\n stop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2818:3147 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_14:\n tag_66\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_67\n swap2\n swap1\n tag_30\n jump\t// in\n tag_67:\n tag_68\n jump\t// in\n tag_66:\n mload(0x40)\n tag_69\n swap2\n swap1\n tag_27\n jump\t// in\n tag_69:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4503:4665 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_15:\n tag_70\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_71\n swap2\n swap1\n tag_72\n jump\t// in\n tag_71:\n tag_73\n jump\t// in\n tag_70:\n mload(0x40)\n tag_74\n swap2\n swap1\n tag_23\n jump\t// in\n tag_74:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n tag_21:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1672:1676 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1722:1747 type(IERC721).interfaceId */\n 0x80ac58cd00000000000000000000000000000000000000000000000000000000\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1747 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1718 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1747 interfaceId == type(IERC721).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_76\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1778:1811 type(IERC721Metadata).interfaceId */\n 0x5b5e139f00000000000000000000000000000000000000000000000000000000\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1811 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1774 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1763:1811 interfaceId == type(IERC721Metadata).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1811 interfaceId == type(IERC721).interfaceId ||... */\n tag_76:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1863 interfaceId == type(IERC721).interfaceId ||... */\n dup1\n tag_77\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1863 super.supportsInterface(interfaceId) */\n tag_78\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1851:1862 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1850 super.supportsInterface */\n tag_79\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1827:1863 super.supportsInterface(interfaceId) */\n jump\t// in\n tag_78:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1707:1863 interfaceId == type(IERC721).interfaceId ||... */\n tag_77:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1688:1863 return... */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1570:1870 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2488:2586 function name() public view virtual override returns (string memory) {... */\n tag_25:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2542:2555 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2574:2579 _name */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2567:2579 return _name */\n dup1\n sload\n tag_81\n swap1\n tag_82\n jump\t// in\n tag_81:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_83\n swap1\n tag_82\n jump\t// in\n tag_83:\n dup1\n iszero\n tag_84\n jumpi\n dup1\n 0x1f\n lt\n tag_85\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_84)\n tag_85:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_86:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_86\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_84:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2488:2586 function name() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4000:4217 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n tag_31:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4076:4083 address */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4103:4119 _exists(tokenId) */\n tag_88\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4111:4118 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4103:4110 _exists */\n tag_89\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4103:4119 _exists(tokenId) */\n jump\t// in\n tag_88:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4095:4168 require(_exists(tokenId), \"ERC721: approved query for nonexistent token\") */\n tag_90\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_91\n swap1\n tag_92\n jump\t// in\n tag_91:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_90:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4186:4201 _tokenApprovals */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4186:4210 _tokenApprovals[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4202:4209 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4186:4210 _tokenApprovals[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4179:4210 return _tokenApprovals[tokenId] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4000:4217 function getApproved(uint256 tokenId) public view virtual override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3538:3939 function approve(address to, uint256 tokenId) public virtual override {... */\n tag_37:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3618:3631 address owner */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3634:3657 ERC721.ownerOf(tokenId) */\n tag_94\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3649:3656 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3634:3648 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3634:3657 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_94:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3618:3657 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3681:3686 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3675:3686 to != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3675:3677 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3675:3686 to != owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3667:3724 require(to != owner, \"ERC721: approval to current owner\") */\n tag_95\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_96\n swap1\n tag_97\n jump\t// in\n tag_96:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_95:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3772:3777 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3756:3777 _msgSender() == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3756:3768 _msgSender() */\n tag_98\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3756:3766 _msgSender */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3756:3768 _msgSender() */\n jump\t// in\n tag_98:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3756:3777 _msgSender() == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3756:3818 _msgSender() == owner || isApprovedForAll(owner, _msgSender()) */\n dup1\n tag_100\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3781:3818 isApprovedForAll(owner, _msgSender()) */\n tag_101\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3798:3803 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3805:3817 _msgSender() */\n tag_102\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3805:3815 _msgSender */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3805:3817 _msgSender() */\n jump\t// in\n tag_102:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3781:3797 isApprovedForAll */\n tag_73\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3781:3818 isApprovedForAll(owner, _msgSender()) */\n jump\t// in\n tag_101:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3756:3818 _msgSender() == owner || isApprovedForAll(owner, _msgSender()) */\n tag_100:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3735:3900 require(... */\n tag_103\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_104\n swap1\n tag_105\n jump\t// in\n tag_104:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_103:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3911:3932 _approve(to, tokenId) */\n tag_106\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3920:3922 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3924:3931 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3911:3919 _approve */\n tag_107\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3911:3932 _approve(to, tokenId) */\n jump\t// in\n tag_106:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3608:3939 {... */\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3538:3939 function approve(address to, uint256 tokenId) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4727:5057 function transferFrom(... */\n tag_41:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4916:4957 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_109\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4935:4947 _msgSender() */\n tag_110\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4935:4945 _msgSender */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4935:4947 _msgSender() */\n jump\t// in\n tag_110:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4949:4956 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4916:4934 _isApprovedOrOwner */\n tag_111\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4916:4957 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_109:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4908:5011 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\") */\n tag_112\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_113\n swap1\n tag_114\n jump\t// in\n tag_113:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_112:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5022:5050 _transfer(from, to, tokenId) */\n tag_115\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5032:5036 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5038:5040 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5042:5049 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5022:5031 _transfer */\n tag_116\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5022:5050 _transfer(from, to, tokenId) */\n jump\t// in\n tag_115:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4727:5057 function transferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5123:5302 function safeTransferFrom(... */\n tag_44:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5256:5295 safeTransferFrom(from, to, tokenId, \"\") */\n tag_118\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5273:5277 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5279:5281 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5283:5290 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5256:5295 safeTransferFrom(from, to, tokenId, \"\") */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5256:5272 safeTransferFrom */\n tag_65\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5256:5295 safeTransferFrom(from, to, tokenId, \"\") */\n jump\t// in\n tag_118:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5123:5302 function safeTransferFrom(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2191:2426 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n tag_47:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2263:2270 address */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2282:2295 address owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2298:2305 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2298:2314 _owners[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2306:2313 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2298:2314 _owners[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2282:2314 address owner = _owners[tokenId] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2349:2350 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2332:2351 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2332:2337 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2332:2351 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2324:2397 require(owner != address(0), \"ERC721: owner query for nonexistent token\") */\n tag_120\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_121\n swap1\n tag_122\n jump\t// in\n tag_121:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_120:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2414:2419 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2407:2419 return owner */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2191:2426 function ownerOf(uint256 tokenId) public view virtual override returns (address) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2134 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n tag_52:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2001:2008 uint256 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2045:2046 0 */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2047 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2033 owner */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2028:2047 owner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2020:2094 require(owner != address(0), \"ERC721: balance query for the zero address\") */\n tag_124\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_125\n swap1\n tag_126\n jump\t// in\n tag_125:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_124:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2111:2120 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2111:2127 _balances[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2121:2126 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2111:2127 _balances[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2104:2127 return _balances[owner] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":1929:2134 function balanceOf(address owner) public view virtual override returns (uint256) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2650:2752 function symbol() public view virtual override returns (string memory) {... */\n tag_56:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2706:2719 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2738:2745 _symbol */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2731:2745 return _symbol */\n dup1\n sload\n tag_128\n swap1\n tag_82\n jump\t// in\n tag_128:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_129\n swap1\n tag_82\n jump\t// in\n tag_129:\n dup1\n iszero\n tag_130\n jumpi\n dup1\n 0x1f\n lt\n tag_131\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_130)\n tag_131:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_132:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_132\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_130:\n pop\n pop\n pop\n pop\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2650:2752 function symbol() public view virtual override returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4284:4437 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n tag_61:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4378:4430 _setApprovalForAll(_msgSender(), operator, approved) */\n tag_134\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4397:4409 _msgSender() */\n tag_135\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4397:4407 _msgSender */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4397:4409 _msgSender() */\n jump\t// in\n tag_135:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4411:4419 operator */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4421:4429 approved */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4378:4396 _setApprovalForAll */\n tag_136\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4378:4430 _setApprovalForAll(_msgSender(), operator, approved) */\n jump\t// in\n tag_134:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4284:4437 function setApprovalForAll(address operator, bool approved) public virtual override {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5368:5688 function safeTransferFrom(... */\n tag_65:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5537:5578 _isApprovedOrOwner(_msgSender(), tokenId) */\n tag_138\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5556:5568 _msgSender() */\n tag_139\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5556:5566 _msgSender */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5556:5568 _msgSender() */\n jump\t// in\n tag_139:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5570:5577 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5537:5555 _isApprovedOrOwner */\n tag_111\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5537:5578 _isApprovedOrOwner(_msgSender(), tokenId) */\n jump\t// in\n tag_138:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5529:5632 require(_isApprovedOrOwner(_msgSender(), tokenId), \"ERC721: transfer caller is not owner nor approved\") */\n tag_140\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_141\n swap1\n tag_114\n jump\t// in\n tag_141:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_140:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5642:5681 _safeTransfer(from, to, tokenId, _data) */\n tag_142\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5656:5660 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5662:5664 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5666:5673 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5675:5680 _data */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5642:5655 _safeTransfer */\n tag_143\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5642:5681 _safeTransfer(from, to, tokenId, _data) */\n jump\t// in\n tag_142:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":5368:5688 function safeTransferFrom(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2818:3147 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n tag_68:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2891:2904 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2924:2940 _exists(tokenId) */\n tag_145\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2932:2939 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2924:2931 _exists */\n tag_89\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2924:2940 _exists(tokenId) */\n jump\t// in\n tag_145:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2916:2992 require(_exists(tokenId), \"ERC721Metadata: URI query for nonexistent token\") */\n tag_146\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_147\n swap1\n tag_148\n jump\t// in\n tag_147:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_146:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3003:3024 string memory baseURI */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3027:3037 _baseURI() */\n tag_149\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3027:3035 _baseURI */\n tag_150\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3027:3037 _baseURI() */\n jump\t// in\n tag_149:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3003:3037 string memory baseURI = _baseURI() */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3078:3079 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3060:3067 baseURI */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3054:3075 bytes(baseURI).length */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3054:3079 bytes(baseURI).length > 0 */\n gt\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3054:3140 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_151\n jumpi\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n jump(tag_152)\n tag_151:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3106:3113 baseURI */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3115:3133 tokenId.toString() */\n tag_153\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3115:3122 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3115:3131 tokenId.toString */\n tag_154\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3115:3133 tokenId.toString() */\n jump\t// in\n tag_153:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3089:3134 abi.encodePacked(baseURI, tokenId.toString()) */\n add(0x20, mload(0x40))\n tag_155\n swap3\n swap2\n swap1\n tag_156\n jump\t// in\n tag_155:\n mload(0x40)\n 0x20\n dup2\n dup4\n sub\n sub\n dup2\n mstore\n swap1\n 0x40\n mstore\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3054:3140 bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n tag_152:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3047:3140 return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : \"\" */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":2818:3147 function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4503:4665 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n tag_73:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4600:4604 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4623:4641 _operatorApprovals */\n 0x05\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4623:4648 _operatorApprovals[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4642:4647 owner */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4623:4648 _operatorApprovals[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4623:4658 _operatorApprovals[owner][operator] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4649:4657 operator */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4623:4658 _operatorApprovals[owner][operator] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4616:4658 return _operatorApprovals[owner][operator] */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":4503:4665 function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":829:984 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n tag_79:\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":914:918 bool */\n 0x00\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":952:977 type(IERC165).interfaceId */\n 0x01ffc9a700000000000000000000000000000000000000000000000000000000\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:948 interfaceId */\n dup3\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":937:977 interfaceId == type(IERC165).interfaceId */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":930:977 return interfaceId == type(IERC165).interfaceId */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/introspection/ERC165.sol\":829:984 function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7160:7285 function _exists(uint256 tokenId) internal view virtual returns (bool) {... */\n tag_89:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7225:7229 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7276:7277 0 */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7248:7278 _owners[tokenId] != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7248:7255 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7248:7264 _owners[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7256:7263 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7248:7264 _owners[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7248:7278 _owners[tokenId] != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7241:7278 return _owners[tokenId] != address(0) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7160:7285 function _exists(uint256 tokenId) internal view virtual returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_99:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11169:11340 function _approve(address to, uint256 tokenId) internal virtual {... */\n tag_107:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11270:11272 to */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11243:11258 _tokenApprovals */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11243:11267 _tokenApprovals[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11259:11266 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11243:11267 _tokenApprovals[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11243:11272 _tokenApprovals[tokenId] = to */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11325:11332 tokenId */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11321:11323 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11287:11333 Approval(ERC721.ownerOf(tokenId), to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11296:11319 ERC721.ownerOf(tokenId) */\n tag_162\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11311:11318 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11296:11310 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11296:11319 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_162:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11287:11333 Approval(ERC721.ownerOf(tokenId), to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11169:11340 function _approve(address to, uint256 tokenId) internal virtual {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7443:7787 function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {... */\n tag_111:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7536:7540 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7560:7576 _exists(tokenId) */\n tag_164\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7568:7575 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7560:7567 _exists */\n tag_89\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7560:7576 _exists(tokenId) */\n jump\t// in\n tag_164:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7552:7625 require(_exists(tokenId), \"ERC721: operator query for nonexistent token\") */\n tag_165\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_166\n swap1\n tag_167\n jump\t// in\n tag_166:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_165:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7635:7648 address owner */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7651:7674 ERC721.ownerOf(tokenId) */\n tag_168\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7666:7673 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7651:7665 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7651:7674 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_168:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7635:7674 address owner = ERC721.ownerOf(tokenId) */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7703:7708 owner */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7692:7708 spender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7692:7699 spender */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7692:7708 spender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7692:7744 spender == owner || isApprovedForAll(owner, spender) */\n dup1\n tag_169\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7712:7744 isApprovedForAll(owner, spender) */\n tag_170\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7729:7734 owner */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7736:7743 spender */\n dup6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7712:7728 isApprovedForAll */\n tag_73\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7712:7744 isApprovedForAll(owner, spender) */\n jump\t// in\n tag_170:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7692:7744 spender == owner || isApprovedForAll(owner, spender) */\n tag_169:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7692:7779 spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender */\n dup1\n tag_171\n jumpi\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7772:7779 spender */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7748:7779 getApproved(tokenId) == spender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7748:7768 getApproved(tokenId) */\n tag_172\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7760:7767 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7748:7759 getApproved */\n tag_31\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7748:7768 getApproved(tokenId) */\n jump\t// in\n tag_172:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7748:7779 getApproved(tokenId) == spender */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7692:7779 spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender */\n tag_171:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7684:7780 return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender) */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":7443:7787 function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10453:11058 function _transfer(... */\n tag_116:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10607:10611 from */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10580:10611 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10580:10603 ERC721.ownerOf(tokenId) */\n tag_174\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10595:10602 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10580:10594 ERC721.ownerOf */\n tag_47\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10580:10603 ERC721.ownerOf(tokenId) */\n jump\t// in\n tag_174:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10580:10611 ERC721.ownerOf(tokenId) == from */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10572:10653 require(ERC721.ownerOf(tokenId) == from, \"ERC721: transfer from incorrect owner\") */\n tag_175\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_176\n swap1\n tag_177\n jump\t// in\n tag_176:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_175:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10685:10686 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10671:10687 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10671:10673 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10671:10687 to != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10663:10728 require(to != address(0), \"ERC721: transfer to the zero address\") */\n tag_178\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_179\n swap1\n tag_180\n jump\t// in\n tag_179:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_178:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10739:10778 _beforeTokenTransfer(from, to, tokenId) */\n tag_181\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10760:10764 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10766:10768 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10770:10777 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10739:10759 _beforeTokenTransfer */\n tag_182\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10739:10778 _beforeTokenTransfer(from, to, tokenId) */\n jump\t// in\n tag_181:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10840:10869 _approve(address(0), tokenId) */\n tag_183\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10857:10858 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10861:10868 tokenId */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10840:10848 _approve */\n tag_107\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10840:10869 _approve(address(0), tokenId) */\n jump\t// in\n tag_183:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10899:10900 1 */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10880:10889 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10880:10895 _balances[from] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10890:10894 from */\n dup6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10880:10895 _balances[from] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10880:10900 _balances[from] -= 1 */\n dup3\n dup3\n sload\n tag_184\n swap2\n swap1\n tag_185\n jump\t// in\n tag_184:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10927:10928 1 */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10910:10919 _balances */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10910:10923 _balances[to] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10920:10922 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10910:10923 _balances[to] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10910:10928 _balances[to] += 1 */\n dup3\n dup3\n sload\n tag_186\n swap2\n swap1\n tag_187\n jump\t// in\n tag_186:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10957:10959 to */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10938:10945 _owners */\n 0x02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10938:10954 _owners[tokenId] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10946:10953 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10938:10954 _owners[tokenId] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10938:10959 _owners[tokenId] = to */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10994:11001 tokenId */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10990:10992 to */\n dup3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10975:11002 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10984:10988 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10975:11002 Transfer(from, to, tokenId) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11013:11051 _afterTokenTransfer(from, to, tokenId) */\n tag_188\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11033:11037 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11039:11041 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11043:11050 tokenId */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11013:11032 _afterTokenTransfer */\n tag_189\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11013:11051 _afterTokenTransfer(from, to, tokenId) */\n jump\t// in\n tag_188:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":10453:11058 function _transfer(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11475:11782 function _setApprovalForAll(... */\n tag_136:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11625:11633 operator */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11616:11633 owner != operator */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11616:11621 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11616:11633 owner != operator */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11608:11663 require(owner != operator, \"ERC721: approve to caller\") */\n tag_191\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_192\n swap1\n tag_193\n jump\t// in\n tag_192:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_191:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11711:11719 approved */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11673:11691 _operatorApprovals */\n 0x05\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11673:11698 _operatorApprovals[owner] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11692:11697 owner */\n dup6\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11673:11698 _operatorApprovals[owner] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11673:11708 _operatorApprovals[owner][operator] */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11699:11707 operator */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11673:11708 _operatorApprovals[owner][operator] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11673:11719 _operatorApprovals[owner][operator] = approved */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11756:11764 operator */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11734:11775 ApprovalForAll(owner, operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11749:11754 owner */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11734:11775 ApprovalForAll(owner, operator, approved) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11766:11774 approved */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11734:11775 ApprovalForAll(owner, operator, approved) */\n mload(0x40)\n tag_194\n swap2\n swap1\n tag_23\n jump\t// in\n tag_194:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":11475:11782 function _setApprovalForAll(... */\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6550:6857 function _safeTransfer(... */\n tag_143:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6701:6729 _transfer(from, to, tokenId) */\n tag_196\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6711:6715 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6717:6719 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6721:6728 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6701:6710 _transfer */\n tag_116\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6701:6729 _transfer(from, to, tokenId) */\n jump\t// in\n tag_196:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6747:6795 _checkOnERC721Received(from, to, tokenId, _data) */\n tag_197\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6770:6774 from */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6776:6778 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6780:6787 tokenId */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6789:6794 _data */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6747:6769 _checkOnERC721Received */\n tag_198\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6747:6795 _checkOnERC721Received(from, to, tokenId, _data) */\n jump\t// in\n tag_197:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6739:6850 require(_checkOnERC721Received(from, to, tokenId, _data), \"ERC721: transfer to non ERC721Receiver implementer\") */\n tag_199\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_200\n swap1\n tag_201\n jump\t// in\n tag_200:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_199:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":6550:6857 function _safeTransfer(... */\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3389:3481 function _baseURI() internal view virtual returns (string memory) {... */\n tag_150:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3440:3453 string memory */\n 0x60\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3465:3474 return \"\" */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":3389:3481 function _baseURI() internal view virtual returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Strings.sol\":328:1031 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_154:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":384:397 string memory */\n 0x60\n /* \"@openzeppelin/contracts/utils/Strings.sol\":610:611 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":601:606 value */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":601:611 value == 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":597:648 if (value == 0) {... */\n iszero\n tag_204\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":627:637 return \"0\" */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x01\n dup2\n mstore\n 0x20\n add\n 0x3000000000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n swap1\n pop\n jump(tag_203)\n /* \"@openzeppelin/contracts/utils/Strings.sol\":597:648 if (value == 0) {... */\n tag_204:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":657:669 uint256 temp */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":672:677 value */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":657:677 uint256 temp = value */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":687:701 uint256 digits */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":711:786 while (temp != 0) {... */\n tag_205:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":726:727 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":718:722 temp */\n dup3\n /* \"@openzeppelin/contracts/utils/Strings.sol\":718:727 temp != 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":711:786 while (temp != 0) {... */\n tag_206\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":743:751 digits++ */\n dup1\n dup1\n tag_207\n swap1\n tag_208\n jump\t// in\n tag_207:\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":773:775 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":765:775 temp /= 10 */\n dup3\n tag_209\n swap2\n swap1\n tag_210\n jump\t// in\n tag_209:\n swap2\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":711:786 while (temp != 0) {... */\n jump(tag_205)\n tag_206:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":795:814 bytes memory buffer */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":827:833 digits */\n dup2\n /* \"@openzeppelin/contracts/utils/Strings.sol\":817:834 new bytes(digits) */\n 0xffffffffffffffff\n dup2\n gt\n iszero\n tag_211\n jumpi\n tag_212\n tag_213\n jump\t// in\n tag_212:\n tag_211:\n mload(0x40)\n swap1\n dup1\n dup3\n mstore\n dup1\n 0x1f\n add\n not(0x1f)\n and\n 0x20\n add\n dup3\n add\n 0x40\n mstore\n dup1\n iszero\n tag_214\n jumpi\n dup2\n 0x20\n add\n 0x01\n dup3\n mul\n dup1\n calldatasize\n dup4\n calldatacopy\n dup1\n dup3\n add\n swap2\n pop\n pop\n swap1\n pop\n tag_214:\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":795:834 bytes memory buffer = new bytes(digits) */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":844:994 while (value != 0) {... */\n tag_215:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":860:861 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Strings.sol\":851:856 value */\n dup6\n /* \"@openzeppelin/contracts/utils/Strings.sol\":851:861 value != 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Strings.sol\":844:994 while (value != 0) {... */\n tag_216\n jumpi\n /* \"@openzeppelin/contracts/utils/Strings.sol\":887:888 1 */\n 0x01\n /* \"@openzeppelin/contracts/utils/Strings.sol\":877:888 digits -= 1 */\n dup3\n tag_217\n swap2\n swap1\n tag_185\n jump\t// in\n tag_217:\n swap2\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":953:955 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":945:950 value */\n dup6\n /* \"@openzeppelin/contracts/utils/Strings.sol\":945:955 value % 10 */\n tag_218\n swap2\n swap1\n tag_219\n jump\t// in\n tag_218:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":932:934 48 */\n 0x30\n /* \"@openzeppelin/contracts/utils/Strings.sol\":932:956 48 + uint256(value % 10) */\n tag_220\n swap2\n swap1\n tag_187\n jump\t// in\n tag_220:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":919:958 bytes1(uint8(48 + uint256(value % 10))) */\n 0xf8\n shl\n /* \"@openzeppelin/contracts/utils/Strings.sol\":902:908 buffer */\n dup2\n /* \"@openzeppelin/contracts/utils/Strings.sol\":909:915 digits */\n dup4\n /* \"@openzeppelin/contracts/utils/Strings.sol\":902:916 buffer[digits] */\n dup2\n mload\n dup2\n lt\n tag_221\n jumpi\n tag_222\n tag_223\n jump\t// in\n tag_222:\n tag_221:\n 0x20\n add\n add\n /* \"@openzeppelin/contracts/utils/Strings.sol\":902:958 buffer[digits] = bytes1(uint8(48 + uint256(value % 10))) */\n swap1\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n swap1\n dup2\n 0x00\n byte\n swap1\n mstore8\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":981:983 10 */\n 0x0a\n /* \"@openzeppelin/contracts/utils/Strings.sol\":972:983 value /= 10 */\n dup6\n tag_224\n swap2\n swap1\n tag_210\n jump\t// in\n tag_224:\n swap5\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":844:994 while (value != 0) {... */\n jump(tag_215)\n tag_216:\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1017:1023 buffer */\n dup1\n /* \"@openzeppelin/contracts/utils/Strings.sol\":1003:1024 return string(buffer) */\n swap4\n pop\n pop\n pop\n pop\n /* \"@openzeppelin/contracts/utils/Strings.sol\":328:1031 function toString(uint256 value) internal pure returns (string memory) {... */\n tag_203:\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13669:13791 function _beforeTokenTransfer(... */\n tag_182:\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":14163:14284 function _afterTokenTransfer(... */\n tag_189:\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12335:13113 function _checkOnERC721Received(... */\n tag_198:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12485:12489 bool */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12505:12520 to.isContract() */\n tag_228\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12505:12507 to */\n dup5\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12505:12518 to.isContract */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n tag_229\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12505:12520 to.isContract() */\n jump\t// in\n tag_228:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12501:13107 if (to.isContract()) {... */\n iszero\n tag_230\n jumpi\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12556:12558 to */\n dup4\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12540:12576 IERC721Receiver(to).onERC721Received */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x150b7a02\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12577:12589 _msgSender() */\n tag_231\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12577:12587 _msgSender */\n tag_99\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12577:12589 _msgSender() */\n jump\t// in\n tag_231:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12591:12595 from */\n dup8\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12597:12604 tokenId */\n dup7\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12606:12611 _data */\n dup7\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12540:12612 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) */\n mload(0x40)\n dup6\n 0xffffffff\n and\n 0xe0\n shl\n dup2\n mstore\n 0x04\n add\n tag_232\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_233\n jump\t// in\n tag_232:\n 0x20\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n 0x00\n dup8\n dup1\n extcodesize\n iszero\n dup1\n iszero\n tag_234\n jumpi\n 0x00\n dup1\n revert\n tag_234:\n pop\n gas\n call\n swap3\n pop\n pop\n pop\n dup1\n iszero\n tag_235\n jumpi\n pop\n mload(0x40)\n returndatasize\n not(0x1f)\n 0x1f\n dup3\n add\n and\n dup3\n add\n dup1\n 0x40\n mstore\n pop\n dup2\n add\n swap1\n tag_236\n swap2\n swap1\n tag_237\n jump\t// in\n tag_236:\n 0x01\n tag_235:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12536:13055 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {... */\n tag_238\n jumpi\n returndatasize\n dup1\n 0x00\n dup2\n eq\n tag_243\n jumpi\n mload(0x40)\n swap2\n pop\n and(add(returndatasize, 0x3f), not(0x1f))\n dup3\n add\n 0x40\n mstore\n returndatasize\n dup3\n mstore\n returndatasize\n 0x00\n 0x20\n dup5\n add\n returndatacopy\n jump(tag_242)\n tag_243:\n 0x60\n swap2\n pop\n tag_242:\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12796:12797 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12779:12785 reason */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12779:12792 reason.length */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12779:12797 reason.length == 0 */\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12775:13041 if (reason.length == 0) {... */\n iszero\n tag_244\n jumpi\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12821:12881 revert(\"ERC721: transfer to non ERC721Receiver implementer\") */\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_245\n swap1\n tag_201\n jump\t// in\n tag_245:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12775:13041 if (reason.length == 0) {... */\n tag_244:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12993:12999 reason */\n dup1\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12987:13000 mload(reason) */\n mload\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12978:12984 reason */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12974:12976 32 */\n 0x20\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12970:12985 add(32, reason) */\n add\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12963:13001 revert(add(32, reason), mload(reason)) */\n revert\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12536:13055 try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {... */\n tag_238:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12672:12713 IERC721Receiver.onERC721Received.selector */\n shl(0xe0, 0x150b7a02)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12662:12713 retval == IERC721Receiver.onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12662:12668 retval */\n dup2\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12662:12713 retval == IERC721Receiver.onERC721Received.selector */\n not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n and\n eq\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12655:12713 return retval == IERC721Receiver.onERC721Received.selector */\n swap2\n pop\n pop\n jump(tag_227)\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12501:13107 if (to.isContract()) {... */\n tag_230:\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13092:13096 true */\n 0x01\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":13085:13096 return true */\n swap1\n pop\n /* \"@openzeppelin/contracts/token/ERC721/ERC721.sol\":12335:13113 function _checkOnERC721Received(... */\n tag_227:\n swap5\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Address.sol\":1175:1495 function isContract(address account) internal view returns (bool) {... */\n tag_229:\n /* \"@openzeppelin/contracts/utils/Address.sol\":1235:1239 bool */\n 0x00\n /* \"@openzeppelin/contracts/utils/Address.sol\":1487:1488 0 */\n dup1\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1472 account */\n dup3\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1484 account.code.length */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n extcodesize\n /* \"@openzeppelin/contracts/utils/Address.sol\":1465:1488 account.code.length > 0 */\n gt\n /* \"@openzeppelin/contracts/utils/Address.sol\":1458:1488 return account.code.length > 0 */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Address.sol\":1175:1495 function isContract(address account) internal view returns (bool) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7:417 */\n tag_251:\n /* \"#utility.yul\":84:89 */\n 0x00\n /* \"#utility.yul\":109:174 */\n tag_253\n /* \"#utility.yul\":125:173 */\n tag_254\n /* \"#utility.yul\":166:172 */\n dup5\n /* \"#utility.yul\":125:173 */\n tag_255\n jump\t// in\n tag_254:\n /* \"#utility.yul\":109:174 */\n tag_256\n jump\t// in\n tag_253:\n /* \"#utility.yul\":100:174 */\n swap1\n pop\n /* \"#utility.yul\":197:203 */\n dup3\n /* \"#utility.yul\":190:195 */\n dup2\n /* \"#utility.yul\":183:204 */\n mstore\n /* \"#utility.yul\":235:239 */\n 0x20\n /* \"#utility.yul\":228:233 */\n dup2\n /* \"#utility.yul\":224:240 */\n add\n /* \"#utility.yul\":273:276 */\n dup5\n /* \"#utility.yul\":264:270 */\n dup5\n /* \"#utility.yul\":259:262 */\n dup5\n /* \"#utility.yul\":255:271 */\n add\n /* \"#utility.yul\":252:277 */\n gt\n /* \"#utility.yul\":249:361 */\n iszero\n tag_257\n jumpi\n /* \"#utility.yul\":280:359 */\n tag_258\n tag_259\n jump\t// in\n tag_258:\n /* \"#utility.yul\":249:361 */\n tag_257:\n /* \"#utility.yul\":370:411 */\n tag_260\n /* \"#utility.yul\":404:410 */\n dup5\n /* \"#utility.yul\":399:402 */\n dup3\n /* \"#utility.yul\":394:397 */\n dup6\n /* \"#utility.yul\":370:411 */\n tag_261\n jump\t// in\n tag_260:\n /* \"#utility.yul\":90:417 */\n pop\n /* \"#utility.yul\":7:417 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":423:562 */\n tag_262:\n /* \"#utility.yul\":469:474 */\n 0x00\n /* \"#utility.yul\":507:513 */\n dup2\n /* \"#utility.yul\":494:514 */\n calldataload\n /* \"#utility.yul\":485:514 */\n swap1\n pop\n /* \"#utility.yul\":523:556 */\n tag_264\n /* \"#utility.yul\":550:555 */\n dup2\n /* \"#utility.yul\":523:556 */\n tag_265\n jump\t// in\n tag_264:\n /* \"#utility.yul\":423:562 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":568:701 */\n tag_266:\n /* \"#utility.yul\":611:616 */\n 0x00\n /* \"#utility.yul\":649:655 */\n dup2\n /* \"#utility.yul\":636:656 */\n calldataload\n /* \"#utility.yul\":627:656 */\n swap1\n pop\n /* \"#utility.yul\":665:695 */\n tag_268\n /* \"#utility.yul\":689:694 */\n dup2\n /* \"#utility.yul\":665:695 */\n tag_269\n jump\t// in\n tag_268:\n /* \"#utility.yul\":568:701 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":707:844 */\n tag_270:\n /* \"#utility.yul\":752:757 */\n 0x00\n /* \"#utility.yul\":790:796 */\n dup2\n /* \"#utility.yul\":777:797 */\n calldataload\n /* \"#utility.yul\":768:797 */\n swap1\n pop\n /* \"#utility.yul\":806:838 */\n tag_272\n /* \"#utility.yul\":832:837 */\n dup2\n /* \"#utility.yul\":806:838 */\n tag_273\n jump\t// in\n tag_272:\n /* \"#utility.yul\":707:844 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":850:991 */\n tag_274:\n /* \"#utility.yul\":906:911 */\n 0x00\n /* \"#utility.yul\":937:943 */\n dup2\n /* \"#utility.yul\":931:944 */\n mload\n /* \"#utility.yul\":922:944 */\n swap1\n pop\n /* \"#utility.yul\":953:985 */\n tag_276\n /* \"#utility.yul\":979:984 */\n dup2\n /* \"#utility.yul\":953:985 */\n tag_273\n jump\t// in\n tag_276:\n /* \"#utility.yul\":850:991 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1010:1348 */\n tag_277:\n /* \"#utility.yul\":1065:1070 */\n 0x00\n /* \"#utility.yul\":1114:1117 */\n dup3\n /* \"#utility.yul\":1107:1111 */\n 0x1f\n /* \"#utility.yul\":1099:1105 */\n dup4\n /* \"#utility.yul\":1095:1112 */\n add\n /* \"#utility.yul\":1091:1118 */\n slt\n /* \"#utility.yul\":1081:1203 */\n tag_279\n jumpi\n /* \"#utility.yul\":1122:1201 */\n tag_280\n tag_281\n jump\t// in\n tag_280:\n /* \"#utility.yul\":1081:1203 */\n tag_279:\n /* \"#utility.yul\":1239:1245 */\n dup2\n /* \"#utility.yul\":1226:1246 */\n calldataload\n /* \"#utility.yul\":1264:1342 */\n tag_282\n /* \"#utility.yul\":1338:1341 */\n dup5\n /* \"#utility.yul\":1330:1336 */\n dup3\n /* \"#utility.yul\":1323:1327 */\n 0x20\n /* \"#utility.yul\":1315:1321 */\n dup7\n /* \"#utility.yul\":1311:1328 */\n add\n /* \"#utility.yul\":1264:1342 */\n tag_251\n jump\t// in\n tag_282:\n /* \"#utility.yul\":1255:1342 */\n swap2\n pop\n /* \"#utility.yul\":1071:1348 */\n pop\n /* \"#utility.yul\":1010:1348 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1354:1493 */\n tag_283:\n /* \"#utility.yul\":1400:1405 */\n 0x00\n /* \"#utility.yul\":1438:1444 */\n dup2\n /* \"#utility.yul\":1425:1445 */\n calldataload\n /* \"#utility.yul\":1416:1445 */\n swap1\n pop\n /* \"#utility.yul\":1454:1487 */\n tag_285\n /* \"#utility.yul\":1481:1486 */\n dup2\n /* \"#utility.yul\":1454:1487 */\n tag_286\n jump\t// in\n tag_285:\n /* \"#utility.yul\":1354:1493 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1499:1828 */\n tag_51:\n /* \"#utility.yul\":1558:1564 */\n 0x00\n /* \"#utility.yul\":1607:1609 */\n 0x20\n /* \"#utility.yul\":1595:1604 */\n dup3\n /* \"#utility.yul\":1586:1593 */\n dup5\n /* \"#utility.yul\":1582:1605 */\n sub\n /* \"#utility.yul\":1578:1610 */\n slt\n /* \"#utility.yul\":1575:1694 */\n iszero\n tag_288\n jumpi\n /* \"#utility.yul\":1613:1692 */\n tag_289\n tag_290\n jump\t// in\n tag_289:\n /* \"#utility.yul\":1575:1694 */\n tag_288:\n /* \"#utility.yul\":1733:1734 */\n 0x00\n /* \"#utility.yul\":1758:1811 */\n tag_291\n /* \"#utility.yul\":1803:1810 */\n dup5\n /* \"#utility.yul\":1794:1800 */\n dup3\n /* \"#utility.yul\":1783:1792 */\n dup6\n /* \"#utility.yul\":1779:1801 */\n add\n /* \"#utility.yul\":1758:1811 */\n tag_262\n jump\t// in\n tag_291:\n /* \"#utility.yul\":1748:1811 */\n swap2\n pop\n /* \"#utility.yul\":1704:1821 */\n pop\n /* \"#utility.yul\":1499:1828 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1834:2308 */\n tag_72:\n /* \"#utility.yul\":1902:1908 */\n 0x00\n /* \"#utility.yul\":1910:1916 */\n dup1\n /* \"#utility.yul\":1959:1961 */\n 0x40\n /* \"#utility.yul\":1947:1956 */\n dup4\n /* \"#utility.yul\":1938:1945 */\n dup6\n /* \"#utility.yul\":1934:1957 */\n sub\n /* \"#utility.yul\":1930:1962 */\n slt\n /* \"#utility.yul\":1927:2046 */\n iszero\n tag_293\n jumpi\n /* \"#utility.yul\":1965:2044 */\n tag_294\n tag_290\n jump\t// in\n tag_294:\n /* \"#utility.yul\":1927:2046 */\n tag_293:\n /* \"#utility.yul\":2085:2086 */\n 0x00\n /* \"#utility.yul\":2110:2163 */\n tag_295\n /* \"#utility.yul\":2155:2162 */\n dup6\n /* \"#utility.yul\":2146:2152 */\n dup3\n /* \"#utility.yul\":2135:2144 */\n dup7\n /* \"#utility.yul\":2131:2153 */\n add\n /* \"#utility.yul\":2110:2163 */\n tag_262\n jump\t// in\n tag_295:\n /* \"#utility.yul\":2100:2163 */\n swap3\n pop\n /* \"#utility.yul\":2056:2173 */\n pop\n /* \"#utility.yul\":2212:2214 */\n 0x20\n /* \"#utility.yul\":2238:2291 */\n tag_296\n /* \"#utility.yul\":2283:2290 */\n dup6\n /* \"#utility.yul\":2274:2280 */\n dup3\n /* \"#utility.yul\":2263:2272 */\n dup7\n /* \"#utility.yul\":2259:2281 */\n add\n /* \"#utility.yul\":2238:2291 */\n tag_262\n jump\t// in\n tag_296:\n /* \"#utility.yul\":2228:2291 */\n swap2\n pop\n /* \"#utility.yul\":2183:2301 */\n pop\n /* \"#utility.yul\":1834:2308 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2314:2933 */\n tag_40:\n /* \"#utility.yul\":2391:2397 */\n 0x00\n /* \"#utility.yul\":2399:2405 */\n dup1\n /* \"#utility.yul\":2407:2413 */\n 0x00\n /* \"#utility.yul\":2456:2458 */\n 0x60\n /* \"#utility.yul\":2444:2453 */\n dup5\n /* \"#utility.yul\":2435:2442 */\n dup7\n /* \"#utility.yul\":2431:2454 */\n sub\n /* \"#utility.yul\":2427:2459 */\n slt\n /* \"#utility.yul\":2424:2543 */\n iszero\n tag_298\n jumpi\n /* \"#utility.yul\":2462:2541 */\n tag_299\n tag_290\n jump\t// in\n tag_299:\n /* \"#utility.yul\":2424:2543 */\n tag_298:\n /* \"#utility.yul\":2582:2583 */\n 0x00\n /* \"#utility.yul\":2607:2660 */\n tag_300\n /* \"#utility.yul\":2652:2659 */\n dup7\n /* \"#utility.yul\":2643:2649 */\n dup3\n /* \"#utility.yul\":2632:2641 */\n dup8\n /* \"#utility.yul\":2628:2650 */\n add\n /* \"#utility.yul\":2607:2660 */\n tag_262\n jump\t// in\n tag_300:\n /* \"#utility.yul\":2597:2660 */\n swap4\n pop\n /* \"#utility.yul\":2553:2670 */\n pop\n /* \"#utility.yul\":2709:2711 */\n 0x20\n /* \"#utility.yul\":2735:2788 */\n tag_301\n /* \"#utility.yul\":2780:2787 */\n dup7\n /* \"#utility.yul\":2771:2777 */\n dup3\n /* \"#utility.yul\":2760:2769 */\n dup8\n /* \"#utility.yul\":2756:2778 */\n add\n /* \"#utility.yul\":2735:2788 */\n tag_262\n jump\t// in\n tag_301:\n /* \"#utility.yul\":2725:2788 */\n swap3\n pop\n /* \"#utility.yul\":2680:2798 */\n pop\n /* \"#utility.yul\":2837:2839 */\n 0x40\n /* \"#utility.yul\":2863:2916 */\n tag_302\n /* \"#utility.yul\":2908:2915 */\n dup7\n /* \"#utility.yul\":2899:2905 */\n dup3\n /* \"#utility.yul\":2888:2897 */\n dup8\n /* \"#utility.yul\":2884:2906 */\n add\n /* \"#utility.yul\":2863:2916 */\n tag_283\n jump\t// in\n tag_302:\n /* \"#utility.yul\":2853:2916 */\n swap2\n pop\n /* \"#utility.yul\":2808:2926 */\n pop\n /* \"#utility.yul\":2314:2933 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":2939:3882 */\n tag_64:\n /* \"#utility.yul\":3034:3040 */\n 0x00\n /* \"#utility.yul\":3042:3048 */\n dup1\n /* \"#utility.yul\":3050:3056 */\n 0x00\n /* \"#utility.yul\":3058:3064 */\n dup1\n /* \"#utility.yul\":3107:3110 */\n 0x80\n /* \"#utility.yul\":3095:3104 */\n dup6\n /* \"#utility.yul\":3086:3093 */\n dup8\n /* \"#utility.yul\":3082:3105 */\n sub\n /* \"#utility.yul\":3078:3111 */\n slt\n /* \"#utility.yul\":3075:3195 */\n iszero\n tag_304\n jumpi\n /* \"#utility.yul\":3114:3193 */\n tag_305\n tag_290\n jump\t// in\n tag_305:\n /* \"#utility.yul\":3075:3195 */\n tag_304:\n /* \"#utility.yul\":3234:3235 */\n 0x00\n /* \"#utility.yul\":3259:3312 */\n tag_306\n /* \"#utility.yul\":3304:3311 */\n dup8\n /* \"#utility.yul\":3295:3301 */\n dup3\n /* \"#utility.yul\":3284:3293 */\n dup9\n /* \"#utility.yul\":3280:3302 */\n add\n /* \"#utility.yul\":3259:3312 */\n tag_262\n jump\t// in\n tag_306:\n /* \"#utility.yul\":3249:3312 */\n swap5\n pop\n /* \"#utility.yul\":3205:3322 */\n pop\n /* \"#utility.yul\":3361:3363 */\n 0x20\n /* \"#utility.yul\":3387:3440 */\n tag_307\n /* \"#utility.yul\":3432:3439 */\n dup8\n /* \"#utility.yul\":3423:3429 */\n dup3\n /* \"#utility.yul\":3412:3421 */\n dup9\n /* \"#utility.yul\":3408:3430 */\n add\n /* \"#utility.yul\":3387:3440 */\n tag_262\n jump\t// in\n tag_307:\n /* \"#utility.yul\":3377:3440 */\n swap4\n pop\n /* \"#utility.yul\":3332:3450 */\n pop\n /* \"#utility.yul\":3489:3491 */\n 0x40\n /* \"#utility.yul\":3515:3568 */\n tag_308\n /* \"#utility.yul\":3560:3567 */\n dup8\n /* \"#utility.yul\":3551:3557 */\n dup3\n /* \"#utility.yul\":3540:3549 */\n dup9\n /* \"#utility.yul\":3536:3558 */\n add\n /* \"#utility.yul\":3515:3568 */\n tag_283\n jump\t// in\n tag_308:\n /* \"#utility.yul\":3505:3568 */\n swap3\n pop\n /* \"#utility.yul\":3460:3578 */\n pop\n /* \"#utility.yul\":3645:3647 */\n 0x60\n /* \"#utility.yul\":3634:3643 */\n dup6\n /* \"#utility.yul\":3630:3648 */\n add\n /* \"#utility.yul\":3617:3649 */\n calldataload\n /* \"#utility.yul\":3676:3694 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3668:3674 */\n dup2\n /* \"#utility.yul\":3665:3695 */\n gt\n /* \"#utility.yul\":3662:3779 */\n iszero\n tag_309\n jumpi\n /* \"#utility.yul\":3698:3777 */\n tag_310\n tag_311\n jump\t// in\n tag_310:\n /* \"#utility.yul\":3662:3779 */\n tag_309:\n /* \"#utility.yul\":3803:3865 */\n tag_312\n /* \"#utility.yul\":3857:3864 */\n dup8\n /* \"#utility.yul\":3848:3854 */\n dup3\n /* \"#utility.yul\":3837:3846 */\n dup9\n /* \"#utility.yul\":3833:3855 */\n add\n /* \"#utility.yul\":3803:3865 */\n tag_277\n jump\t// in\n tag_312:\n /* \"#utility.yul\":3793:3865 */\n swap2\n pop\n /* \"#utility.yul\":3588:3875 */\n pop\n /* \"#utility.yul\":2939:3882 */\n swap3\n swap6\n swap2\n swap5\n pop\n swap3\n pop\n jump\t// out\n /* \"#utility.yul\":3888:4356 */\n tag_60:\n /* \"#utility.yul\":3953:3959 */\n 0x00\n /* \"#utility.yul\":3961:3967 */\n dup1\n /* \"#utility.yul\":4010:4012 */\n 0x40\n /* \"#utility.yul\":3998:4007 */\n dup4\n /* \"#utility.yul\":3989:3996 */\n dup6\n /* \"#utility.yul\":3985:4008 */\n sub\n /* \"#utility.yul\":3981:4013 */\n slt\n /* \"#utility.yul\":3978:4097 */\n iszero\n tag_314\n jumpi\n /* \"#utility.yul\":4016:4095 */\n tag_315\n tag_290\n jump\t// in\n tag_315:\n /* \"#utility.yul\":3978:4097 */\n tag_314:\n /* \"#utility.yul\":4136:4137 */\n 0x00\n /* \"#utility.yul\":4161:4214 */\n tag_316\n /* \"#utility.yul\":4206:4213 */\n dup6\n /* \"#utility.yul\":4197:4203 */\n dup3\n /* \"#utility.yul\":4186:4195 */\n dup7\n /* \"#utility.yul\":4182:4204 */\n add\n /* \"#utility.yul\":4161:4214 */\n tag_262\n jump\t// in\n tag_316:\n /* \"#utility.yul\":4151:4214 */\n swap3\n pop\n /* \"#utility.yul\":4107:4224 */\n pop\n /* \"#utility.yul\":4263:4265 */\n 0x20\n /* \"#utility.yul\":4289:4339 */\n tag_317\n /* \"#utility.yul\":4331:4338 */\n dup6\n /* \"#utility.yul\":4322:4328 */\n dup3\n /* \"#utility.yul\":4311:4320 */\n dup7\n /* \"#utility.yul\":4307:4329 */\n add\n /* \"#utility.yul\":4289:4339 */\n tag_266\n jump\t// in\n tag_317:\n /* \"#utility.yul\":4279:4339 */\n swap2\n pop\n /* \"#utility.yul\":4234:4349 */\n pop\n /* \"#utility.yul\":3888:4356 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4362:4836 */\n tag_36:\n /* \"#utility.yul\":4430:4436 */\n 0x00\n /* \"#utility.yul\":4438:4444 */\n dup1\n /* \"#utility.yul\":4487:4489 */\n 0x40\n /* \"#utility.yul\":4475:4484 */\n dup4\n /* \"#utility.yul\":4466:4473 */\n dup6\n /* \"#utility.yul\":4462:4485 */\n sub\n /* \"#utility.yul\":4458:4490 */\n slt\n /* \"#utility.yul\":4455:4574 */\n iszero\n tag_319\n jumpi\n /* \"#utility.yul\":4493:4572 */\n tag_320\n tag_290\n jump\t// in\n tag_320:\n /* \"#utility.yul\":4455:4574 */\n tag_319:\n /* \"#utility.yul\":4613:4614 */\n 0x00\n /* \"#utility.yul\":4638:4691 */\n tag_321\n /* \"#utility.yul\":4683:4690 */\n dup6\n /* \"#utility.yul\":4674:4680 */\n dup3\n /* \"#utility.yul\":4663:4672 */\n dup7\n /* \"#utility.yul\":4659:4681 */\n add\n /* \"#utility.yul\":4638:4691 */\n tag_262\n jump\t// in\n tag_321:\n /* \"#utility.yul\":4628:4691 */\n swap3\n pop\n /* \"#utility.yul\":4584:4701 */\n pop\n /* \"#utility.yul\":4740:4742 */\n 0x20\n /* \"#utility.yul\":4766:4819 */\n tag_322\n /* \"#utility.yul\":4811:4818 */\n dup6\n /* \"#utility.yul\":4802:4808 */\n dup3\n /* \"#utility.yul\":4791:4800 */\n dup7\n /* \"#utility.yul\":4787:4809 */\n add\n /* \"#utility.yul\":4766:4819 */\n tag_283\n jump\t// in\n tag_322:\n /* \"#utility.yul\":4756:4819 */\n swap2\n pop\n /* \"#utility.yul\":4711:4829 */\n pop\n /* \"#utility.yul\":4362:4836 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4842:5169 */\n tag_20:\n /* \"#utility.yul\":4900:4906 */\n 0x00\n /* \"#utility.yul\":4949:4951 */\n 0x20\n /* \"#utility.yul\":4937:4946 */\n dup3\n /* \"#utility.yul\":4928:4935 */\n dup5\n /* \"#utility.yul\":4924:4947 */\n sub\n /* \"#utility.yul\":4920:4952 */\n slt\n /* \"#utility.yul\":4917:5036 */\n iszero\n tag_324\n jumpi\n /* \"#utility.yul\":4955:5034 */\n tag_325\n tag_290\n jump\t// in\n tag_325:\n /* \"#utility.yul\":4917:5036 */\n tag_324:\n /* \"#utility.yul\":5075:5076 */\n 0x00\n /* \"#utility.yul\":5100:5152 */\n tag_326\n /* \"#utility.yul\":5144:5151 */\n dup5\n /* \"#utility.yul\":5135:5141 */\n dup3\n /* \"#utility.yul\":5124:5133 */\n dup6\n /* \"#utility.yul\":5120:5142 */\n add\n /* \"#utility.yul\":5100:5152 */\n tag_270\n jump\t// in\n tag_326:\n /* \"#utility.yul\":5090:5152 */\n swap2\n pop\n /* \"#utility.yul\":5046:5162 */\n pop\n /* \"#utility.yul\":4842:5169 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5175:5524 */\n tag_237:\n /* \"#utility.yul\":5244:5250 */\n 0x00\n /* \"#utility.yul\":5293:5295 */\n 0x20\n /* \"#utility.yul\":5281:5290 */\n dup3\n /* \"#utility.yul\":5272:5279 */\n dup5\n /* \"#utility.yul\":5268:5291 */\n sub\n /* \"#utility.yul\":5264:5296 */\n slt\n /* \"#utility.yul\":5261:5380 */\n iszero\n tag_328\n jumpi\n /* \"#utility.yul\":5299:5378 */\n tag_329\n tag_290\n jump\t// in\n tag_329:\n /* \"#utility.yul\":5261:5380 */\n tag_328:\n /* \"#utility.yul\":5419:5420 */\n 0x00\n /* \"#utility.yul\":5444:5507 */\n tag_330\n /* \"#utility.yul\":5499:5506 */\n dup5\n /* \"#utility.yul\":5490:5496 */\n dup3\n /* \"#utility.yul\":5479:5488 */\n dup6\n /* \"#utility.yul\":5475:5497 */\n add\n /* \"#utility.yul\":5444:5507 */\n tag_274\n jump\t// in\n tag_330:\n /* \"#utility.yul\":5434:5507 */\n swap2\n pop\n /* \"#utility.yul\":5390:5517 */\n pop\n /* \"#utility.yul\":5175:5524 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5530:5859 */\n tag_30:\n /* \"#utility.yul\":5589:5595 */\n 0x00\n /* \"#utility.yul\":5638:5640 */\n 0x20\n /* \"#utility.yul\":5626:5635 */\n dup3\n /* \"#utility.yul\":5617:5624 */\n dup5\n /* \"#utility.yul\":5613:5636 */\n sub\n /* \"#utility.yul\":5609:5641 */\n slt\n /* \"#utility.yul\":5606:5725 */\n iszero\n tag_332\n jumpi\n /* \"#utility.yul\":5644:5723 */\n tag_333\n tag_290\n jump\t// in\n tag_333:\n /* \"#utility.yul\":5606:5725 */\n tag_332:\n /* \"#utility.yul\":5764:5765 */\n 0x00\n /* \"#utility.yul\":5789:5842 */\n tag_334\n /* \"#utility.yul\":5834:5841 */\n dup5\n /* \"#utility.yul\":5825:5831 */\n dup3\n /* \"#utility.yul\":5814:5823 */\n dup6\n /* \"#utility.yul\":5810:5832 */\n add\n /* \"#utility.yul\":5789:5842 */\n tag_283\n jump\t// in\n tag_334:\n /* \"#utility.yul\":5779:5842 */\n swap2\n pop\n /* \"#utility.yul\":5735:5852 */\n pop\n /* \"#utility.yul\":5530:5859 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5865:5983 */\n tag_335:\n /* \"#utility.yul\":5952:5976 */\n tag_337\n /* \"#utility.yul\":5970:5975 */\n dup2\n /* \"#utility.yul\":5952:5976 */\n tag_338\n jump\t// in\n tag_337:\n /* \"#utility.yul\":5947:5950 */\n dup3\n /* \"#utility.yul\":5940:5977 */\n mstore\n /* \"#utility.yul\":5865:5983 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5989:6098 */\n tag_339:\n /* \"#utility.yul\":6070:6091 */\n tag_341\n /* \"#utility.yul\":6085:6090 */\n dup2\n /* \"#utility.yul\":6070:6091 */\n tag_342\n jump\t// in\n tag_341:\n /* \"#utility.yul\":6065:6068 */\n dup3\n /* \"#utility.yul\":6058:6092 */\n mstore\n /* \"#utility.yul\":5989:6098 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6104:6464 */\n tag_343:\n /* \"#utility.yul\":6190:6193 */\n 0x00\n /* \"#utility.yul\":6218:6256 */\n tag_345\n /* \"#utility.yul\":6250:6255 */\n dup3\n /* \"#utility.yul\":6218:6256 */\n tag_346\n jump\t// in\n tag_345:\n /* \"#utility.yul\":6272:6342 */\n tag_347\n /* \"#utility.yul\":6335:6341 */\n dup2\n /* \"#utility.yul\":6330:6333 */\n dup6\n /* \"#utility.yul\":6272:6342 */\n tag_348\n jump\t// in\n tag_347:\n /* \"#utility.yul\":6265:6342 */\n swap4\n pop\n /* \"#utility.yul\":6351:6403 */\n tag_349\n /* \"#utility.yul\":6396:6402 */\n dup2\n /* \"#utility.yul\":6391:6394 */\n dup6\n /* \"#utility.yul\":6384:6388 */\n 0x20\n /* \"#utility.yul\":6377:6382 */\n dup7\n /* \"#utility.yul\":6373:6389 */\n add\n /* \"#utility.yul\":6351:6403 */\n tag_350\n jump\t// in\n tag_349:\n /* \"#utility.yul\":6428:6457 */\n tag_351\n /* \"#utility.yul\":6450:6456 */\n dup2\n /* \"#utility.yul\":6428:6457 */\n tag_352\n jump\t// in\n tag_351:\n /* \"#utility.yul\":6423:6426 */\n dup5\n /* \"#utility.yul\":6419:6458 */\n add\n /* \"#utility.yul\":6412:6458 */\n swap2\n pop\n /* \"#utility.yul\":6194:6464 */\n pop\n /* \"#utility.yul\":6104:6464 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6470:6834 */\n tag_353:\n /* \"#utility.yul\":6558:6561 */\n 0x00\n /* \"#utility.yul\":6586:6625 */\n tag_355\n /* \"#utility.yul\":6619:6624 */\n dup3\n /* \"#utility.yul\":6586:6625 */\n tag_356\n jump\t// in\n tag_355:\n /* \"#utility.yul\":6641:6712 */\n tag_357\n /* \"#utility.yul\":6705:6711 */\n dup2\n /* \"#utility.yul\":6700:6703 */\n dup6\n /* \"#utility.yul\":6641:6712 */\n tag_358\n jump\t// in\n tag_357:\n /* \"#utility.yul\":6634:6712 */\n swap4\n pop\n /* \"#utility.yul\":6721:6773 */\n tag_359\n /* \"#utility.yul\":6766:6772 */\n dup2\n /* \"#utility.yul\":6761:6764 */\n dup6\n /* \"#utility.yul\":6754:6758 */\n 0x20\n /* \"#utility.yul\":6747:6752 */\n dup7\n /* \"#utility.yul\":6743:6759 */\n add\n /* \"#utility.yul\":6721:6773 */\n tag_350\n jump\t// in\n tag_359:\n /* \"#utility.yul\":6798:6827 */\n tag_360\n /* \"#utility.yul\":6820:6826 */\n dup2\n /* \"#utility.yul\":6798:6827 */\n tag_352\n jump\t// in\n tag_360:\n /* \"#utility.yul\":6793:6796 */\n dup5\n /* \"#utility.yul\":6789:6828 */\n add\n /* \"#utility.yul\":6782:6828 */\n swap2\n pop\n /* \"#utility.yul\":6562:6834 */\n pop\n /* \"#utility.yul\":6470:6834 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6840:7217 */\n tag_361:\n /* \"#utility.yul\":6946:6949 */\n 0x00\n /* \"#utility.yul\":6974:7013 */\n tag_363\n /* \"#utility.yul\":7007:7012 */\n dup3\n /* \"#utility.yul\":6974:7013 */\n tag_356\n jump\t// in\n tag_363:\n /* \"#utility.yul\":7029:7118 */\n tag_364\n /* \"#utility.yul\":7111:7117 */\n dup2\n /* \"#utility.yul\":7106:7109 */\n dup6\n /* \"#utility.yul\":7029:7118 */\n tag_365\n jump\t// in\n tag_364:\n /* \"#utility.yul\":7022:7118 */\n swap4\n pop\n /* \"#utility.yul\":7127:7179 */\n tag_366\n /* \"#utility.yul\":7172:7178 */\n dup2\n /* \"#utility.yul\":7167:7170 */\n dup6\n /* \"#utility.yul\":7160:7164 */\n 0x20\n /* \"#utility.yul\":7153:7158 */\n dup7\n /* \"#utility.yul\":7149:7165 */\n add\n /* \"#utility.yul\":7127:7179 */\n tag_350\n jump\t// in\n tag_366:\n /* \"#utility.yul\":7204:7210 */\n dup1\n /* \"#utility.yul\":7199:7202 */\n dup5\n /* \"#utility.yul\":7195:7211 */\n add\n /* \"#utility.yul\":7188:7211 */\n swap2\n pop\n /* \"#utility.yul\":6950:7217 */\n pop\n /* \"#utility.yul\":6840:7217 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7223:7589 */\n tag_367:\n /* \"#utility.yul\":7365:7368 */\n 0x00\n /* \"#utility.yul\":7386:7453 */\n tag_369\n /* \"#utility.yul\":7450:7452 */\n 0x32\n /* \"#utility.yul\":7445:7448 */\n dup4\n /* \"#utility.yul\":7386:7453 */\n tag_358\n jump\t// in\n tag_369:\n /* \"#utility.yul\":7379:7453 */\n swap2\n pop\n /* \"#utility.yul\":7462:7555 */\n tag_370\n /* \"#utility.yul\":7551:7554 */\n dup3\n /* \"#utility.yul\":7462:7555 */\n tag_371\n jump\t// in\n tag_370:\n /* \"#utility.yul\":7580:7582 */\n 0x40\n /* \"#utility.yul\":7575:7578 */\n dup3\n /* \"#utility.yul\":7571:7583 */\n add\n /* \"#utility.yul\":7564:7583 */\n swap1\n pop\n /* \"#utility.yul\":7223:7589 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7595:7961 */\n tag_372:\n /* \"#utility.yul\":7737:7740 */\n 0x00\n /* \"#utility.yul\":7758:7825 */\n tag_374\n /* \"#utility.yul\":7822:7824 */\n 0x25\n /* \"#utility.yul\":7817:7820 */\n dup4\n /* \"#utility.yul\":7758:7825 */\n tag_358\n jump\t// in\n tag_374:\n /* \"#utility.yul\":7751:7825 */\n swap2\n pop\n /* \"#utility.yul\":7834:7927 */\n tag_375\n /* \"#utility.yul\":7923:7926 */\n dup3\n /* \"#utility.yul\":7834:7927 */\n tag_376\n jump\t// in\n tag_375:\n /* \"#utility.yul\":7952:7954 */\n 0x40\n /* \"#utility.yul\":7947:7950 */\n dup3\n /* \"#utility.yul\":7943:7955 */\n add\n /* \"#utility.yul\":7936:7955 */\n swap1\n pop\n /* \"#utility.yul\":7595:7961 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7967:8333 */\n tag_377:\n /* \"#utility.yul\":8109:8112 */\n 0x00\n /* \"#utility.yul\":8130:8197 */\n tag_379\n /* \"#utility.yul\":8194:8196 */\n 0x24\n /* \"#utility.yul\":8189:8192 */\n dup4\n /* \"#utility.yul\":8130:8197 */\n tag_358\n jump\t// in\n tag_379:\n /* \"#utility.yul\":8123:8197 */\n swap2\n pop\n /* \"#utility.yul\":8206:8299 */\n tag_380\n /* \"#utility.yul\":8295:8298 */\n dup3\n /* \"#utility.yul\":8206:8299 */\n tag_381\n jump\t// in\n tag_380:\n /* \"#utility.yul\":8324:8326 */\n 0x40\n /* \"#utility.yul\":8319:8322 */\n dup3\n /* \"#utility.yul\":8315:8327 */\n add\n /* \"#utility.yul\":8308:8327 */\n swap1\n pop\n /* \"#utility.yul\":7967:8333 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8339:8705 */\n tag_382:\n /* \"#utility.yul\":8481:8484 */\n 0x00\n /* \"#utility.yul\":8502:8569 */\n tag_384\n /* \"#utility.yul\":8566:8568 */\n 0x19\n /* \"#utility.yul\":8561:8564 */\n dup4\n /* \"#utility.yul\":8502:8569 */\n tag_358\n jump\t// in\n tag_384:\n /* \"#utility.yul\":8495:8569 */\n swap2\n pop\n /* \"#utility.yul\":8578:8671 */\n tag_385\n /* \"#utility.yul\":8667:8670 */\n dup3\n /* \"#utility.yul\":8578:8671 */\n tag_386\n jump\t// in\n tag_385:\n /* \"#utility.yul\":8696:8698 */\n 0x20\n /* \"#utility.yul\":8691:8694 */\n dup3\n /* \"#utility.yul\":8687:8699 */\n add\n /* \"#utility.yul\":8680:8699 */\n swap1\n pop\n /* \"#utility.yul\":8339:8705 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":8711:9077 */\n tag_387:\n /* \"#utility.yul\":8853:8856 */\n 0x00\n /* \"#utility.yul\":8874:8941 */\n tag_389\n /* \"#utility.yul\":8938:8940 */\n 0x2c\n /* \"#utility.yul\":8933:8936 */\n dup4\n /* \"#utility.yul\":8874:8941 */\n tag_358\n jump\t// in\n tag_389:\n /* \"#utility.yul\":8867:8941 */\n swap2\n pop\n /* \"#utility.yul\":8950:9043 */\n tag_390\n /* \"#utility.yul\":9039:9042 */\n dup3\n /* \"#utility.yul\":8950:9043 */\n tag_391\n jump\t// in\n tag_390:\n /* \"#utility.yul\":9068:9070 */\n 0x40\n /* \"#utility.yul\":9063:9066 */\n dup3\n /* \"#utility.yul\":9059:9071 */\n add\n /* \"#utility.yul\":9052:9071 */\n swap1\n pop\n /* \"#utility.yul\":8711:9077 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9083:9449 */\n tag_392:\n /* \"#utility.yul\":9225:9228 */\n 0x00\n /* \"#utility.yul\":9246:9313 */\n tag_394\n /* \"#utility.yul\":9310:9312 */\n 0x38\n /* \"#utility.yul\":9305:9308 */\n dup4\n /* \"#utility.yul\":9246:9313 */\n tag_358\n jump\t// in\n tag_394:\n /* \"#utility.yul\":9239:9313 */\n swap2\n pop\n /* \"#utility.yul\":9322:9415 */\n tag_395\n /* \"#utility.yul\":9411:9414 */\n dup3\n /* \"#utility.yul\":9322:9415 */\n tag_396\n jump\t// in\n tag_395:\n /* \"#utility.yul\":9440:9442 */\n 0x40\n /* \"#utility.yul\":9435:9438 */\n dup3\n /* \"#utility.yul\":9431:9443 */\n add\n /* \"#utility.yul\":9424:9443 */\n swap1\n pop\n /* \"#utility.yul\":9083:9449 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9455:9821 */\n tag_397:\n /* \"#utility.yul\":9597:9600 */\n 0x00\n /* \"#utility.yul\":9618:9685 */\n tag_399\n /* \"#utility.yul\":9682:9684 */\n 0x2a\n /* \"#utility.yul\":9677:9680 */\n dup4\n /* \"#utility.yul\":9618:9685 */\n tag_358\n jump\t// in\n tag_399:\n /* \"#utility.yul\":9611:9685 */\n swap2\n pop\n /* \"#utility.yul\":9694:9787 */\n tag_400\n /* \"#utility.yul\":9783:9786 */\n dup3\n /* \"#utility.yul\":9694:9787 */\n tag_401\n jump\t// in\n tag_400:\n /* \"#utility.yul\":9812:9814 */\n 0x40\n /* \"#utility.yul\":9807:9810 */\n dup3\n /* \"#utility.yul\":9803:9815 */\n add\n /* \"#utility.yul\":9796:9815 */\n swap1\n pop\n /* \"#utility.yul\":9455:9821 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9827:10193 */\n tag_402:\n /* \"#utility.yul\":9969:9972 */\n 0x00\n /* \"#utility.yul\":9990:10057 */\n tag_404\n /* \"#utility.yul\":10054:10056 */\n 0x29\n /* \"#utility.yul\":10049:10052 */\n dup4\n /* \"#utility.yul\":9990:10057 */\n tag_358\n jump\t// in\n tag_404:\n /* \"#utility.yul\":9983:10057 */\n swap2\n pop\n /* \"#utility.yul\":10066:10159 */\n tag_405\n /* \"#utility.yul\":10155:10158 */\n dup3\n /* \"#utility.yul\":10066:10159 */\n tag_406\n jump\t// in\n tag_405:\n /* \"#utility.yul\":10184:10186 */\n 0x40\n /* \"#utility.yul\":10179:10182 */\n dup3\n /* \"#utility.yul\":10175:10187 */\n add\n /* \"#utility.yul\":10168:10187 */\n swap1\n pop\n /* \"#utility.yul\":9827:10193 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10199:10565 */\n tag_407:\n /* \"#utility.yul\":10341:10344 */\n 0x00\n /* \"#utility.yul\":10362:10429 */\n tag_409\n /* \"#utility.yul\":10426:10428 */\n 0x2c\n /*
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