Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save LuisAcerv/91e8d7e3b0d7140f57752e535cfa25b2 to your computer and use it in GitHub Desktop.

Select an option

Save LuisAcerv/91e8d7e3b0d7140f57752e535cfa25b2 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.18+commit.87f61d96.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.2) (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: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _ownerOf(tokenId);
require(owner != address(0), "ERC721: invalid token ID");
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) {
_requireMinted(tokenId);
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 token owner or approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @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 _ownerOf(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) {
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, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @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, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @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 {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual {}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
* being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
* that `ownerOf(tokenId)` is `a`.
*/
// solhint-disable-next-line func-name-mixedcase
function __unsafe_increaseBalance(address account, uint256 amount) internal {
_balances[account] += amount;
}
}
// 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.8.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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* 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.8.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 functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts 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 (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// โ†’ `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// โ†’ `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @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] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
REMIX DEFAULT WORKSPACE
Remix default workspace is present when:
i. Remix loads for the very first time
ii. A new workspace is created with 'Default' template
iii. There are no files existing in the File Explorer
This workspace contains 3 directories:
1. 'contracts': Holds three contracts with increasing levels of complexity.
2. 'scripts': Contains four typescript files to deploy a contract. It is explained below.
3. 'tests': Contains one Solidity test file for 'Ballot' contract & one JS test file for 'Storage' contract.
SCRIPTS
The 'scripts' folder has four typescript files which help to deploy the 'Storage' contract using 'web3.js' and 'ethers.js' libraries.
For the deployment of any other contract, just update the contract's name from 'Storage' to the desired contract and provide constructor arguments accordingly
in the file `deploy_with_ethers.ts` or `deploy_with_web3.ts`
In the 'tests' folder there is a script containing Mocha-Chai unit tests for 'Storage' contract.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
Please note, require/import is supported in a limited manner for Remix supported modules.
For now, modules supported by Remix are ethers, web3, swarmgw, chai, multihashes, remix and hardhat only for hardhat.ethers object/plugin.
For unsupported modules, an error like this will be thrown: '<module_name> module require is not supported by Remix IDE' will be shown.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_175": {
"entryPoint": null,
"id": 175,
"parameterSlots": 2,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_2726": {
"entryPoint": null,
"id": 2726,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_1542": {
"entryPoint": 202,
"id": 1542,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_111": {
"entryPoint": 210,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"array_dataslot_t_string_storage": {
"entryPoint": 566,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 408,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 887,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_uint256": {
"entryPoint": 702,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 848,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 722,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1042,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 587,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 513,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1012,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 712,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 980,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 466,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 419,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 762,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 603,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 967,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 820,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 616,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 772,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 815,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5231:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:13"
},
"nodeType": "YulFunctionCall",
"src": "87:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:13"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:13",
"type": ""
}
],
"src": "7:99:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "140:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "157:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "160:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "150:6:13"
},
"nodeType": "YulFunctionCall",
"src": "150:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "150:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "254:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "257:4:13",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "247:6:13"
},
"nodeType": "YulFunctionCall",
"src": "247:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "247:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "278:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "281:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "271:6:13"
},
"nodeType": "YulFunctionCall",
"src": "271:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "271:15:13"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "112:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "326:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "343:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "346:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "336:6:13"
},
"nodeType": "YulFunctionCall",
"src": "336:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "336:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "433:6:13"
},
"nodeType": "YulFunctionCall",
"src": "433:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "433:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "467:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "457:6:13"
},
"nodeType": "YulFunctionCall",
"src": "457:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "457:15:13"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "298:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "535:269:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "545:22:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "559:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "565:1:13",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "555:3:13"
},
"nodeType": "YulFunctionCall",
"src": "555:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "545:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "576:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "606:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "612:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "602:3:13"
},
"nodeType": "YulFunctionCall",
"src": "602:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "580:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "653:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "667:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "681:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "689:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "677:3:13"
},
"nodeType": "YulFunctionCall",
"src": "677:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "667:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "633:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "626:6:13"
},
"nodeType": "YulFunctionCall",
"src": "626:26:13"
},
"nodeType": "YulIf",
"src": "623:81:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:42:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "770:16:13"
},
"nodeType": "YulFunctionCall",
"src": "770:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "770:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "720:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "743:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "751:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "740:2:13"
},
"nodeType": "YulFunctionCall",
"src": "740:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "717:2:13"
},
"nodeType": "YulFunctionCall",
"src": "717:38:13"
},
"nodeType": "YulIf",
"src": "714:84:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "519:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "528:6:13",
"type": ""
}
],
"src": "484:320:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "864:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "874:11:13",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "882:3:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "874:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "902:1:13",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "905:3:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "895:6:13"
},
"nodeType": "YulFunctionCall",
"src": "895:14:13"
},
"nodeType": "YulExpressionStatement",
"src": "895:14:13"
},
{
"nodeType": "YulAssignment",
"src": "918:26:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "936:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "926:9:13"
},
"nodeType": "YulFunctionCall",
"src": "926:18:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "918:4:13"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "851:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "859:4:13",
"type": ""
}
],
"src": "810:141:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1001:49:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1011:33:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1029:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1036:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1025:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1025:14:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1041:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1021:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1021:23:13"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1011:6:13"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "984:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "994:6:13",
"type": ""
}
],
"src": "957:93:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1109:54:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1119:37:13",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "1144:4:13"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1150:5:13"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1140:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1140:16:13"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "1119:8:13"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "1084:4:13",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1090:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "1100:8:13",
"type": ""
}
],
"src": "1056:107:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1245:317:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1255:35:13",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "1276:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1288:1:13",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1272:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1272:18:13"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "1259:9:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1299:109:13",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1330:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1341:66:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1311:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1311:97:13"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "1303:4:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1417:51:13",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1448:9:13"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1459:8:13"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1429:18:13"
},
"nodeType": "YulFunctionCall",
"src": "1429:39:13"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1417:8:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1477:30:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1490:5:13"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1501:4:13"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1497:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1497:9:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1486:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1486:21:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1477:5:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1516:40:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1529:5:13"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1540:8:13"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1550:4:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1536:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1536:19:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1526:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1526:30:13"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1516:6:13"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1206:5:13",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "1213:10:13",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "1225:8:13",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1238:6:13",
"type": ""
}
],
"src": "1169:393:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1613:32:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1623:16:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1634:5:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1623:7:13"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1595:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1605:7:13",
"type": ""
}
],
"src": "1568:77:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1683:28:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1693:12:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1700:5:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1693:3:13"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1669:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1679:3:13",
"type": ""
}
],
"src": "1651:60:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1777:82:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1787:66:13",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1845:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1827:17:13"
},
"nodeType": "YulFunctionCall",
"src": "1827:24:13"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "1818:8:13"
},
"nodeType": "YulFunctionCall",
"src": "1818:34:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1800:17:13"
},
"nodeType": "YulFunctionCall",
"src": "1800:53:13"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "1787:9:13"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1757:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "1767:9:13",
"type": ""
}
],
"src": "1717:142:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1912:28:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1922:12:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1929:5:13"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1922:3:13"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1898:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1908:3:13",
"type": ""
}
],
"src": "1865:75:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2022:193:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2032:63:13",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "2087:7:13"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2056:30:13"
},
"nodeType": "YulFunctionCall",
"src": "2056:39:13"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "2036:16:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2111:4:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2151:4:13"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "2145:5:13"
},
"nodeType": "YulFunctionCall",
"src": "2145:11:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2158:6:13"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "2190:16:13"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "2166:23:13"
},
"nodeType": "YulFunctionCall",
"src": "2166:41:13"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "2117:27:13"
},
"nodeType": "YulFunctionCall",
"src": "2117:91:13"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "2104:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2104:105:13"
},
"nodeType": "YulExpressionStatement",
"src": "2104:105:13"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "1999:4:13",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2005:6:13",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "2013:7:13",
"type": ""
}
],
"src": "1946:269:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2270:24:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2280:8:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2287:1:13",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "2280:3:13"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "2266:3:13",
"type": ""
}
],
"src": "2221:73:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2353:136:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2363:46:13",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "2377:30:13"
},
"nodeType": "YulFunctionCall",
"src": "2377:32:13"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "2367:6:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2462:4:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2468:6:13"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "2476:6:13"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2418:43:13"
},
"nodeType": "YulFunctionCall",
"src": "2418:65:13"
},
"nodeType": "YulExpressionStatement",
"src": "2418:65:13"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "2339:4:13",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2345:6:13",
"type": ""
}
],
"src": "2300:189:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:136:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2612:63:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2656:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2663:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "2626:29:13"
},
"nodeType": "YulFunctionCall",
"src": "2626:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "2626:39:13"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2565:5:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2572:3:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2562:2:13"
},
"nodeType": "YulFunctionCall",
"src": "2562:14:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2577:26:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2579:22:13",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2592:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2599:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2588:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2588:13:13"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2579:5:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2559:2:13",
"statements": []
},
"src": "2555:120:13"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "2533:5:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2540:3:13",
"type": ""
}
],
"src": "2495:186:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2766:464:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2792:431:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2806:54:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2854:5:13"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "2822:31:13"
},
"nodeType": "YulFunctionCall",
"src": "2822:38:13"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "2810:8:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2873:63:13",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "2896:8:13"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "2924:10:13"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "2906:17:13"
},
"nodeType": "YulFunctionCall",
"src": "2906:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2892:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2892:44:13"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "2877:11:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3093:27:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3095:23:13",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3110:8:13"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3095:11:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "3077:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3089:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3074:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3074:18:13"
},
"nodeType": "YulIf",
"src": "3071:49:13"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3162:11:13"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3179:8:13"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3207:3:13"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "3189:17:13"
},
"nodeType": "YulFunctionCall",
"src": "3189:22:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3175:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3175:37:13"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "3133:28:13"
},
"nodeType": "YulFunctionCall",
"src": "3133:80:13"
},
"nodeType": "YulExpressionStatement",
"src": "3133:80:13"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2783:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2788:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2780:2:13"
},
"nodeType": "YulFunctionCall",
"src": "2780:11:13"
},
"nodeType": "YulIf",
"src": "2777:446:13"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2742:5:13",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "2749:3:13",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "2754:10:13",
"type": ""
}
],
"src": "2687:543:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3299:54:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3309:37:13",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "3334:4:13"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3340:5:13"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "3330:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3330:16:13"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "3309:8:13"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "3274:4:13",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3280:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "3290:8:13",
"type": ""
}
],
"src": "3236:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3410:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3420:68:13",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3469:1:13",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "3472:5:13"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3465:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3465:13:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3484:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3480:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3480:6:13"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "3436:28:13"
},
"nodeType": "YulFunctionCall",
"src": "3436:51:13"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3432:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3432:56:13"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "3424:4:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3497:25:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3511:4:13"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "3517:4:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3507:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3507:15:13"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3497:6:13"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3387:4:13",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "3393:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "3403:6:13",
"type": ""
}
],
"src": "3359:169:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3614:214:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3747:37:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3774:4:13"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3780:3:13"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "3755:18:13"
},
"nodeType": "YulFunctionCall",
"src": "3755:29:13"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3747:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3793:29:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3804:4:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3814:1:13",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3817:3:13"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3810:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3810:11:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3801:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3801:21:13"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "3793:4:13"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3595:4:13",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "3601:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "3609:4:13",
"type": ""
}
],
"src": "3533:295:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3925:1303:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3936:51:13",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3983:3:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3950:32:13"
},
"nodeType": "YulFunctionCall",
"src": "3950:37:13"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "3940:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4072:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4074:16:13"
},
"nodeType": "YulFunctionCall",
"src": "4074:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "4074:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4044:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4052:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4041:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4041:30:13"
},
"nodeType": "YulIf",
"src": "4038:56:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4104:52:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4150:4:13"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "4144:5:13"
},
"nodeType": "YulFunctionCall",
"src": "4144:11:13"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "4118:25:13"
},
"nodeType": "YulFunctionCall",
"src": "4118:38:13"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "4108:6:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4249:4:13"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "4255:6:13"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4263:6:13"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4203:45:13"
},
"nodeType": "YulFunctionCall",
"src": "4203:67:13"
},
"nodeType": "YulExpressionStatement",
"src": "4203:67:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4280:18:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "4284:9:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4308:17:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4321:4:13",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4308:9:13"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4372:611:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4386:37:13",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4405:6:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4417:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4413:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4413:9:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4401:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4401:22:13"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "4390:7:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4437:51:13",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4483:4:13"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4451:31:13"
},
"nodeType": "YulFunctionCall",
"src": "4451:37:13"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "4441:6:13",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4501:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4510:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4505:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4569:163:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4594:6:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4612:3:13"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4617:9:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4608:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4608:19:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4602:5:13"
},
"nodeType": "YulFunctionCall",
"src": "4602:26:13"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4587:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4587:42:13"
},
"nodeType": "YulExpressionStatement",
"src": "4587:42:13"
},
{
"nodeType": "YulAssignment",
"src": "4646:24:13",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4660:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4668:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4656:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4656:14:13"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4646:6:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4687:31:13",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4704:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4715:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4700:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4700:18:13"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4687:9:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4535:1:13"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4538:7:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4532:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4532:14:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4547:21:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4549:17:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4558:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4561:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4554:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4554:12:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4549:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4528:3:13",
"statements": []
},
"src": "4524:208:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4768:156:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4786:43:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4813:3:13"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4818:9:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4809:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4809:19:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4803:5:13"
},
"nodeType": "YulFunctionCall",
"src": "4803:26:13"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "4790:9:13",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4853:6:13"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "4880:9:13"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4895:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4903:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4891:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4891:17:13"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "4861:18:13"
},
"nodeType": "YulFunctionCall",
"src": "4861:48:13"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4846:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4846:64:13"
},
"nodeType": "YulExpressionStatement",
"src": "4846:64:13"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4751:7:13"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4760:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4748:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4748:19:13"
},
"nodeType": "YulIf",
"src": "4745:179:13"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4944:4:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4958:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4966:1:13",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4954:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4954:14:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4970:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4950:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4950:22:13"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4937:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4937:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "4937:36:13"
}
]
},
"nodeType": "YulCase",
"src": "4365:618:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4370:1:13",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "5000:222:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5014:14:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5027:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5018:5:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5051:67:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5069:35:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5088:3:13"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "5093:9:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5084:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5084:19:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5078:5:13"
},
"nodeType": "YulFunctionCall",
"src": "5078:26:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5069:5:13"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5044:6:13"
},
"nodeType": "YulIf",
"src": "5041:77:13"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5138:4:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5197:5:13"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5204:6:13"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "5144:52:13"
},
"nodeType": "YulFunctionCall",
"src": "5144:67:13"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "5131:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5131:81:13"
},
"nodeType": "YulExpressionStatement",
"src": "5131:81:13"
}
]
},
"nodeType": "YulCase",
"src": "4992:230:13",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4345:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4353:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4342:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4342:14:13"
},
"nodeType": "YulSwitch",
"src": "4335:887:13"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "3914:4:13",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3920:3:13",
"type": ""
}
],
"src": "3833:1395:13"
}
]
},
"contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n}\n",
"id": 13,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600781526020017f4d6f636b4e4654000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4e46540000000000000000000000000000000000000000000000000000000081525081600090816200008f919062000412565b508060019081620000a1919062000412565b505050620000c4620000b8620000ca60201b60201c565b620000d260201b60201c565b620004f9565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021a57607f821691505b60208210810362000230576200022f620001d2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025b565b620002a686836200025b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f3620002ed620002e784620002be565b620002c8565b620002be565b9050919050565b6000819050919050565b6200030f83620002d2565b620003276200031e82620002fa565b84845462000268565b825550505050565b600090565b6200033e6200032f565b6200034b81848462000304565b505050565b5b8181101562000373576200036760008262000334565b60018101905062000351565b5050565b601f821115620003c2576200038c8162000236565b62000397846200024b565b81016020851015620003a7578190505b620003bf620003b6856200024b565b83018262000350565b50505b505050565b600082821c905092915050565b6000620003e760001984600802620003c7565b1980831691505092915050565b6000620004028383620003d4565b9150826002028217905092915050565b6200041d8262000198565b67ffffffffffffffff811115620004395762000438620001a3565b5b62000445825462000201565b6200045282828562000377565b600060209050601f8311600181146200048a576000841562000475578287015190505b620004818582620003f4565b865550620004f1565b601f1984166200049a8662000236565b60005b82811015620004c4578489015182556001820191506020850194506020810190506200049d565b86831015620004e45784890151620004e0601f891682620003d4565b8355505b6001600288020188555050505b505050505050565b61289a80620005096000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a2578063a22cb46511610071578063a22cb465146102b8578063b88d4fde146102d4578063c87b56dd146102f0578063e985e9c514610320578063f2fde38b146103505761010b565b806370a0823114610242578063715018a6146102725780638da5cb5b1461027c57806395d89b411461029a5761010b565b806323b872dd116100de57806323b872dd146101aa57806342842e0e146101c65780636352211e146101e25780636a627842146102125761010b565b806301ffc9a71461011057806306fdde0314610140578063081812fc1461015e578063095ea7b31461018e575b600080fd5b61012a60048036038101906101259190611a98565b61036c565b6040516101379190611ae0565b60405180910390f35b61014861044e565b6040516101559190611b8b565b60405180910390f35b61017860048036038101906101739190611be3565b6104e0565b6040516101859190611c51565b60405180910390f35b6101a860048036038101906101a39190611c98565b610526565b005b6101c460048036038101906101bf9190611cd8565b61063d565b005b6101e060048036038101906101db9190611cd8565b61069d565b005b6101fc60048036038101906101f79190611be3565b6106bd565b6040516102099190611c51565b60405180910390f35b61022c60048036038101906102279190611d2b565b610743565b6040516102399190611d67565b60405180910390f35b61025c60048036038101906102579190611d2b565b610778565b6040516102699190611d67565b60405180910390f35b61027a61082f565b005b610284610843565b6040516102919190611c51565b60405180910390f35b6102a261086d565b6040516102af9190611b8b565b60405180910390f35b6102d260048036038101906102cd9190611dae565b6108ff565b005b6102ee60048036038101906102e99190611f23565b610915565b005b61030a60048036038101906103059190611be3565b610977565b6040516103179190611b8b565b60405180910390f35b61033a60048036038101906103359190611fa6565b6109df565b6040516103479190611ae0565b60405180910390f35b61036a60048036038101906103659190611d2b565b610a73565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061043757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610447575061044682610af6565b5b9050919050565b60606000805461045d90612015565b80601f016020809104026020016040519081016040528092919081815260200182805461048990612015565b80156104d65780601f106104ab576101008083540402835291602001916104d6565b820191906000526020600020905b8154815290600101906020018083116104b957829003601f168201915b5050505050905090565b60006104eb82610b60565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610531826106bd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036105a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610598906120b8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166105c0610bab565b73ffffffffffffffffffffffffffffffffffffffff1614806105ef57506105ee816105e9610bab565b6109df565b5b61062e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106259061214a565b60405180910390fd5b6106388383610bb3565b505050565b61064e610648610bab565b82610c6c565b61068d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610684906121dc565b60405180910390fd5b610698838383610d01565b505050565b6106b883838360405180602001604052806000815250610915565b505050565b6000806106c983610ffa565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361073a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073190612248565b60405180910390fd5b80915050919050565b600061074d611037565b61075760076110b5565b600061076360076110cb565b905061076f83826110d9565b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107df906122da565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610837611037565b61084160006110f7565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461087c90612015565b80601f01602080910402602001604051908101604052809291908181526020018280546108a890612015565b80156108f55780601f106108ca576101008083540402835291602001916108f5565b820191906000526020600020905b8154815290600101906020018083116108d857829003601f168201915b5050505050905090565b61091161090a610bab565b83836111bd565b5050565b610926610920610bab565b83610c6c565b610965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095c906121dc565b60405180910390fd5b61097184848484611329565b50505050565b606061098282610b60565b600061098c611385565b905060008151116109ac57604051806020016040528060008152506109d7565b806109b68461139c565b6040516020016109c7929190612336565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610a7b611037565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae1906123cc565b60405180910390fd5b610af3816110f7565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b610b698161146a565b610ba8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9f90612248565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610c26836106bd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610c78836106bd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610cba5750610cb981856109df565b5b80610cf857508373ffffffffffffffffffffffffffffffffffffffff16610ce0846104e0565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610d21826106bd565b73ffffffffffffffffffffffffffffffffffffffff1614610d77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6e9061245e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610de6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd906124f0565b60405180910390fd5b610df383838360016114ab565b8273ffffffffffffffffffffffffffffffffffffffff16610e13826106bd565b73ffffffffffffffffffffffffffffffffffffffff1614610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e609061245e565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610ff583838360016114b1565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61103f610bab565b73ffffffffffffffffffffffffffffffffffffffff1661105d610843565b73ffffffffffffffffffffffffffffffffffffffff16146110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa9061255c565b60405180910390fd5b565b6001816000016000828254019250508190555050565b600081600001549050919050565b6110f38282604051806020016040528060008152506114b7565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361122b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611222906125c8565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161131c9190611ae0565b60405180910390a3505050565b611334848484610d01565b61134084848484611512565b61137f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113769061265a565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060600060016113ab84611699565b01905060008167ffffffffffffffff8111156113ca576113c9611df8565b5b6040519080825280601f01601f1916602001820160405280156113fc5781602001600182028036833780820191505090505b509050600082602001820190505b60011561145f578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816114535761145261267a565b5b0494506000850361140a575b819350505050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661148c83610ffa565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b50505050565b50505050565b6114c183836117ec565b6114ce6000848484611512565b61150d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115049061265a565b60405180910390fd5b505050565b60006115338473ffffffffffffffffffffffffffffffffffffffff16611a09565b1561168c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261155c610bab565b8786866040518563ffffffff1660e01b815260040161157e94939291906126fe565b6020604051808303816000875af19250505080156115ba57506040513d601f19601f820116820180604052508101906115b7919061275f565b60015b61163c573d80600081146115ea576040519150601f19603f3d011682016040523d82523d6000602084013e6115ef565b606091505b506000815103611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b9061265a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611691565b600190505b949350505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106116f7577a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083816116ed576116ec61267a565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611734576d04ee2d6d415b85acef8100000000838161172a5761172961267a565b5b0492506020810190505b662386f26fc10000831061176357662386f26fc1000083816117595761175861267a565b5b0492506010810190505b6305f5e100831061178c576305f5e10083816117825761178161267a565b5b0492506008810190505b61271083106117b15761271083816117a7576117a661267a565b5b0492506004810190505b606483106117d457606483816117ca576117c961267a565b5b0492506002810190505b600a83106117e3576001810190505b80915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361185b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611852906127d8565b60405180910390fd5b6118648161146a565b156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90612844565b60405180910390fd5b6118b26000838360016114ab565b6118bb8161146a565b156118fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f290612844565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a056000838360016114b1565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611a7581611a40565b8114611a8057600080fd5b50565b600081359050611a9281611a6c565b92915050565b600060208284031215611aae57611aad611a36565b5b6000611abc84828501611a83565b91505092915050565b60008115159050919050565b611ada81611ac5565b82525050565b6000602082019050611af56000830184611ad1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b35578082015181840152602081019050611b1a565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b5d82611afb565b611b678185611b06565b9350611b77818560208601611b17565b611b8081611b41565b840191505092915050565b60006020820190508181036000830152611ba58184611b52565b905092915050565b6000819050919050565b611bc081611bad565b8114611bcb57600080fd5b50565b600081359050611bdd81611bb7565b92915050565b600060208284031215611bf957611bf8611a36565b5b6000611c0784828501611bce565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c3b82611c10565b9050919050565b611c4b81611c30565b82525050565b6000602082019050611c666000830184611c42565b92915050565b611c7581611c30565b8114611c8057600080fd5b50565b600081359050611c9281611c6c565b92915050565b60008060408385031215611caf57611cae611a36565b5b6000611cbd85828601611c83565b9250506020611cce85828601611bce565b9150509250929050565b600080600060608486031215611cf157611cf0611a36565b5b6000611cff86828701611c83565b9350506020611d1086828701611c83565b9250506040611d2186828701611bce565b9150509250925092565b600060208284031215611d4157611d40611a36565b5b6000611d4f84828501611c83565b91505092915050565b611d6181611bad565b82525050565b6000602082019050611d7c6000830184611d58565b92915050565b611d8b81611ac5565b8114611d9657600080fd5b50565b600081359050611da881611d82565b92915050565b60008060408385031215611dc557611dc4611a36565b5b6000611dd385828601611c83565b9250506020611de485828601611d99565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611e3082611b41565b810181811067ffffffffffffffff82111715611e4f57611e4e611df8565b5b80604052505050565b6000611e62611a2c565b9050611e6e8282611e27565b919050565b600067ffffffffffffffff821115611e8e57611e8d611df8565b5b611e9782611b41565b9050602081019050919050565b82818337600083830152505050565b6000611ec6611ec184611e73565b611e58565b905082815260208101848484011115611ee257611ee1611df3565b5b611eed848285611ea4565b509392505050565b600082601f830112611f0a57611f09611dee565b5b8135611f1a848260208601611eb3565b91505092915050565b60008060008060808587031215611f3d57611f3c611a36565b5b6000611f4b87828801611c83565b9450506020611f5c87828801611c83565b9350506040611f6d87828801611bce565b925050606085013567ffffffffffffffff811115611f8e57611f8d611a3b565b5b611f9a87828801611ef5565b91505092959194509250565b60008060408385031215611fbd57611fbc611a36565b5b6000611fcb85828601611c83565b9250506020611fdc85828601611c83565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061202d57607f821691505b6020821081036120405761203f611fe6565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006120a2602183611b06565b91506120ad82612046565b604082019050919050565b600060208201905081810360008301526120d181612095565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612134603d83611b06565b915061213f826120d8565b604082019050919050565b6000602082019050818103600083015261216381612127565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b60006121c6602d83611b06565b91506121d18261216a565b604082019050919050565b600060208201905081810360008301526121f5816121b9565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612232601883611b06565b915061223d826121fc565b602082019050919050565b6000602082019050818103600083015261226181612225565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006122c4602983611b06565b91506122cf82612268565b604082019050919050565b600060208201905081810360008301526122f3816122b7565b9050919050565b600081905092915050565b600061231082611afb565b61231a81856122fa565b935061232a818560208601611b17565b80840191505092915050565b60006123428285612305565b915061234e8284612305565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006123b6602683611b06565b91506123c18261235a565b604082019050919050565b600060208201905081810360008301526123e5816123a9565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612448602583611b06565b9150612453826123ec565b604082019050919050565b600060208201905081810360008301526124778161243b565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006124da602483611b06565b91506124e58261247e565b604082019050919050565b60006020820190508181036000830152612509816124cd565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612546602083611b06565b915061255182612510565b602082019050919050565b6000602082019050818103600083015261257581612539565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006125b2601983611b06565b91506125bd8261257c565b602082019050919050565b600060208201905081810360008301526125e1816125a5565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000612644603283611b06565b915061264f826125e8565b604082019050919050565b6000602082019050818103600083015261267381612637565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600081519050919050565b600082825260208201905092915050565b60006126d0826126a9565b6126da81856126b4565b93506126ea818560208601611b17565b6126f381611b41565b840191505092915050565b60006080820190506127136000830187611c42565b6127206020830186611c42565b61272d6040830185611d58565b818103606083015261273f81846126c5565b905095945050505050565b60008151905061275981611a6c565b92915050565b60006020828403121561277557612774611a36565b5b60006127838482850161274a565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006127c2602083611b06565b91506127cd8261278c565b602082019050919050565b600060208201905081810360008301526127f1816127b5565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061282e601c83611b06565b9150612839826127f8565b602082019050919050565b6000602082019050818103600083015261285d81612821565b905091905056fea264697066735822122068570945f1df6e51c6b82e36e336d2e638a0bf543b04df34b627b24f7434cdc764736f6c63430008120033",
"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 0x4D6F636B4E465400000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D4E465400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 DUP2 PUSH3 0x8F SWAP2 SWAP1 PUSH3 0x412 JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP2 PUSH3 0xA1 SWAP2 SWAP1 PUSH3 0x412 JUMP JUMPDEST POP POP POP PUSH3 0xC4 PUSH3 0xB8 PUSH3 0xCA PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0xD2 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x4F9 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x6 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x21A JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x230 JUMPI PUSH3 0x22F PUSH3 0x1D2 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP DUP2 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP4 MUL PUSH3 0x29A PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x25B JUMP JUMPDEST PUSH3 0x2A6 DUP7 DUP4 PUSH3 0x25B JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2F3 PUSH3 0x2ED PUSH3 0x2E7 DUP5 PUSH3 0x2BE JUMP JUMPDEST PUSH3 0x2C8 JUMP JUMPDEST PUSH3 0x2BE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x30F DUP4 PUSH3 0x2D2 JUMP JUMPDEST PUSH3 0x327 PUSH3 0x31E DUP3 PUSH3 0x2FA JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x268 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH3 0x33E PUSH3 0x32F JUMP JUMPDEST PUSH3 0x34B DUP2 DUP5 DUP5 PUSH3 0x304 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x373 JUMPI PUSH3 0x367 PUSH1 0x0 DUP3 PUSH3 0x334 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x351 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x3C2 JUMPI PUSH3 0x38C DUP2 PUSH3 0x236 JUMP JUMPDEST PUSH3 0x397 DUP5 PUSH3 0x24B JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x3A7 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x3BF PUSH3 0x3B6 DUP6 PUSH3 0x24B JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x350 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x3E7 PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x3C7 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x402 DUP4 DUP4 PUSH3 0x3D4 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x41D DUP3 PUSH3 0x198 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x439 JUMPI PUSH3 0x438 PUSH3 0x1A3 JUMP JUMPDEST JUMPDEST PUSH3 0x445 DUP3 SLOAD PUSH3 0x201 JUMP JUMPDEST PUSH3 0x452 DUP3 DUP3 DUP6 PUSH3 0x377 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x48A JUMPI PUSH1 0x0 DUP5 ISZERO PUSH3 0x475 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x481 DUP6 DUP3 PUSH3 0x3F4 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x4F1 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x49A DUP7 PUSH3 0x236 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x4C4 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x49D JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x4E4 JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x4E0 PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x3D4 JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x289A DUP1 PUSH3 0x509 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 0x10B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xA2 JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x2B8 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x2D4 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x2F0 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x320 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x350 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x242 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x272 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x27C JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x29A JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xDE JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1AA JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x1C6 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x1E2 JUMPI DUP1 PUSH4 0x6A627842 EQ PUSH2 0x212 JUMPI PUSH2 0x10B JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x110 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x140 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x15E JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x18E JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x12A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x125 SWAP2 SWAP1 PUSH2 0x1A98 JUMP JUMPDEST PUSH2 0x36C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x137 SWAP2 SWAP1 PUSH2 0x1AE0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x148 PUSH2 0x44E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x155 SWAP2 SWAP1 PUSH2 0x1B8B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x178 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x173 SWAP2 SWAP1 PUSH2 0x1BE3 JUMP JUMPDEST PUSH2 0x4E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x185 SWAP2 SWAP1 PUSH2 0x1C51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1A8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A3 SWAP2 SWAP1 PUSH2 0x1C98 JUMP JUMPDEST PUSH2 0x526 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1C4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BF SWAP2 SWAP1 PUSH2 0x1CD8 JUMP JUMPDEST PUSH2 0x63D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1E0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1DB SWAP2 SWAP1 PUSH2 0x1CD8 JUMP JUMPDEST PUSH2 0x69D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1FC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F7 SWAP2 SWAP1 PUSH2 0x1BE3 JUMP JUMPDEST PUSH2 0x6BD JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x209 SWAP2 SWAP1 PUSH2 0x1C51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x22C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x227 SWAP2 SWAP1 PUSH2 0x1D2B JUMP JUMPDEST PUSH2 0x743 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x239 SWAP2 SWAP1 PUSH2 0x1D67 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x25C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x257 SWAP2 SWAP1 PUSH2 0x1D2B JUMP JUMPDEST PUSH2 0x778 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x269 SWAP2 SWAP1 PUSH2 0x1D67 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x27A PUSH2 0x82F JUMP JUMPDEST STOP JUMPDEST PUSH2 0x284 PUSH2 0x843 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x291 SWAP2 SWAP1 PUSH2 0x1C51 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2A2 PUSH2 0x86D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2AF SWAP2 SWAP1 PUSH2 0x1B8B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2D2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2CD SWAP2 SWAP1 PUSH2 0x1DAE JUMP JUMPDEST PUSH2 0x8FF JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2EE PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E9 SWAP2 SWAP1 PUSH2 0x1F23 JUMP JUMPDEST PUSH2 0x915 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x30A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x305 SWAP2 SWAP1 PUSH2 0x1BE3 JUMP JUMPDEST PUSH2 0x977 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x317 SWAP2 SWAP1 PUSH2 0x1B8B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x33A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x335 SWAP2 SWAP1 PUSH2 0x1FA6 JUMP JUMPDEST PUSH2 0x9DF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x347 SWAP2 SWAP1 PUSH2 0x1AE0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x36A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x365 SWAP2 SWAP1 PUSH2 0x1D2B JUMP JUMPDEST PUSH2 0xA73 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x437 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x447 JUMPI POP PUSH2 0x446 DUP3 PUSH2 0xAF6 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x45D SWAP1 PUSH2 0x2015 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 0x489 SWAP1 PUSH2 0x2015 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4D6 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4AB JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4D6 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 0x4B9 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4EB DUP3 PUSH2 0xB60 JUMP 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 0x531 DUP3 PUSH2 0x6BD JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x5A1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x598 SWAP1 PUSH2 0x20B8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x5C0 PUSH2 0xBAB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x5EF JUMPI POP PUSH2 0x5EE DUP2 PUSH2 0x5E9 PUSH2 0xBAB JUMP JUMPDEST PUSH2 0x9DF JUMP JUMPDEST JUMPDEST PUSH2 0x62E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x625 SWAP1 PUSH2 0x214A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x638 DUP4 DUP4 PUSH2 0xBB3 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x64E PUSH2 0x648 PUSH2 0xBAB JUMP JUMPDEST DUP3 PUSH2 0xC6C JUMP JUMPDEST PUSH2 0x68D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x684 SWAP1 PUSH2 0x21DC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x698 DUP4 DUP4 DUP4 PUSH2 0xD01 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x6B8 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x915 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x6C9 DUP4 PUSH2 0xFFA JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x73A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x731 SWAP1 PUSH2 0x2248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x74D PUSH2 0x1037 JUMP JUMPDEST PUSH2 0x757 PUSH1 0x7 PUSH2 0x10B5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x763 PUSH1 0x7 PUSH2 0x10CB JUMP JUMPDEST SWAP1 POP PUSH2 0x76F DUP4 DUP3 PUSH2 0x10D9 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x7E8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7DF SWAP1 PUSH2 0x22DA 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 PUSH2 0x837 PUSH2 0x1037 JUMP JUMPDEST PUSH2 0x841 PUSH1 0x0 PUSH2 0x10F7 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x87C SWAP1 PUSH2 0x2015 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 0x8A8 SWAP1 PUSH2 0x2015 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x8F5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x8CA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x8F5 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 0x8D8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x911 PUSH2 0x90A PUSH2 0xBAB JUMP JUMPDEST DUP4 DUP4 PUSH2 0x11BD JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x926 PUSH2 0x920 PUSH2 0xBAB JUMP JUMPDEST DUP4 PUSH2 0xC6C JUMP JUMPDEST PUSH2 0x965 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x95C SWAP1 PUSH2 0x21DC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x971 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1329 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x982 DUP3 PUSH2 0xB60 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x98C PUSH2 0x1385 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x9AC JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x9D7 JUMP JUMPDEST DUP1 PUSH2 0x9B6 DUP5 PUSH2 0x139C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x9C7 SWAP3 SWAP2 SWAP1 PUSH2 0x2336 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 PUSH2 0xA7B PUSH2 0x1037 JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xAEA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAE1 SWAP1 PUSH2 0x23CC JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAF3 DUP2 PUSH2 0x10F7 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB69 DUP2 PUSH2 0x146A JUMP JUMPDEST PUSH2 0xBA8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB9F SWAP1 PUSH2 0x2248 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST 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 0xC26 DUP4 PUSH2 0x6BD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0xC78 DUP4 PUSH2 0x6BD JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xCBA JUMPI POP PUSH2 0xCB9 DUP2 DUP6 PUSH2 0x9DF JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xCF8 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xCE0 DUP5 PUSH2 0x4E0 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD21 DUP3 PUSH2 0x6BD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD77 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD6E SWAP1 PUSH2 0x245E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xDE6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDDD SWAP1 PUSH2 0x24F0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xDF3 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x14AB JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xE13 DUP3 PUSH2 0x6BD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xE69 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE60 SWAP1 PUSH2 0x245E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 SSTORE 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 SUB 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 ADD 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 0xFF5 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x14B1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 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 PUSH2 0x103F PUSH2 0xBAB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x105D PUSH2 0x843 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x10B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10AA SWAP1 PUSH2 0x255C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x10F3 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x14B7 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x6 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x122B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1222 SWAP1 PUSH2 0x25C8 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 0x131C SWAP2 SWAP1 PUSH2 0x1AE0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1334 DUP5 DUP5 DUP5 PUSH2 0xD01 JUMP JUMPDEST PUSH2 0x1340 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1512 JUMP JUMPDEST PUSH2 0x137F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1376 SWAP1 PUSH2 0x265A 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 PUSH1 0x1 PUSH2 0x13AB DUP5 PUSH2 0x1699 JUMP JUMPDEST ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x13CA JUMPI PUSH2 0x13C9 PUSH2 0x1DF8 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 0x13FC 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 PUSH1 0x0 DUP3 PUSH1 0x20 ADD DUP3 ADD SWAP1 POP JUMPDEST PUSH1 0x1 ISZERO PUSH2 0x145F JUMPI DUP1 DUP1 PUSH1 0x1 SWAP1 SUB SWAP2 POP POP PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DUP2 PUSH2 0x1453 JUMPI PUSH2 0x1452 PUSH2 0x267A JUMP JUMPDEST JUMPDEST DIV SWAP5 POP PUSH1 0x0 DUP6 SUB PUSH2 0x140A JUMPI JUMPDEST DUP2 SWAP4 POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x148C DUP4 PUSH2 0xFFA JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x14C1 DUP4 DUP4 PUSH2 0x17EC JUMP JUMPDEST PUSH2 0x14CE PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x1512 JUMP JUMPDEST PUSH2 0x150D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1504 SWAP1 PUSH2 0x265A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1533 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1A09 JUMP JUMPDEST ISZERO PUSH2 0x168C JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x155C PUSH2 0xBAB JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x157E SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x26FE JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x15BA 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 0x15B7 SWAP2 SWAP1 PUSH2 0x275F JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x163C JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x15EA 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 0x15EF JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x1634 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x162B SWAP1 PUSH2 0x265A 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 0x1691 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 POP PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 LT PUSH2 0x16F7 JUMPI PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 DUP2 PUSH2 0x16ED JUMPI PUSH2 0x16EC PUSH2 0x267A JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x40 DUP2 ADD SWAP1 POP JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x1734 JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DUP2 PUSH2 0x172A JUMPI PUSH2 0x1729 PUSH2 0x267A JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x20 DUP2 ADD SWAP1 POP JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x1763 JUMPI PUSH7 0x2386F26FC10000 DUP4 DUP2 PUSH2 0x1759 JUMPI PUSH2 0x1758 PUSH2 0x267A JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x10 DUP2 ADD SWAP1 POP JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x178C JUMPI PUSH4 0x5F5E100 DUP4 DUP2 PUSH2 0x1782 JUMPI PUSH2 0x1781 PUSH2 0x267A JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x8 DUP2 ADD SWAP1 POP JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x17B1 JUMPI PUSH2 0x2710 DUP4 DUP2 PUSH2 0x17A7 JUMPI PUSH2 0x17A6 PUSH2 0x267A JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x4 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x17D4 JUMPI PUSH1 0x64 DUP4 DUP2 PUSH2 0x17CA JUMPI PUSH2 0x17C9 PUSH2 0x267A JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x2 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x17E3 JUMPI PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x185B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1852 SWAP1 PUSH2 0x27D8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1864 DUP2 PUSH2 0x146A JUMP JUMPDEST ISZERO PUSH2 0x18A4 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x189B SWAP1 PUSH2 0x2844 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x18B2 PUSH1 0x0 DUP4 DUP4 PUSH1 0x1 PUSH2 0x14AB JUMP JUMPDEST PUSH2 0x18BB DUP2 PUSH2 0x146A JUMP JUMPDEST ISZERO PUSH2 0x18FB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18F2 SWAP1 PUSH2 0x2844 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT 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 ADD 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 PUSH2 0x1A05 PUSH1 0x0 DUP4 DUP4 PUSH1 0x1 PUSH2 0x14B1 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1A75 DUP2 PUSH2 0x1A40 JUMP JUMPDEST DUP2 EQ PUSH2 0x1A80 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1A92 DUP2 PUSH2 0x1A6C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1AAE JUMPI PUSH2 0x1AAD PUSH2 0x1A36 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1ABC DUP5 DUP3 DUP6 ADD PUSH2 0x1A83 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1ADA DUP2 PUSH2 0x1AC5 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1AF5 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1AD1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x1B35 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1B1A JUMP JUMPDEST PUSH1 0x0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1B5D DUP3 PUSH2 0x1AFB JUMP JUMPDEST PUSH2 0x1B67 DUP2 DUP6 PUSH2 0x1B06 JUMP JUMPDEST SWAP4 POP PUSH2 0x1B77 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1B17 JUMP JUMPDEST PUSH2 0x1B80 DUP2 PUSH2 0x1B41 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x1BA5 DUP2 DUP5 PUSH2 0x1B52 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1BC0 DUP2 PUSH2 0x1BAD JUMP JUMPDEST DUP2 EQ PUSH2 0x1BCB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1BDD DUP2 PUSH2 0x1BB7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1BF9 JUMPI PUSH2 0x1BF8 PUSH2 0x1A36 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1C07 DUP5 DUP3 DUP6 ADD PUSH2 0x1BCE JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1C3B DUP3 PUSH2 0x1C10 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1C4B DUP2 PUSH2 0x1C30 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1C66 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1C42 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1C75 DUP2 PUSH2 0x1C30 JUMP JUMPDEST DUP2 EQ PUSH2 0x1C80 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1C92 DUP2 PUSH2 0x1C6C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1CAF JUMPI PUSH2 0x1CAE PUSH2 0x1A36 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1CBD DUP6 DUP3 DUP7 ADD PUSH2 0x1C83 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1CCE DUP6 DUP3 DUP7 ADD PUSH2 0x1BCE 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 0x1CF1 JUMPI PUSH2 0x1CF0 PUSH2 0x1A36 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1CFF DUP7 DUP3 DUP8 ADD PUSH2 0x1C83 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1D10 DUP7 DUP3 DUP8 ADD PUSH2 0x1C83 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1D21 DUP7 DUP3 DUP8 ADD PUSH2 0x1BCE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1D41 JUMPI PUSH2 0x1D40 PUSH2 0x1A36 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1D4F DUP5 DUP3 DUP6 ADD PUSH2 0x1C83 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1D61 DUP2 PUSH2 0x1BAD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1D7C PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x1D58 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1D8B DUP2 PUSH2 0x1AC5 JUMP JUMPDEST DUP2 EQ PUSH2 0x1D96 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1DA8 DUP2 PUSH2 0x1D82 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1DC5 JUMPI PUSH2 0x1DC4 PUSH2 0x1A36 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1DD3 DUP6 DUP3 DUP7 ADD PUSH2 0x1C83 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1DE4 DUP6 DUP3 DUP7 ADD PUSH2 0x1D99 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x1E30 DUP3 PUSH2 0x1B41 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x1E4F JUMPI PUSH2 0x1E4E PUSH2 0x1DF8 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1E62 PUSH2 0x1A2C JUMP JUMPDEST SWAP1 POP PUSH2 0x1E6E DUP3 DUP3 PUSH2 0x1E27 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x1E8E JUMPI PUSH2 0x1E8D PUSH2 0x1DF8 JUMP JUMPDEST JUMPDEST PUSH2 0x1E97 DUP3 PUSH2 0x1B41 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EC6 PUSH2 0x1EC1 DUP5 PUSH2 0x1E73 JUMP JUMPDEST PUSH2 0x1E58 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x1EE2 JUMPI PUSH2 0x1EE1 PUSH2 0x1DF3 JUMP JUMPDEST JUMPDEST PUSH2 0x1EED DUP5 DUP3 DUP6 PUSH2 0x1EA4 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x1F0A JUMPI PUSH2 0x1F09 PUSH2 0x1DEE JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x1F1A DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x1EB3 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x1F3D JUMPI PUSH2 0x1F3C PUSH2 0x1A36 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1F4B DUP8 DUP3 DUP9 ADD PUSH2 0x1C83 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x1F5C DUP8 DUP3 DUP9 ADD PUSH2 0x1C83 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x1F6D DUP8 DUP3 DUP9 ADD PUSH2 0x1BCE JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1F8E JUMPI PUSH2 0x1F8D PUSH2 0x1A3B JUMP JUMPDEST JUMPDEST PUSH2 0x1F9A DUP8 DUP3 DUP9 ADD PUSH2 0x1EF5 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 0x1FBD JUMPI PUSH2 0x1FBC PUSH2 0x1A36 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1FCB DUP6 DUP3 DUP7 ADD PUSH2 0x1C83 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1FDC DUP6 DUP3 DUP7 ADD PUSH2 0x1C83 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x202D JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x2040 JUMPI PUSH2 0x203F PUSH2 0x1FE6 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x20A2 PUSH1 0x21 DUP4 PUSH2 0x1B06 JUMP JUMPDEST SWAP2 POP PUSH2 0x20AD DUP3 PUSH2 0x2046 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x20D1 DUP2 PUSH2 0x2095 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F7420746F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6B656E206F776E6572206F7220617070726F76656420666F7220616C6C000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2134 PUSH1 0x3D DUP4 PUSH2 0x1B06 JUMP JUMPDEST SWAP2 POP PUSH2 0x213F DUP3 PUSH2 0x20D8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2163 DUP2 PUSH2 0x2127 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2063616C6C6572206973206E6F7420746F6B656E206F776E65 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x72206F7220617070726F76656400000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x21C6 PUSH1 0x2D DUP4 PUSH2 0x1B06 JUMP JUMPDEST SWAP2 POP PUSH2 0x21D1 DUP3 PUSH2 0x216A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x21F5 DUP2 PUSH2 0x21B9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20696E76616C696420746F6B656E2049440000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2232 PUSH1 0x18 DUP4 PUSH2 0x1B06 JUMP JUMPDEST SWAP2 POP PUSH2 0x223D DUP3 PUSH2 0x21FC JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2261 DUP2 PUSH2 0x2225 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A2061646472657373207A65726F206973206E6F742061207661 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6C6964206F776E65720000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x22C4 PUSH1 0x29 DUP4 PUSH2 0x1B06 JUMP JUMPDEST SWAP2 POP PUSH2 0x22CF DUP3 PUSH2 0x2268 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x22F3 DUP2 PUSH2 0x22B7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2310 DUP3 PUSH2 0x1AFB JUMP JUMPDEST PUSH2 0x231A DUP2 DUP6 PUSH2 0x22FA JUMP JUMPDEST SWAP4 POP PUSH2 0x232A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1B17 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2342 DUP3 DUP6 PUSH2 0x2305 JUMP JUMPDEST SWAP2 POP PUSH2 0x234E DUP3 DUP5 PUSH2 0x2305 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x23B6 PUSH1 0x26 DUP4 PUSH2 0x1B06 JUMP JUMPDEST SWAP2 POP PUSH2 0x23C1 DUP3 PUSH2 0x235A JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x23E5 DUP2 PUSH2 0x23A9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E736665722066726F6D20696E636F727265637420 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6F776E6572000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2448 PUSH1 0x25 DUP4 PUSH2 0x1B06 JUMP JUMPDEST SWAP2 POP PUSH2 0x2453 DUP3 PUSH2 0x23EC JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2477 DUP2 PUSH2 0x243B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24DA PUSH1 0x24 DUP4 PUSH2 0x1B06 JUMP JUMPDEST SWAP2 POP PUSH2 0x24E5 DUP3 PUSH2 0x247E JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2509 DUP2 PUSH2 0x24CD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2546 PUSH1 0x20 DUP4 PUSH2 0x1B06 JUMP JUMPDEST SWAP2 POP PUSH2 0x2551 DUP3 PUSH2 0x2510 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2575 DUP2 PUSH2 0x2539 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x25B2 PUSH1 0x19 DUP4 PUSH2 0x1B06 JUMP JUMPDEST SWAP2 POP PUSH2 0x25BD DUP3 PUSH2 0x257C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x25E1 DUP2 PUSH2 0x25A5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2644 PUSH1 0x32 DUP4 PUSH2 0x1B06 JUMP JUMPDEST SWAP2 POP PUSH2 0x264F DUP3 PUSH2 0x25E8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x2673 DUP2 PUSH2 0x2637 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x26D0 DUP3 PUSH2 0x26A9 JUMP JUMPDEST PUSH2 0x26DA DUP2 DUP6 PUSH2 0x26B4 JUMP JUMPDEST SWAP4 POP PUSH2 0x26EA DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1B17 JUMP JUMPDEST PUSH2 0x26F3 DUP2 PUSH2 0x1B41 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x2713 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x1C42 JUMP JUMPDEST PUSH2 0x2720 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1C42 JUMP JUMPDEST PUSH2 0x272D PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x1D58 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x273F DUP2 DUP5 PUSH2 0x26C5 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x2759 DUP2 PUSH2 0x1A6C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2775 JUMPI PUSH2 0x2774 PUSH2 0x1A36 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2783 DUP5 DUP3 DUP6 ADD PUSH2 0x274A JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x27C2 PUSH1 0x20 DUP4 PUSH2 0x1B06 JUMP JUMPDEST SWAP2 POP PUSH2 0x27CD DUP3 PUSH2 0x278C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x27F1 DUP2 PUSH2 0x27B5 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x282E PUSH1 0x1C DUP4 PUSH2 0x1B06 JUMP JUMPDEST SWAP2 POP PUSH2 0x2839 DUP3 PUSH2 0x27F8 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x285D DUP2 PUSH2 0x2821 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH9 0x570945F1DF6E51C6B8 0x2E CALLDATASIZE 0xE3 CALLDATASIZE 0xD2 0xE6 CODESIZE LOG0 0xBF SLOAD EXTCODESIZE DIV 0xDF CALLVALUE 0xB6 0x27 0xB2 0x4F PUSH21 0x34CDC764736F6C6343000812003300000000000000 ",
"sourceMap": "222:385:12:-:0;;;346:42;;;;;;;;;;1390:113:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1464:5;1456;:13;;;;;;:::i;:::-;;1489:7;1479;:17;;;;;;:::i;:::-;;1390:113;;936:32:0;955:12;:10;;;:12;;:::i;:::-;936:18;;;:32;;:::i;:::-;222:385:12;;640:96:6;693:7;719:10;712:17;;640:96;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;7:99:13:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:180::-;160:77;157:1;150:88;257:4;254:1;247:15;281:4;278:1;271:15;298:180;346:77;343:1;336:88;443:4;440:1;433:15;467:4;464:1;457:15;484:320;528:6;565:1;559:4;555:12;545:22;;612:1;606:4;602:12;633:18;623:81;;689:4;681:6;677:17;667:27;;623:81;751:2;743:6;740:14;720:18;717:38;714:84;;770:18;;:::i;:::-;714:84;535:269;484:320;;;:::o;810:141::-;859:4;882:3;874:11;;905:3;902:1;895:14;939:4;936:1;926:18;918:26;;810:141;;;:::o;957:93::-;994:6;1041:2;1036;1029:5;1025:14;1021:23;1011:33;;957:93;;;:::o;1056:107::-;1100:8;1150:5;1144:4;1140:16;1119:37;;1056:107;;;;:::o;1169:393::-;1238:6;1288:1;1276:10;1272:18;1311:97;1341:66;1330:9;1311:97;:::i;:::-;1429:39;1459:8;1448:9;1429:39;:::i;:::-;1417:51;;1501:4;1497:9;1490:5;1486:21;1477:30;;1550:4;1540:8;1536:19;1529:5;1526:30;1516:40;;1245:317;;1169:393;;;;;:::o;1568:77::-;1605:7;1634:5;1623:16;;1568:77;;;:::o;1651:60::-;1679:3;1700:5;1693:12;;1651:60;;;:::o;1717:142::-;1767:9;1800:53;1818:34;1827:24;1845:5;1827:24;:::i;:::-;1818:34;:::i;:::-;1800:53;:::i;:::-;1787:66;;1717:142;;;:::o;1865:75::-;1908:3;1929:5;1922:12;;1865:75;;;:::o;1946:269::-;2056:39;2087:7;2056:39;:::i;:::-;2117:91;2166:41;2190:16;2166:41;:::i;:::-;2158:6;2151:4;2145:11;2117:91;:::i;:::-;2111:4;2104:105;2022:193;1946:269;;;:::o;2221:73::-;2266:3;2221:73;:::o;2300:189::-;2377:32;;:::i;:::-;2418:65;2476:6;2468;2462:4;2418:65;:::i;:::-;2353:136;2300:189;;:::o;2495:186::-;2555:120;2572:3;2565:5;2562:14;2555:120;;;2626:39;2663:1;2656:5;2626:39;:::i;:::-;2599:1;2592:5;2588:13;2579:22;;2555:120;;;2495:186;;:::o;2687:543::-;2788:2;2783:3;2780:11;2777:446;;;2822:38;2854:5;2822:38;:::i;:::-;2906:29;2924:10;2906:29;:::i;:::-;2896:8;2892:44;3089:2;3077:10;3074:18;3071:49;;;3110:8;3095:23;;3071:49;3133:80;3189:22;3207:3;3189:22;:::i;:::-;3179:8;3175:37;3162:11;3133:80;:::i;:::-;2792:431;;2777:446;2687:543;;;:::o;3236:117::-;3290:8;3340:5;3334:4;3330:16;3309:37;;3236:117;;;;:::o;3359:169::-;3403:6;3436:51;3484:1;3480:6;3472:5;3469:1;3465:13;3436:51;:::i;:::-;3432:56;3517:4;3511;3507:15;3497:25;;3410:118;3359:169;;;;:::o;3533:295::-;3609:4;3755:29;3780:3;3774:4;3755:29;:::i;:::-;3747:37;;3817:3;3814:1;3810:11;3804:4;3801:21;3793:29;;3533:295;;;;:::o;3833:1395::-;3950:37;3983:3;3950:37;:::i;:::-;4052:18;4044:6;4041:30;4038:56;;;4074:18;;:::i;:::-;4038:56;4118:38;4150:4;4144:11;4118:38;:::i;:::-;4203:67;4263:6;4255;4249:4;4203:67;:::i;:::-;4297:1;4321:4;4308:17;;4353:2;4345:6;4342:14;4370:1;4365:618;;;;5027:1;5044:6;5041:77;;;5093:9;5088:3;5084:19;5078:26;5069:35;;5041:77;5144:67;5204:6;5197:5;5144:67;:::i;:::-;5138:4;5131:81;5000:222;4335:887;;4365:618;4417:4;4413:9;4405:6;4401:22;4451:37;4483:4;4451:37;:::i;:::-;4510:1;4524:208;4538:7;4535:1;4532:14;4524:208;;;4617:9;4612:3;4608:19;4602:26;4594:6;4587:42;4668:1;4660:6;4656:14;4646:24;;4715:2;4704:9;4700:18;4687:31;;4561:4;4558:1;4554:12;4549:17;;4524:208;;;4760:6;4751:7;4748:19;4745:179;;;4818:9;4813:3;4809:19;4803:26;4861:48;4903:4;4895:6;4891:17;4880:9;4861:48;:::i;:::-;4853:6;4846:64;4768:156;4745:179;4970:1;4966;4958:6;4954:14;4950:22;4944:4;4937:36;4372:611;;;4335:887;;3925:1303;;;3833:1395;;:::o;222:385:12:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_afterTokenTransfer_1023": {
"entryPoint": 5297,
"id": 1023,
"parameterSlots": 4,
"returnSlots": 0
},
"@_approve_889": {
"entryPoint": 2995,
"id": 889,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_326": {
"entryPoint": 4997,
"id": 326,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_1010": {
"entryPoint": 5291,
"id": 1010,
"parameterSlots": 4,
"returnSlots": 0
},
"@_checkOnERC721Received_997": {
"entryPoint": 5394,
"id": 997,
"parameterSlots": 4,
"returnSlots": 1
},
"@_checkOwner_54": {
"entryPoint": 4151,
"id": 54,
"parameterSlots": 0,
"returnSlots": 0
},
"@_exists_558": {
"entryPoint": 5226,
"id": 558,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_592": {
"entryPoint": 3180,
"id": 592,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_713": {
"entryPoint": 6124,
"id": 713,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_1542": {
"entryPoint": 2987,
"id": 1542,
"parameterSlots": 0,
"returnSlots": 1
},
"@_ownerOf_540": {
"entryPoint": 4090,
"id": 540,
"parameterSlots": 1,
"returnSlots": 1
},
"@_requireMinted_935": {
"entryPoint": 2912,
"id": 935,
"parameterSlots": 1,
"returnSlots": 0
},
"@_safeMint_607": {
"entryPoint": 4313,
"id": 607,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_636": {
"entryPoint": 5303,
"id": 636,
"parameterSlots": 3,
"returnSlots": 0
},
"@_safeTransfer_527": {
"entryPoint": 4905,
"id": 527,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_921": {
"entryPoint": 4541,
"id": 921,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transferOwnership_111": {
"entryPoint": 4343,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_865": {
"entryPoint": 3329,
"id": 865,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_369": {
"entryPoint": 1318,
"id": 369,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_230": {
"entryPoint": 1912,
"id": 230,
"parameterSlots": 1,
"returnSlots": 1
},
"@current_1570": {
"entryPoint": 4299,
"id": 1570,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_387": {
"entryPoint": 1248,
"id": 387,
"parameterSlots": 1,
"returnSlots": 1
},
"@increment_1584": {
"entryPoint": 4277,
"id": 1584,
"parameterSlots": 1,
"returnSlots": 0
},
"@isApprovedForAll_422": {
"entryPoint": 2527,
"id": 422,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1218": {
"entryPoint": 6665,
"id": 1218,
"parameterSlots": 1,
"returnSlots": 1
},
"@log10_2539": {
"entryPoint": 5785,
"id": 2539,
"parameterSlots": 1,
"returnSlots": 1
},
"@mint_2754": {
"entryPoint": 1859,
"id": 2754,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_268": {
"entryPoint": 1102,
"id": 268,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_258": {
"entryPoint": 1725,
"id": 258,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_40": {
"entryPoint": 2115,
"id": 40,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_68": {
"entryPoint": 2095,
"id": 68,
"parameterSlots": 0,
"returnSlots": 0
},
"@safeTransferFrom_468": {
"entryPoint": 1693,
"id": 468,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_498": {
"entryPoint": 2325,
"id": 498,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_404": {
"entryPoint": 2303,
"id": 404,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1824": {
"entryPoint": 2806,
"id": 1824,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_206": {
"entryPoint": 876,
"id": 206,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_278": {
"entryPoint": 2157,
"id": 278,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_1684": {
"entryPoint": 5020,
"id": 1684,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_317": {
"entryPoint": 2423,
"id": 317,
"parameterSlots": 1,
"returnSlots": 1
},
"@transferFrom_449": {
"entryPoint": 1597,
"id": 449,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_91": {
"entryPoint": 2675,
"id": 91,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 7859,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 7299,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 7577,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 6787,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 10058,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 7925,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 7118,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 7467,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 8102,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 7384,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 7971,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 7598,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 7320,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 6808,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 10079,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 7139,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 7234,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 6865,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 9925,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6994,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 8965,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8633,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9783,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9129,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9275,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10273,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9421,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9637,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8887,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10165,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9529,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8741,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8341,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack": {
"entryPoint": 8487,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 7512,
"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": 9014,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 7249,
"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": 9982,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 6880,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7051,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8668,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9818,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9164,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9310,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10308,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9456,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9672,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8922,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10200,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9564,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8776,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8376,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 8522,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 7527,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 7768,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 6700,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 7795,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 9897,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 6907,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 9908,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 6918,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 8954,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 7216,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 6853,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 6720,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 7184,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 7085,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 7844,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 6935,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 8213,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 7719,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 9850,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 8166,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 7672,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 7662,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 7667,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 6715,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 6710,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 6977,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af": {
"entryPoint": 8554,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 9704,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 9050,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48": {
"entryPoint": 9196,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 10232,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 9342,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 9596,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159": {
"entryPoint": 8808,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6": {
"entryPoint": 10124,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 9488,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f": {
"entryPoint": 8700,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 8262,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83": {
"entryPoint": 8408,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 7276,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 7554,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 6764,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 7095,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:27129:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:13",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:13"
},
"nodeType": "YulFunctionCall",
"src": "67:9:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:13"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:13",
"type": ""
}
],
"src": "7:75:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:13"
},
"nodeType": "YulFunctionCall",
"src": "187:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:13"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:13"
},
"nodeType": "YulFunctionCall",
"src": "310:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:13"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "378:105:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "388:89:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "403:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "410:66:13",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "399:3:13"
},
"nodeType": "YulFunctionCall",
"src": "399:78:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "388:7:13"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "360:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "370:7:13",
"type": ""
}
],
"src": "334:149:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "531:78:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "587:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "596:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "599:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "589:6:13"
},
"nodeType": "YulFunctionCall",
"src": "589:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "589:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "554:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "578:5:13"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "561:16:13"
},
"nodeType": "YulFunctionCall",
"src": "561:23:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "551:2:13"
},
"nodeType": "YulFunctionCall",
"src": "551:34:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "544:6:13"
},
"nodeType": "YulFunctionCall",
"src": "544:42:13"
},
"nodeType": "YulIf",
"src": "541:62:13"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "524:5:13",
"type": ""
}
],
"src": "489:120:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "666:86:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "676:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "698:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "685:12:13"
},
"nodeType": "YulFunctionCall",
"src": "685:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "740:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "714:25:13"
},
"nodeType": "YulFunctionCall",
"src": "714:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "714:32:13"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "644:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "652:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "660:5:13",
"type": ""
}
],
"src": "615:137:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "823:262:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "871:77:13"
},
"nodeType": "YulFunctionCall",
"src": "871:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "871:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "844:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "853:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "840:3:13"
},
"nodeType": "YulFunctionCall",
"src": "840:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "865:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "836:3:13"
},
"nodeType": "YulFunctionCall",
"src": "836:32:13"
},
"nodeType": "YulIf",
"src": "833:119:13"
},
{
"nodeType": "YulBlock",
"src": "962:116:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "977:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "991:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "981:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1006:62:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1040:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1051:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1036:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1036:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1060:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1016:19:13"
},
"nodeType": "YulFunctionCall",
"src": "1016:52:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1006:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "793:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "804:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "816:6:13",
"type": ""
}
],
"src": "758:327:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1133:48:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1143:32:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1168:5:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1161:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1161:13:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1154:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1154:21:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1143:7:13"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1115:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1125:7:13",
"type": ""
}
],
"src": "1091:90:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1246:50:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1263:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1283:5:13"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1268:14:13"
},
"nodeType": "YulFunctionCall",
"src": "1268:21:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1256:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1256:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "1256:34:13"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1234:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1241:3:13",
"type": ""
}
],
"src": "1187:109:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1394:118:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1404:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1416:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1427:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1412:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1412:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1404:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1478:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1491:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1502:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1487:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1487:17:13"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "1440:37:13"
},
"nodeType": "YulFunctionCall",
"src": "1440:65:13"
},
"nodeType": "YulExpressionStatement",
"src": "1440:65:13"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1366:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1378:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1389:4:13",
"type": ""
}
],
"src": "1302:210:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1577:40:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1588:22:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1604:5:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1598:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1598:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1588:6:13"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1560:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1570:6:13",
"type": ""
}
],
"src": "1518:99:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1719:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1736:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1741:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1729:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1729:19:13"
},
"nodeType": "YulExpressionStatement",
"src": "1729:19:13"
},
{
"nodeType": "YulAssignment",
"src": "1757:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1776:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1781:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1772:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1757:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1691:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1696:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1707:11:13",
"type": ""
}
],
"src": "1623:169:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1860:184:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1870:10:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1879:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1874:1:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1939:63:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1964:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1969:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1960:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1960:11:13"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1983:3:13"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1988:1:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1979:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1979:11:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1973:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1973:18:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1953:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1953:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "1953:39:13"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1900:1:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1903:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1897:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1897:13:13"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1911:19:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1913:15:13",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1922:1:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1925:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1918:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1918:10:13"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1913:1:13"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1893:3:13",
"statements": []
},
"src": "1889:113:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2022:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2027:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2018:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2018:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2036:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2011:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2011:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "2011:27:13"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1842:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1847:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1852:6:13",
"type": ""
}
],
"src": "1798:246:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2098:54:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2108:38:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2126:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2133:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2122:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2122:14:13"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2142:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2138:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2138:7:13"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2118:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2118:28:13"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2108:6:13"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2081:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2091:6:13",
"type": ""
}
],
"src": "2050:102:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2250:285:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2260:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2307:5:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2274:32:13"
},
"nodeType": "YulFunctionCall",
"src": "2274:39:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2264:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2322:78:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2388:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2393:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2329:58:13"
},
"nodeType": "YulFunctionCall",
"src": "2329:71:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2322:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2448:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2455:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2444:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2444:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2462:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2467:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2409:34:13"
},
"nodeType": "YulFunctionCall",
"src": "2409:65:13"
},
"nodeType": "YulExpressionStatement",
"src": "2409:65:13"
},
{
"nodeType": "YulAssignment",
"src": "2483:46:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2494:3:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2521:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2499:21:13"
},
"nodeType": "YulFunctionCall",
"src": "2499:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2490:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2490:39:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2483:3:13"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2231:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2238:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2246:3:13",
"type": ""
}
],
"src": "2158:377:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2659:195:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2669:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2681:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2692:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2677:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2677:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2669:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2716:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2727:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2712:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2712:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2735:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2741:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2731:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2731:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2705:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2705:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "2705:47:13"
},
{
"nodeType": "YulAssignment",
"src": "2761:86:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2833:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2842:4:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2769:63:13"
},
"nodeType": "YulFunctionCall",
"src": "2769:78:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2761:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2631:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2643:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2654:4:13",
"type": ""
}
],
"src": "2541:313:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2905:32:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2915:16:13",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2926:5:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2915:7:13"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2887:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2897:7:13",
"type": ""
}
],
"src": "2860:77:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2986:79:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3043:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3052:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3055:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3045:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3045:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3045:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3009:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3034:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3016:17:13"
},
"nodeType": "YulFunctionCall",
"src": "3016:24:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3006:2:13"
},
"nodeType": "YulFunctionCall",
"src": "3006:35:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2999:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2999:43:13"
},
"nodeType": "YulIf",
"src": "2996:63:13"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2979:5:13",
"type": ""
}
],
"src": "2943:122:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3123:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3133:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3155:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3142:12:13"
},
"nodeType": "YulFunctionCall",
"src": "3142:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3133:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3198:5:13"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3171:26:13"
},
"nodeType": "YulFunctionCall",
"src": "3171:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "3171:33:13"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3101:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3109:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3117:5:13",
"type": ""
}
],
"src": "3071:139:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3282:263:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3328:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3330:77:13"
},
"nodeType": "YulFunctionCall",
"src": "3330:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "3330:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3303:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3312:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3299:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3299:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3324:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3295:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3295:32:13"
},
"nodeType": "YulIf",
"src": "3292:119:13"
},
{
"nodeType": "YulBlock",
"src": "3421:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3436:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3450:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3440:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3465:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3500:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3511:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3496:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3496:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3520:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3475:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3475:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3465:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3252:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3263:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3275:6:13",
"type": ""
}
],
"src": "3216:329:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3596:81:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3606:65:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3621:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3628:42:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3617:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3617:54:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3606:7:13"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3578:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3588:7:13",
"type": ""
}
],
"src": "3551:126:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3728:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3738:35:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3767:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "3749:17:13"
},
"nodeType": "YulFunctionCall",
"src": "3749:24:13"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3738:7:13"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3710:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3720:7:13",
"type": ""
}
],
"src": "3683:96:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3850:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3867:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3890:5:13"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3872:17:13"
},
"nodeType": "YulFunctionCall",
"src": "3872:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3860:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3860:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "3860:37:13"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3838:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3845:3:13",
"type": ""
}
],
"src": "3785:118:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4007:124:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4017:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4029:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4040:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4025:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4025:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4017:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4097:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4110:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4121:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4106:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4106:17:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4053:43:13"
},
"nodeType": "YulFunctionCall",
"src": "4053:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "4053:71:13"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3979:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3991:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4002:4:13",
"type": ""
}
],
"src": "3909:222:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4180:79:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4237:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4246:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4249:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4239:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4239:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4239:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4203:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4228:5:13"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4210:17:13"
},
"nodeType": "YulFunctionCall",
"src": "4210:24:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4200:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4200:35:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4193:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4193:43:13"
},
"nodeType": "YulIf",
"src": "4190:63:13"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4173:5:13",
"type": ""
}
],
"src": "4137:122:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4317:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4327:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4349:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4336:12:13"
},
"nodeType": "YulFunctionCall",
"src": "4336:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4327:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4392:5:13"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "4365:26:13"
},
"nodeType": "YulFunctionCall",
"src": "4365:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "4365:33:13"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4295:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4303:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4311:5:13",
"type": ""
}
],
"src": "4265:139:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4493:391:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4539:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4541:77:13"
},
"nodeType": "YulFunctionCall",
"src": "4541:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "4541:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4514:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4523:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4510:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4510:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4535:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4506:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4506:32:13"
},
"nodeType": "YulIf",
"src": "4503:119:13"
},
{
"nodeType": "YulBlock",
"src": "4632:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4647:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4661:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4651:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4676:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4711:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4722:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4707:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4707:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4731:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4686:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4686:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4676:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4759:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4774:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4788:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4778:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4804:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4839:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4850:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4835:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4835:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4859:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4814:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4814:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4804:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4455:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4466:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4478:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4486:6:13",
"type": ""
}
],
"src": "4410:474:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4990:519:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5036:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5038:77:13"
},
"nodeType": "YulFunctionCall",
"src": "5038:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "5038:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5011:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5020:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5007:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5007:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5032:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5003:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5003:32:13"
},
"nodeType": "YulIf",
"src": "5000:119:13"
},
{
"nodeType": "YulBlock",
"src": "5129:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5144:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5158:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5148:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5173:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5208:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5219:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5204:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5204:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5228:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5183:20:13"
},
"nodeType": "YulFunctionCall",
"src": "5183:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5173:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5256:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5271:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5285:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5275:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5301:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5336:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5347:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5332:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5332:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5356:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5311:20:13"
},
"nodeType": "YulFunctionCall",
"src": "5311:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5301:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5384:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5399:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5413:2:13",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5403:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5429:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5464:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5475:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5460:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5460:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5484:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5439:20:13"
},
"nodeType": "YulFunctionCall",
"src": "5439:53:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5429:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4944:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4955:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4967:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4975:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4983:6:13",
"type": ""
}
],
"src": "4890:619:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5581:263:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5627:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5629:77:13"
},
"nodeType": "YulFunctionCall",
"src": "5629:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "5629:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5602:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5611:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5598:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5598:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5623:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5594:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5594:32:13"
},
"nodeType": "YulIf",
"src": "5591:119:13"
},
{
"nodeType": "YulBlock",
"src": "5720:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5735:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5749:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5739:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5764:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5799:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5810:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5795:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5795:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5819:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5774:20:13"
},
"nodeType": "YulFunctionCall",
"src": "5774:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5764:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5551:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5562:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5574:6:13",
"type": ""
}
],
"src": "5515:329:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5915:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5932:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5955:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5937:17:13"
},
"nodeType": "YulFunctionCall",
"src": "5937:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5925:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5925:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "5925:37:13"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5903:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5910:3:13",
"type": ""
}
],
"src": "5850:118:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6072:124:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6082:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6094:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6105:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6090:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6090:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6082:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6162:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6175:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6186:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6171:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6171:17:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "6118:43:13"
},
"nodeType": "YulFunctionCall",
"src": "6118:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "6118:71:13"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6044:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6056:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6067:4:13",
"type": ""
}
],
"src": "5974:222:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6242:76:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6296:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6305:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6308:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6298:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6298:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "6298:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6265:5:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6287:5:13"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "6272:14:13"
},
"nodeType": "YulFunctionCall",
"src": "6272:21:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6262:2:13"
},
"nodeType": "YulFunctionCall",
"src": "6262:32:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6255:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6255:40:13"
},
"nodeType": "YulIf",
"src": "6252:60:13"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6235:5:13",
"type": ""
}
],
"src": "6202:116:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6373:84:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6383:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6405:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6392:12:13"
},
"nodeType": "YulFunctionCall",
"src": "6392:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6383:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6445:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "6421:23:13"
},
"nodeType": "YulFunctionCall",
"src": "6421:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "6421:30:13"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6351:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6359:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6367:5:13",
"type": ""
}
],
"src": "6324:133:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6543:388:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6589:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6591:77:13"
},
"nodeType": "YulFunctionCall",
"src": "6591:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "6591:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6564:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6573:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6560:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6560:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6585:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6556:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6556:32:13"
},
"nodeType": "YulIf",
"src": "6553:119:13"
},
{
"nodeType": "YulBlock",
"src": "6682:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6697:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6711:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6701:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6726:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6761:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6772:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6757:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6757:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6781:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6736:20:13"
},
"nodeType": "YulFunctionCall",
"src": "6736:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6726:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6809:115:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6824:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6838:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6828:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6854:60:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6886:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6897:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6882:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6882:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6906:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "6864:17:13"
},
"nodeType": "YulFunctionCall",
"src": "6864:50:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6854:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6505:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6516:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6528:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6536:6:13",
"type": ""
}
],
"src": "6463:468:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7026:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7043:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7046:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7036:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7036:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "7036:12:13"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "6937:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7149:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7166:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7169:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7159:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7159:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "7159:12:13"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "7060:117:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7211:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7228:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7231:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7221:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7221:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "7221:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7325:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7328:4:13",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7318:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7318:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "7318:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7349:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7352:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7342:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7342:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "7342:15:13"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "7183:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7412:238:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7422:58:13",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7444:6:13"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7474:4:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "7452:21:13"
},
"nodeType": "YulFunctionCall",
"src": "7452:27:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7440:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7440:40:13"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "7426:10:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7591:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7593:16:13"
},
"nodeType": "YulFunctionCall",
"src": "7593:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "7593:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7534:10:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7546:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7531:2:13"
},
"nodeType": "YulFunctionCall",
"src": "7531:34:13"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7570:10:13"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7582:6:13"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7567:2:13"
},
"nodeType": "YulFunctionCall",
"src": "7567:22:13"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7528:2:13"
},
"nodeType": "YulFunctionCall",
"src": "7528:62:13"
},
"nodeType": "YulIf",
"src": "7525:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7629:2:13",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7633:10:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7622:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7622:22:13"
},
"nodeType": "YulExpressionStatement",
"src": "7622:22:13"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7398:6:13",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7406:4:13",
"type": ""
}
],
"src": "7369:281:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7697:88:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7707:30:13",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "7717:18:13"
},
"nodeType": "YulFunctionCall",
"src": "7717:20:13"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7707:6:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7766:6:13"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7774:4:13"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "7746:19:13"
},
"nodeType": "YulFunctionCall",
"src": "7746:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "7746:33:13"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7681:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7690:6:13",
"type": ""
}
],
"src": "7656:129:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7857:241:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7962:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7964:16:13"
},
"nodeType": "YulFunctionCall",
"src": "7964:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "7964:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7934:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7942:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7931:2:13"
},
"nodeType": "YulFunctionCall",
"src": "7931:30:13"
},
"nodeType": "YulIf",
"src": "7928:56:13"
},
{
"nodeType": "YulAssignment",
"src": "7994:37:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8024:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8002:21:13"
},
"nodeType": "YulFunctionCall",
"src": "8002:29:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7994:4:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8068:23:13",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8080:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8086:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8076:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8076:15:13"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8068:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7841:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7852:4:13",
"type": ""
}
],
"src": "7791:307:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8168:82:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8191:3:13"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8196:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8201:6:13"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "8178:12:13"
},
"nodeType": "YulFunctionCall",
"src": "8178:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "8178:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8228:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8233:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8224:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8224:16:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8242:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8217:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8217:27:13"
},
"nodeType": "YulExpressionStatement",
"src": "8217:27:13"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8150:3:13",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8155:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8160:6:13",
"type": ""
}
],
"src": "8104:146:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8339:340:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8349:74:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8415:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8374:40:13"
},
"nodeType": "YulFunctionCall",
"src": "8374:48:13"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "8358:15:13"
},
"nodeType": "YulFunctionCall",
"src": "8358:65:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8349:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8439:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8446:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8432:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8432:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "8432:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8462:27:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8477:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8484:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8473:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8473:16:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8466:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8527:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "8529:77:13"
},
"nodeType": "YulFunctionCall",
"src": "8529:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "8529:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8508:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8513:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8504:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8504:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8522:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8501:2:13"
},
"nodeType": "YulFunctionCall",
"src": "8501:25:13"
},
"nodeType": "YulIf",
"src": "8498:112:13"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8656:3:13"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8661:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8666:6:13"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "8619:36:13"
},
"nodeType": "YulFunctionCall",
"src": "8619:54:13"
},
"nodeType": "YulExpressionStatement",
"src": "8619:54:13"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8312:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8317:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8325:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8333:5:13",
"type": ""
}
],
"src": "8256:423:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8759:277:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8808:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "8810:77:13"
},
"nodeType": "YulFunctionCall",
"src": "8810:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "8810:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8787:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8795:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8783:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8783:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8802:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8779:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8779:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8772:6:13"
},
"nodeType": "YulFunctionCall",
"src": "8772:35:13"
},
"nodeType": "YulIf",
"src": "8769:122:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8900:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8927:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "8914:12:13"
},
"nodeType": "YulFunctionCall",
"src": "8914:20:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8904:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8943:87:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9003:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9011:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8999:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8999:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9018:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9026:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8952:46:13"
},
"nodeType": "YulFunctionCall",
"src": "8952:78:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8943:5:13"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8737:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8745:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8753:5:13",
"type": ""
}
],
"src": "8698:338:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9168:817:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9215:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9217:77:13"
},
"nodeType": "YulFunctionCall",
"src": "9217:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "9217:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9189:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9198:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9185:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9185:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9210:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9181:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9181:33:13"
},
"nodeType": "YulIf",
"src": "9178:120:13"
},
{
"nodeType": "YulBlock",
"src": "9308:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9323:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9337:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9327:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9352:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9387:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9398:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9383:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9383:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9407:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9362:20:13"
},
"nodeType": "YulFunctionCall",
"src": "9362:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9352:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9435:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9450:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9464:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9454:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9480:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9515:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9526:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9511:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9511:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9535:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9490:20:13"
},
"nodeType": "YulFunctionCall",
"src": "9490:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9480:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9563:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9578:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9592:2:13",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9582:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9608:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9643:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9654:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9639:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9639:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9663:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9618:20:13"
},
"nodeType": "YulFunctionCall",
"src": "9618:53:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "9608:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9691:287:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9706:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9737:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9748:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9733:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9733:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "9720:12:13"
},
"nodeType": "YulFunctionCall",
"src": "9720:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9710:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9799:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "9801:77:13"
},
"nodeType": "YulFunctionCall",
"src": "9801:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "9801:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9771:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9779:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9768:2:13"
},
"nodeType": "YulFunctionCall",
"src": "9768:30:13"
},
"nodeType": "YulIf",
"src": "9765:117:13"
},
{
"nodeType": "YulAssignment",
"src": "9896:72:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9940:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9951:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9936:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9936:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9960:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9906:29:13"
},
"nodeType": "YulFunctionCall",
"src": "9906:62:13"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "9896:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9114:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9125:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9137:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9145:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "9153:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "9161:6:13",
"type": ""
}
],
"src": "9042:943:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10074:391:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10120:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "10122:77:13"
},
"nodeType": "YulFunctionCall",
"src": "10122:79:13"
},
"nodeType": "YulExpressionStatement",
"src": "10122:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10095:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10104:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10091:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10091:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10116:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10087:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10087:32:13"
},
"nodeType": "YulIf",
"src": "10084:119:13"
},
{
"nodeType": "YulBlock",
"src": "10213:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10228:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10242:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10232:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10257:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10292:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10303:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10288:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10288:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10312:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "10267:20:13"
},
"nodeType": "YulFunctionCall",
"src": "10267:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10257:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "10340:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10355:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10369:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10359:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10385:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10420:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10431:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10416:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10416:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "10440:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "10395:20:13"
},
"nodeType": "YulFunctionCall",
"src": "10395:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "10385:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10036:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "10047:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10059:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "10067:6:13",
"type": ""
}
],
"src": "9991:474:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10499:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10516:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10519:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10509:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10509:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "10509:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10613:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10616:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10606:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10606:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "10606:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10637:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10640:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "10630:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10630:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "10630:15:13"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "10471:180:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10708:269:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10718:22:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10732:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10738:1:13",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "10728:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10728:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10718:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "10749:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "10779:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10785:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10775:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10775:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "10753:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10826:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10840:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10854:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10862:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "10850:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10850:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10840:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10806:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10799:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10799:26:13"
},
"nodeType": "YulIf",
"src": "10796:81:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10929:42:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "10943:16:13"
},
"nodeType": "YulFunctionCall",
"src": "10943:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "10943:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "10893:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10916:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10924:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10913:2:13"
},
"nodeType": "YulFunctionCall",
"src": "10913:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "10890:2:13"
},
"nodeType": "YulFunctionCall",
"src": "10890:38:13"
},
"nodeType": "YulIf",
"src": "10887:84:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "10692:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10701:6:13",
"type": ""
}
],
"src": "10657:320:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11089:114:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11111:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11119:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11107:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11107:14:13"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11123:34:13",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11100:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11100:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "11100:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "11179:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11187:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11175:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11175:15:13"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "11192:3:13",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11168:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11168:28:13"
},
"nodeType": "YulExpressionStatement",
"src": "11168:28:13"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "11081:6:13",
"type": ""
}
],
"src": "10983:220:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11355:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11365:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11431:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11436:2:13",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11372:58:13"
},
"nodeType": "YulFunctionCall",
"src": "11372:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11365:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11537:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "11448:88:13"
},
"nodeType": "YulFunctionCall",
"src": "11448:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "11448:93:13"
},
{
"nodeType": "YulAssignment",
"src": "11550:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11561:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11566:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11557:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11557:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11550:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11343:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11351:3:13",
"type": ""
}
],
"src": "11209:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11752:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11762:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11774:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11785:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11770:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11770:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11762:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11809:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11820:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11805:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11805:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11828:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11834:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11824:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11824:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11798:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11798:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "11798:47:13"
},
{
"nodeType": "YulAssignment",
"src": "11854:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11988:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11862:124:13"
},
"nodeType": "YulFunctionCall",
"src": "11862:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "11854:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11732:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "11747:4:13",
"type": ""
}
],
"src": "11581:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12112:142:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12134:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12142:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12130:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12130:14:13"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12146:34:13",
"type": "",
"value": "ERC721: approve caller is not to"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12123:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12123:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "12123:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12202:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12210:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12198:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12198:15:13"
},
{
"hexValue": "6b656e206f776e6572206f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12215:31:13",
"type": "",
"value": "ken owner or approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12191:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12191:56:13"
},
"nodeType": "YulExpressionStatement",
"src": "12191:56:13"
}
]
},
"name": "store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12104:6:13",
"type": ""
}
],
"src": "12006:248:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12406:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12416:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12482:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12487:2:13",
"type": "",
"value": "61"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12423:58:13"
},
"nodeType": "YulFunctionCall",
"src": "12423:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12416:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12588:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83",
"nodeType": "YulIdentifier",
"src": "12499:88:13"
},
"nodeType": "YulFunctionCall",
"src": "12499:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "12499:93:13"
},
{
"nodeType": "YulAssignment",
"src": "12601:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12612:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12617:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12608:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12608:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12601:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12394:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12402:3:13",
"type": ""
}
],
"src": "12260:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12803:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12813:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12825:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12836:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12821:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12821:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12813:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12860:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12871:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12856:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12856:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12879:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12885:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "12875:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12875:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12849:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12849:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "12849:47:13"
},
{
"nodeType": "YulAssignment",
"src": "12905:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13039:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12913:124:13"
},
"nodeType": "YulFunctionCall",
"src": "12913:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "12905:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "12783:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "12798:4:13",
"type": ""
}
],
"src": "12632:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13163:126:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13185:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13193:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13181:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13181:14:13"
},
{
"hexValue": "4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13197:34:13",
"type": "",
"value": "ERC721: caller is not token owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13174:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13174:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "13174:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13253:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13261:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13249:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13249:15:13"
},
{
"hexValue": "72206f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13266:15:13",
"type": "",
"value": "r or approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13242:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13242:40:13"
},
"nodeType": "YulExpressionStatement",
"src": "13242:40:13"
}
]
},
"name": "store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13155:6:13",
"type": ""
}
],
"src": "13057:232:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13441:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13451:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13517:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13522:2:13",
"type": "",
"value": "45"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13458:58:13"
},
"nodeType": "YulFunctionCall",
"src": "13458:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13451:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13623:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af",
"nodeType": "YulIdentifier",
"src": "13534:88:13"
},
"nodeType": "YulFunctionCall",
"src": "13534:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "13534:93:13"
},
{
"nodeType": "YulAssignment",
"src": "13636:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13647:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13652:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13643:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13643:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13636:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13429:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13437:3:13",
"type": ""
}
],
"src": "13295:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13838:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13848:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13860:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13871:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13856:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13856:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13848:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13895:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13906:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13891:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13891:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13914:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13920:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13910:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13910:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13884:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13884:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "13884:47:13"
},
{
"nodeType": "YulAssignment",
"src": "13940:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14074:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13948:124:13"
},
"nodeType": "YulFunctionCall",
"src": "13948:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13940:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13818:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13833:4:13",
"type": ""
}
],
"src": "13667:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14198:68:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14220:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14228:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14216:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14216:14:13"
},
{
"hexValue": "4552433732313a20696e76616c696420746f6b656e204944",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14232:26:13",
"type": "",
"value": "ERC721: invalid token ID"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14209:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14209:50:13"
},
"nodeType": "YulExpressionStatement",
"src": "14209:50:13"
}
]
},
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14190:6:13",
"type": ""
}
],
"src": "14092:174:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14418:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14428:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14494:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14499:2:13",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14435:58:13"
},
"nodeType": "YulFunctionCall",
"src": "14435:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14428:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14600:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulIdentifier",
"src": "14511:88:13"
},
"nodeType": "YulFunctionCall",
"src": "14511:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "14511:93:13"
},
{
"nodeType": "YulAssignment",
"src": "14613:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14624:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14629:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14620:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14620:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14613:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14406:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14414:3:13",
"type": ""
}
],
"src": "14272:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14815:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14825:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14837:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14848:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14833:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14833:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14825:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14872:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14883:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14868:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14868:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14891:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14897:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14887:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14887:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14861:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14861:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "14861:47:13"
},
{
"nodeType": "YulAssignment",
"src": "14917:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15051:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14925:124:13"
},
"nodeType": "YulFunctionCall",
"src": "14925:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14917:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14795:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14810:4:13",
"type": ""
}
],
"src": "14644:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15175:122:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15197:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15205:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15193:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15193:14:13"
},
{
"hexValue": "4552433732313a2061646472657373207a65726f206973206e6f742061207661",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15209:34:13",
"type": "",
"value": "ERC721: address zero is not a va"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15186:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15186:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "15186:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15265:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15273:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15261:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15261:15:13"
},
{
"hexValue": "6c6964206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15278:11:13",
"type": "",
"value": "lid owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15254:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15254:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "15254:36:13"
}
]
},
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15167:6:13",
"type": ""
}
],
"src": "15069:228:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15449:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15459:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15525:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15530:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15466:58:13"
},
"nodeType": "YulFunctionCall",
"src": "15466:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15459:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15631:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulIdentifier",
"src": "15542:88:13"
},
"nodeType": "YulFunctionCall",
"src": "15542:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "15542:93:13"
},
{
"nodeType": "YulAssignment",
"src": "15644:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15655:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15660:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15651:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15651:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15644:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15437:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15445:3:13",
"type": ""
}
],
"src": "15303:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15846:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15856:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15868:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15879:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15864:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15864:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15856:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15903:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15914:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15899:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15899:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15922:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15928:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15918:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15918:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15892:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15892:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "15892:47:13"
},
{
"nodeType": "YulAssignment",
"src": "15948:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16082:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15956:124:13"
},
"nodeType": "YulFunctionCall",
"src": "15956:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15948:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15826:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15841:4:13",
"type": ""
}
],
"src": "15675:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16214:34:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16224:18:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16239:3:13"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "16224:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16186:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "16191:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "16202:11:13",
"type": ""
}
],
"src": "16100:148:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16364:280:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "16374:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16421:5:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "16388:32:13"
},
"nodeType": "YulFunctionCall",
"src": "16388:39:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "16378:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "16436:96:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16520:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16525:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16443:76:13"
},
"nodeType": "YulFunctionCall",
"src": "16443:89:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16436:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "16580:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16587:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16576:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16576:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16594:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16599:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "16541:34:13"
},
"nodeType": "YulFunctionCall",
"src": "16541:65:13"
},
"nodeType": "YulExpressionStatement",
"src": "16541:65:13"
},
{
"nodeType": "YulAssignment",
"src": "16615:23:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16626:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "16631:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16622:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16622:16:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16615:3:13"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "16345:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16352:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16360:3:13",
"type": ""
}
],
"src": "16254:390:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16834:251:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16845:102:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "16934:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16943:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16852:81:13"
},
"nodeType": "YulFunctionCall",
"src": "16852:95:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16845:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "16957:102:13",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "17046:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17055:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "16964:81:13"
},
"nodeType": "YulFunctionCall",
"src": "16964:95:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16957:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "17069:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17076:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17069:3:13"
}
]
}
]
},
"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": "16805:3:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "16811:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "16819:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16830:3:13",
"type": ""
}
],
"src": "16650:435:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17197:119:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17219:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17227:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17215:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17215:14:13"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17231:34:13",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17208:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17208:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "17208:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17287:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17295:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17283:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17283:15:13"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17300:8:13",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17276:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17276:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "17276:33:13"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "17189:6:13",
"type": ""
}
],
"src": "17091:225:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17468:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17478:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17544:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17549:2:13",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17485:58:13"
},
"nodeType": "YulFunctionCall",
"src": "17485:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17478:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17650:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "17561:88:13"
},
"nodeType": "YulFunctionCall",
"src": "17561:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "17561:93:13"
},
{
"nodeType": "YulAssignment",
"src": "17663:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17674:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17679:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17670:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17670:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17663:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17456:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17464:3:13",
"type": ""
}
],
"src": "17322:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17865:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17875:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17887:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17898:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17883:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17883:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17875:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17922:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17933:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17918:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17918:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17941:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17947:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17937:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17937:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17911:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17911:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "17911:47:13"
},
{
"nodeType": "YulAssignment",
"src": "17967:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18101:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17975:124:13"
},
"nodeType": "YulFunctionCall",
"src": "17975:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17967:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17845:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17860:4:13",
"type": ""
}
],
"src": "17694:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18225:118:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18247:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18255:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18243:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18243:14:13"
},
{
"hexValue": "4552433732313a207472616e736665722066726f6d20696e636f727265637420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18259:34:13",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18236:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18236:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "18236:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18315:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18323:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18311:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18311:15:13"
},
{
"hexValue": "6f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18328:7:13",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18304:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18304:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "18304:32:13"
}
]
},
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18217:6:13",
"type": ""
}
],
"src": "18119:224:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18495:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18505:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18571:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18576:2:13",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18512:58:13"
},
"nodeType": "YulFunctionCall",
"src": "18512:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18505:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18677:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulIdentifier",
"src": "18588:88:13"
},
"nodeType": "YulFunctionCall",
"src": "18588:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "18588:93:13"
},
{
"nodeType": "YulAssignment",
"src": "18690:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18701:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18706:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18697:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18697:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18690:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18483:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18491:3:13",
"type": ""
}
],
"src": "18349:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18892:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18902:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18914:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18925:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18910:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18910:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18902:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18949:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18960:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18945:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18945:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18968:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18974:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18964:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18964:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18938:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18938:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "18938:47:13"
},
{
"nodeType": "YulAssignment",
"src": "18994:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19128:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19002:124:13"
},
"nodeType": "YulFunctionCall",
"src": "19002:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18994:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18872:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18887:4:13",
"type": ""
}
],
"src": "18721:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19252:117:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19274:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19282:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19270:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19270:14:13"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19286:34:13",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19263:6:13"
},
"nodeType": "YulFunctionCall",
"src": "19263:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "19263:58:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19342:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19350:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19338:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19338:15:13"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19355:6:13",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19331:6:13"
},
"nodeType": "YulFunctionCall",
"src": "19331:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "19331:31:13"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19244:6:13",
"type": ""
}
],
"src": "19146:223:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19521:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19531:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19597:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19602:2:13",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19538:58:13"
},
"nodeType": "YulFunctionCall",
"src": "19538:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19531:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19703:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "19614:88:13"
},
"nodeType": "YulFunctionCall",
"src": "19614:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "19614:93:13"
},
{
"nodeType": "YulAssignment",
"src": "19716:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19727:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19732:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19723:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19723:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19716:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19509:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19517:3:13",
"type": ""
}
],
"src": "19375:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19918:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19928:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19940:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19951:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19936:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19936:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19928:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19975:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19986:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19971:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19971:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19994:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20000:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19990:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19990:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19964:6:13"
},
"nodeType": "YulFunctionCall",
"src": "19964:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "19964:47:13"
},
{
"nodeType": "YulAssignment",
"src": "20020:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20154:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20028:124:13"
},
"nodeType": "YulFunctionCall",
"src": "20028:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20020:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19898:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19913:4:13",
"type": ""
}
],
"src": "19747:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20278:76:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20300:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20308:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20296:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20296:14:13"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20312:34:13",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20289:6:13"
},
"nodeType": "YulFunctionCall",
"src": "20289:58:13"
},
"nodeType": "YulExpressionStatement",
"src": "20289:58:13"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20270:6:13",
"type": ""
}
],
"src": "20172:182:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20506:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20516:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20582:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20587:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20523:58:13"
},
"nodeType": "YulFunctionCall",
"src": "20523:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20516:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20688:3:13"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "20599:88:13"
},
"nodeType": "YulFunctionCall",
"src": "20599:93:13"
},
"nodeType": "YulExpressionStatement",
"src": "20599:93:13"
},
{
"nodeType": "YulAssignment",
"src": "20701:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20712:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20717:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20708:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20708:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20701:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20494:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20502:3:13",
"type": ""
}
],
"src": "20360:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20903:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20913:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20925:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20936:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20921:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20921:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20913:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20960:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20971:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20956:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20956:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20979:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20985:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20975:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20975:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20949:6:13"
},
"nodeType": "YulFunctionCall",
"src": "20949:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "20949:47:13"
},
{
"nodeType": "YulAssignment",
"src": "21005:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21139:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21013:124:13"
},
"nodeType": "YulFunctionCall",
"src": "21013:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21005:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20883:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20898:4:13",
"type": ""
}
],
"src": "20732:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21263:69:13",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21285:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21293:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21281:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21281:14:13"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21297:27:13",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21274:6:13"
},
"nodeType": "YulFunctionCall",
"src": "21274:51:13"
},
"nodeType": "YulExpressionStatement",
"src": "21274:51:13"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "21255:6:13",
"type": ""
}
],
"src": "21157:175:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21484:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21494:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21560:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21565:2:13",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21501:58:13"
},
"nodeType": "YulFunctionCall",
"src": "21501:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21494:3:13"
}
]
},
{