Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kaverkiev/42e5dd0f774c537bbd09ac9aea58544b to your computer and use it in GitHub Desktop.
Save kaverkiev/42e5dd0f774c537bbd09ac9aea58544b 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.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)
pragma solidity ^0.8.0;
import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC3156FlashBorrower.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC3156 FlashBorrower, as defined in
* https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
*
* _Available since v4.1._
*/
interface IERC3156FlashBorrower {
/**
* @dev Receive a flash loan.
* @param initiator The initiator of the loan.
* @param token The loan currency.
* @param amount The amount of tokens lent.
* @param fee The additional amount of tokens to repay.
* @param data Arbitrary data structure, intended to contain user-defined parameters.
* @return The keccak256 hash of "ERC3156FlashBorrower.onFlashLoan"
*/
function onFlashLoan(
address initiator,
address token,
uint256 amount,
uint256 fee,
bytes calldata data
) external returns (bytes32);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC3156FlashLender.sol)
pragma solidity ^0.8.0;
import "./IERC3156FlashBorrower.sol";
/**
* @dev Interface of the ERC3156 FlashLender, as defined in
* https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
*
* _Available since v4.1._
*/
interface IERC3156FlashLender {
/**
* @dev The amount of currency available to be lended.
* @param token The loan currency.
* @return The amount of `token` that can be borrowed.
*/
function maxFlashLoan(address token) external view returns (uint256);
/**
* @dev The fee to be charged for a given loan.
* @param token The loan currency.
* @param amount The amount of tokens lent.
* @return The amount of `token` to be charged for the loan, on top of the returned principal.
*/
function flashFee(address token, uint256 amount) external view returns (uint256);
/**
* @dev Initiate a flash loan.
* @param receiver The receiver of the tokens in the loan, and the receiver of the callback.
* @param token The loan currency.
* @param amount The amount of tokens lent.
* @param data Arbitrary data structure, intended to contain user-defined parameters.
*/
function flashLoan(
IERC3156FlashBorrower receiver,
address token,
uint256 amount,
bytes calldata data
) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC4906.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
import "./IERC721.sol";
/// @title EIP-721 Metadata Update Extension
interface IERC4906 is IERC165, IERC721 {
/// @dev This event emits when the metadata of a token is changed.
/// So that the third-party platforms such as NFT market could
/// timely update the images and related attributes of the NFT.
event MetadataUpdate(uint256 _tokenId);
/// @dev This event emits when the metadata of a range of tokens is changed.
/// So that the third-party platforms such as NFT market could
/// timely update the images and related attributes of the NFTs.
event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)
pragma solidity ^0.8.0;
import "../token/ERC721/IERC721.sol";
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* The default value of {decimals} is 18. To change this, you should override
* this function so it returns a different value.
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the default value returned by this function, unless
* it's overridden.
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(address from, address to, uint256 amount) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(address owner, address spender, uint256 amount) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys `amount` tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 amount) public virtual {
_burn(_msgSender(), amount);
}
/**
* @dev Destroys `amount` tokens from `account`, deducting from the caller's
* allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `amount`.
*/
function burnFrom(address account, uint256 amount) public virtual {
_spendAllowance(account, _msgSender(), amount);
_burn(account, amount);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/extensions/ERC20FlashMint.sol)
pragma solidity ^0.8.0;
import "../../../interfaces/IERC3156FlashBorrower.sol";
import "../../../interfaces/IERC3156FlashLender.sol";
import "../ERC20.sol";
/**
* @dev Implementation of the ERC3156 Flash loans extension, as defined in
* https://eips.ethereum.org/EIPS/eip-3156[ERC-3156].
*
* Adds the {flashLoan} method, which provides flash loan support at the token
* level. By default there is no fee, but this can be changed by overriding {flashFee}.
*
* _Available since v4.1._
*/
abstract contract ERC20FlashMint is ERC20, IERC3156FlashLender {
bytes32 private constant _RETURN_VALUE = keccak256("ERC3156FlashBorrower.onFlashLoan");
/**
* @dev Returns the maximum amount of tokens available for loan.
* @param token The address of the token that is requested.
* @return The amount of token that can be loaned.
*/
function maxFlashLoan(address token) public view virtual override returns (uint256) {
return token == address(this) ? type(uint256).max - ERC20.totalSupply() : 0;
}
/**
* @dev Returns the fee applied when doing flash loans. This function calls
* the {_flashFee} function which returns the fee applied when doing flash
* loans.
* @param token The token to be flash loaned.
* @param amount The amount of tokens to be loaned.
* @return The fees applied to the corresponding flash loan.
*/
function flashFee(address token, uint256 amount) public view virtual override returns (uint256) {
require(token == address(this), "ERC20FlashMint: wrong token");
return _flashFee(token, amount);
}
/**
* @dev Returns the fee applied when doing flash loans. By default this
* implementation has 0 fees. This function can be overloaded to make
* the flash loan mechanism deflationary.
* @param token The token to be flash loaned.
* @param amount The amount of tokens to be loaned.
* @return The fees applied to the corresponding flash loan.
*/
function _flashFee(address token, uint256 amount) internal view virtual returns (uint256) {
// silence warning about unused variable without the addition of bytecode.
token;
amount;
return 0;
}
/**
* @dev Returns the receiver address of the flash fee. By default this
* implementation returns the address(0) which means the fee amount will be burnt.
* This function can be overloaded to change the fee receiver.
* @return The address for which the flash fee will be sent to.
*/
function _flashFeeReceiver() internal view virtual returns (address) {
return address(0);
}
/**
* @dev Performs a flash loan. New tokens are minted and sent to the
* `receiver`, who is required to implement the {IERC3156FlashBorrower}
* interface. By the end of the flash loan, the receiver is expected to own
* amount + fee tokens and have them approved back to the token contract itself so
* they can be burned.
* @param receiver The receiver of the flash loan. Should implement the
* {IERC3156FlashBorrower-onFlashLoan} interface.
* @param token The token to be flash loaned. Only `address(this)` is
* supported.
* @param amount The amount of tokens to be loaned.
* @param data An arbitrary datafield that is passed to the receiver.
* @return `true` if the flash loan was successful.
*/
// This function can reenter, but it doesn't pose a risk because it always preserves the property that the amount
// minted at the beginning is always recovered and burned at the end, or else the entire function will revert.
// slither-disable-next-line reentrancy-no-eth
function flashLoan(
IERC3156FlashBorrower receiver,
address token,
uint256 amount,
bytes calldata data
) public virtual override returns (bool) {
require(amount <= maxFlashLoan(token), "ERC20FlashMint: amount exceeds maxFlashLoan");
uint256 fee = flashFee(token, amount);
_mint(address(receiver), amount);
require(
receiver.onFlashLoan(msg.sender, token, amount, fee, data) == _RETURN_VALUE,
"ERC20FlashMint: invalid return value"
);
address flashFeeReceiver = _flashFeeReceiver();
_spendAllowance(address(receiver), address(this), amount + fee);
if (fee == 0 || flashFeeReceiver == address(0)) {
_burn(address(receiver), amount + fee);
} else {
_burn(address(receiver), amount);
_transfer(address(receiver), flashFeeReceiver, fee);
}
return true;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/ERC20Snapshot.sol)
pragma solidity ^0.8.0;
import "../ERC20.sol";
import "../../../utils/Arrays.sol";
import "../../../utils/Counters.sol";
/**
* @dev This contract extends an ERC20 token with a snapshot mechanism. When a snapshot is created, the balances and
* total supply at the time are recorded for later access.
*
* This can be used to safely create mechanisms based on token balances such as trustless dividends or weighted voting.
* In naive implementations it's possible to perform a "double spend" attack by reusing the same balance from different
* accounts. By using snapshots to calculate dividends or voting power, those attacks no longer apply. It can also be
* used to create an efficient ERC20 forking mechanism.
*
* Snapshots are created by the internal {_snapshot} function, which will emit the {Snapshot} event and return a
* snapshot id. To get the total supply at the time of a snapshot, call the function {totalSupplyAt} with the snapshot
* id. To get the balance of an account at the time of a snapshot, call the {balanceOfAt} function with the snapshot id
* and the account address.
*
* NOTE: Snapshot policy can be customized by overriding the {_getCurrentSnapshotId} method. For example, having it
* return `block.number` will trigger the creation of snapshot at the beginning of each new block. When overriding this
* function, be careful about the monotonicity of its result. Non-monotonic snapshot ids will break the contract.
*
* Implementing snapshots for every block using this method will incur significant gas costs. For a gas-efficient
* alternative consider {ERC20Votes}.
*
* ==== Gas Costs
*
* Snapshots are efficient. Snapshot creation is _O(1)_. Retrieval of balances or total supply from a snapshot is _O(log
* n)_ in the number of snapshots that have been created, although _n_ for a specific account will generally be much
* smaller since identical balances in subsequent snapshots are stored as a single entry.
*
* There is a constant overhead for normal ERC20 transfers due to the additional snapshot bookkeeping. This overhead is
* only significant for the first transfer that immediately follows a snapshot for a particular account. Subsequent
* transfers will have normal cost until the next snapshot, and so on.
*/
abstract contract ERC20Snapshot is ERC20 {
// Inspired by Jordi Baylina's MiniMeToken to record historical balances:
// https://github.com/Giveth/minime/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol
using Arrays for uint256[];
using Counters for Counters.Counter;
// Snapshotted values have arrays of ids and the value corresponding to that id. These could be an array of a
// Snapshot struct, but that would impede usage of functions that work on an array.
struct Snapshots {
uint256[] ids;
uint256[] values;
}
mapping(address => Snapshots) private _accountBalanceSnapshots;
Snapshots private _totalSupplySnapshots;
// Snapshot ids increase monotonically, with the first value being 1. An id of 0 is invalid.
Counters.Counter private _currentSnapshotId;
/**
* @dev Emitted by {_snapshot} when a snapshot identified by `id` is created.
*/
event Snapshot(uint256 id);
/**
* @dev Creates a new snapshot and returns its snapshot id.
*
* Emits a {Snapshot} event that contains the same id.
*
* {_snapshot} is `internal` and you have to decide how to expose it externally. Its usage may be restricted to a
* set of accounts, for example using {AccessControl}, or it may be open to the public.
*
* [WARNING]
* ====
* While an open way of calling {_snapshot} is required for certain trust minimization mechanisms such as forking,
* you must consider that it can potentially be used by attackers in two ways.
*
* First, it can be used to increase the cost of retrieval of values from snapshots, although it will grow
* logarithmically thus rendering this attack ineffective in the long term. Second, it can be used to target
* specific accounts and increase the cost of ERC20 transfers for them, in the ways specified in the Gas Costs
* section above.
*
* We haven't measured the actual numbers; if this is something you're interested in please reach out to us.
* ====
*/
function _snapshot() internal virtual returns (uint256) {
_currentSnapshotId.increment();
uint256 currentId = _getCurrentSnapshotId();
emit Snapshot(currentId);
return currentId;
}
/**
* @dev Get the current snapshotId
*/
function _getCurrentSnapshotId() internal view virtual returns (uint256) {
return _currentSnapshotId.current();
}
/**
* @dev Retrieves the balance of `account` at the time `snapshotId` was created.
*/
function balanceOfAt(address account, uint256 snapshotId) public view virtual returns (uint256) {
(bool snapshotted, uint256 value) = _valueAt(snapshotId, _accountBalanceSnapshots[account]);
return snapshotted ? value : balanceOf(account);
}
/**
* @dev Retrieves the total supply at the time `snapshotId` was created.
*/
function totalSupplyAt(uint256 snapshotId) public view virtual returns (uint256) {
(bool snapshotted, uint256 value) = _valueAt(snapshotId, _totalSupplySnapshots);
return snapshotted ? value : totalSupply();
}
// Update balance and/or total supply snapshots before the values are modified. This is implemented
// in the _beforeTokenTransfer hook, which is executed for _mint, _burn, and _transfer operations.
function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
super._beforeTokenTransfer(from, to, amount);
if (from == address(0)) {
// mint
_updateAccountSnapshot(to);
_updateTotalSupplySnapshot();
} else if (to == address(0)) {
// burn
_updateAccountSnapshot(from);
_updateTotalSupplySnapshot();
} else {
// transfer
_updateAccountSnapshot(from);
_updateAccountSnapshot(to);
}
}
function _valueAt(uint256 snapshotId, Snapshots storage snapshots) private view returns (bool, uint256) {
require(snapshotId > 0, "ERC20Snapshot: id is 0");
require(snapshotId <= _getCurrentSnapshotId(), "ERC20Snapshot: nonexistent id");
// When a valid snapshot is queried, there are three possibilities:
// a) The queried value was not modified after the snapshot was taken. Therefore, a snapshot entry was never
// created for this id, and all stored snapshot ids are smaller than the requested one. The value that corresponds
// to this id is the current one.
// b) The queried value was modified after the snapshot was taken. Therefore, there will be an entry with the
// requested id, and its value is the one to return.
// c) More snapshots were created after the requested one, and the queried value was later modified. There will be
// no entry for the requested id: the value that corresponds to it is that of the smallest snapshot id that is
// larger than the requested one.
//
// In summary, we need to find an element in an array, returning the index of the smallest value that is larger if
// it is not found, unless said value doesn't exist (e.g. when all values are smaller). Arrays.findUpperBound does
// exactly this.
uint256 index = snapshots.ids.findUpperBound(snapshotId);
if (index == snapshots.ids.length) {
return (false, 0);
} else {
return (true, snapshots.values[index]);
}
}
function _updateAccountSnapshot(address account) private {
_updateSnapshot(_accountBalanceSnapshots[account], balanceOf(account));
}
function _updateTotalSupplySnapshot() private {
_updateSnapshot(_totalSupplySnapshots, totalSupply());
}
function _updateSnapshot(Snapshots storage snapshots, uint256 currentValue) private {
uint256 currentId = _getCurrentSnapshotId();
if (_lastSnapshotId(snapshots.ids) < currentId) {
snapshots.ids.push(currentId);
snapshots.values.push(currentValue);
}
}
function _lastSnapshotId(uint256[] storage ids) private view returns (uint256) {
if (ids.length == 0) {
return 0;
} else {
return ids[ids.length - 1];
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: 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 (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev See {ERC721-_beforeTokenTransfer}.
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual override {
super._beforeTokenTransfer(from, to, firstTokenId, batchSize);
if (batchSize > 1) {
// Will only trigger during construction. Batch transferring (minting) is not available afterwards.
revert("ERC721Enumerable: consecutive transfers not supported");
}
uint256 tokenId = firstTokenId;
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/extensions/ERC721URIStorage.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "../../../interfaces/IERC4906.sol";
/**
* @dev ERC721 token with storage based token URI management.
*/
abstract contract ERC721URIStorage is IERC4906, ERC721 {
using Strings for uint256;
// Optional mapping for token URIs
mapping(uint256 => string) private _tokenURIs;
/**
* @dev See {IERC165-supportsInterface}
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, IERC165) returns (bool) {
return interfaceId == bytes4(0x49064906) || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory _tokenURI = _tokenURIs[tokenId];
string memory base = _baseURI();
// If there is no base URI, return the token URI.
if (bytes(base).length == 0) {
return _tokenURI;
}
// If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
if (bytes(_tokenURI).length > 0) {
return string(abi.encodePacked(base, _tokenURI));
}
return super.tokenURI(tokenId);
}
/**
* @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
*
* Emits {MetadataUpdate}.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
_tokenURIs[tokenId] = _tokenURI;
emit MetadataUpdate(tokenId);
}
/**
* @dev See {ERC721-_burn}. This override additionally checks to see if a
* token-specific URI was set for the token, and if so, it deletes the token URI from
* the storage mapping.
*/
function _burn(uint256 tokenId) internal virtual override {
super._burn(tokenId);
if (bytes(_tokenURIs[tokenId]).length != 0) {
delete _tokenURIs[tokenId];
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// 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.9.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.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Arrays.sol)
pragma solidity ^0.8.0;
import "./StorageSlot.sol";
import "./math/Math.sol";
/**
* @dev Collection of functions related to array types.
*/
library Arrays {
using StorageSlot for bytes32;
/**
* @dev Searches a sorted `array` and returns the first index that contains
* a value greater or equal to `element`. If no such index exists (i.e. all
* values in the array are strictly less than `element`), the array length is
* returned. Time complexity O(log n).
*
* `array` is expected to be sorted in ascending order, and to contain no
* repeated elements.
*/
function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
if (array.length == 0) {
return 0;
}
uint256 low = 0;
uint256 high = array.length;
while (low < high) {
uint256 mid = Math.average(low, high);
// Note that mid will always be strictly less than high (i.e. it will be a valid array index)
// because Math.average rounds down (it does integer division with truncation).
if (unsafeAccess(array, mid).value > element) {
high = mid;
} else {
low = mid + 1;
}
}
// At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
if (low > 0 && unsafeAccess(array, low - 1).value == element) {
return low - 1;
} else {
return low;
}
}
/**
* @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
*
* WARNING: Only use if you are certain `pos` is lower than the array length.
*/
function unsafeAccess(address[] storage arr, uint256 pos) internal pure returns (StorageSlot.AddressSlot storage) {
bytes32 slot;
// We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
// following https://docs.soliditylang.org/en/v0.8.17/internals/layout_in_storage.html#mappings-and-dynamic-arrays.
/// @solidity memory-safe-assembly
assembly {
mstore(0, arr.slot)
slot := add(keccak256(0, 0x20), pos)
}
return slot.getAddressSlot();
}
/**
* @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
*
* WARNING: Only use if you are certain `pos` is lower than the array length.
*/
function unsafeAccess(bytes32[] storage arr, uint256 pos) internal pure returns (StorageSlot.Bytes32Slot storage) {
bytes32 slot;
// We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
// following https://docs.soliditylang.org/en/v0.8.17/internals/layout_in_storage.html#mappings-and-dynamic-arrays.
/// @solidity memory-safe-assembly
assembly {
mstore(0, arr.slot)
slot := add(keccak256(0, 0x20), pos)
}
return slot.getBytes32Slot();
}
/**
* @dev Access an array in an "unsafe" way. Skips solidity "index-out-of-range" check.
*
* WARNING: Only use if you are certain `pos` is lower than the array length.
*/
function unsafeAccess(uint256[] storage arr, uint256 pos) internal pure returns (StorageSlot.Uint256Slot storage) {
bytes32 slot;
// We use assembly to calculate the storage slot of the element at index `pos` of the dynamic array `arr`
// following https://docs.soliditylang.org/en/v0.8.17/internals/layout_in_storage.html#mappings-and-dynamic-arrays.
/// @solidity memory-safe-assembly
assembly {
mstore(0, arr.slot)
slot := add(keccak256(0, 0x20), pos)
}
return slot.getUint256Slot();
}
}
// 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.9.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) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 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 256, 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 << 3) < value ? 1 : 0);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.0;
/**
* @dev Library for reading and writing primitive types to specific storage slots.
*
* Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
* This library helps with reading and writing to such slots without the need for inline assembly.
*
* The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
*
* Example usage to set ERC1967 implementation slot:
* ```solidity
* contract ERC1967 {
* bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
*
* function _getImplementation() internal view returns (address) {
* return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
* }
*
* function _setImplementation(address newImplementation) internal {
* require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*
* _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._
* _Available since v4.9 for `string`, `bytes`._
*/
library StorageSlot {
struct AddressSlot {
address value;
}
struct BooleanSlot {
bool value;
}
struct Bytes32Slot {
bytes32 value;
}
struct Uint256Slot {
uint256 value;
}
struct StringSlot {
string value;
}
struct BytesSlot {
bytes value;
}
/**
* @dev Returns an `AddressSlot` with member `value` located at `slot`.
*/
function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BooleanSlot` with member `value` located at `slot`.
*/
function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
*/
function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `Uint256Slot` with member `value` located at `slot`.
*/
function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` with member `value` located at `slot`.
*/
function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `StringSlot` representation of the string storage pointer `store`.
*/
function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
/**
* @dev Returns an `BytesSlot` with member `value` located at `slot`.
*/
function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := slot
}
}
/**
* @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
*/
function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
/// @solidity memory-safe-assembly
assembly {
r.slot := store.slot
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.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 `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
}
/**
* @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);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return keccak256(bytes(a)) == keccak256(bytes(b));
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
return address(0);
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
View raw

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

View raw

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

This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_203": {
"entryPoint": null,
"id": 203,
"parameterSlots": 2,
"returnSlots": 0
},
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_3461": {
"entryPoint": null,
"id": 3461,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_2111": {
"entryPoint": 202,
"id": 2111,
"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:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "66:40:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "77:22:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "93:5:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "87:5:20"
},
"nodeType": "YulFunctionCall",
"src": "87:12:20"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "77:6:20"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "49:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "59:6:20",
"type": ""
}
],
"src": "7:99:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "140:152:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "157:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "160:77:20",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "150:6:20"
},
"nodeType": "YulFunctionCall",
"src": "150:88:20"
},
"nodeType": "YulExpressionStatement",
"src": "150:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "254:1:20",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "257:4:20",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "247:6:20"
},
"nodeType": "YulFunctionCall",
"src": "247:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "247:15:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "278:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "281:4:20",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "271:6:20"
},
"nodeType": "YulFunctionCall",
"src": "271:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "271:15:20"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "112:180:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "326:152:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "343:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "346:77:20",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "336:6:20"
},
"nodeType": "YulFunctionCall",
"src": "336:88:20"
},
"nodeType": "YulExpressionStatement",
"src": "336:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "440:1:20",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "443:4:20",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "433:6:20"
},
"nodeType": "YulFunctionCall",
"src": "433:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "433:15:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "464:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "467:4:20",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "457:6:20"
},
"nodeType": "YulFunctionCall",
"src": "457:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "457:15:20"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "298:180:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "535:269:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "545:22:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "559:4:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "565:1:20",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "555:3:20"
},
"nodeType": "YulFunctionCall",
"src": "555:12:20"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "545:6:20"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "576:38:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "606:4:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "612:1:20",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "602:3:20"
},
"nodeType": "YulFunctionCall",
"src": "602:12:20"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "580:18:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "653:51:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "667:27:20",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "681:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "689:4:20",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "677:3:20"
},
"nodeType": "YulFunctionCall",
"src": "677:17:20"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "667:6:20"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "633:18:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "626:6:20"
},
"nodeType": "YulFunctionCall",
"src": "626:26:20"
},
"nodeType": "YulIf",
"src": "623:81:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:42:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "770:16:20"
},
"nodeType": "YulFunctionCall",
"src": "770:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "770:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "720:18:20"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "743:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "751:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "740:2:20"
},
"nodeType": "YulFunctionCall",
"src": "740:14:20"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "717:2:20"
},
"nodeType": "YulFunctionCall",
"src": "717:38:20"
},
"nodeType": "YulIf",
"src": "714:84:20"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "519:4:20",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "528:6:20",
"type": ""
}
],
"src": "484:320:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "864:87:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "874:11:20",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "882:3:20"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "874:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "902:1:20",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "905:3:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "895:6:20"
},
"nodeType": "YulFunctionCall",
"src": "895:14:20"
},
"nodeType": "YulExpressionStatement",
"src": "895:14:20"
},
{
"nodeType": "YulAssignment",
"src": "918:26:20",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "936:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "939:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "926:9:20"
},
"nodeType": "YulFunctionCall",
"src": "926:18:20"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "918:4:20"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "851:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "859:4:20",
"type": ""
}
],
"src": "810:141:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1001:49:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1011:33:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1029:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1036:2:20",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1025:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1025:14:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1041:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1021:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1021:23:20"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1011:6:20"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "984:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "994:6:20",
"type": ""
}
],
"src": "957:93:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1109:54:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1119:37:20",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "1144:4:20"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1150:5:20"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1140:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1140:16:20"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "1119:8:20"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "1084:4:20",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1090:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "1100:8:20",
"type": ""
}
],
"src": "1056:107:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1245:317:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1255:35:20",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "1276:10:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1288:1:20",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1272:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1272:18:20"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "1259:9:20",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1299:109:20",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1330:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1341:66:20",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1311:18:20"
},
"nodeType": "YulFunctionCall",
"src": "1311:97:20"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "1303:4:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1417:51:20",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "1448:9:20"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1459:8:20"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "1429:18:20"
},
"nodeType": "YulFunctionCall",
"src": "1429:39:20"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1417:8:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1477:30:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1490:5:20"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1501:4:20"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1497:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1497:9:20"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1486:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1486:21:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1477:5:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1516:40:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1529:5:20"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "1540:8:20"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "1550:4:20"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1536:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1536:19:20"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1526:2:20"
},
"nodeType": "YulFunctionCall",
"src": "1526:30:20"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "1516:6:20"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1206:5:20",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "1213:10:20",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "1225:8:20",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "1238:6:20",
"type": ""
}
],
"src": "1169:393:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1613:32:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1623:16:20",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1634:5:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1623:7:20"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1595:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1605:7:20",
"type": ""
}
],
"src": "1568:77:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1683:28:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1693:12:20",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1700:5:20"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1693:3:20"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1669:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1679:3:20",
"type": ""
}
],
"src": "1651:60:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1777:82:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1787:66:20",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1845:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1827:17:20"
},
"nodeType": "YulFunctionCall",
"src": "1827:24:20"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "1818:8:20"
},
"nodeType": "YulFunctionCall",
"src": "1818:34:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1800:17:20"
},
"nodeType": "YulFunctionCall",
"src": "1800:53:20"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "1787:9:20"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1757:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "1767:9:20",
"type": ""
}
],
"src": "1717:142:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1912:28:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1922:12:20",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1929:5:20"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "1922:3:20"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1898:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "1908:3:20",
"type": ""
}
],
"src": "1865:75:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2022:193:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2032:63:20",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "2087:7:20"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2056:30:20"
},
"nodeType": "YulFunctionCall",
"src": "2056:39:20"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "2036:16:20",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2111:4:20"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2151:4:20"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "2145:5:20"
},
"nodeType": "YulFunctionCall",
"src": "2145:11:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2158:6:20"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "2190:16:20"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "2166:23:20"
},
"nodeType": "YulFunctionCall",
"src": "2166:41:20"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "2117:27:20"
},
"nodeType": "YulFunctionCall",
"src": "2117:91:20"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "2104:6:20"
},
"nodeType": "YulFunctionCall",
"src": "2104:105:20"
},
"nodeType": "YulExpressionStatement",
"src": "2104:105:20"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "1999:4:20",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2005:6:20",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "2013:7:20",
"type": ""
}
],
"src": "1946:269:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2270:24:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2280:8:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2287:1:20",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "2280:3:20"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "2266:3:20",
"type": ""
}
],
"src": "2221:73:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2353:136:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2363:46:20",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "2377:30:20"
},
"nodeType": "YulFunctionCall",
"src": "2377:32:20"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "2367:6:20",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "2462:4:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2468:6:20"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "2476:6:20"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "2418:43:20"
},
"nodeType": "YulFunctionCall",
"src": "2418:65:20"
},
"nodeType": "YulExpressionStatement",
"src": "2418:65:20"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "2339:4:20",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2345:6:20",
"type": ""
}
],
"src": "2300:189:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2545:136:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2612:63:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2656:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2663:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "2626:29:20"
},
"nodeType": "YulFunctionCall",
"src": "2626:39:20"
},
"nodeType": "YulExpressionStatement",
"src": "2626:39:20"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2565:5:20"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2572:3:20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2562:2:20"
},
"nodeType": "YulFunctionCall",
"src": "2562:14:20"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2577:26:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2579:22:20",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2592:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2599:1:20",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2588:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2588:13:20"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "2579:5:20"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2559:2:20",
"statements": []
},
"src": "2555:120:20"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "2533:5:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2540:3:20",
"type": ""
}
],
"src": "2495:186:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2766:464:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2792:431:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2806:54:20",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2854:5:20"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "2822:31:20"
},
"nodeType": "YulFunctionCall",
"src": "2822:38:20"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "2810:8:20",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2873:63:20",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "2896:8:20"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "2924:10:20"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "2906:17:20"
},
"nodeType": "YulFunctionCall",
"src": "2906:29:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2892:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2892:44:20"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "2877:11:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3093:27:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3095:23:20",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3110:8:20"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3095:11:20"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "3077:10:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3089:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3074:2:20"
},
"nodeType": "YulFunctionCall",
"src": "3074:18:20"
},
"nodeType": "YulIf",
"src": "3071:49:20"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "3162:11:20"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "3179:8:20"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3207:3:20"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "3189:17:20"
},
"nodeType": "YulFunctionCall",
"src": "3189:22:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3175:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3175:37:20"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "3133:28:20"
},
"nodeType": "YulFunctionCall",
"src": "3133:80:20"
},
"nodeType": "YulExpressionStatement",
"src": "3133:80:20"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "2783:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2788:2:20",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2780:2:20"
},
"nodeType": "YulFunctionCall",
"src": "2780:11:20"
},
"nodeType": "YulIf",
"src": "2777:446:20"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2742:5:20",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "2749:3:20",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "2754:10:20",
"type": ""
}
],
"src": "2687:543:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3299:54:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3309:37:20",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "3334:4:20"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3340:5:20"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "3330:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3330:16:20"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "3309:8:20"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "3274:4:20",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3280:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "3290:8:20",
"type": ""
}
],
"src": "3236:117:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3410:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3420:68:20",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3469:1:20",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "3472:5:20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3465:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3465:13:20"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3484:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3480:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3480:6:20"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "3436:28:20"
},
"nodeType": "YulFunctionCall",
"src": "3436:51:20"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3432:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3432:56:20"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "3424:4:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3497:25:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3511:4:20"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "3517:4:20"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3507:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3507:15:20"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "3497:6:20"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3387:4:20",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "3393:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "3403:6:20",
"type": ""
}
],
"src": "3359:169:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3614:214:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3747:37:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3774:4:20"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3780:3:20"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "3755:18:20"
},
"nodeType": "YulFunctionCall",
"src": "3755:29:20"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3747:4:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "3793:29:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "3804:4:20"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3814:1:20",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "3817:3:20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "3810:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3810:11:20"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "3801:2:20"
},
"nodeType": "YulFunctionCall",
"src": "3801:21:20"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "3793:4:20"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "3595:4:20",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "3601:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "3609:4:20",
"type": ""
}
],
"src": "3533:295:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3925:1303:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3936:51:20",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3983:3:20"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "3950:32:20"
},
"nodeType": "YulFunctionCall",
"src": "3950:37:20"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "3940:6:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4072:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "4074:16:20"
},
"nodeType": "YulFunctionCall",
"src": "4074:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "4074:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4044:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4052:18:20",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4041:2:20"
},
"nodeType": "YulFunctionCall",
"src": "4041:30:20"
},
"nodeType": "YulIf",
"src": "4038:56:20"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4104:52:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4150:4:20"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "4144:5:20"
},
"nodeType": "YulFunctionCall",
"src": "4144:11:20"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "4118:25:20"
},
"nodeType": "YulFunctionCall",
"src": "4118:38:20"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "4108:6:20",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4249:4:20"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "4255:6:20"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4263:6:20"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4203:45:20"
},
"nodeType": "YulFunctionCall",
"src": "4203:67:20"
},
"nodeType": "YulExpressionStatement",
"src": "4203:67:20"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4280:18:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4297:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "4284:9:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4308:17:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4321:4:20",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4308:9:20"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "4372:611:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4386:37:20",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4405:6:20"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4417:4:20",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "4413:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4413:9:20"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4401:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4401:22:20"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "4390:7:20",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4437:51:20",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4483:4:20"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "4451:31:20"
},
"nodeType": "YulFunctionCall",
"src": "4451:37:20"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "4441:6:20",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4501:10:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4510:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4505:1:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4569:163:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4594:6:20"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4612:3:20"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4617:9:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4608:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4608:19:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4602:5:20"
},
"nodeType": "YulFunctionCall",
"src": "4602:26:20"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4587:6:20"
},
"nodeType": "YulFunctionCall",
"src": "4587:42:20"
},
"nodeType": "YulExpressionStatement",
"src": "4587:42:20"
},
{
"nodeType": "YulAssignment",
"src": "4646:24:20",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4660:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4668:1:20",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4656:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4656:14:20"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4646:6:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4687:31:20",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4704:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4715:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4700:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4700:18:20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4687:9:20"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4535:1:20"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4538:7:20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4532:2:20"
},
"nodeType": "YulFunctionCall",
"src": "4532:14:20"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4547:21:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4549:17:20",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4558:1:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4561:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4554:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4554:12:20"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4549:1:20"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4528:3:20",
"statements": []
},
"src": "4524:208:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4768:156:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4786:43:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4813:3:20"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "4818:9:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4809:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4809:19:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4803:5:20"
},
"nodeType": "YulFunctionCall",
"src": "4803:26:20"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "4790:9:20",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "4853:6:20"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "4880:9:20"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4895:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4903:4:20",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4891:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4891:17:20"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "4861:18:20"
},
"nodeType": "YulFunctionCall",
"src": "4861:48:20"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4846:6:20"
},
"nodeType": "YulFunctionCall",
"src": "4846:64:20"
},
"nodeType": "YulExpressionStatement",
"src": "4846:64:20"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "4751:7:20"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4760:6:20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4748:2:20"
},
"nodeType": "YulFunctionCall",
"src": "4748:19:20"
},
"nodeType": "YulIf",
"src": "4745:179:20"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "4944:4:20"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4958:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4966:1:20",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "4954:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4954:14:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4970:1:20",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4950:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4950:22:20"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "4937:6:20"
},
"nodeType": "YulFunctionCall",
"src": "4937:36:20"
},
"nodeType": "YulExpressionStatement",
"src": "4937:36:20"
}
]
},
"nodeType": "YulCase",
"src": "4365:618:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4370:1:20",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "5000:222:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5014:14:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5027:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5018:5:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5051:67:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5069:35:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "5088:3:20"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "5093:9:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5084:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5084:19:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "5078:5:20"
},
"nodeType": "YulFunctionCall",
"src": "5078:26:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5069:5:20"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5044:6:20"
},
"nodeType": "YulIf",
"src": "5041:77:20"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "5138:4:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5197:5:20"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "5204:6:20"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "5144:52:20"
},
"nodeType": "YulFunctionCall",
"src": "5144:67:20"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "5131:6:20"
},
"nodeType": "YulFunctionCall",
"src": "5131:81:20"
},
"nodeType": "YulExpressionStatement",
"src": "5131:81:20"
}
]
},
"nodeType": "YulCase",
"src": "4992:230:20",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "4345:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4353:2:20",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4342:2:20"
},
"nodeType": "YulFunctionCall",
"src": "4342:14:20"
},
"nodeType": "YulSwitch",
"src": "4335:887:20"
}
]
},
"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:20",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3920:3:20",
"type": ""
}
],
"src": "3833:1395:20"
}
]
},
"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": 20,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040518060400160405280600781526020017f4d79546f6b656e000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4d544b000000000000000000000000000000000000000000000000000000000081525081600090816200008f919062000412565b508060019081620000a1919062000412565b505050620000c4620000b8620000ca60201b60201c565b620000d260201b60201c565b620004f9565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200021a57607f821691505b60208210810362000230576200022f620001d2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200029a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200025b565b620002a686836200025b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620002f3620002ed620002e784620002be565b620002c8565b620002be565b9050919050565b6000819050919050565b6200030f83620002d2565b620003276200031e82620002fa565b84845462000268565b825550505050565b600090565b6200033e6200032f565b6200034b81848462000304565b505050565b5b8181101562000373576200036760008262000334565b60018101905062000351565b5050565b601f821115620003c2576200038c8162000236565b62000397846200024b565b81016020851015620003a7578190505b620003bf620003b6856200024b565b83018262000350565b50505b505050565b600082821c905092915050565b6000620003e760001984600802620003c7565b1980831691505092915050565b6000620004028383620003d4565b9150826002028217905092915050565b6200041d8262000198565b67ffffffffffffffff811115620004395762000438620001a3565b5b62000445825462000201565b6200045282828562000377565b600060209050601f8311600181146200048a576000841562000475578287015190505b620004818582620003f4565b865550620004f1565b601f1984166200049a8662000236565b60005b82811015620004c4578489015182556001820191506020850194506020810190506200049d565b86831015620004e45784890151620004e0601f891682620003d4565b8355505b6001600288020188555050505b505050505050565b6137fb80620005096000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610343578063c87b56dd1461035f578063d204c45e1461038f578063e985e9c5146103ab578063f2fde38b146103db5761012c565b806370a08231146102b1578063715018a6146102e15780638da5cb5b146102eb57806395d89b4114610309578063a22cb465146103275761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c591461020557806342842e0e146102355780634f6ccce7146102515780636352211e146102815761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b60048036038101906101469190612375565b6103f7565b60405161015891906123bd565b60405180910390f35b610169610409565b6040516101769190612468565b60405180910390f35b610199600480360381019061019491906124c0565b61049b565b6040516101a6919061252e565b60405180910390f35b6101c960048036038101906101c49190612575565b6104e1565b005b6101d36105f8565b6040516101e091906125c4565b60405180910390f35b61020360048036038101906101fe91906125df565b610605565b005b61021f600480360381019061021a9190612575565b610665565b60405161022c91906125c4565b60405180910390f35b61024f600480360381019061024a91906125df565b61070a565b005b61026b600480360381019061026691906124c0565b61072a565b60405161027891906125c4565b60405180910390f35b61029b600480360381019061029691906124c0565b61079b565b6040516102a8919061252e565b60405180910390f35b6102cb60048036038101906102c69190612632565b610821565b6040516102d891906125c4565b60405180910390f35b6102e96108d8565b005b6102f36108ec565b604051610300919061252e565b60405180910390f35b610311610916565b60405161031e9190612468565b60405180910390f35b610341600480360381019061033c919061268b565b6109a8565b005b61035d60048036038101906103589190612800565b6109be565b005b610379600480360381019061037491906124c0565b610a20565b6040516103869190612468565b60405180910390f35b6103a960048036038101906103a49190612924565b610a32565b005b6103c560048036038101906103c09190612980565b610a6b565b6040516103d291906123bd565b60405180910390f35b6103f560048036038101906103f09190612632565b610aff565b005b600061040282610b82565b9050919050565b606060008054610418906129ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610444906129ef565b80156104915780601f1061046657610100808354040283529160200191610491565b820191906000526020600020905b81548152906001019060200180831161047457829003601f168201915b5050505050905090565b60006104a682610be3565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104ec8261079b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361055c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055390612a92565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661057b610c2e565b73ffffffffffffffffffffffffffffffffffffffff1614806105aa57506105a9816105a4610c2e565b610a6b565b5b6105e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e090612b24565b60405180910390fd5b6105f38383610c36565b505050565b6000600880549050905090565b610616610610610c2e565b82610cef565b610655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064c90612bb6565b60405180910390fd5b610660838383610d84565b505050565b600061067083610821565b82106106b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a890612c48565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610725838383604051806020016040528060008152506109be565b505050565b60006107346105f8565b8210610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c90612cda565b60405180910390fd5b6008828154811061078957610788612cfa565b5b90600052602060002001549050919050565b6000806107a78361107d565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f90612d75565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088890612e07565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e06110ba565b6108ea6000611138565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610925906129ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610951906129ef565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b6109ba6109b3610c2e565b83836111fe565b5050565b6109cf6109c9610c2e565b83610cef565b610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590612bb6565b60405180910390fd5b610a1a8484848461136a565b50505050565b6060610a2b826113c6565b9050919050565b610a3a6110ba565b6000610a46600c6114d8565b9050610a52600c6114e6565b610a5c83826114fc565b610a66818361151a565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b076110ba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90612e99565b60405180910390fd5b610b7f81611138565b50565b6000634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bdc5750610bdb826115be565b5b9050919050565b610bec81611638565b610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290612d75565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610ca98361079b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610cfb8361079b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d3d5750610d3c8185610a6b565b5b80610d7b57508373ffffffffffffffffffffffffffffffffffffffff16610d638461049b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610da48261079b565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190612f2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090612fbd565b60405180910390fd5b610e768383836001611679565b8273ffffffffffffffffffffffffffffffffffffffff16610e968261079b565b73ffffffffffffffffffffffffffffffffffffffff1614610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390612f2b565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611078838383600161168b565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6110c2610c2e565b73ffffffffffffffffffffffffffffffffffffffff166110e06108ec565b73ffffffffffffffffffffffffffffffffffffffff1614611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90613029565b60405180910390fd5b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613095565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135d91906123bd565b60405180910390a3505050565b611375848484610d84565b61138184848484611691565b6113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b790613127565b60405180910390fd5b50505050565b60606113d182610be3565b6000600a600084815260200190815260200160002080546113f1906129ef565b80601f016020809104026020016040519081016040528092919081815260200182805461141d906129ef565b801561146a5780601f1061143f5761010080835404028352916020019161146a565b820191906000526020600020905b81548152906001019060200180831161144d57829003601f168201915b50505050509050600061147b611818565b905060008151036114905781925050506114d3565b6000825111156114c55780826040516020016114ad929190613183565b604051602081830303815290604052925050506114d3565b6114ce8461182f565b925050505b919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611516828260405180602001604052806000815250611897565b5050565b61152382611638565b611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990613219565b60405180910390fd5b80600a6000848152602001908152602001600020908161158291906133e5565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7826040516115b291906125c4565b60405180910390a15050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116315750611630826118f2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661165a8361107d565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611685848484846119d4565b50505050565b50505050565b60006116b28473ffffffffffffffffffffffffffffffffffffffff16611b32565b1561180b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026116db610c2e565b8786866040518563ffffffff1660e01b81526004016116fd949392919061350c565b6020604051808303816000875af192505050801561173957506040513d601f19601f82011682018060405250810190611736919061356d565b60015b6117bb573d8060008114611769576040519150601f19603f3d011682016040523d82523d6000602084013e61176e565b606091505b5060008151036117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90613127565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611810565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061183a82610be3565b6000611844611818565b90506000815111611864576040518060200160405280600081525061188f565b8061186e84611b55565b60405160200161187f929190613183565b6040516020818303038152906040525b915050919050565b6118a18383611c23565b6118ae6000848484611691565b6118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e490613127565b60405180910390fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119bd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119cd57506119cc82611e40565b5b9050919050565b6119e084848484611eaa565b6001811115611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b9061360c565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611a6b57611a6681611eb0565b611aaa565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611aa957611aa88582611ef9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611aec57611ae781612066565b611b2b565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611b2a57611b298482612137565b5b5b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606060006001611b64846121b6565b01905060008167ffffffffffffffff811115611b8357611b826126d5565b5b6040519080825280601f01601f191660200182016040528015611bb55781602001600182028036833780820191505090505b509050600082602001820190505b600115611c18578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611c0c57611c0b61362c565b5b04945060008503611bc3575b819350505050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c89906136a7565b60405180910390fd5b611c9b81611638565b15611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290613713565b60405180910390fd5b611ce9600083836001611679565b611cf281611638565b15611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2990613713565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e3c60008383600161168b565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611f0684610821565b611f109190613762565b9050600060076000848152602001908152602001600020549050818114611ff5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061207a9190613762565b90506000600960008481526020019081526020016000205490506000600883815481106120aa576120a9612cfa565b5b9060005260206000200154905080600883815481106120cc576120cb612cfa565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061211b5761211a613796565b5b6001900381819060005260206000200160009055905550505050565b600061214283610821565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612214577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161220a5761220961362c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612251576d04ee2d6d415b85acef810000000083816122475761224661362c565b5b0492506020810190505b662386f26fc10000831061228057662386f26fc1000083816122765761227561362c565b5b0492506010810190505b6305f5e10083106122a9576305f5e100838161229f5761229e61362c565b5b0492506008810190505b61271083106122ce5761271083816122c4576122c361362c565b5b0492506004810190505b606483106122f157606483816122e7576122e661362c565b5b0492506002810190505b600a8310612300576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123528161231d565b811461235d57600080fd5b50565b60008135905061236f81612349565b92915050565b60006020828403121561238b5761238a612313565b5b600061239984828501612360565b91505092915050565b60008115159050919050565b6123b7816123a2565b82525050565b60006020820190506123d260008301846123ae565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124125780820151818401526020810190506123f7565b60008484015250505050565b6000601f19601f8301169050919050565b600061243a826123d8565b61244481856123e3565b93506124548185602086016123f4565b61245d8161241e565b840191505092915050565b60006020820190508181036000830152612482818461242f565b905092915050565b6000819050919050565b61249d8161248a565b81146124a857600080fd5b50565b6000813590506124ba81612494565b92915050565b6000602082840312156124d6576124d5612313565b5b60006124e4848285016124ab565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612518826124ed565b9050919050565b6125288161250d565b82525050565b6000602082019050612543600083018461251f565b92915050565b6125528161250d565b811461255d57600080fd5b50565b60008135905061256f81612549565b92915050565b6000806040838503121561258c5761258b612313565b5b600061259a85828601612560565b92505060206125ab858286016124ab565b9150509250929050565b6125be8161248a565b82525050565b60006020820190506125d960008301846125b5565b92915050565b6000806000606084860312156125f8576125f7612313565b5b600061260686828701612560565b935050602061261786828701612560565b9250506040612628868287016124ab565b9150509250925092565b60006020828403121561264857612647612313565b5b600061265684828501612560565b91505092915050565b612668816123a2565b811461267357600080fd5b50565b6000813590506126858161265f565b92915050565b600080604083850312156126a2576126a1612313565b5b60006126b085828601612560565b92505060206126c185828601612676565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61270d8261241e565b810181811067ffffffffffffffff8211171561272c5761272b6126d5565b5b80604052505050565b600061273f612309565b905061274b8282612704565b919050565b600067ffffffffffffffff82111561276b5761276a6126d5565b5b6127748261241e565b9050602081019050919050565b82818337600083830152505050565b60006127a361279e84612750565b612735565b9050828152602081018484840111156127bf576127be6126d0565b5b6127ca848285612781565b509392505050565b600082601f8301126127e7576127e66126cb565b5b81356127f7848260208601612790565b91505092915050565b6000806000806080858703121561281a57612819612313565b5b600061282887828801612560565b945050602061283987828801612560565b935050604061284a878288016124ab565b925050606085013567ffffffffffffffff81111561286b5761286a612318565b5b612877878288016127d2565b91505092959194509250565b600067ffffffffffffffff82111561289e5761289d6126d5565b5b6128a78261241e565b9050602081019050919050565b60006128c76128c284612883565b612735565b9050828152602081018484840111156128e3576128e26126d0565b5b6128ee848285612781565b509392505050565b600082601f83011261290b5761290a6126cb565b5b813561291b8482602086016128b4565b91505092915050565b6000806040838503121561293b5761293a612313565b5b600061294985828601612560565b925050602083013567ffffffffffffffff81111561296a57612969612318565b5b612976858286016128f6565b9150509250929050565b6000806040838503121561299757612996612313565b5b60006129a585828601612560565b92505060206129b685828601612560565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a0757607f821691505b602082108103612a1a57612a196129c0565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a7c6021836123e3565b9150612a8782612a20565b604082019050919050565b60006020820190508181036000830152612aab81612a6f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612b0e603d836123e3565b9150612b1982612ab2565b604082019050919050565b60006020820190508181036000830152612b3d81612b01565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612ba0602d836123e3565b9150612bab82612b44565b604082019050919050565b60006020820190508181036000830152612bcf81612b93565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612c32602b836123e3565b9150612c3d82612bd6565b604082019050919050565b60006020820190508181036000830152612c6181612c25565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612cc4602c836123e3565b9150612ccf82612c68565b604082019050919050565b60006020820190508181036000830152612cf381612cb7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612d5f6018836123e3565b9150612d6a82612d29565b602082019050919050565b60006020820190508181036000830152612d8e81612d52565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612df16029836123e3565b9150612dfc82612d95565b604082019050919050565b60006020820190508181036000830152612e2081612de4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e836026836123e3565b9150612e8e82612e27565b604082019050919050565b60006020820190508181036000830152612eb281612e76565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612f156025836123e3565b9150612f2082612eb9565b604082019050919050565b60006020820190508181036000830152612f4481612f08565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612fa76024836123e3565b9150612fb282612f4b565b604082019050919050565b60006020820190508181036000830152612fd681612f9a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130136020836123e3565b915061301e82612fdd565b602082019050919050565b6000602082019050818103600083015261304281613006565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061307f6019836123e3565b915061308a82613049565b602082019050919050565b600060208201905081810360008301526130ae81613072565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006131116032836123e3565b915061311c826130b5565b604082019050919050565b6000602082019050818103600083015261314081613104565b9050919050565b600081905092915050565b600061315d826123d8565b6131678185613147565b93506131778185602086016123f4565b80840191505092915050565b600061318f8285613152565b915061319b8284613152565b91508190509392505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613203602e836123e3565b915061320e826131a7565b604082019050919050565b60006020820190508181036000830152613232816131f6565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261329b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261325e565b6132a5868361325e565b95508019841693508086168417925050509392505050565b6000819050919050565b60006132e26132dd6132d88461248a565b6132bd565b61248a565b9050919050565b6000819050919050565b6132fc836132c7565b613310613308826132e9565b84845461326b565b825550505050565b600090565b613325613318565b6133308184846132f3565b505050565b5b818110156133545761334960008261331d565b600181019050613336565b5050565b601f8211156133995761336a81613239565b6133738461324e565b81016020851015613382578190505b61339661338e8561324e565b830182613335565b50505b505050565b600082821c905092915050565b60006133bc6000198460080261339e565b1980831691505092915050565b60006133d583836133ab565b9150826002028217905092915050565b6133ee826123d8565b67ffffffffffffffff811115613407576134066126d5565b5b61341182546129ef565b61341c828285613358565b600060209050601f83116001811461344f576000841561343d578287015190505b61344785826133c9565b8655506134af565b601f19841661345d86613239565b60005b8281101561348557848901518255600182019150602085019450602081019050613460565b868310156134a2578489015161349e601f8916826133ab565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600082825260208201905092915050565b60006134de826134b7565b6134e881856134c2565b93506134f88185602086016123f4565b6135018161241e565b840191505092915050565b6000608082019050613521600083018761251f565b61352e602083018661251f565b61353b60408301856125b5565b818103606083015261354d81846134d3565b905095945050505050565b60008151905061356781612349565b92915050565b60006020828403121561358357613582612313565b5b600061359184828501613558565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b60006135f66035836123e3565b91506136018261359a565b604082019050919050565b60006020820190508181036000830152613625816135e9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006136916020836123e3565b915061369c8261365b565b602082019050919050565b600060208201905081810360008301526136c081613684565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006136fd601c836123e3565b9150613708826136c7565b602082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061376d8261248a565b91506137788361248a565b92508282039050818111156137905761378f613733565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212202f2eb4278c0a1ebdf611397b1d309baa58b6be602944da1af38fb7ab9676f50e64736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x7 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D79546F6B656E00000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4D544B0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 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 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0xB 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 0x37FB 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 0x12C JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0xAD JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH2 0x71 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x343 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x35F JUMPI DUP1 PUSH4 0xD204C45E EQ PUSH2 0x38F JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x3AB JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x3DB JUMPI PUSH2 0x12C JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2B1 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x2E1 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x2EB JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x309 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x327 JUMPI PUSH2 0x12C JUMP JUMPDEST DUP1 PUSH4 0x23B872DD GT PUSH2 0xF4 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1E9 JUMPI DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x205 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x235 JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x251 JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x281 JUMPI PUSH2 0x12C JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x131 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x161 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x17F JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x1AF JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1CB JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x14B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x146 SWAP2 SWAP1 PUSH2 0x2375 JUMP JUMPDEST PUSH2 0x3F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x158 SWAP2 SWAP1 PUSH2 0x23BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x169 PUSH2 0x409 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x176 SWAP2 SWAP1 PUSH2 0x2468 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x199 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x194 SWAP2 SWAP1 PUSH2 0x24C0 JUMP JUMPDEST PUSH2 0x49B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A6 SWAP2 SWAP1 PUSH2 0x252E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1C4 SWAP2 SWAP1 PUSH2 0x2575 JUMP JUMPDEST PUSH2 0x4E1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x1D3 PUSH2 0x5F8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1E0 SWAP2 SWAP1 PUSH2 0x25C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x203 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1FE SWAP2 SWAP1 PUSH2 0x25DF JUMP JUMPDEST PUSH2 0x605 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x21F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x21A SWAP2 SWAP1 PUSH2 0x2575 JUMP JUMPDEST PUSH2 0x665 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x22C SWAP2 SWAP1 PUSH2 0x25C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x24F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x24A SWAP2 SWAP1 PUSH2 0x25DF JUMP JUMPDEST PUSH2 0x70A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x26B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x266 SWAP2 SWAP1 PUSH2 0x24C0 JUMP JUMPDEST PUSH2 0x72A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x278 SWAP2 SWAP1 PUSH2 0x25C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x29B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x296 SWAP2 SWAP1 PUSH2 0x24C0 JUMP JUMPDEST PUSH2 0x79B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A8 SWAP2 SWAP1 PUSH2 0x252E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2CB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2C6 SWAP2 SWAP1 PUSH2 0x2632 JUMP JUMPDEST PUSH2 0x821 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2D8 SWAP2 SWAP1 PUSH2 0x25C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E9 PUSH2 0x8D8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2F3 PUSH2 0x8EC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x300 SWAP2 SWAP1 PUSH2 0x252E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x311 PUSH2 0x916 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x31E SWAP2 SWAP1 PUSH2 0x2468 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x341 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x33C SWAP2 SWAP1 PUSH2 0x268B JUMP JUMPDEST PUSH2 0x9A8 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x35D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x358 SWAP2 SWAP1 PUSH2 0x2800 JUMP JUMPDEST PUSH2 0x9BE JUMP JUMPDEST STOP JUMPDEST PUSH2 0x379 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x374 SWAP2 SWAP1 PUSH2 0x24C0 JUMP JUMPDEST PUSH2 0xA20 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x386 SWAP2 SWAP1 PUSH2 0x2468 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3A9 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3A4 SWAP2 SWAP1 PUSH2 0x2924 JUMP JUMPDEST PUSH2 0xA32 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x3C5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C0 SWAP2 SWAP1 PUSH2 0x2980 JUMP JUMPDEST PUSH2 0xA6B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3D2 SWAP2 SWAP1 PUSH2 0x23BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3F5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3F0 SWAP2 SWAP1 PUSH2 0x2632 JUMP JUMPDEST PUSH2 0xAFF JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH2 0x402 DUP3 PUSH2 0xB82 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x418 SWAP1 PUSH2 0x29EF 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 0x444 SWAP1 PUSH2 0x29EF JUMP JUMPDEST DUP1 ISZERO PUSH2 0x491 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x466 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x491 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 0x474 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4A6 DUP3 PUSH2 0xBE3 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 0x4EC DUP3 PUSH2 0x79B JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x55C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x553 SWAP1 PUSH2 0x2A92 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x57B PUSH2 0xC2E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x5AA JUMPI POP PUSH2 0x5A9 DUP2 PUSH2 0x5A4 PUSH2 0xC2E JUMP JUMPDEST PUSH2 0xA6B JUMP JUMPDEST JUMPDEST PUSH2 0x5E9 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5E0 SWAP1 PUSH2 0x2B24 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x5F3 DUP4 DUP4 PUSH2 0xC36 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x616 PUSH2 0x610 PUSH2 0xC2E JUMP JUMPDEST DUP3 PUSH2 0xCEF JUMP JUMPDEST PUSH2 0x655 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x64C SWAP1 PUSH2 0x2BB6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x660 DUP4 DUP4 DUP4 PUSH2 0xD84 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x670 DUP4 PUSH2 0x821 JUMP JUMPDEST DUP3 LT PUSH2 0x6B1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x6A8 SWAP1 PUSH2 0x2C48 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 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 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x725 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x9BE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x734 PUSH2 0x5F8 JUMP JUMPDEST DUP3 LT PUSH2 0x775 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x76C SWAP1 PUSH2 0x2CDA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0x789 JUMPI PUSH2 0x788 PUSH2 0x2CFA JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH2 0x7A7 DUP4 PUSH2 0x107D JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x818 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x80F SWAP1 PUSH2 0x2D75 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x891 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x888 SWAP1 PUSH2 0x2E07 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 0x8E0 PUSH2 0x10BA JUMP JUMPDEST PUSH2 0x8EA PUSH1 0x0 PUSH2 0x1138 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0xB 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 0x925 SWAP1 PUSH2 0x29EF 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 0x951 SWAP1 PUSH2 0x29EF JUMP JUMPDEST DUP1 ISZERO PUSH2 0x99E JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x973 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x99E 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 0x981 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x9BA PUSH2 0x9B3 PUSH2 0xC2E JUMP JUMPDEST DUP4 DUP4 PUSH2 0x11FE JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x9CF PUSH2 0x9C9 PUSH2 0xC2E JUMP JUMPDEST DUP4 PUSH2 0xCEF JUMP JUMPDEST PUSH2 0xA0E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA05 SWAP1 PUSH2 0x2BB6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA1A DUP5 DUP5 DUP5 DUP5 PUSH2 0x136A JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xA2B DUP3 PUSH2 0x13C6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA3A PUSH2 0x10BA JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA46 PUSH1 0xC PUSH2 0x14D8 JUMP JUMPDEST SWAP1 POP PUSH2 0xA52 PUSH1 0xC PUSH2 0x14E6 JUMP JUMPDEST PUSH2 0xA5C DUP4 DUP3 PUSH2 0x14FC JUMP JUMPDEST PUSH2 0xA66 DUP2 DUP4 PUSH2 0x151A JUMP JUMPDEST POP POP 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 0xB07 PUSH2 0x10BA JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB76 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB6D SWAP1 PUSH2 0x2E99 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xB7F DUP2 PUSH2 0x1138 JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH4 0x49064906 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0xBDC JUMPI POP PUSH2 0xBDB DUP3 PUSH2 0x15BE JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xBEC DUP2 PUSH2 0x1638 JUMP JUMPDEST PUSH2 0xC2B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC22 SWAP1 PUSH2 0x2D75 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 0xCA9 DUP4 PUSH2 0x79B 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 0xCFB DUP4 PUSH2 0x79B JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xD3D JUMPI POP PUSH2 0xD3C DUP2 DUP6 PUSH2 0xA6B JUMP JUMPDEST JUMPDEST DUP1 PUSH2 0xD7B JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD63 DUP5 PUSH2 0x49B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDA4 DUP3 PUSH2 0x79B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xDFA JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xDF1 SWAP1 PUSH2 0x2F2B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xE69 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE60 SWAP1 PUSH2 0x2FBD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE76 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x1679 JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xE96 DUP3 PUSH2 0x79B JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xEEC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xEE3 SWAP1 PUSH2 0x2F2B 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 0x1078 DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x168B 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 0x10C2 PUSH2 0xC2E JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x10E0 PUSH2 0x8EC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1136 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x112D SWAP1 PUSH2 0x3029 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH1 0xB PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0xB 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 0x126C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1263 SWAP1 PUSH2 0x3095 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 0x135D SWAP2 SWAP1 PUSH2 0x23BD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x1375 DUP5 DUP5 DUP5 PUSH2 0xD84 JUMP JUMPDEST PUSH2 0x1381 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1691 JUMP JUMPDEST PUSH2 0x13C0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13B7 SWAP1 PUSH2 0x3127 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x13D1 DUP3 PUSH2 0xBE3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP1 SLOAD PUSH2 0x13F1 SWAP1 PUSH2 0x29EF 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 0x141D SWAP1 PUSH2 0x29EF JUMP JUMPDEST DUP1 ISZERO PUSH2 0x146A JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x143F JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x146A 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 0x144D JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP PUSH1 0x0 PUSH2 0x147B PUSH2 0x1818 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x1490 JUMPI DUP2 SWAP3 POP POP POP PUSH2 0x14D3 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD GT ISZERO PUSH2 0x14C5 JUMPI DUP1 DUP3 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x14AD SWAP3 SWAP2 SWAP1 PUSH2 0x3183 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE SWAP3 POP POP POP PUSH2 0x14D3 JUMP JUMPDEST PUSH2 0x14CE DUP5 PUSH2 0x182F JUMP JUMPDEST SWAP3 POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH1 0x0 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 DUP2 PUSH1 0x0 ADD PUSH1 0x0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x1516 DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1897 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1523 DUP3 PUSH2 0x1638 JUMP JUMPDEST PUSH2 0x1562 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1559 SWAP1 PUSH2 0x3219 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xA PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SWAP1 DUP2 PUSH2 0x1582 SWAP2 SWAP1 PUSH2 0x33E5 JUMP JUMPDEST POP PUSH32 0xF8E1A15ABA9398E019F0B49DF1A4FDE98EE17AE345CB5F6B5E2C27F5033E8CE7 DUP3 PUSH1 0x40 MLOAD PUSH2 0x15B2 SWAP2 SWAP1 PUSH2 0x25C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x780E9D6300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x1631 JUMPI POP PUSH2 0x1630 DUP3 PUSH2 0x18F2 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x165A DUP4 PUSH2 0x107D JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1685 DUP5 DUP5 DUP5 DUP5 PUSH2 0x19D4 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x16B2 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1B32 JUMP JUMPDEST ISZERO PUSH2 0x180B JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x16DB PUSH2 0xC2E JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16FD SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x350C JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x1739 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 0x1736 SWAP2 SWAP1 PUSH2 0x356D JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x17BB JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1769 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 0x176E JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD SUB PUSH2 0x17B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x17AA SWAP1 PUSH2 0x3127 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 0x1810 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 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 PUSH2 0x183A DUP3 PUSH2 0xBE3 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1844 PUSH2 0x1818 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x1864 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x188F JUMP JUMPDEST DUP1 PUSH2 0x186E DUP5 PUSH2 0x1B55 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x187F SWAP3 SWAP2 SWAP1 PUSH2 0x3183 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 PUSH2 0x18A1 DUP4 DUP4 PUSH2 0x1C23 JUMP JUMPDEST PUSH2 0x18AE PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x1691 JUMP JUMPDEST PUSH2 0x18ED JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18E4 SWAP1 PUSH2 0x3127 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x19BD JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x19CD JUMPI POP PUSH2 0x19CC DUP3 PUSH2 0x1E40 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x19E0 DUP5 DUP5 DUP5 DUP5 PUSH2 0x1EAA JUMP JUMPDEST PUSH1 0x1 DUP2 GT ISZERO PUSH2 0x1A24 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A1B SWAP1 PUSH2 0x360C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1A6B JUMPI PUSH2 0x1A66 DUP2 PUSH2 0x1EB0 JUMP JUMPDEST PUSH2 0x1AAA JUMP JUMPDEST DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1AA9 JUMPI PUSH2 0x1AA8 DUP6 DUP3 PUSH2 0x1EF9 JUMP JUMPDEST JUMPDEST JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1AEC JUMPI PUSH2 0x1AE7 DUP2 PUSH2 0x2066 JUMP JUMPDEST PUSH2 0x1B2B JUMP JUMPDEST DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1B2A JUMPI PUSH2 0x1B29 DUP5 DUP3 PUSH2 0x2137 JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE GT SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x1 PUSH2 0x1B64 DUP5 PUSH2 0x21B6 JUMP JUMPDEST ADD SWAP1 POP PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1B83 JUMPI PUSH2 0x1B82 PUSH2 0x26D5 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 0x1BB5 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 0x1C18 JUMPI DUP1 DUP1 PUSH1 0x1 SWAP1 SUB SWAP2 POP POP PUSH32 0x3031323334353637383961626364656600000000000000000000000000000000 PUSH1 0xA DUP7 MOD BYTE DUP2 MSTORE8 PUSH1 0xA DUP6 DUP2 PUSH2 0x1C0C JUMPI PUSH2 0x1C0B PUSH2 0x362C JUMP JUMPDEST JUMPDEST DIV SWAP5 POP PUSH1 0x0 DUP6 SUB PUSH2 0x1BC3 JUMPI JUMPDEST DUP2 SWAP4 POP POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1C92 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1C89 SWAP1 PUSH2 0x36A7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1C9B DUP2 PUSH2 0x1638 JUMP JUMPDEST ISZERO PUSH2 0x1CDB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CD2 SWAP1 PUSH2 0x3713 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1CE9 PUSH1 0x0 DUP4 DUP4 PUSH1 0x1 PUSH2 0x1679 JUMP JUMPDEST PUSH2 0x1CF2 DUP2 PUSH2 0x1638 JUMP JUMPDEST ISZERO PUSH2 0x1D32 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D29 SWAP1 PUSH2 0x3713 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 0x1E3C PUSH1 0x0 DUP4 DUP4 PUSH1 0x1 PUSH2 0x168B JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x8 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x1F06 DUP5 PUSH2 0x821 JUMP JUMPDEST PUSH2 0x1F10 SWAP2 SWAP1 PUSH2 0x3762 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 EQ PUSH2 0x1FF5 JUMPI PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP1 PUSH1 0x6 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x7 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMPDEST PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x6 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 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH2 0x207A SWAP2 SWAP1 PUSH2 0x3762 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH1 0x0 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x20AA JUMPI PUSH2 0x20A9 PUSH2 0x2CFA JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x20CC JUMPI PUSH2 0x20CB PUSH2 0x2CFA JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x9 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH2 0x211B JUMPI PUSH2 0x211A PUSH2 0x3796 JUMP JUMPDEST JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2142 DUP4 PUSH2 0x821 JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x6 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 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 POP PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 LT PUSH2 0x2214 JUMPI PUSH27 0x184F03E93FF9F4DAA797ED6E38ED64BF6A1F010000000000000000 DUP4 DUP2 PUSH2 0x220A JUMPI PUSH2 0x2209 PUSH2 0x362C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x40 DUP2 ADD SWAP1 POP JUMPDEST PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 LT PUSH2 0x2251 JUMPI PUSH14 0x4EE2D6D415B85ACEF8100000000 DUP4 DUP2 PUSH2 0x2247 JUMPI PUSH2 0x2246 PUSH2 0x362C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x20 DUP2 ADD SWAP1 POP JUMPDEST PUSH7 0x2386F26FC10000 DUP4 LT PUSH2 0x2280 JUMPI PUSH7 0x2386F26FC10000 DUP4 DUP2 PUSH2 0x2276 JUMPI PUSH2 0x2275 PUSH2 0x362C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x10 DUP2 ADD SWAP1 POP JUMPDEST PUSH4 0x5F5E100 DUP4 LT PUSH2 0x22A9 JUMPI PUSH4 0x5F5E100 DUP4 DUP2 PUSH2 0x229F JUMPI PUSH2 0x229E PUSH2 0x362C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x8 DUP2 ADD SWAP1 POP JUMPDEST PUSH2 0x2710 DUP4 LT PUSH2 0x22CE JUMPI PUSH2 0x2710 DUP4 DUP2 PUSH2 0x22C4 JUMPI PUSH2 0x22C3 PUSH2 0x362C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x4 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0x64 DUP4 LT PUSH2 0x22F1 JUMPI PUSH1 0x64 DUP4 DUP2 PUSH2 0x22E7 JUMPI PUSH2 0x22E6 PUSH2 0x362C JUMP JUMPDEST JUMPDEST DIV SWAP3 POP PUSH1 0x2 DUP2 ADD SWAP1 POP JUMPDEST PUSH1 0xA DUP4 LT PUSH2 0x2300 JUMPI PUSH1 0x1 DUP2 ADD SWAP1 POP JUMPDEST DUP1 SWAP2 POP 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 0x2352 DUP2 PUSH2 0x231D JUMP JUMPDEST DUP2 EQ PUSH2 0x235D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x236F DUP2 PUSH2 0x2349 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x238B JUMPI PUSH2 0x238A PUSH2 0x2313 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2399 DUP5 DUP3 DUP6 ADD PUSH2 0x2360 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x23B7 DUP2 PUSH2 0x23A2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x23D2 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x23AE 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 0x2412 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x23F7 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 0x243A DUP3 PUSH2 0x23D8 JUMP JUMPDEST PUSH2 0x2444 DUP2 DUP6 PUSH2 0x23E3 JUMP JUMPDEST SWAP4 POP PUSH2 0x2454 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x23F4 JUMP JUMPDEST PUSH2 0x245D DUP2 PUSH2 0x241E 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 0x2482 DUP2 DUP5 PUSH2 0x242F JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x249D DUP2 PUSH2 0x248A JUMP JUMPDEST DUP2 EQ PUSH2 0x24A8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x24BA DUP2 PUSH2 0x2494 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x24D6 JUMPI PUSH2 0x24D5 PUSH2 0x2313 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x24E4 DUP5 DUP3 DUP6 ADD PUSH2 0x24AB 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 0x2518 DUP3 PUSH2 0x24ED JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2528 DUP2 PUSH2 0x250D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2543 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x251F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2552 DUP2 PUSH2 0x250D JUMP JUMPDEST DUP2 EQ PUSH2 0x255D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x256F DUP2 PUSH2 0x2549 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x258C JUMPI PUSH2 0x258B PUSH2 0x2313 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x259A DUP6 DUP3 DUP7 ADD PUSH2 0x2560 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x25AB DUP6 DUP3 DUP7 ADD PUSH2 0x24AB JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH2 0x25BE DUP2 PUSH2 0x248A JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x25D9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x25B5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x25F8 JUMPI PUSH2 0x25F7 PUSH2 0x2313 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2606 DUP7 DUP3 DUP8 ADD PUSH2 0x2560 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x2617 DUP7 DUP3 DUP8 ADD PUSH2 0x2560 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x2628 DUP7 DUP3 DUP8 ADD PUSH2 0x24AB JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x2648 JUMPI PUSH2 0x2647 PUSH2 0x2313 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2656 DUP5 DUP3 DUP6 ADD PUSH2 0x2560 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2668 DUP2 PUSH2 0x23A2 JUMP JUMPDEST DUP2 EQ PUSH2 0x2673 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x2685 DUP2 PUSH2 0x265F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x26A2 JUMPI PUSH2 0x26A1 PUSH2 0x2313 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x26B0 DUP6 DUP3 DUP7 ADD PUSH2 0x2560 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x26C1 DUP6 DUP3 DUP7 ADD PUSH2 0x2676 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 0x270D DUP3 PUSH2 0x241E JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x272C JUMPI PUSH2 0x272B PUSH2 0x26D5 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x273F PUSH2 0x2309 JUMP JUMPDEST SWAP1 POP PUSH2 0x274B DUP3 DUP3 PUSH2 0x2704 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x276B JUMPI PUSH2 0x276A PUSH2 0x26D5 JUMP JUMPDEST JUMPDEST PUSH2 0x2774 DUP3 PUSH2 0x241E 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 0x27A3 PUSH2 0x279E DUP5 PUSH2 0x2750 JUMP JUMPDEST PUSH2 0x2735 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x27BF JUMPI PUSH2 0x27BE PUSH2 0x26D0 JUMP JUMPDEST JUMPDEST PUSH2 0x27CA DUP5 DUP3 DUP6 PUSH2 0x2781 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x27E7 JUMPI PUSH2 0x27E6 PUSH2 0x26CB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x27F7 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2790 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 0x281A JUMPI PUSH2 0x2819 PUSH2 0x2313 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2828 DUP8 DUP3 DUP9 ADD PUSH2 0x2560 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x2839 DUP8 DUP3 DUP9 ADD PUSH2 0x2560 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x284A DUP8 DUP3 DUP9 ADD PUSH2 0x24AB JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x286B JUMPI PUSH2 0x286A PUSH2 0x2318 JUMP JUMPDEST JUMPDEST PUSH2 0x2877 DUP8 DUP3 DUP9 ADD PUSH2 0x27D2 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x289E JUMPI PUSH2 0x289D PUSH2 0x26D5 JUMP JUMPDEST JUMPDEST PUSH2 0x28A7 DUP3 PUSH2 0x241E JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x28C7 PUSH2 0x28C2 DUP5 PUSH2 0x2883 JUMP JUMPDEST PUSH2 0x2735 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x28E3 JUMPI PUSH2 0x28E2 PUSH2 0x26D0 JUMP JUMPDEST JUMPDEST PUSH2 0x28EE DUP5 DUP3 DUP6 PUSH2 0x2781 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x290B JUMPI PUSH2 0x290A PUSH2 0x26CB JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x291B DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x28B4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x293B JUMPI PUSH2 0x293A PUSH2 0x2313 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x2949 DUP6 DUP3 DUP7 ADD PUSH2 0x2560 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x296A JUMPI PUSH2 0x2969 PUSH2 0x2318 JUMP JUMPDEST JUMPDEST PUSH2 0x2976 DUP6 DUP3 DUP7 ADD PUSH2 0x28F6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x2997 JUMPI PUSH2 0x2996 PUSH2 0x2313 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x29A5 DUP6 DUP3 DUP7 ADD PUSH2 0x2560 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x29B6 DUP6 DUP3 DUP7 ADD PUSH2 0x2560 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 0x2A07 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x2A1A JUMPI PUSH2 0x2A19 PUSH2 0x29C0 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 0x2A7C PUSH1 0x21 DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2A87 DUP3 PUSH2 0x2A20 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 0x2AAB DUP2 PUSH2 0x2A6F 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 0x2B0E PUSH1 0x3D DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2B19 DUP3 PUSH2 0x2AB2 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 0x2B3D DUP2 PUSH2 0x2B01 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 0x2BA0 PUSH1 0x2D DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2BAB DUP3 PUSH2 0x2B44 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 0x2BCF DUP2 PUSH2 0x2B93 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x74206F6620626F756E6473000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2C32 PUSH1 0x2B DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2C3D DUP3 PUSH2 0x2BD6 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 0x2C61 DUP2 PUSH2 0x2C25 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x7574206F6620626F756E64730000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2CC4 PUSH1 0x2C DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2CCF DUP3 PUSH2 0x2C68 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 0x2CF3 DUP2 PUSH2 0x2CB7 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4552433732313A20696E76616C696420746F6B656E2049440000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D5F PUSH1 0x18 DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2D6A DUP3 PUSH2 0x2D29 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 0x2D8E DUP2 PUSH2 0x2D52 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 0x2DF1 PUSH1 0x29 DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2DFC DUP3 PUSH2 0x2D95 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 0x2E20 DUP2 PUSH2 0x2DE4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E83 PUSH1 0x26 DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2E8E DUP3 PUSH2 0x2E27 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 0x2EB2 DUP2 PUSH2 0x2E76 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 0x2F15 PUSH1 0x25 DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2F20 DUP3 PUSH2 0x2EB9 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 0x2F44 DUP2 PUSH2 0x2F08 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 0x2FA7 PUSH1 0x24 DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x2FB2 DUP3 PUSH2 0x2F4B 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 0x2FD6 DUP2 PUSH2 0x2F9A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3013 PUSH1 0x20 DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x301E DUP3 PUSH2 0x2FDD 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 0x3042 DUP2 PUSH2 0x3006 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x307F PUSH1 0x19 DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x308A DUP3 PUSH2 0x3049 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 0x30AE DUP2 PUSH2 0x3072 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 0x3111 PUSH1 0x32 DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x311C DUP3 PUSH2 0x30B5 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 0x3140 DUP2 PUSH2 0x3104 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x315D DUP3 PUSH2 0x23D8 JUMP JUMPDEST PUSH2 0x3167 DUP2 DUP6 PUSH2 0x3147 JUMP JUMPDEST SWAP4 POP PUSH2 0x3177 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x23F4 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x318F DUP3 DUP6 PUSH2 0x3152 JUMP JUMPDEST SWAP2 POP PUSH2 0x319B DUP3 DUP5 PUSH2 0x3152 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x45524337323155524953746F726167653A2055524920736574206F66206E6F6E PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6578697374656E7420746F6B656E000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3203 PUSH1 0x2E DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x320E DUP3 PUSH2 0x31A7 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 0x3232 DUP2 PUSH2 0x31F6 JUMP JUMPDEST SWAP1 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 PUSH2 0x329B PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x325E JUMP JUMPDEST PUSH2 0x32A5 DUP7 DUP4 PUSH2 0x325E 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 PUSH2 0x32E2 PUSH2 0x32DD PUSH2 0x32D8 DUP5 PUSH2 0x248A JUMP JUMPDEST PUSH2 0x32BD JUMP JUMPDEST PUSH2 0x248A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x32FC DUP4 PUSH2 0x32C7 JUMP JUMPDEST PUSH2 0x3310 PUSH2 0x3308 DUP3 PUSH2 0x32E9 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x326B JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 SWAP1 JUMP JUMPDEST PUSH2 0x3325 PUSH2 0x3318 JUMP JUMPDEST PUSH2 0x3330 DUP2 DUP5 DUP5 PUSH2 0x32F3 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x3354 JUMPI PUSH2 0x3349 PUSH1 0x0 DUP3 PUSH2 0x331D JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x3336 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x3399 JUMPI PUSH2 0x336A DUP2 PUSH2 0x3239 JUMP JUMPDEST PUSH2 0x3373 DUP5 PUSH2 0x324E JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x3382 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x3396 PUSH2 0x338E DUP6 PUSH2 0x324E JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x3335 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 PUSH2 0x33BC PUSH1 0x0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x339E JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x33D5 DUP4 DUP4 PUSH2 0x33AB JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x33EE DUP3 PUSH2 0x23D8 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3407 JUMPI PUSH2 0x3406 PUSH2 0x26D5 JUMP JUMPDEST JUMPDEST PUSH2 0x3411 DUP3 SLOAD PUSH2 0x29EF JUMP JUMPDEST PUSH2 0x341C DUP3 DUP3 DUP6 PUSH2 0x3358 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x344F JUMPI PUSH1 0x0 DUP5 ISZERO PUSH2 0x343D JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x3447 DUP6 DUP3 PUSH2 0x33C9 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x34AF JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x345D DUP7 PUSH2 0x3239 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x3485 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x3460 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x34A2 JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x349E PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x33AB 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 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 0x34DE DUP3 PUSH2 0x34B7 JUMP JUMPDEST PUSH2 0x34E8 DUP2 DUP6 PUSH2 0x34C2 JUMP JUMPDEST SWAP4 POP PUSH2 0x34F8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x23F4 JUMP JUMPDEST PUSH2 0x3501 DUP2 PUSH2 0x241E JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3521 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x251F JUMP JUMPDEST PUSH2 0x352E PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x251F JUMP JUMPDEST PUSH2 0x353B PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x25B5 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x354D DUP2 DUP5 PUSH2 0x34D3 JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x3567 DUP2 PUSH2 0x2349 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3583 JUMPI PUSH2 0x3582 PUSH2 0x2313 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3591 DUP5 DUP3 DUP6 ADD PUSH2 0x3558 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x455243373231456E756D657261626C653A20636F6E7365637574697665207472 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x616E7366657273206E6F7420737570706F727465640000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35F6 PUSH1 0x35 DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3601 DUP3 PUSH2 0x359A 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 0x3625 DUP2 PUSH2 0x35E9 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 PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3691 PUSH1 0x20 DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x369C DUP3 PUSH2 0x365B 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 0x36C0 DUP2 PUSH2 0x3684 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36FD PUSH1 0x1C DUP4 PUSH2 0x23E3 JUMP JUMPDEST SWAP2 POP PUSH2 0x3708 DUP3 PUSH2 0x36C7 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 0x372C DUP2 PUSH2 0x36F0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x376D DUP3 PUSH2 0x248A JUMP JUMPDEST SWAP2 POP PUSH2 0x3778 DUP4 PUSH2 0x248A JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x3790 JUMPI PUSH2 0x378F PUSH2 0x3733 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x2F 0x2E 0xB4 0x27 DUP13 EXP 0x1E 0xBD 0xF6 GT CODECOPY PUSH28 0x1D309BAA58B6BE602944DA1AF38FB7AB9676F50E64736F6C63430008 SLT STOP CALLER ",
"sourceMap": "410:1293:19:-:0;;;577:41;;;;;;;;;;1390:113:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1464:5;1456;:13;;;;;;:::i;:::-;;1489:7;1479;:17;;;;;;:::i;:::-;;1390:113;;936:32:0;955:12;:10;;;:12;;:::i;:::-;936:18;;;:32;;:::i;:::-;410:1293:19;;640:96:12;693:7;719:10;712:17;;640:96;:::o;2426:187:0:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;7:99:20:-;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;410:1293:19:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_addTokenToAllTokensEnumeration_1443": {
"entryPoint": 7856,
"id": 1443,
"parameterSlots": 1,
"returnSlots": 0
},
"@_addTokenToOwnerEnumeration_1423": {
"entryPoint": 8503,
"id": 1423,
"parameterSlots": 2,
"returnSlots": 0
},
"@_afterTokenTransfer_1051": {
"entryPoint": 5771,
"id": 1051,
"parameterSlots": 4,
"returnSlots": 0
},
"@_approve_917": {
"entryPoint": 3126,
"id": 917,
"parameterSlots": 2,
"returnSlots": 0
},
"@_baseURI_354": {
"entryPoint": 6168,
"id": 354,
"parameterSlots": 0,
"returnSlots": 1
},
"@_beforeTokenTransfer_1038": {
"entryPoint": 7850,
"id": 1038,
"parameterSlots": 4,
"returnSlots": 0
},
"@_beforeTokenTransfer_1393": {
"entryPoint": 6612,
"id": 1393,
"parameterSlots": 4,
"returnSlots": 0
},
"@_beforeTokenTransfer_3516": {
"entryPoint": 5753,
"id": 3516,
"parameterSlots": 4,
"returnSlots": 0
},
"@_checkOnERC721Received_1025": {
"entryPoint": 5777,
"id": 1025,
"parameterSlots": 4,
"returnSlots": 1
},
"@_checkOwner_54": {
"entryPoint": 4282,
"id": 54,
"parameterSlots": 0,
"returnSlots": 0
},
"@_exists_586": {
"entryPoint": 5688,
"id": 586,
"parameterSlots": 1,
"returnSlots": 1
},
"@_isApprovedOrOwner_620": {
"entryPoint": 3311,
"id": 620,
"parameterSlots": 2,
"returnSlots": 1
},
"@_mint_741": {
"entryPoint": 7203,
"id": 741,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_2111": {
"entryPoint": 3118,
"id": 2111,
"parameterSlots": 0,
"returnSlots": 1
},
"@_ownerOf_568": {
"entryPoint": 4221,
"id": 568,
"parameterSlots": 1,
"returnSlots": 1
},
"@_removeTokenFromAllTokensEnumeration_1554": {
"entryPoint": 8294,
"id": 1554,
"parameterSlots": 1,
"returnSlots": 0
},
"@_removeTokenFromOwnerEnumeration_1506": {
"entryPoint": 7929,
"id": 1506,
"parameterSlots": 2,
"returnSlots": 0
},
"@_requireMinted_963": {
"entryPoint": 3043,
"id": 963,
"parameterSlots": 1,
"returnSlots": 0
},
"@_safeMint_635": {
"entryPoint": 5372,
"id": 635,
"parameterSlots": 2,
"returnSlots": 0
},
"@_safeMint_664": {
"entryPoint": 6295,
"id": 664,
"parameterSlots": 3,
"returnSlots": 0
},
"@_safeTransfer_555": {
"entryPoint": 4970,
"id": 555,
"parameterSlots": 4,
"returnSlots": 0
},
"@_setApprovalForAll_949": {
"entryPoint": 4606,
"id": 949,
"parameterSlots": 3,
"returnSlots": 0
},
"@_setTokenURI_1680": {
"entryPoint": 5402,
"id": 1680,
"parameterSlots": 2,
"returnSlots": 0
},
"@_transferOwnership_111": {
"entryPoint": 4408,
"id": 111,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_893": {
"entryPoint": 3460,
"id": 893,
"parameterSlots": 3,
"returnSlots": 0
},
"@approve_397": {
"entryPoint": 1249,
"id": 397,
"parameterSlots": 2,
"returnSlots": 0
},
"@balanceOf_258": {
"entryPoint": 2081,
"id": 258,
"parameterSlots": 1,
"returnSlots": 1
},
"@current_2139": {
"entryPoint": 5336,
"id": 2139,
"parameterSlots": 1,
"returnSlots": 1
},
"@getApproved_415": {
"entryPoint": 1179,
"id": 415,
"parameterSlots": 1,
"returnSlots": 1
},
"@increment_2153": {
"entryPoint": 5350,
"id": 2153,
"parameterSlots": 1,
"returnSlots": 0
},
"@isApprovedForAll_450": {
"entryPoint": 2667,
"id": 450,
"parameterSlots": 2,
"returnSlots": 1
},
"@isContract_1787": {
"entryPoint": 6962,
"id": 1787,
"parameterSlots": 1,
"returnSlots": 1
},
"@log10_3163": {
"entryPoint": 8630,
"id": 3163,
"parameterSlots": 1,
"returnSlots": 1
},
"@name_296": {
"entryPoint": 1033,
"id": 296,
"parameterSlots": 0,
"returnSlots": 1
},
"@ownerOf_286": {
"entryPoint": 1947,
"id": 286,
"parameterSlots": 1,
"returnSlots": 1
},
"@owner_40": {
"entryPoint": 2284,
"id": 40,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_68": {
"entryPoint": 2264,
"id": 68,
"parameterSlots": 0,
"returnSlots": 0
},
"@safeMint_3492": {
"entryPoint": 2610,
"id": 3492,
"parameterSlots": 2,
"returnSlots": 0
},
"@safeTransferFrom_496": {
"entryPoint": 1802,
"id": 496,
"parameterSlots": 3,
"returnSlots": 0
},
"@safeTransferFrom_526": {
"entryPoint": 2494,
"id": 526,
"parameterSlots": 4,
"returnSlots": 0
},
"@setApprovalForAll_432": {
"entryPoint": 2472,
"id": 432,
"parameterSlots": 2,
"returnSlots": 0
},
"@supportsInterface_1251": {
"entryPoint": 5566,
"id": 1251,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_1595": {
"entryPoint": 2946,
"id": 1595,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_234": {
"entryPoint": 6386,
"id": 234,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_2447": {
"entryPoint": 7744,
"id": 2447,
"parameterSlots": 1,
"returnSlots": 1
},
"@supportsInterface_3564": {
"entryPoint": 1015,
"id": 3564,
"parameterSlots": 1,
"returnSlots": 1
},
"@symbol_306": {
"entryPoint": 2326,
"id": 306,
"parameterSlots": 0,
"returnSlots": 1
},
"@toString_2254": {
"entryPoint": 6997,
"id": 2254,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenByIndex_1313": {
"entryPoint": 1834,
"id": 1313,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenOfOwnerByIndex_1279": {
"entryPoint": 1637,
"id": 1279,
"parameterSlots": 2,
"returnSlots": 1
},
"@tokenURI_1654": {
"entryPoint": 5062,
"id": 1654,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_345": {
"entryPoint": 6191,
"id": 345,
"parameterSlots": 1,
"returnSlots": 1
},
"@tokenURI_3547": {
"entryPoint": 2592,
"id": 3547,
"parameterSlots": 1,
"returnSlots": 1
},
"@totalSupply_1290": {
"entryPoint": 1528,
"id": 1290,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_477": {
"entryPoint": 1541,
"id": 477,
"parameterSlots": 3,
"returnSlots": 0
},
"@transferOwnership_91": {
"entryPoint": 2815,
"id": 91,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 10128,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 10420,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 9568,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bool": {
"entryPoint": 9846,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4": {
"entryPoint": 9056,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes4_fromMemory": {
"entryPoint": 13656,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 10194,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 10486,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 9387,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 9778,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 10624,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 9695,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr": {
"entryPoint": 10240,
"id": null,
"parameterSlots": 2,
"returnSlots": 4
},
"abi_decode_tuple_t_addresst_bool": {
"entryPoint": 9867,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_string_memory_ptr": {
"entryPoint": 10532,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 9589,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes4": {
"entryPoint": 9077,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bytes4_fromMemory": {
"entryPoint": 13677,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 9408,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 9503,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 9134,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack": {
"entryPoint": 13523,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 9263,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 12626,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11155,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11301,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12548,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11894,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12040,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack": {
"entryPoint": 14064,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12186,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12402,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11748,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12790,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13956,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 12294,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11602,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack": {
"entryPoint": 10863,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11009,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack": {
"entryPoint": 11447,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314_to_t_string_memory_ptr_fromStack": {
"entryPoint": 13801,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 9653,
"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": 12675,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 9518,
"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": 13580,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 9149,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 9320,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11190,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11336,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12583,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11929,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12075,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 14099,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12221,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12437,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11783,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12825,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13991,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 12329,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11637,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 10898,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11044,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 11482,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 13836,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 9668,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 10037,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 8969,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 10064,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 10371,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 12857,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 13495,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 9176,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack": {
"entryPoint": 13506,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 9187,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 12615,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 14178,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 13144,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 9485,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 9122,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes4": {
"entryPoint": 8989,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 9453,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 9354,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 13109,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 12999,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 13285,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 10113,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 9204,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 12878,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 10735,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 13257,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 9988,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 12989,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 13227,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 14131,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x12": {
"entryPoint": 13868,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 10688,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x31": {
"entryPoint": 14230,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 11514,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 9941,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 13033,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 9931,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 9936,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 8984,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 8979,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 9246,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 12894,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 13214,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 13085,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af": {
"entryPoint": 11076,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c": {
"entryPoint": 11222,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e": {
"entryPoint": 12469,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 11815,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48": {
"entryPoint": 11961,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57": {
"entryPoint": 14023,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4": {
"entryPoint": 12107,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05": {
"entryPoint": 12361,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159": {
"entryPoint": 11669,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4": {
"entryPoint": 12711,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6": {
"entryPoint": 13915,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 12253,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f": {
"entryPoint": 11561,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942": {
"entryPoint": 10784,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83": {
"entryPoint": 10930,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc": {
"entryPoint": 11368,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314": {
"entryPoint": 13722,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 12907,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 13043,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 9545,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 9823,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes4": {
"entryPoint": 9033,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 9364,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 13080,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:38139:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:20",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:20"
},
"nodeType": "YulFunctionCall",
"src": "67:9:20"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:20"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:20",
"type": ""
}
],
"src": "7:75:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:20"
},
"nodeType": "YulFunctionCall",
"src": "187:12:20"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:20"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:20"
},
"nodeType": "YulFunctionCall",
"src": "310:12:20"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:20"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "378:105:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "388:89:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "403:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "410:66:20",
"type": "",
"value": "0xffffffff00000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "399:3:20"
},
"nodeType": "YulFunctionCall",
"src": "399:78:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "388:7:20"
}
]
}
]
},
"name": "cleanup_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "360:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "370:7:20",
"type": ""
}
],
"src": "334:149:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "531:78:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "587:16:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "596:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "599:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "589:6:20"
},
"nodeType": "YulFunctionCall",
"src": "589:12:20"
},
"nodeType": "YulExpressionStatement",
"src": "589:12:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "554:5:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "578:5:20"
}
],
"functionName": {
"name": "cleanup_t_bytes4",
"nodeType": "YulIdentifier",
"src": "561:16:20"
},
"nodeType": "YulFunctionCall",
"src": "561:23:20"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "551:2:20"
},
"nodeType": "YulFunctionCall",
"src": "551:34:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "544:6:20"
},
"nodeType": "YulFunctionCall",
"src": "544:42:20"
},
"nodeType": "YulIf",
"src": "541:62:20"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "524:5:20",
"type": ""
}
],
"src": "489:120:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "666:86:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "676:29:20",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "698:6:20"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "685:12:20"
},
"nodeType": "YulFunctionCall",
"src": "685:20:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "676:5:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "740:5:20"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "714:25:20"
},
"nodeType": "YulFunctionCall",
"src": "714:32:20"
},
"nodeType": "YulExpressionStatement",
"src": "714:32:20"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "644:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "652:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "660:5:20",
"type": ""
}
],
"src": "615:137:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "823:262:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "869:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "871:77:20"
},
"nodeType": "YulFunctionCall",
"src": "871:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "871:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "844:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "853:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "840:3:20"
},
"nodeType": "YulFunctionCall",
"src": "840:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "865:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "836:3:20"
},
"nodeType": "YulFunctionCall",
"src": "836:32:20"
},
"nodeType": "YulIf",
"src": "833:119:20"
},
{
"nodeType": "YulBlock",
"src": "962:116:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "977:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "991:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "981:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1006:62:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1040:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1051:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1036:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1036:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1060:7:20"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1016:19:20"
},
"nodeType": "YulFunctionCall",
"src": "1016:52:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1006:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "793:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "804:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "816:6:20",
"type": ""
}
],
"src": "758:327:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1133:48:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1143:32:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1168:5:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1161:6:20"
},
"nodeType": "YulFunctionCall",
"src": "1161:13:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1154:6:20"
},
"nodeType": "YulFunctionCall",
"src": "1154:21:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1143:7:20"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1115:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1125:7:20",
"type": ""
}
],
"src": "1091:90:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1246:50:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1263:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1283:5:20"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1268:14:20"
},
"nodeType": "YulFunctionCall",
"src": "1268:21:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1256:6:20"
},
"nodeType": "YulFunctionCall",
"src": "1256:34:20"
},
"nodeType": "YulExpressionStatement",
"src": "1256:34:20"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1234:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1241:3:20",
"type": ""
}
],
"src": "1187:109:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1394:118:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1404:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1416:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1427:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1412:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1412:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1404:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1478:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1491:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1502:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1487:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1487:17:20"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "1440:37:20"
},
"nodeType": "YulFunctionCall",
"src": "1440:65:20"
},
"nodeType": "YulExpressionStatement",
"src": "1440:65:20"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1366:9:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1378:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1389:4:20",
"type": ""
}
],
"src": "1302:210:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1577:40:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1588:22:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1604:5:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1598:5:20"
},
"nodeType": "YulFunctionCall",
"src": "1598:12:20"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1588:6:20"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1560:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1570:6:20",
"type": ""
}
],
"src": "1518:99:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1719:73:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1736:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1741:6:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1729:6:20"
},
"nodeType": "YulFunctionCall",
"src": "1729:19:20"
},
"nodeType": "YulExpressionStatement",
"src": "1729:19:20"
},
{
"nodeType": "YulAssignment",
"src": "1757:29:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1776:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1781:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1772:14:20"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "1757:11:20"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1691:3:20",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1696:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "1707:11:20",
"type": ""
}
],
"src": "1623:169:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1860:184:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1870:10:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1879:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1874:1:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1939:63:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1964:3:20"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1969:1:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1960:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1960:11:20"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1983:3:20"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1988:1:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1979:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1979:11:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1973:5:20"
},
"nodeType": "YulFunctionCall",
"src": "1973:18:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1953:6:20"
},
"nodeType": "YulFunctionCall",
"src": "1953:39:20"
},
"nodeType": "YulExpressionStatement",
"src": "1953:39:20"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1900:1:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1903:6:20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1897:2:20"
},
"nodeType": "YulFunctionCall",
"src": "1897:13:20"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1911:19:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1913:15:20",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1922:1:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1925:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1918:3:20"
},
"nodeType": "YulFunctionCall",
"src": "1918:10:20"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1913:1:20"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1893:3:20",
"statements": []
},
"src": "1889:113:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2022:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2027:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2018:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2018:16:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2036:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2011:6:20"
},
"nodeType": "YulFunctionCall",
"src": "2011:27:20"
},
"nodeType": "YulExpressionStatement",
"src": "2011:27:20"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1842:3:20",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1847:3:20",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1852:6:20",
"type": ""
}
],
"src": "1798:246:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2098:54:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2108:38:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2126:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2133:2:20",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2122:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2122:14:20"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2142:2:20",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2138:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2138:7:20"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2118:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2118:28:20"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "2108:6:20"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2081:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "2091:6:20",
"type": ""
}
],
"src": "2050:102:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2250:285:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2260:53:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2307:5:20"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2274:32:20"
},
"nodeType": "YulFunctionCall",
"src": "2274:39:20"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2264:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2322:78:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2388:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2393:6:20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2329:58:20"
},
"nodeType": "YulFunctionCall",
"src": "2329:71:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2322:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2448:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2455:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2444:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2444:16:20"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2462:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2467:6:20"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "2409:34:20"
},
"nodeType": "YulFunctionCall",
"src": "2409:65:20"
},
"nodeType": "YulExpressionStatement",
"src": "2409:65:20"
},
{
"nodeType": "YulAssignment",
"src": "2483:46:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2494:3:20"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2521:6:20"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "2499:21:20"
},
"nodeType": "YulFunctionCall",
"src": "2499:29:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2490:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2490:39:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2483:3:20"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2231:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2238:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2246:3:20",
"type": ""
}
],
"src": "2158:377:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2659:195:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2669:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2681:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2692:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2677:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2677:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2669:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2716:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2727:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2712:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2712:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2735:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2741:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2731:3:20"
},
"nodeType": "YulFunctionCall",
"src": "2731:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2705:6:20"
},
"nodeType": "YulFunctionCall",
"src": "2705:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "2705:47:20"
},
{
"nodeType": "YulAssignment",
"src": "2761:86:20",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2833:6:20"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2842:4:20"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2769:63:20"
},
"nodeType": "YulFunctionCall",
"src": "2769:78:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2761:4:20"
}
]
}
]
},
"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:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2643:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2654:4:20",
"type": ""
}
],
"src": "2541:313:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2905:32:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2915:16:20",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2926:5:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2915:7:20"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2887:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2897:7:20",
"type": ""
}
],
"src": "2860:77:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2986:79:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3043:16:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3052:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3055:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3045:6:20"
},
"nodeType": "YulFunctionCall",
"src": "3045:12:20"
},
"nodeType": "YulExpressionStatement",
"src": "3045:12:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3009:5:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3034:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "3016:17:20"
},
"nodeType": "YulFunctionCall",
"src": "3016:24:20"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3006:2:20"
},
"nodeType": "YulFunctionCall",
"src": "3006:35:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2999:6:20"
},
"nodeType": "YulFunctionCall",
"src": "2999:43:20"
},
"nodeType": "YulIf",
"src": "2996:63:20"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2979:5:20",
"type": ""
}
],
"src": "2943:122:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3123:87:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3133:29:20",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3155:6:20"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3142:12:20"
},
"nodeType": "YulFunctionCall",
"src": "3142:20:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3133:5:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3198:5:20"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "3171:26:20"
},
"nodeType": "YulFunctionCall",
"src": "3171:33:20"
},
"nodeType": "YulExpressionStatement",
"src": "3171:33:20"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3101:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3109:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3117:5:20",
"type": ""
}
],
"src": "3071:139:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3282:263:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3328:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3330:77:20"
},
"nodeType": "YulFunctionCall",
"src": "3330:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "3330:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3303:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3312:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3299:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3299:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3324:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3295:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3295:32:20"
},
"nodeType": "YulIf",
"src": "3292:119:20"
},
{
"nodeType": "YulBlock",
"src": "3421:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3436:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3450:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3440:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3465:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3500:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3511:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3496:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3496:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3520:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3475:20:20"
},
"nodeType": "YulFunctionCall",
"src": "3475:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3465:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3252:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3263:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3275:6:20",
"type": ""
}
],
"src": "3216:329:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3596:81:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3606:65:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3621:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3628:42:20",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3617:3:20"
},
"nodeType": "YulFunctionCall",
"src": "3617:54:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3606:7:20"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3578:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3588:7:20",
"type": ""
}
],
"src": "3551:126:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3728:51:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3738:35:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3767:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "3749:17:20"
},
"nodeType": "YulFunctionCall",
"src": "3749:24:20"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "3738:7:20"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3710:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "3720:7:20",
"type": ""
}
],
"src": "3683:96:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3850:53:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3867:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3890:5:20"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3872:17:20"
},
"nodeType": "YulFunctionCall",
"src": "3872:24:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3860:6:20"
},
"nodeType": "YulFunctionCall",
"src": "3860:37:20"
},
"nodeType": "YulExpressionStatement",
"src": "3860:37:20"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3838:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3845:3:20",
"type": ""
}
],
"src": "3785:118:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4007:124:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4017:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4029:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4040:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4025:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4025:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4017:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4097:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4110:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4121:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4106:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4106:17:20"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "4053:43:20"
},
"nodeType": "YulFunctionCall",
"src": "4053:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "4053:71:20"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3979:9:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3991:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4002:4:20",
"type": ""
}
],
"src": "3909:222:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4180:79:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4237:16:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4246:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4249:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4239:6:20"
},
"nodeType": "YulFunctionCall",
"src": "4239:12:20"
},
"nodeType": "YulExpressionStatement",
"src": "4239:12:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4203:5:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4228:5:20"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "4210:17:20"
},
"nodeType": "YulFunctionCall",
"src": "4210:24:20"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "4200:2:20"
},
"nodeType": "YulFunctionCall",
"src": "4200:35:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "4193:6:20"
},
"nodeType": "YulFunctionCall",
"src": "4193:43:20"
},
"nodeType": "YulIf",
"src": "4190:63:20"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4173:5:20",
"type": ""
}
],
"src": "4137:122:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4317:87:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4327:29:20",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4349:6:20"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4336:12:20"
},
"nodeType": "YulFunctionCall",
"src": "4336:20:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4327:5:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4392:5:20"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "4365:26:20"
},
"nodeType": "YulFunctionCall",
"src": "4365:33:20"
},
"nodeType": "YulExpressionStatement",
"src": "4365:33:20"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4295:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4303:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4311:5:20",
"type": ""
}
],
"src": "4265:139:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4493:391:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4539:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "4541:77:20"
},
"nodeType": "YulFunctionCall",
"src": "4541:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "4541:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4514:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4523:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4510:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4510:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4535:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4506:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4506:32:20"
},
"nodeType": "YulIf",
"src": "4503:119:20"
},
{
"nodeType": "YulBlock",
"src": "4632:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4647:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4661:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4651:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4676:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4711:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4722:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4707:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4707:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4731:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4686:20:20"
},
"nodeType": "YulFunctionCall",
"src": "4686:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4676:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4759:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4774:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4788:2:20",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4778:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4804:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4839:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4850:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4835:3:20"
},
"nodeType": "YulFunctionCall",
"src": "4835:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4859:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4814:20:20"
},
"nodeType": "YulFunctionCall",
"src": "4814:53:20"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4804:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4455:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4466:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4478:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4486:6:20",
"type": ""
}
],
"src": "4410:474:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4955:53:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4972:3:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "4995:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4977:17:20"
},
"nodeType": "YulFunctionCall",
"src": "4977:24:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4965:6:20"
},
"nodeType": "YulFunctionCall",
"src": "4965:37:20"
},
"nodeType": "YulExpressionStatement",
"src": "4965:37:20"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "4943:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4950:3:20",
"type": ""
}
],
"src": "4890:118:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5112:124:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5122:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5134:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5145:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5130:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5130:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5122:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5202:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5215:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5226:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5211:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5211:17:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "5158:43:20"
},
"nodeType": "YulFunctionCall",
"src": "5158:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "5158:71:20"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5084:9:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5096:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5107:4:20",
"type": ""
}
],
"src": "5014:222:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5342:519:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5388:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5390:77:20"
},
"nodeType": "YulFunctionCall",
"src": "5390:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "5390:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5363:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5372:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5359:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5359:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5384:2:20",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5355:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5355:32:20"
},
"nodeType": "YulIf",
"src": "5352:119:20"
},
{
"nodeType": "YulBlock",
"src": "5481:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5496:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5510:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5500:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5525:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5560:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5571:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5556:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5556:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5580:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5535:20:20"
},
"nodeType": "YulFunctionCall",
"src": "5535:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5525:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5608:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5623:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5637:2:20",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5627:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5653:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5688:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5699:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5684:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5684:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5708:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5663:20:20"
},
"nodeType": "YulFunctionCall",
"src": "5663:53:20"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5653:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5736:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5751:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5765:2:20",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5755:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5781:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5816:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5827:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5812:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5812:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5836:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5791:20:20"
},
"nodeType": "YulFunctionCall",
"src": "5791:53:20"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5781:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5296:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5307:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5319:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5327:6:20",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5335:6:20",
"type": ""
}
],
"src": "5242:619:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5933:263:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5979:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "5981:77:20"
},
"nodeType": "YulFunctionCall",
"src": "5981:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "5981:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5954:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5963:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5950:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5950:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5975:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5946:3:20"
},
"nodeType": "YulFunctionCall",
"src": "5946:32:20"
},
"nodeType": "YulIf",
"src": "5943:119:20"
},
{
"nodeType": "YulBlock",
"src": "6072:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6087:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6101:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6091:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6116:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6151:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6162:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6147:3:20"
},
"nodeType": "YulFunctionCall",
"src": "6147:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6171:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6126:20:20"
},
"nodeType": "YulFunctionCall",
"src": "6126:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6116:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5903:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5914:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5926:6:20",
"type": ""
}
],
"src": "5867:329:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6242:76:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6296:16:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6305:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6308:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6298:6:20"
},
"nodeType": "YulFunctionCall",
"src": "6298:12:20"
},
"nodeType": "YulExpressionStatement",
"src": "6298:12:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6265:5:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6287:5:20"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "6272:14:20"
},
"nodeType": "YulFunctionCall",
"src": "6272:21:20"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6262:2:20"
},
"nodeType": "YulFunctionCall",
"src": "6262:32:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "6255:6:20"
},
"nodeType": "YulFunctionCall",
"src": "6255:40:20"
},
"nodeType": "YulIf",
"src": "6252:60:20"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6235:5:20",
"type": ""
}
],
"src": "6202:116:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6373:84:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6383:29:20",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6405:6:20"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6392:12:20"
},
"nodeType": "YulFunctionCall",
"src": "6392:20:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6383:5:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6445:5:20"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "6421:23:20"
},
"nodeType": "YulFunctionCall",
"src": "6421:30:20"
},
"nodeType": "YulExpressionStatement",
"src": "6421:30:20"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6351:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6359:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6367:5:20",
"type": ""
}
],
"src": "6324:133:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6543:388:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6589:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "6591:77:20"
},
"nodeType": "YulFunctionCall",
"src": "6591:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "6591:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6564:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6573:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6560:3:20"
},
"nodeType": "YulFunctionCall",
"src": "6560:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6585:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6556:3:20"
},
"nodeType": "YulFunctionCall",
"src": "6556:32:20"
},
"nodeType": "YulIf",
"src": "6553:119:20"
},
{
"nodeType": "YulBlock",
"src": "6682:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6697:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6711:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6701:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6726:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6761:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6772:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6757:3:20"
},
"nodeType": "YulFunctionCall",
"src": "6757:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6781:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "6736:20:20"
},
"nodeType": "YulFunctionCall",
"src": "6736:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6726:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "6809:115:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6824:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6838:2:20",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6828:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6854:60:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6886:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6897:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6882:3:20"
},
"nodeType": "YulFunctionCall",
"src": "6882:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6906:7:20"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "6864:17:20"
},
"nodeType": "YulFunctionCall",
"src": "6864:50:20"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6854:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6505:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6516:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6528:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6536:6:20",
"type": ""
}
],
"src": "6463:468:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7026:28:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7043:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7046:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7036:6:20"
},
"nodeType": "YulFunctionCall",
"src": "7036:12:20"
},
"nodeType": "YulExpressionStatement",
"src": "7036:12:20"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulFunctionDefinition",
"src": "6937:117:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7149:28:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7166:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7169:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7159:6:20"
},
"nodeType": "YulFunctionCall",
"src": "7159:12:20"
},
"nodeType": "YulExpressionStatement",
"src": "7159:12:20"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulFunctionDefinition",
"src": "7060:117:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7211:152:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7228:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7231:77:20",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7221:6:20"
},
"nodeType": "YulFunctionCall",
"src": "7221:88:20"
},
"nodeType": "YulExpressionStatement",
"src": "7221:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7325:1:20",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7328:4:20",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7318:6:20"
},
"nodeType": "YulFunctionCall",
"src": "7318:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "7318:15:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7349:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7352:4:20",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7342:6:20"
},
"nodeType": "YulFunctionCall",
"src": "7342:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "7342:15:20"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "7183:180:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7412:238:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7422:58:20",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7444:6:20"
},
{
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7474:4:20"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "7452:21:20"
},
"nodeType": "YulFunctionCall",
"src": "7452:27:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7440:3:20"
},
"nodeType": "YulFunctionCall",
"src": "7440:40:20"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "7426:10:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7591:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7593:16:20"
},
"nodeType": "YulFunctionCall",
"src": "7593:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "7593:18:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7534:10:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7546:18:20",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7531:2:20"
},
"nodeType": "YulFunctionCall",
"src": "7531:34:20"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7570:10:20"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7582:6:20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "7567:2:20"
},
"nodeType": "YulFunctionCall",
"src": "7567:22:20"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "7528:2:20"
},
"nodeType": "YulFunctionCall",
"src": "7528:62:20"
},
"nodeType": "YulIf",
"src": "7525:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7629:2:20",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "7633:10:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7622:6:20"
},
"nodeType": "YulFunctionCall",
"src": "7622:22:20"
},
"nodeType": "YulExpressionStatement",
"src": "7622:22:20"
}
]
},
"name": "finalize_allocation",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7398:6:20",
"type": ""
},
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7406:4:20",
"type": ""
}
],
"src": "7369:281:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7697:88:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "7707:30:20",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nodeType": "YulIdentifier",
"src": "7717:18:20"
},
"nodeType": "YulFunctionCall",
"src": "7717:20:20"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7707:6:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "7766:6:20"
},
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7774:4:20"
}
],
"functionName": {
"name": "finalize_allocation",
"nodeType": "YulIdentifier",
"src": "7746:19:20"
},
"nodeType": "YulFunctionCall",
"src": "7746:33:20"
},
"nodeType": "YulExpressionStatement",
"src": "7746:33:20"
}
]
},
"name": "allocate_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7681:4:20",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "7690:6:20",
"type": ""
}
],
"src": "7656:129:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7857:241:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7962:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "7964:16:20"
},
"nodeType": "YulFunctionCall",
"src": "7964:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "7964:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "7934:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7942:18:20",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7931:2:20"
},
"nodeType": "YulFunctionCall",
"src": "7931:30:20"
},
"nodeType": "YulIf",
"src": "7928:56:20"
},
{
"nodeType": "YulAssignment",
"src": "7994:37:20",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8024:6:20"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8002:21:20"
},
"nodeType": "YulFunctionCall",
"src": "8002:29:20"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "7994:4:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "8068:23:20",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8080:4:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8086:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8076:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8076:15:20"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "8068:4:20"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "7841:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "7852:4:20",
"type": ""
}
],
"src": "7791:307:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8168:82:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8191:3:20"
},
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8196:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8201:6:20"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "8178:12:20"
},
"nodeType": "YulFunctionCall",
"src": "8178:30:20"
},
"nodeType": "YulExpressionStatement",
"src": "8178:30:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8228:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8233:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8224:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8224:16:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8242:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8217:6:20"
},
"nodeType": "YulFunctionCall",
"src": "8217:27:20"
},
"nodeType": "YulExpressionStatement",
"src": "8217:27:20"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8150:3:20",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8155:3:20",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8160:6:20",
"type": ""
}
],
"src": "8104:146:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8339:340:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "8349:74:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8415:6:20"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8374:40:20"
},
"nodeType": "YulFunctionCall",
"src": "8374:48:20"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "8358:15:20"
},
"nodeType": "YulFunctionCall",
"src": "8358:65:20"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8349:5:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8439:5:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8446:6:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8432:6:20"
},
"nodeType": "YulFunctionCall",
"src": "8432:21:20"
},
"nodeType": "YulExpressionStatement",
"src": "8432:21:20"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8462:27:20",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8477:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8484:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8473:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8473:16:20"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "8466:3:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "8527:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "8529:77:20"
},
"nodeType": "YulFunctionCall",
"src": "8529:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "8529:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8508:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8513:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8504:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8504:16:20"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8522:3:20"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "8501:2:20"
},
"nodeType": "YulFunctionCall",
"src": "8501:25:20"
},
"nodeType": "YulIf",
"src": "8498:112:20"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "8656:3:20"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "8661:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8666:6:20"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "8619:36:20"
},
"nodeType": "YulFunctionCall",
"src": "8619:54:20"
},
"nodeType": "YulExpressionStatement",
"src": "8619:54:20"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "8312:3:20",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8317:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8325:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8333:5:20",
"type": ""
}
],
"src": "8256:423:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8759:277:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "8808:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "8810:77:20"
},
"nodeType": "YulFunctionCall",
"src": "8810:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "8810:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8787:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8795:4:20",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8783:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8783:17:20"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8802:3:20"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "8779:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8779:27:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "8772:6:20"
},
"nodeType": "YulFunctionCall",
"src": "8772:35:20"
},
"nodeType": "YulIf",
"src": "8769:122:20"
},
{
"nodeType": "YulVariableDeclaration",
"src": "8900:34:20",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "8927:6:20"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "8914:12:20"
},
"nodeType": "YulFunctionCall",
"src": "8914:20:20"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8904:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8943:87:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9003:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9011:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8999:3:20"
},
"nodeType": "YulFunctionCall",
"src": "8999:17:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9018:6:20"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9026:3:20"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8952:46:20"
},
"nodeType": "YulFunctionCall",
"src": "8952:78:20"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "8943:5:20"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "8737:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8745:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "8753:5:20",
"type": ""
}
],
"src": "8698:338:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9168:817:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "9215:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "9217:77:20"
},
"nodeType": "YulFunctionCall",
"src": "9217:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "9217:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9189:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9198:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "9185:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9185:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9210:3:20",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "9181:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9181:33:20"
},
"nodeType": "YulIf",
"src": "9178:120:20"
},
{
"nodeType": "YulBlock",
"src": "9308:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9323:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9337:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9327:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9352:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9387:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9398:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9383:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9383:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9407:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9362:20:20"
},
"nodeType": "YulFunctionCall",
"src": "9362:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "9352:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9435:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9450:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9464:2:20",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9454:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9480:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9515:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9526:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9511:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9511:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9535:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "9490:20:20"
},
"nodeType": "YulFunctionCall",
"src": "9490:53:20"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "9480:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9563:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9578:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "9592:2:20",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9582:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "9608:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9643:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9654:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9639:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9639:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9663:7:20"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "9618:20:20"
},
"nodeType": "YulFunctionCall",
"src": "9618:53:20"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "9608:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "9691:287:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "9706:46:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9737:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9748:2:20",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9733:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9733:18:20"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "9720:12:20"
},
"nodeType": "YulFunctionCall",
"src": "9720:32:20"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "9710:6:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "9799:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "9801:77:20"
},
"nodeType": "YulFunctionCall",
"src": "9801:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "9801:79:20"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9771:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9779:18:20",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "9768:2:20"
},
"nodeType": "YulFunctionCall",
"src": "9768:30:20"
},
"nodeType": "YulIf",
"src": "9765:117:20"
},
{
"nodeType": "YulAssignment",
"src": "9896:72:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9940:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "9951:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9936:3:20"
},
"nodeType": "YulFunctionCall",
"src": "9936:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "9960:7:20"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "9906:29:20"
},
"nodeType": "YulFunctionCall",
"src": "9906:62:20"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "9896:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9114:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "9125:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "9137:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "9145:6:20",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "9153:6:20",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "9161:6:20",
"type": ""
}
],
"src": "9042:943:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10058:241:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10163:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "10165:16:20"
},
"nodeType": "YulFunctionCall",
"src": "10165:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "10165:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10135:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10143:18:20",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10132:2:20"
},
"nodeType": "YulFunctionCall",
"src": "10132:30:20"
},
"nodeType": "YulIf",
"src": "10129:56:20"
},
{
"nodeType": "YulAssignment",
"src": "10195:37:20",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10225:6:20"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "10203:21:20"
},
"nodeType": "YulFunctionCall",
"src": "10203:29:20"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "10195:4:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "10269:23:20",
"value": {
"arguments": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "10281:4:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10287:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10277:3:20"
},
"nodeType": "YulFunctionCall",
"src": "10277:15:20"
},
"variableNames": [
{
"name": "size",
"nodeType": "YulIdentifier",
"src": "10269:4:20"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10042:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nodeType": "YulTypedName",
"src": "10053:4:20",
"type": ""
}
],
"src": "9991:308:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10389:341:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10399:75:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10466:6:20"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "10424:41:20"
},
"nodeType": "YulFunctionCall",
"src": "10424:49:20"
}
],
"functionName": {
"name": "allocate_memory",
"nodeType": "YulIdentifier",
"src": "10408:15:20"
},
"nodeType": "YulFunctionCall",
"src": "10408:66:20"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10399:5:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10490:5:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10497:6:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10483:6:20"
},
"nodeType": "YulFunctionCall",
"src": "10483:21:20"
},
"nodeType": "YulExpressionStatement",
"src": "10483:21:20"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10513:27:20",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10528:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10535:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10524:3:20"
},
"nodeType": "YulFunctionCall",
"src": "10524:16:20"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10517:3:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "10578:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nodeType": "YulIdentifier",
"src": "10580:77:20"
},
"nodeType": "YulFunctionCall",
"src": "10580:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "10580:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10559:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10564:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10555:3:20"
},
"nodeType": "YulFunctionCall",
"src": "10555:16:20"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10573:3:20"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10552:2:20"
},
"nodeType": "YulFunctionCall",
"src": "10552:25:20"
},
"nodeType": "YulIf",
"src": "10549:112:20"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "10707:3:20"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "10712:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10717:6:20"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "10670:36:20"
},
"nodeType": "YulFunctionCall",
"src": "10670:54:20"
},
"nodeType": "YulExpressionStatement",
"src": "10670:54:20"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10362:3:20",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10367:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10375:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "10383:5:20",
"type": ""
}
],
"src": "10305:425:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10812:278:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10861:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nodeType": "YulIdentifier",
"src": "10863:77:20"
},
"nodeType": "YulFunctionCall",
"src": "10863:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "10863:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10840:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10848:4:20",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10836:3:20"
},
"nodeType": "YulFunctionCall",
"src": "10836:17:20"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10855:3:20"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "10832:3:20"
},
"nodeType": "YulFunctionCall",
"src": "10832:27:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10825:6:20"
},
"nodeType": "YulFunctionCall",
"src": "10825:35:20"
},
"nodeType": "YulIf",
"src": "10822:122:20"
},
{
"nodeType": "YulVariableDeclaration",
"src": "10953:34:20",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "10980:6:20"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "10967:12:20"
},
"nodeType": "YulFunctionCall",
"src": "10967:20:20"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10957:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "10996:88:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11057:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11065:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11053:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11053:17:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11072:6:20"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11080:3:20"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11005:47:20"
},
"nodeType": "YulFunctionCall",
"src": "11005:79:20"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "10996:5:20"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "10790:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10798:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "10806:5:20",
"type": ""
}
],
"src": "10750:340:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11189:561:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11235:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "11237:77:20"
},
"nodeType": "YulFunctionCall",
"src": "11237:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "11237:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11210:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11219:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11206:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11206:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11231:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "11202:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11202:32:20"
},
"nodeType": "YulIf",
"src": "11199:119:20"
},
{
"nodeType": "YulBlock",
"src": "11328:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11343:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "11357:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11347:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "11372:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11407:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11418:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11403:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11403:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11427:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "11382:20:20"
},
"nodeType": "YulFunctionCall",
"src": "11382:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "11372:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "11455:288:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11470:46:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11501:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11512:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11497:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11497:18:20"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "11484:12:20"
},
"nodeType": "YulFunctionCall",
"src": "11484:32:20"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11474:6:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11563:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulIdentifier",
"src": "11565:77:20"
},
"nodeType": "YulFunctionCall",
"src": "11565:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "11565:79:20"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11535:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11543:18:20",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11532:2:20"
},
"nodeType": "YulFunctionCall",
"src": "11532:30:20"
},
"nodeType": "YulIf",
"src": "11529:117:20"
},
{
"nodeType": "YulAssignment",
"src": "11660:73:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11705:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "11716:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11701:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11701:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11725:7:20"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "11670:30:20"
},
"nodeType": "YulFunctionCall",
"src": "11670:63:20"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "11660:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11151:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "11162:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11174:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11182:6:20",
"type": ""
}
],
"src": "11096:654:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11839:391:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11885:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "11887:77:20"
},
"nodeType": "YulFunctionCall",
"src": "11887:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "11887:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "11860:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "11869:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "11856:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11856:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11881:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "11852:3:20"
},
"nodeType": "YulFunctionCall",
"src": "11852:32:20"
},
"nodeType": "YulIf",
"src": "11849:119:20"
},
{
"nodeType": "YulBlock",
"src": "11978:117:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "11993:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "12007:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "11997:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "12022:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12057:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12068:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12053:3:20"
},
"nodeType": "YulFunctionCall",
"src": "12053:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "12077:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "12032:20:20"
},
"nodeType": "YulFunctionCall",
"src": "12032:53:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "12022:6:20"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "12105:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "12120:16:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "12134:2:20",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "12124:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "12150:63:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "12185:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "12196:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12181:3:20"
},
"nodeType": "YulFunctionCall",
"src": "12181:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "12205:7:20"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "12160:20:20"
},
"nodeType": "YulFunctionCall",
"src": "12160:53:20"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "12150:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "11801:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "11812:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "11824:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "11832:6:20",
"type": ""
}
],
"src": "11756:474:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12264:152:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12281:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12284:77:20",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12274:6:20"
},
"nodeType": "YulFunctionCall",
"src": "12274:88:20"
},
"nodeType": "YulExpressionStatement",
"src": "12274:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12378:1:20",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12381:4:20",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12371:6:20"
},
"nodeType": "YulFunctionCall",
"src": "12371:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "12371:15:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12402:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12405:4:20",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12395:6:20"
},
"nodeType": "YulFunctionCall",
"src": "12395:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "12395:15:20"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "12236:180:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12473:269:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12483:22:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "12497:4:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12503:1:20",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "12493:3:20"
},
"nodeType": "YulFunctionCall",
"src": "12493:12:20"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12483:6:20"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "12514:38:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "12544:4:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12550:1:20",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12540:3:20"
},
"nodeType": "YulFunctionCall",
"src": "12540:12:20"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "12518:18:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "12591:51:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12605:27:20",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12619:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12627:4:20",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12615:3:20"
},
"nodeType": "YulFunctionCall",
"src": "12615:17:20"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12605:6:20"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "12571:18:20"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12564:6:20"
},
"nodeType": "YulFunctionCall",
"src": "12564:26:20"
},
"nodeType": "YulIf",
"src": "12561:81:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12694:42:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "12708:16:20"
},
"nodeType": "YulFunctionCall",
"src": "12708:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "12708:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "12658:18:20"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "12681:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12689:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "12678:2:20"
},
"nodeType": "YulFunctionCall",
"src": "12678:14:20"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "12655:2:20"
},
"nodeType": "YulFunctionCall",
"src": "12655:38:20"
},
"nodeType": "YulIf",
"src": "12652:84:20"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "12457:4:20",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "12466:6:20",
"type": ""
}
],
"src": "12422:320:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12854:114:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12876:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12884:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12872:3:20"
},
"nodeType": "YulFunctionCall",
"src": "12872:14:20"
},
{
"hexValue": "4552433732313a20617070726f76616c20746f2063757272656e74206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12888:34:20",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12865:6:20"
},
"nodeType": "YulFunctionCall",
"src": "12865:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "12865:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "12944:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12952:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12940:3:20"
},
"nodeType": "YulFunctionCall",
"src": "12940:15:20"
},
{
"hexValue": "72",
"kind": "string",
"nodeType": "YulLiteral",
"src": "12957:3:20",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12933:6:20"
},
"nodeType": "YulFunctionCall",
"src": "12933:28:20"
},
"nodeType": "YulExpressionStatement",
"src": "12933:28:20"
}
]
},
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "12846:6:20",
"type": ""
}
],
"src": "12748:220:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13120:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13130:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13196:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13201:2:20",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13137:58:20"
},
"nodeType": "YulFunctionCall",
"src": "13137:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13130:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13302:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942",
"nodeType": "YulIdentifier",
"src": "13213:88:20"
},
"nodeType": "YulFunctionCall",
"src": "13213:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "13213:93:20"
},
{
"nodeType": "YulAssignment",
"src": "13315:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13326:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13331:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13322:3:20"
},
"nodeType": "YulFunctionCall",
"src": "13322:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13315:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13108:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13116:3:20",
"type": ""
}
],
"src": "12974:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13517:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13527:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13539:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13550:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13535:3:20"
},
"nodeType": "YulFunctionCall",
"src": "13535:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13527:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13574:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13585:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13570:3:20"
},
"nodeType": "YulFunctionCall",
"src": "13570:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13593:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "13599:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "13589:3:20"
},
"nodeType": "YulFunctionCall",
"src": "13589:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13563:6:20"
},
"nodeType": "YulFunctionCall",
"src": "13563:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "13563:47:20"
},
{
"nodeType": "YulAssignment",
"src": "13619:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13753:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13627:124:20"
},
"nodeType": "YulFunctionCall",
"src": "13627:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "13619:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "13497:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "13512:4:20",
"type": ""
}
],
"src": "13346:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13877:142:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13899:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13907:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13895:3:20"
},
"nodeType": "YulFunctionCall",
"src": "13895:14:20"
},
{
"hexValue": "4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13911:34:20",
"type": "",
"value": "ERC721: approve caller is not to"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13888:6:20"
},
"nodeType": "YulFunctionCall",
"src": "13888:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "13888:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "13967:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13975:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13963:3:20"
},
"nodeType": "YulFunctionCall",
"src": "13963:15:20"
},
{
"hexValue": "6b656e206f776e6572206f7220617070726f76656420666f7220616c6c",
"kind": "string",
"nodeType": "YulLiteral",
"src": "13980:31:20",
"type": "",
"value": "ken owner or approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13956:6:20"
},
"nodeType": "YulFunctionCall",
"src": "13956:56:20"
},
"nodeType": "YulExpressionStatement",
"src": "13956:56:20"
}
]
},
"name": "store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "13869:6:20",
"type": ""
}
],
"src": "13771:248:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14171:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14181:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14247:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14252:2:20",
"type": "",
"value": "61"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14188:58:20"
},
"nodeType": "YulFunctionCall",
"src": "14188:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14181:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14353:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83",
"nodeType": "YulIdentifier",
"src": "14264:88:20"
},
"nodeType": "YulFunctionCall",
"src": "14264:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "14264:93:20"
},
{
"nodeType": "YulAssignment",
"src": "14366:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14377:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14382:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14373:3:20"
},
"nodeType": "YulFunctionCall",
"src": "14373:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14366:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14159:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14167:3:20",
"type": ""
}
],
"src": "14025:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14568:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14578:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14590:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14601:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14586:3:20"
},
"nodeType": "YulFunctionCall",
"src": "14586:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14578:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14625:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14636:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14621:3:20"
},
"nodeType": "YulFunctionCall",
"src": "14621:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14644:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "14650:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "14640:3:20"
},
"nodeType": "YulFunctionCall",
"src": "14640:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14614:6:20"
},
"nodeType": "YulFunctionCall",
"src": "14614:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "14614:47:20"
},
{
"nodeType": "YulAssignment",
"src": "14670:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14804:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14678:124:20"
},
"nodeType": "YulFunctionCall",
"src": "14678:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "14670:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "14548:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "14563:4:20",
"type": ""
}
],
"src": "14397:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14928:126:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "14950:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14958:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14946:3:20"
},
"nodeType": "YulFunctionCall",
"src": "14946:14:20"
},
{
"hexValue": "4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e65",
"kind": "string",
"nodeType": "YulLiteral",
"src": "14962:34:20",
"type": "",
"value": "ERC721: caller is not token owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14939:6:20"
},
"nodeType": "YulFunctionCall",
"src": "14939:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "14939:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15018:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15026:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15014:3:20"
},
"nodeType": "YulFunctionCall",
"src": "15014:15:20"
},
{
"hexValue": "72206f7220617070726f766564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15031:15:20",
"type": "",
"value": "r or approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15007:6:20"
},
"nodeType": "YulFunctionCall",
"src": "15007:40:20"
},
"nodeType": "YulExpressionStatement",
"src": "15007:40:20"
}
]
},
"name": "store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "14920:6:20",
"type": ""
}
],
"src": "14822:232:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15206:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15216:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15282:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15287:2:20",
"type": "",
"value": "45"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15223:58:20"
},
"nodeType": "YulFunctionCall",
"src": "15223:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15216:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15388:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af",
"nodeType": "YulIdentifier",
"src": "15299:88:20"
},
"nodeType": "YulFunctionCall",
"src": "15299:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "15299:93:20"
},
{
"nodeType": "YulAssignment",
"src": "15401:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15412:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15417:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15408:3:20"
},
"nodeType": "YulFunctionCall",
"src": "15408:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15401:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15194:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15202:3:20",
"type": ""
}
],
"src": "15060:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15603:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15613:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15625:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15636:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15621:3:20"
},
"nodeType": "YulFunctionCall",
"src": "15621:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15613:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15660:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15671:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15656:3:20"
},
"nodeType": "YulFunctionCall",
"src": "15656:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15679:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "15685:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "15675:3:20"
},
"nodeType": "YulFunctionCall",
"src": "15675:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15649:6:20"
},
"nodeType": "YulFunctionCall",
"src": "15649:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "15649:47:20"
},
{
"nodeType": "YulAssignment",
"src": "15705:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15839:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15713:124:20"
},
"nodeType": "YulFunctionCall",
"src": "15713:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "15705:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "15583:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "15598:4:20",
"type": ""
}
],
"src": "15432:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15963:124:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "15985:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15993:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15981:3:20"
},
"nodeType": "YulFunctionCall",
"src": "15981:14:20"
},
{
"hexValue": "455243373231456e756d657261626c653a206f776e657220696e646578206f75",
"kind": "string",
"nodeType": "YulLiteral",
"src": "15997:34:20",
"type": "",
"value": "ERC721Enumerable: owner index ou"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15974:6:20"
},
"nodeType": "YulFunctionCall",
"src": "15974:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "15974:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "16053:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16061:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16049:3:20"
},
"nodeType": "YulFunctionCall",
"src": "16049:15:20"
},
{
"hexValue": "74206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "16066:13:20",
"type": "",
"value": "t of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16042:6:20"
},
"nodeType": "YulFunctionCall",
"src": "16042:38:20"
},
"nodeType": "YulExpressionStatement",
"src": "16042:38:20"
}
]
},
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "15955:6:20",
"type": ""
}
],
"src": "15857:230:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16239:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16249:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16315:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16320:2:20",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16256:58:20"
},
"nodeType": "YulFunctionCall",
"src": "16256:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16249:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16421:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c",
"nodeType": "YulIdentifier",
"src": "16332:88:20"
},
"nodeType": "YulFunctionCall",
"src": "16332:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "16332:93:20"
},
{
"nodeType": "YulAssignment",
"src": "16434:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16445:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16450:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16441:3:20"
},
"nodeType": "YulFunctionCall",
"src": "16441:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16434:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16227:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16235:3:20",
"type": ""
}
],
"src": "16093:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16636:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16646:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16658:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16669:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16654:3:20"
},
"nodeType": "YulFunctionCall",
"src": "16654:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16646:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16693:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16704:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16689:3:20"
},
"nodeType": "YulFunctionCall",
"src": "16689:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16712:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "16718:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "16708:3:20"
},
"nodeType": "YulFunctionCall",
"src": "16708:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16682:6:20"
},
"nodeType": "YulFunctionCall",
"src": "16682:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "16682:47:20"
},
{
"nodeType": "YulAssignment",
"src": "16738:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16872:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16746:124:20"
},
"nodeType": "YulFunctionCall",
"src": "16746:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "16738:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "16616:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "16631:4:20",
"type": ""
}
],
"src": "16465:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16996:125:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17018:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17026:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17014:3:20"
},
"nodeType": "YulFunctionCall",
"src": "17014:14:20"
},
{
"hexValue": "455243373231456e756d657261626c653a20676c6f62616c20696e646578206f",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17030:34:20",
"type": "",
"value": "ERC721Enumerable: global index o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17007:6:20"
},
"nodeType": "YulFunctionCall",
"src": "17007:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "17007:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "17086:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17094:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17082:3:20"
},
"nodeType": "YulFunctionCall",
"src": "17082:15:20"
},
{
"hexValue": "7574206f6620626f756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "17099:14:20",
"type": "",
"value": "ut of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17075:6:20"
},
"nodeType": "YulFunctionCall",
"src": "17075:39:20"
},
"nodeType": "YulExpressionStatement",
"src": "17075:39:20"
}
]
},
"name": "store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "16988:6:20",
"type": ""
}
],
"src": "16890:231:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17273:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17283:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17349:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17354:2:20",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17290:58:20"
},
"nodeType": "YulFunctionCall",
"src": "17290:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17283:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17455:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc",
"nodeType": "YulIdentifier",
"src": "17366:88:20"
},
"nodeType": "YulFunctionCall",
"src": "17366:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "17366:93:20"
},
{
"nodeType": "YulAssignment",
"src": "17468:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17479:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17484:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17475:3:20"
},
"nodeType": "YulFunctionCall",
"src": "17475:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17468:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17261:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17269:3:20",
"type": ""
}
],
"src": "17127:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17670:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17680:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17692:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17703:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17688:3:20"
},
"nodeType": "YulFunctionCall",
"src": "17688:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17680:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17727:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17738:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17723:3:20"
},
"nodeType": "YulFunctionCall",
"src": "17723:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17746:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "17752:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "17742:3:20"
},
"nodeType": "YulFunctionCall",
"src": "17742:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17716:6:20"
},
"nodeType": "YulFunctionCall",
"src": "17716:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "17716:47:20"
},
{
"nodeType": "YulAssignment",
"src": "17772:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17906:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17780:124:20"
},
"nodeType": "YulFunctionCall",
"src": "17780:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "17772:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "17650:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "17665:4:20",
"type": ""
}
],
"src": "17499:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17952:152:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17969:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17972:77:20",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17962:6:20"
},
"nodeType": "YulFunctionCall",
"src": "17962:88:20"
},
"nodeType": "YulExpressionStatement",
"src": "17962:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18066:1:20",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18069:4:20",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18059:6:20"
},
"nodeType": "YulFunctionCall",
"src": "18059:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "18059:15:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18090:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18093:4:20",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "18083:6:20"
},
"nodeType": "YulFunctionCall",
"src": "18083:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "18083:15:20"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "17924:180:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18216:68:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "18238:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18246:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18234:3:20"
},
"nodeType": "YulFunctionCall",
"src": "18234:14:20"
},
{
"hexValue": "4552433732313a20696e76616c696420746f6b656e204944",
"kind": "string",
"nodeType": "YulLiteral",
"src": "18250:26:20",
"type": "",
"value": "ERC721: invalid token ID"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18227:6:20"
},
"nodeType": "YulFunctionCall",
"src": "18227:50:20"
},
"nodeType": "YulExpressionStatement",
"src": "18227:50:20"
}
]
},
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "18208:6:20",
"type": ""
}
],
"src": "18110:174:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18436:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18446:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18512:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18517:2:20",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18453:58:20"
},
"nodeType": "YulFunctionCall",
"src": "18453:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18446:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18618:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f",
"nodeType": "YulIdentifier",
"src": "18529:88:20"
},
"nodeType": "YulFunctionCall",
"src": "18529:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "18529:93:20"
},
{
"nodeType": "YulAssignment",
"src": "18631:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18642:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18647:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18638:3:20"
},
"nodeType": "YulFunctionCall",
"src": "18638:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18631:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18424:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18432:3:20",
"type": ""
}
],
"src": "18290:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18833:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18843:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18855:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18866:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18851:3:20"
},
"nodeType": "YulFunctionCall",
"src": "18851:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18843:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18890:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18901:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18886:3:20"
},
"nodeType": "YulFunctionCall",
"src": "18886:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18909:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18915:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "18905:3:20"
},
"nodeType": "YulFunctionCall",
"src": "18905:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18879:6:20"
},
"nodeType": "YulFunctionCall",
"src": "18879:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "18879:47:20"
},
{
"nodeType": "YulAssignment",
"src": "18935:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19069:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "18943:124:20"
},
"nodeType": "YulFunctionCall",
"src": "18943:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18935:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18813:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18828:4:20",
"type": ""
}
],
"src": "18662:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19193:122:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19215:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19223:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19211:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19211:14:20"
},
{
"hexValue": "4552433732313a2061646472657373207a65726f206973206e6f742061207661",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19227:34:20",
"type": "",
"value": "ERC721: address zero is not a va"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19204:6:20"
},
"nodeType": "YulFunctionCall",
"src": "19204:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "19204:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "19283:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19291:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19279:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19279:15:20"
},
{
"hexValue": "6c6964206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "19296:11:20",
"type": "",
"value": "lid owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19272:6:20"
},
"nodeType": "YulFunctionCall",
"src": "19272:36:20"
},
"nodeType": "YulExpressionStatement",
"src": "19272:36:20"
}
]
},
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "19185:6:20",
"type": ""
}
],
"src": "19087:228:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19467:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19477:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19543:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19548:2:20",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19484:58:20"
},
"nodeType": "YulFunctionCall",
"src": "19484:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19477:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19649:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159",
"nodeType": "YulIdentifier",
"src": "19560:88:20"
},
"nodeType": "YulFunctionCall",
"src": "19560:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "19560:93:20"
},
{
"nodeType": "YulAssignment",
"src": "19662:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "19673:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19678:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19669:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19669:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "19662:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "19455:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "19463:3:20",
"type": ""
}
],
"src": "19321:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19864:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19874:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19886:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19897:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19882:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19882:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19874:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19921:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19932:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19917:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19917:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19940:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19946:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19936:3:20"
},
"nodeType": "YulFunctionCall",
"src": "19936:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19910:6:20"
},
"nodeType": "YulFunctionCall",
"src": "19910:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "19910:47:20"
},
{
"nodeType": "YulAssignment",
"src": "19966:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20100:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19974:124:20"
},
"nodeType": "YulFunctionCall",
"src": "19974:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19966:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19844:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19859:4:20",
"type": ""
}
],
"src": "19693:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20224:119:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20246:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20254:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20242:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20242:14:20"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20258:34:20",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20235:6:20"
},
"nodeType": "YulFunctionCall",
"src": "20235:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "20235:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "20314:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20322:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20310:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20310:15:20"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "20327:8:20",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20303:6:20"
},
"nodeType": "YulFunctionCall",
"src": "20303:33:20"
},
"nodeType": "YulExpressionStatement",
"src": "20303:33:20"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "20216:6:20",
"type": ""
}
],
"src": "20118:225:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20495:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20505:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20571:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20576:2:20",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20512:58:20"
},
"nodeType": "YulFunctionCall",
"src": "20512:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20505:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20677:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "20588:88:20"
},
"nodeType": "YulFunctionCall",
"src": "20588:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "20588:93:20"
},
{
"nodeType": "YulAssignment",
"src": "20690:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "20701:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20706:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20697:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20697:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "20690:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "20483:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "20491:3:20",
"type": ""
}
],
"src": "20349:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20892:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20902:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20914:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20925:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20910:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20910:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20902:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20949:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20960:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20945:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20945:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20968:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20974:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20964:3:20"
},
"nodeType": "YulFunctionCall",
"src": "20964:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20938:6:20"
},
"nodeType": "YulFunctionCall",
"src": "20938:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "20938:47:20"
},
{
"nodeType": "YulAssignment",
"src": "20994:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21128:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21002:124:20"
},
"nodeType": "YulFunctionCall",
"src": "21002:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20994:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20872:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20887:4:20",
"type": ""
}
],
"src": "20721:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21252:118:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21274:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21282:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21270:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21270:14:20"
},
{
"hexValue": "4552433732313a207472616e736665722066726f6d20696e636f727265637420",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21286:34:20",
"type": "",
"value": "ERC721: transfer from incorrect "
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21263:6:20"
},
"nodeType": "YulFunctionCall",
"src": "21263:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "21263:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "21342:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21350:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21338:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21338:15:20"
},
{
"hexValue": "6f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "21355:7:20",
"type": "",
"value": "owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21331:6:20"
},
"nodeType": "YulFunctionCall",
"src": "21331:32:20"
},
"nodeType": "YulExpressionStatement",
"src": "21331:32:20"
}
]
},
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "21244:6:20",
"type": ""
}
],
"src": "21146:224:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21522:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21532:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21598:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21603:2:20",
"type": "",
"value": "37"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21539:58:20"
},
"nodeType": "YulFunctionCall",
"src": "21539:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21532:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21704:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48",
"nodeType": "YulIdentifier",
"src": "21615:88:20"
},
"nodeType": "YulFunctionCall",
"src": "21615:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "21615:93:20"
},
{
"nodeType": "YulAssignment",
"src": "21717:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "21728:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21733:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21724:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21724:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "21717:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "21510:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "21518:3:20",
"type": ""
}
],
"src": "21376:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21919:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21929:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21941:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21952:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21937:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21937:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21929:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21976:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21987:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21972:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21972:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21995:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22001:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21991:3:20"
},
"nodeType": "YulFunctionCall",
"src": "21991:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21965:6:20"
},
"nodeType": "YulFunctionCall",
"src": "21965:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "21965:47:20"
},
{
"nodeType": "YulAssignment",
"src": "22021:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22155:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22029:124:20"
},
"nodeType": "YulFunctionCall",
"src": "22029:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22021:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21899:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21914:4:20",
"type": ""
}
],
"src": "21748:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22279:117:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22301:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22309:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22297:3:20"
},
"nodeType": "YulFunctionCall",
"src": "22297:14:20"
},
{
"hexValue": "4552433732313a207472616e7366657220746f20746865207a65726f20616464",
"kind": "string",
"nodeType": "YulLiteral",
"src": "22313:34:20",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22290:6:20"
},
"nodeType": "YulFunctionCall",
"src": "22290:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "22290:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "22369:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22377:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22365:3:20"
},
"nodeType": "YulFunctionCall",
"src": "22365:15:20"
},
{
"hexValue": "72657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "22382:6:20",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22358:6:20"
},
"nodeType": "YulFunctionCall",
"src": "22358:31:20"
},
"nodeType": "YulExpressionStatement",
"src": "22358:31:20"
}
]
},
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "22271:6:20",
"type": ""
}
],
"src": "22173:223:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22548:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22558:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22624:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22629:2:20",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22565:58:20"
},
"nodeType": "YulFunctionCall",
"src": "22565:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22558:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22730:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4",
"nodeType": "YulIdentifier",
"src": "22641:88:20"
},
"nodeType": "YulFunctionCall",
"src": "22641:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "22641:93:20"
},
{
"nodeType": "YulAssignment",
"src": "22743:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "22754:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22759:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22750:3:20"
},
"nodeType": "YulFunctionCall",
"src": "22750:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "22743:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "22536:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "22544:3:20",
"type": ""
}
],
"src": "22402:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22945:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22955:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22967:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22978:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22963:3:20"
},
"nodeType": "YulFunctionCall",
"src": "22963:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22955:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23002:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23013:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22998:3:20"
},
"nodeType": "YulFunctionCall",
"src": "22998:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23021:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23027:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "23017:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23017:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22991:6:20"
},
"nodeType": "YulFunctionCall",
"src": "22991:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "22991:47:20"
},
{
"nodeType": "YulAssignment",
"src": "23047:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23181:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23055:124:20"
},
"nodeType": "YulFunctionCall",
"src": "23055:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23047:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22925:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22940:4:20",
"type": ""
}
],
"src": "22774:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23305:76:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "23327:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23335:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23323:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23323:14:20"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "23339:34:20",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23316:6:20"
},
"nodeType": "YulFunctionCall",
"src": "23316:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "23316:58:20"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "23297:6:20",
"type": ""
}
],
"src": "23199:182:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23533:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23543:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23609:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23614:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "23550:58:20"
},
"nodeType": "YulFunctionCall",
"src": "23550:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23543:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23715:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "23626:88:20"
},
"nodeType": "YulFunctionCall",
"src": "23626:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "23626:93:20"
},
{
"nodeType": "YulAssignment",
"src": "23728:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "23739:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23744:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23735:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23735:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "23728:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "23521:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "23529:3:20",
"type": ""
}
],
"src": "23387:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "23930:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "23940:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23952:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23963:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23948:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23948:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "23940:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "23987:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "23998:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "23983:3:20"
},
"nodeType": "YulFunctionCall",
"src": "23983:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24006:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24012:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24002:3:20"
},
"nodeType": "YulFunctionCall",
"src": "24002:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "23976:6:20"
},
"nodeType": "YulFunctionCall",
"src": "23976:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "23976:47:20"
},
{
"nodeType": "YulAssignment",
"src": "24032:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24166:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24040:124:20"
},
"nodeType": "YulFunctionCall",
"src": "24040:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24032:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "23910:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "23925:4:20",
"type": ""
}
],
"src": "23759:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24290:69:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "24312:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24320:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24308:3:20"
},
"nodeType": "YulFunctionCall",
"src": "24308:14:20"
},
{
"hexValue": "4552433732313a20617070726f766520746f2063616c6c6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "24324:27:20",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24301:6:20"
},
"nodeType": "YulFunctionCall",
"src": "24301:51:20"
},
"nodeType": "YulExpressionStatement",
"src": "24301:51:20"
}
]
},
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "24282:6:20",
"type": ""
}
],
"src": "24184:175:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24511:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24521:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24587:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24592:2:20",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "24528:58:20"
},
"nodeType": "YulFunctionCall",
"src": "24528:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24521:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24693:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05",
"nodeType": "YulIdentifier",
"src": "24604:88:20"
},
"nodeType": "YulFunctionCall",
"src": "24604:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "24604:93:20"
},
{
"nodeType": "YulAssignment",
"src": "24706:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "24717:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24722:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24713:3:20"
},
"nodeType": "YulFunctionCall",
"src": "24713:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "24706:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "24499:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "24507:3:20",
"type": ""
}
],
"src": "24365:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "24908:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "24918:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24930:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24941:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24926:3:20"
},
"nodeType": "YulFunctionCall",
"src": "24926:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24918:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24965:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "24976:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "24961:3:20"
},
"nodeType": "YulFunctionCall",
"src": "24961:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "24984:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "24990:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "24980:3:20"
},
"nodeType": "YulFunctionCall",
"src": "24980:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "24954:6:20"
},
"nodeType": "YulFunctionCall",
"src": "24954:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "24954:47:20"
},
{
"nodeType": "YulAssignment",
"src": "25010:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25144:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25018:124:20"
},
"nodeType": "YulFunctionCall",
"src": "25018:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25010:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "24888:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "24903:4:20",
"type": ""
}
],
"src": "24737:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25268:131:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25290:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25298:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25286:3:20"
},
"nodeType": "YulFunctionCall",
"src": "25286:14:20"
},
{
"hexValue": "4552433732313a207472616e7366657220746f206e6f6e204552433732315265",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25302:34:20",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25279:6:20"
},
"nodeType": "YulFunctionCall",
"src": "25279:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "25279:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "25358:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25366:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25354:3:20"
},
"nodeType": "YulFunctionCall",
"src": "25354:15:20"
},
{
"hexValue": "63656976657220696d706c656d656e746572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "25371:20:20",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25347:6:20"
},
"nodeType": "YulFunctionCall",
"src": "25347:45:20"
},
"nodeType": "YulExpressionStatement",
"src": "25347:45:20"
}
]
},
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "25260:6:20",
"type": ""
}
],
"src": "25162:237:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25551:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25561:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25627:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25632:2:20",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "25568:58:20"
},
"nodeType": "YulFunctionCall",
"src": "25568:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25561:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25733:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e",
"nodeType": "YulIdentifier",
"src": "25644:88:20"
},
"nodeType": "YulFunctionCall",
"src": "25644:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "25644:93:20"
},
{
"nodeType": "YulAssignment",
"src": "25746:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "25757:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25762:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25753:3:20"
},
"nodeType": "YulFunctionCall",
"src": "25753:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "25746:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "25539:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "25547:3:20",
"type": ""
}
],
"src": "25405:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "25948:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "25958:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "25970:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "25981:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "25966:3:20"
},
"nodeType": "YulFunctionCall",
"src": "25966:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "25958:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26005:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26016:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26001:3:20"
},
"nodeType": "YulFunctionCall",
"src": "26001:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26024:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "26030:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "26020:3:20"
},
"nodeType": "YulFunctionCall",
"src": "26020:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "25994:6:20"
},
"nodeType": "YulFunctionCall",
"src": "25994:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "25994:47:20"
},
{
"nodeType": "YulAssignment",
"src": "26050:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26184:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "26058:124:20"
},
"nodeType": "YulFunctionCall",
"src": "26058:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "26050:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "25928:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "25943:4:20",
"type": ""
}
],
"src": "25777:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26316:34:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26326:18:20",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26341:3:20"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "26326:11:20"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26288:3:20",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "26293:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "26304:11:20",
"type": ""
}
],
"src": "26202:148:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26466:280:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "26476:53:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26523:5:20"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "26490:32:20"
},
"nodeType": "YulFunctionCall",
"src": "26490:39:20"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "26480:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "26538:96:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26622:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26627:6:20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "26545:76:20"
},
"nodeType": "YulFunctionCall",
"src": "26545:89:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26538:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "26682:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "26689:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26678:3:20"
},
"nodeType": "YulFunctionCall",
"src": "26678:16:20"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26696:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26701:6:20"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "26643:34:20"
},
"nodeType": "YulFunctionCall",
"src": "26643:65:20"
},
"nodeType": "YulExpressionStatement",
"src": "26643:65:20"
},
{
"nodeType": "YulAssignment",
"src": "26717:23:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26728:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "26733:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "26724:3:20"
},
"nodeType": "YulFunctionCall",
"src": "26724:16:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "26717:3:20"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "26447:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "26454:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "26462:3:20",
"type": ""
}
],
"src": "26356:390:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "26936:251:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "26947:102:20",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "27036:6:20"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27045:3:20"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "26954:81:20"
},
"nodeType": "YulFunctionCall",
"src": "26954:95:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "26947:3:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27059:102:20",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "27148:6:20"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27157:3:20"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "27066:81:20"
},
"nodeType": "YulFunctionCall",
"src": "27066:95:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27059:3:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "27171:10:20",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27178:3:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "27171:3:20"
}
]
}
]
},
"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": "26907:3:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "26913:6:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "26921:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "26932:3:20",
"type": ""
}
],
"src": "26752:435:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27299:127:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27321:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27329:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27317:3:20"
},
"nodeType": "YulFunctionCall",
"src": "27317:14:20"
},
{
"hexValue": "45524337323155524953746f726167653a2055524920736574206f66206e6f6e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27333:34:20",
"type": "",
"value": "ERC721URIStorage: URI set of non"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27310:6:20"
},
"nodeType": "YulFunctionCall",
"src": "27310:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "27310:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "27389:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27397:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27385:3:20"
},
"nodeType": "YulFunctionCall",
"src": "27385:15:20"
},
{
"hexValue": "6578697374656e7420746f6b656e",
"kind": "string",
"nodeType": "YulLiteral",
"src": "27402:16:20",
"type": "",
"value": "existent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "27378:6:20"
},
"nodeType": "YulFunctionCall",
"src": "27378:41:20"
},
"nodeType": "YulExpressionStatement",
"src": "27378:41:20"
}
]
},
"name": "store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "27291:6:20",
"type": ""
}
],
"src": "27193:233:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27578:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27588:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27654:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27659:2:20",
"type": "",
"value": "46"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "27595:58:20"
},
"nodeType": "YulFunctionCall",
"src": "27595:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27588:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27760:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4",
"nodeType": "YulIdentifier",
"src": "27671:88:20"
},
"nodeType": "YulFunctionCall",
"src": "27671:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "27671:93:20"
},
{
"nodeType": "YulAssignment",
"src": "27773:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "27784:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "27789:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27780:3:20"
},
"nodeType": "YulFunctionCall",
"src": "27780:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "27773:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "27566:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "27574:3:20",
"type": ""
}
],
"src": "27432:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "27975:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "27985:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "27997:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28008:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "27993:3:20"
},
"nodeType": "YulFunctionCall",
"src": "27993:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "27985:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28032:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28043:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28028:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28028:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28051:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "28057:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "28047:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28047:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28021:6:20"
},
"nodeType": "YulFunctionCall",
"src": "28021:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "28021:47:20"
},
{
"nodeType": "YulAssignment",
"src": "28077:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28211:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "28085:124:20"
},
"nodeType": "YulFunctionCall",
"src": "28085:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "28077:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "27955:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "27970:4:20",
"type": ""
}
],
"src": "27804:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28283:87:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28293:11:20",
"value": {
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "28301:3:20"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "28293:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28321:1:20",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nodeType": "YulIdentifier",
"src": "28324:3:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "28314:6:20"
},
"nodeType": "YulFunctionCall",
"src": "28314:14:20"
},
"nodeType": "YulExpressionStatement",
"src": "28314:14:20"
},
{
"nodeType": "YulAssignment",
"src": "28337:26:20",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28355:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28358:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nodeType": "YulIdentifier",
"src": "28345:9:20"
},
"nodeType": "YulFunctionCall",
"src": "28345:18:20"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "28337:4:20"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nodeType": "YulTypedName",
"src": "28270:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "28278:4:20",
"type": ""
}
],
"src": "28229:141:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28420:49:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28430:33:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28448:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28455:2:20",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "28444:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28444:14:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28460:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "28440:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28440:23:20"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "28430:6:20"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28403:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "28413:6:20",
"type": ""
}
],
"src": "28376:93:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28528:54:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "28538:37:20",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "28563:4:20"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28569:5:20"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "28559:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28559:16:20"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "28538:8:20"
}
]
}
]
},
"name": "shift_left_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "28503:4:20",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28509:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "28519:8:20",
"type": ""
}
],
"src": "28475:107:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "28664:317:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "28674:35:20",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nodeType": "YulIdentifier",
"src": "28695:10:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28707:1:20",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "28691:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28691:18:20"
},
"variables": [
{
"name": "shiftBits",
"nodeType": "YulTypedName",
"src": "28678:9:20",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "28718:109:20",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "28749:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "28760:66:20",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "28730:18:20"
},
"nodeType": "YulFunctionCall",
"src": "28730:97:20"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "28722:4:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "28836:51:20",
"value": {
"arguments": [
{
"name": "shiftBits",
"nodeType": "YulIdentifier",
"src": "28867:9:20"
},
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "28878:8:20"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nodeType": "YulIdentifier",
"src": "28848:18:20"
},
"nodeType": "YulFunctionCall",
"src": "28848:39:20"
},
"variableNames": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "28836:8:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "28896:30:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28909:5:20"
},
{
"arguments": [
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "28920:4:20"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "28916:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28916:9:20"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "28905:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28905:21:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28896:5:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "28935:40:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "28948:5:20"
},
{
"arguments": [
{
"name": "toInsert",
"nodeType": "YulIdentifier",
"src": "28959:8:20"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "28969:4:20"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "28955:3:20"
},
"nodeType": "YulFunctionCall",
"src": "28955:19:20"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "28945:2:20"
},
"nodeType": "YulFunctionCall",
"src": "28945:30:20"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "28935:6:20"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "28625:5:20",
"type": ""
},
{
"name": "shiftBytes",
"nodeType": "YulTypedName",
"src": "28632:10:20",
"type": ""
},
{
"name": "toInsert",
"nodeType": "YulTypedName",
"src": "28644:8:20",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "28657:6:20",
"type": ""
}
],
"src": "28588:393:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29019:28:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29029:12:20",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "29036:5:20"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "29029:3:20"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29005:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "29015:3:20",
"type": ""
}
],
"src": "28987:60:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29113:82:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29123:66:20",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "29181:5:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29163:17:20"
},
"nodeType": "YulFunctionCall",
"src": "29163:24:20"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "29154:8:20"
},
"nodeType": "YulFunctionCall",
"src": "29154:34:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "29136:17:20"
},
"nodeType": "YulFunctionCall",
"src": "29136:53:20"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "29123:9:20"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29093:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "29103:9:20",
"type": ""
}
],
"src": "29053:142:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29248:28:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29258:12:20",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "29265:5:20"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "29258:3:20"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "29234:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "29244:3:20",
"type": ""
}
],
"src": "29201:75:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29358:193:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "29368:63:20",
"value": {
"arguments": [
{
"name": "value_0",
"nodeType": "YulIdentifier",
"src": "29423:7:20"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "29392:30:20"
},
"nodeType": "YulFunctionCall",
"src": "29392:39:20"
},
"variables": [
{
"name": "convertedValue_0",
"nodeType": "YulTypedName",
"src": "29372:16:20",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "29447:4:20"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "29487:4:20"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "29481:5:20"
},
"nodeType": "YulFunctionCall",
"src": "29481:11:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "29494:6:20"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nodeType": "YulIdentifier",
"src": "29526:16:20"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nodeType": "YulIdentifier",
"src": "29502:23:20"
},
"nodeType": "YulFunctionCall",
"src": "29502:41:20"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nodeType": "YulIdentifier",
"src": "29453:27:20"
},
"nodeType": "YulFunctionCall",
"src": "29453:91:20"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "29440:6:20"
},
"nodeType": "YulFunctionCall",
"src": "29440:105:20"
},
"nodeType": "YulExpressionStatement",
"src": "29440:105:20"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "29335:4:20",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "29341:6:20",
"type": ""
},
{
"name": "value_0",
"nodeType": "YulTypedName",
"src": "29349:7:20",
"type": ""
}
],
"src": "29282:269:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29606:24:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29616:8:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "29623:1:20",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "29616:3:20"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "29602:3:20",
"type": ""
}
],
"src": "29557:73:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29689:136:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "29699:46:20",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nodeType": "YulIdentifier",
"src": "29713:30:20"
},
"nodeType": "YulFunctionCall",
"src": "29713:32:20"
},
"variables": [
{
"name": "zero_0",
"nodeType": "YulTypedName",
"src": "29703:6:20",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "29798:4:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "29804:6:20"
},
{
"name": "zero_0",
"nodeType": "YulIdentifier",
"src": "29812:6:20"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nodeType": "YulIdentifier",
"src": "29754:43:20"
},
"nodeType": "YulFunctionCall",
"src": "29754:65:20"
},
"nodeType": "YulExpressionStatement",
"src": "29754:65:20"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "29675:4:20",
"type": ""
},
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "29681:6:20",
"type": ""
}
],
"src": "29636:189:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "29881:136:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "29948:63:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "29992:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29999:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nodeType": "YulIdentifier",
"src": "29962:29:20"
},
"nodeType": "YulFunctionCall",
"src": "29962:39:20"
},
"nodeType": "YulExpressionStatement",
"src": "29962:39:20"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "29901:5:20"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "29908:3:20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "29898:2:20"
},
"nodeType": "YulFunctionCall",
"src": "29898:14:20"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "29913:26:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "29915:22:20",
"value": {
"arguments": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "29928:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "29935:1:20",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "29924:3:20"
},
"nodeType": "YulFunctionCall",
"src": "29924:13:20"
},
"variableNames": [
{
"name": "start",
"nodeType": "YulIdentifier",
"src": "29915:5:20"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "29895:2:20",
"statements": []
},
"src": "29891:120:20"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nodeType": "YulTypedName",
"src": "29869:5:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "29876:3:20",
"type": ""
}
],
"src": "29831:186:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30102:464:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "30128:431:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "30142:54:20",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "30190:5:20"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "30158:31:20"
},
"nodeType": "YulFunctionCall",
"src": "30158:38:20"
},
"variables": [
{
"name": "dataArea",
"nodeType": "YulTypedName",
"src": "30146:8:20",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "30209:63:20",
"value": {
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "30232:8:20"
},
{
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "30260:10:20"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "30242:17:20"
},
"nodeType": "YulFunctionCall",
"src": "30242:29:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30228:3:20"
},
"nodeType": "YulFunctionCall",
"src": "30228:44:20"
},
"variables": [
{
"name": "deleteStart",
"nodeType": "YulTypedName",
"src": "30213:11:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "30429:27:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30431:23:20",
"value": {
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "30446:8:20"
},
"variableNames": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "30431:11:20"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nodeType": "YulIdentifier",
"src": "30413:10:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30425:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "30410:2:20"
},
"nodeType": "YulFunctionCall",
"src": "30410:18:20"
},
"nodeType": "YulIf",
"src": "30407:49:20"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nodeType": "YulIdentifier",
"src": "30498:11:20"
},
{
"arguments": [
{
"name": "dataArea",
"nodeType": "YulIdentifier",
"src": "30515:8:20"
},
{
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "30543:3:20"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nodeType": "YulIdentifier",
"src": "30525:17:20"
},
"nodeType": "YulFunctionCall",
"src": "30525:22:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "30511:3:20"
},
"nodeType": "YulFunctionCall",
"src": "30511:37:20"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nodeType": "YulIdentifier",
"src": "30469:28:20"
},
"nodeType": "YulFunctionCall",
"src": "30469:80:20"
},
"nodeType": "YulExpressionStatement",
"src": "30469:80:20"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "30119:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30124:2:20",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "30116:2:20"
},
"nodeType": "YulFunctionCall",
"src": "30116:11:20"
},
"nodeType": "YulIf",
"src": "30113:446:20"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "30078:5:20",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "30085:3:20",
"type": ""
},
{
"name": "startIndex",
"nodeType": "YulTypedName",
"src": "30090:10:20",
"type": ""
}
],
"src": "30023:543:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30635:54:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "30645:37:20",
"value": {
"arguments": [
{
"name": "bits",
"nodeType": "YulIdentifier",
"src": "30670:4:20"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "30676:5:20"
}
],
"functionName": {
"name": "shr",
"nodeType": "YulIdentifier",
"src": "30666:3:20"
},
"nodeType": "YulFunctionCall",
"src": "30666:16:20"
},
"variableNames": [
{
"name": "newValue",
"nodeType": "YulIdentifier",
"src": "30645:8:20"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nodeType": "YulTypedName",
"src": "30610:4:20",
"type": ""
},
{
"name": "value",
"nodeType": "YulTypedName",
"src": "30616:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nodeType": "YulTypedName",
"src": "30626:8:20",
"type": ""
}
],
"src": "30572:117:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30746:118:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "30756:68:20",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30805:1:20",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nodeType": "YulIdentifier",
"src": "30808:5:20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "30801:3:20"
},
"nodeType": "YulFunctionCall",
"src": "30801:13:20"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "30820:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "30816:3:20"
},
"nodeType": "YulFunctionCall",
"src": "30816:6:20"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nodeType": "YulIdentifier",
"src": "30772:28:20"
},
"nodeType": "YulFunctionCall",
"src": "30772:51:20"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "30768:3:20"
},
"nodeType": "YulFunctionCall",
"src": "30768:56:20"
},
"variables": [
{
"name": "mask",
"nodeType": "YulTypedName",
"src": "30760:4:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "30833:25:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "30847:4:20"
},
{
"name": "mask",
"nodeType": "YulIdentifier",
"src": "30853:4:20"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "30843:3:20"
},
"nodeType": "YulFunctionCall",
"src": "30843:15:20"
},
"variableNames": [
{
"name": "result",
"nodeType": "YulIdentifier",
"src": "30833:6:20"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "30723:4:20",
"type": ""
},
{
"name": "bytes",
"nodeType": "YulTypedName",
"src": "30729:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nodeType": "YulTypedName",
"src": "30739:6:20",
"type": ""
}
],
"src": "30695:169:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "30950:214:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31083:37:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31110:4:20"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "31116:3:20"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "31091:18:20"
},
"nodeType": "YulFunctionCall",
"src": "31091:29:20"
},
"variableNames": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31083:4:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "31129:29:20",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "31140:4:20"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31150:1:20",
"type": "",
"value": "2"
},
{
"name": "len",
"nodeType": "YulIdentifier",
"src": "31153:3:20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "31146:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31146:11:20"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "31137:2:20"
},
"nodeType": "YulFunctionCall",
"src": "31137:21:20"
},
"variableNames": [
{
"name": "used",
"nodeType": "YulIdentifier",
"src": "31129:4:20"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "30931:4:20",
"type": ""
},
{
"name": "len",
"nodeType": "YulTypedName",
"src": "30937:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nodeType": "YulTypedName",
"src": "30945:4:20",
"type": ""
}
],
"src": "30869:295:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "31261:1303:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "31272:51:20",
"value": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "31319:3:20"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "31286:32:20"
},
"nodeType": "YulFunctionCall",
"src": "31286:37:20"
},
"variables": [
{
"name": "newLen",
"nodeType": "YulTypedName",
"src": "31276:6:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "31408:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "31410:16:20"
},
"nodeType": "YulFunctionCall",
"src": "31410:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "31410:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "31380:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31388:18:20",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "31377:2:20"
},
"nodeType": "YulFunctionCall",
"src": "31377:30:20"
},
"nodeType": "YulIf",
"src": "31374:56:20"
},
{
"nodeType": "YulVariableDeclaration",
"src": "31440:52:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "31486:4:20"
}
],
"functionName": {
"name": "sload",
"nodeType": "YulIdentifier",
"src": "31480:5:20"
},
"nodeType": "YulFunctionCall",
"src": "31480:11:20"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nodeType": "YulIdentifier",
"src": "31454:25:20"
},
"nodeType": "YulFunctionCall",
"src": "31454:38:20"
},
"variables": [
{
"name": "oldLen",
"nodeType": "YulTypedName",
"src": "31444:6:20",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "31585:4:20"
},
{
"name": "oldLen",
"nodeType": "YulIdentifier",
"src": "31591:6:20"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "31599:6:20"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nodeType": "YulIdentifier",
"src": "31539:45:20"
},
"nodeType": "YulFunctionCall",
"src": "31539:67:20"
},
"nodeType": "YulExpressionStatement",
"src": "31539:67:20"
},
{
"nodeType": "YulVariableDeclaration",
"src": "31616:18:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "31633:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nodeType": "YulTypedName",
"src": "31620:9:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "31644:17:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "31657:4:20",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "31644:9:20"
}
]
},
{
"cases": [
{
"body": {
"nodeType": "YulBlock",
"src": "31708:611:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "31722:37:20",
"value": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "31741:6:20"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31753:4:20",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "31749:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31749:9:20"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "31737:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31737:22:20"
},
"variables": [
{
"name": "loopEnd",
"nodeType": "YulTypedName",
"src": "31726:7:20",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "31773:51:20",
"value": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "31819:4:20"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nodeType": "YulIdentifier",
"src": "31787:31:20"
},
"nodeType": "YulFunctionCall",
"src": "31787:37:20"
},
"variables": [
{
"name": "dstPtr",
"nodeType": "YulTypedName",
"src": "31777:6:20",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "31837:10:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "31846:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "31841:1:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "31905:163:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "31930:6:20"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "31948:3:20"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "31953:9:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31944:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31944:19:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "31938:5:20"
},
"nodeType": "YulFunctionCall",
"src": "31938:26:20"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "31923:6:20"
},
"nodeType": "YulFunctionCall",
"src": "31923:42:20"
},
"nodeType": "YulExpressionStatement",
"src": "31923:42:20"
},
{
"nodeType": "YulAssignment",
"src": "31982:24:20",
"value": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "31996:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32004:1:20",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31992:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31992:14:20"
},
"variableNames": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "31982:6:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "32023:31:20",
"value": {
"arguments": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "32040:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32051:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32036:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32036:18:20"
},
"variableNames": [
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "32023:9:20"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "31871:1:20"
},
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "31874:7:20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "31868:2:20"
},
"nodeType": "YulFunctionCall",
"src": "31868:14:20"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "31883:21:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "31885:17:20",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "31894:1:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31897:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "31890:3:20"
},
"nodeType": "YulFunctionCall",
"src": "31890:12:20"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "31885:1:20"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "31864:3:20",
"statements": []
},
"src": "31860:208:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32104:156:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "32122:43:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "32149:3:20"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "32154:9:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32145:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32145:19:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "32139:5:20"
},
"nodeType": "YulFunctionCall",
"src": "32139:26:20"
},
"variables": [
{
"name": "lastValue",
"nodeType": "YulTypedName",
"src": "32126:9:20",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nodeType": "YulIdentifier",
"src": "32189:6:20"
},
{
"arguments": [
{
"name": "lastValue",
"nodeType": "YulIdentifier",
"src": "32216:9:20"
},
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "32231:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32239:4:20",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "32227:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32227:17:20"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nodeType": "YulIdentifier",
"src": "32197:18:20"
},
"nodeType": "YulFunctionCall",
"src": "32197:48:20"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "32182:6:20"
},
"nodeType": "YulFunctionCall",
"src": "32182:64:20"
},
"nodeType": "YulExpressionStatement",
"src": "32182:64:20"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nodeType": "YulIdentifier",
"src": "32087:7:20"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "32096:6:20"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "32084:2:20"
},
"nodeType": "YulFunctionCall",
"src": "32084:19:20"
},
"nodeType": "YulIf",
"src": "32081:179:20"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "32280:4:20"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "32294:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32302:1:20",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "32290:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32290:14:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32306:1:20",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32286:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32286:22:20"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "32273:6:20"
},
"nodeType": "YulFunctionCall",
"src": "32273:36:20"
},
"nodeType": "YulExpressionStatement",
"src": "32273:36:20"
}
]
},
"nodeType": "YulCase",
"src": "31701:618:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "31706:1:20",
"type": "",
"value": "1"
}
},
{
"body": {
"nodeType": "YulBlock",
"src": "32336:222:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "32350:14:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "32363:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32354:5:20",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "32387:67:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32405:35:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "32424:3:20"
},
{
"name": "srcOffset",
"nodeType": "YulIdentifier",
"src": "32429:9:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32420:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32420:19:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "32414:5:20"
},
"nodeType": "YulFunctionCall",
"src": "32414:26:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32405:5:20"
}
]
}
]
},
"condition": {
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "32380:6:20"
},
"nodeType": "YulIf",
"src": "32377:77:20"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nodeType": "YulIdentifier",
"src": "32474:4:20"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32533:5:20"
},
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "32540:6:20"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nodeType": "YulIdentifier",
"src": "32480:52:20"
},
"nodeType": "YulFunctionCall",
"src": "32480:67:20"
}
],
"functionName": {
"name": "sstore",
"nodeType": "YulIdentifier",
"src": "32467:6:20"
},
"nodeType": "YulFunctionCall",
"src": "32467:81:20"
},
"nodeType": "YulExpressionStatement",
"src": "32467:81:20"
}
]
},
"nodeType": "YulCase",
"src": "32328:230:20",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nodeType": "YulIdentifier",
"src": "31681:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "31689:2:20",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "31678:2:20"
},
"nodeType": "YulFunctionCall",
"src": "31678:14:20"
},
"nodeType": "YulSwitch",
"src": "31671:887:20"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nodeType": "YulTypedName",
"src": "31250:4:20",
"type": ""
},
{
"name": "src",
"nodeType": "YulTypedName",
"src": "31256:3:20",
"type": ""
}
],
"src": "31169:1395:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32628:40:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "32639:22:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32655:5:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "32649:5:20"
},
"nodeType": "YulFunctionCall",
"src": "32649:12:20"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "32639:6:20"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32611:5:20",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "32621:6:20",
"type": ""
}
],
"src": "32570:98:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32769:73:20",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32786:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "32791:6:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "32779:6:20"
},
"nodeType": "YulFunctionCall",
"src": "32779:19:20"
},
"nodeType": "YulExpressionStatement",
"src": "32779:19:20"
},
{
"nodeType": "YulAssignment",
"src": "32807:29:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "32826:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "32831:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "32822:3:20"
},
"nodeType": "YulFunctionCall",
"src": "32822:14:20"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "32807:11:20"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "32741:3:20",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "32746:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "32757:11:20",
"type": ""
}
],
"src": "32674:168:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "32938:283:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "32948:52:20",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "32994:5:20"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "32962:31:20"
},
"nodeType": "YulFunctionCall",
"src": "32962:38:20"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "32952:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "33009:77:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33074:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33079:6:20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "33016:57:20"
},
"nodeType": "YulFunctionCall",
"src": "33016:70:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33009:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33134:5:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33141:4:20",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33130:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33130:16:20"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33148:3:20"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33153:6:20"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nodeType": "YulIdentifier",
"src": "33095:34:20"
},
"nodeType": "YulFunctionCall",
"src": "33095:65:20"
},
"nodeType": "YulExpressionStatement",
"src": "33095:65:20"
},
{
"nodeType": "YulAssignment",
"src": "33169:46:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "33180:3:20"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "33207:6:20"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "33185:21:20"
},
"nodeType": "YulFunctionCall",
"src": "33185:29:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33176:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33176:39:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "33169:3:20"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "32919:5:20",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "32926:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "32934:3:20",
"type": ""
}
],
"src": "32848:373:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33427:440:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33437:27:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33449:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33460:3:20",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33445:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33445:19:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33437:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "33518:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33531:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33542:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33527:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33527:17:20"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "33474:43:20"
},
"nodeType": "YulFunctionCall",
"src": "33474:71:20"
},
"nodeType": "YulExpressionStatement",
"src": "33474:71:20"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "33599:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33612:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33623:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33608:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33608:18:20"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "33555:43:20"
},
"nodeType": "YulFunctionCall",
"src": "33555:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "33555:72:20"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "33681:6:20"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33694:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33705:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33690:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33690:18:20"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "33637:43:20"
},
"nodeType": "YulFunctionCall",
"src": "33637:72:20"
},
"nodeType": "YulExpressionStatement",
"src": "33637:72:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33730:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "33741:2:20",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "33726:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33726:18:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33750:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "33756:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "33746:3:20"
},
"nodeType": "YulFunctionCall",
"src": "33746:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "33719:6:20"
},
"nodeType": "YulFunctionCall",
"src": "33719:48:20"
},
"nodeType": "YulExpressionStatement",
"src": "33719:48:20"
},
{
"nodeType": "YulAssignment",
"src": "33776:84:20",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "33846:6:20"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33855:4:20"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "33784:61:20"
},
"nodeType": "YulFunctionCall",
"src": "33784:76:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "33776:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "33375:9:20",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "33387:6:20",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "33395:6:20",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "33403:6:20",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "33411:6:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "33422:4:20",
"type": ""
}
],
"src": "33227:640:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "33935:79:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "33945:22:20",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "33960:6:20"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "33954:5:20"
},
"nodeType": "YulFunctionCall",
"src": "33954:13:20"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "33945:5:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "34002:5:20"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "33976:25:20"
},
"nodeType": "YulFunctionCall",
"src": "33976:32:20"
},
"nodeType": "YulExpressionStatement",
"src": "33976:32:20"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "33913:6:20",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "33921:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "33929:5:20",
"type": ""
}
],
"src": "33873:141:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34096:273:20",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "34142:83:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "34144:77:20"
},
"nodeType": "YulFunctionCall",
"src": "34144:79:20"
},
"nodeType": "YulExpressionStatement",
"src": "34144:79:20"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "34117:7:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34126:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "34113:3:20"
},
"nodeType": "YulFunctionCall",
"src": "34113:23:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34138:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "34109:3:20"
},
"nodeType": "YulFunctionCall",
"src": "34109:32:20"
},
"nodeType": "YulIf",
"src": "34106:119:20"
},
{
"nodeType": "YulBlock",
"src": "34235:127:20",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "34250:15:20",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "34264:1:20",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "34254:6:20",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "34279:73:20",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "34324:9:20"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "34335:6:20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34320:3:20"
},
"nodeType": "YulFunctionCall",
"src": "34320:22:20"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "34344:7:20"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "34289:30:20"
},
"nodeType": "YulFunctionCall",
"src": "34289:63:20"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "34279:6:20"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "34066:9:20",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "34077:7:20",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "34089:6:20",
"type": ""
}
],
"src": "34020:349:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34481:134:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34503:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34511:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34499:3:20"
},
"nodeType": "YulFunctionCall",
"src": "34499:14:20"
},
{
"hexValue": "455243373231456e756d657261626c653a20636f6e7365637574697665207472",
"kind": "string",
"nodeType": "YulLiteral",
"src": "34515:34:20",
"type": "",
"value": "ERC721Enumerable: consecutive tr"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34492:6:20"
},
"nodeType": "YulFunctionCall",
"src": "34492:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "34492:58:20"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "34571:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34579:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34567:3:20"
},
"nodeType": "YulFunctionCall",
"src": "34567:15:20"
},
{
"hexValue": "616e7366657273206e6f7420737570706f72746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "34584:23:20",
"type": "",
"value": "ansfers not supported"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "34560:6:20"
},
"nodeType": "YulFunctionCall",
"src": "34560:48:20"
},
"nodeType": "YulExpressionStatement",
"src": "34560:48:20"
}
]
},
"name": "store_literal_in_memory_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "34473:6:20",
"type": ""
}
],
"src": "34375:240:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "34767:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "34777:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34843:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34848:2:20",
"type": "",
"value": "53"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "34784:58:20"
},
"nodeType": "YulFunctionCall",
"src": "34784:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34777:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34949:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314",
"nodeType": "YulIdentifier",
"src": "34860:88:20"
},
"nodeType": "YulFunctionCall",
"src": "34860:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "34860:93:20"
},
{
"nodeType": "YulAssignment",
"src": "34962:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "34973:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "34978:2:20",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "34969:3:20"
},
"nodeType": "YulFunctionCall",
"src": "34969:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "34962:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "34755:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "34763:3:20",
"type": ""
}
],
"src": "34621:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35164:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35174:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35186:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35197:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35182:3:20"
},
"nodeType": "YulFunctionCall",
"src": "35182:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35174:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35221:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35232:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35217:3:20"
},
"nodeType": "YulFunctionCall",
"src": "35217:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35240:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "35246:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "35236:3:20"
},
"nodeType": "YulFunctionCall",
"src": "35236:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35210:6:20"
},
"nodeType": "YulFunctionCall",
"src": "35210:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "35210:47:20"
},
{
"nodeType": "YulAssignment",
"src": "35266:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35400:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "35274:124:20"
},
"nodeType": "YulFunctionCall",
"src": "35274:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "35266:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "35144:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "35159:4:20",
"type": ""
}
],
"src": "34993:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35446:152:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35463:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35466:77:20",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35456:6:20"
},
"nodeType": "YulFunctionCall",
"src": "35456:88:20"
},
"nodeType": "YulExpressionStatement",
"src": "35456:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35560:1:20",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35563:4:20",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35553:6:20"
},
"nodeType": "YulFunctionCall",
"src": "35553:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "35553:15:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35584:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35587:4:20",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "35577:6:20"
},
"nodeType": "YulFunctionCall",
"src": "35577:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "35577:15:20"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "35418:180:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35710:76:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "35732:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "35740:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "35728:3:20"
},
"nodeType": "YulFunctionCall",
"src": "35728:14:20"
},
{
"hexValue": "4552433732313a206d696e7420746f20746865207a65726f2061646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "35744:34:20",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "35721:6:20"
},
"nodeType": "YulFunctionCall",
"src": "35721:58:20"
},
"nodeType": "YulExpressionStatement",
"src": "35721:58:20"
}
]
},
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "35702:6:20",
"type": ""
}
],
"src": "35604:182:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "35938:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "35948:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36014:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36019:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "35955:58:20"
},
"nodeType": "YulFunctionCall",
"src": "35955:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "35948:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36120:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6",
"nodeType": "YulIdentifier",
"src": "36031:88:20"
},
"nodeType": "YulFunctionCall",
"src": "36031:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "36031:93:20"
},
{
"nodeType": "YulAssignment",
"src": "36133:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36144:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36149:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36140:3:20"
},
"nodeType": "YulFunctionCall",
"src": "36140:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "36133:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "35926:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "35934:3:20",
"type": ""
}
],
"src": "35792:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36335:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36345:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36357:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36368:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36353:3:20"
},
"nodeType": "YulFunctionCall",
"src": "36353:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36345:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36392:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36403:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36388:3:20"
},
"nodeType": "YulFunctionCall",
"src": "36388:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36411:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "36417:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "36407:3:20"
},
"nodeType": "YulFunctionCall",
"src": "36407:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36381:6:20"
},
"nodeType": "YulFunctionCall",
"src": "36381:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "36381:47:20"
},
{
"nodeType": "YulAssignment",
"src": "36437:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36571:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "36445:124:20"
},
"nodeType": "YulFunctionCall",
"src": "36445:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "36437:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "36315:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "36330:4:20",
"type": ""
}
],
"src": "36164:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36695:72:20",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "36717:6:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "36725:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "36713:3:20"
},
"nodeType": "YulFunctionCall",
"src": "36713:14:20"
},
{
"hexValue": "4552433732313a20746f6b656e20616c7265616479206d696e746564",
"kind": "string",
"nodeType": "YulLiteral",
"src": "36729:30:20",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "36706:6:20"
},
"nodeType": "YulFunctionCall",
"src": "36706:54:20"
},
"nodeType": "YulExpressionStatement",
"src": "36706:54:20"
}
]
},
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "36687:6:20",
"type": ""
}
],
"src": "36589:178:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "36919:220:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "36929:74:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36995:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37000:2:20",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "36936:58:20"
},
"nodeType": "YulFunctionCall",
"src": "36936:67:20"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "36929:3:20"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37101:3:20"
}
],
"functionName": {
"name": "store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57",
"nodeType": "YulIdentifier",
"src": "37012:88:20"
},
"nodeType": "YulFunctionCall",
"src": "37012:93:20"
},
"nodeType": "YulExpressionStatement",
"src": "37012:93:20"
},
{
"nodeType": "YulAssignment",
"src": "37114:19:20",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "37125:3:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37130:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37121:3:20"
},
"nodeType": "YulFunctionCall",
"src": "37121:12:20"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "37114:3:20"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "36907:3:20",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "36915:3:20",
"type": ""
}
],
"src": "36773:366:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37316:248:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37326:26:20",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37338:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37349:2:20",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37334:3:20"
},
"nodeType": "YulFunctionCall",
"src": "37334:18:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37326:4:20"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37373:9:20"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37384:1:20",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "37369:3:20"
},
"nodeType": "YulFunctionCall",
"src": "37369:17:20"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37392:4:20"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "37398:9:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "37388:3:20"
},
"nodeType": "YulFunctionCall",
"src": "37388:20:20"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37362:6:20"
},
"nodeType": "YulFunctionCall",
"src": "37362:47:20"
},
"nodeType": "YulExpressionStatement",
"src": "37362:47:20"
},
{
"nodeType": "YulAssignment",
"src": "37418:139:20",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37552:4:20"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "37426:124:20"
},
"nodeType": "YulFunctionCall",
"src": "37426:131:20"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "37418:4:20"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "37296:9:20",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "37311:4:20",
"type": ""
}
],
"src": "37145:419:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37598:152:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37615:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37618:77:20",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37608:6:20"
},
"nodeType": "YulFunctionCall",
"src": "37608:88:20"
},
"nodeType": "YulExpressionStatement",
"src": "37608:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37712:1:20",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37715:4:20",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37705:6:20"
},
"nodeType": "YulFunctionCall",
"src": "37705:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "37705:15:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37736:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "37739:4:20",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "37729:6:20"
},
"nodeType": "YulFunctionCall",
"src": "37729:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "37729:15:20"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "37570:180:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37801:149:20",
"statements": [
{
"nodeType": "YulAssignment",
"src": "37811:25:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37834:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37816:17:20"
},
"nodeType": "YulFunctionCall",
"src": "37816:20:20"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37811:1:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "37845:25:20",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37868:1:20"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "37850:17:20"
},
"nodeType": "YulFunctionCall",
"src": "37850:20:20"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37845:1:20"
}
]
},
{
"nodeType": "YulAssignment",
"src": "37879:17:20",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37891:1:20"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "37894:1:20"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "37887:3:20"
},
"nodeType": "YulFunctionCall",
"src": "37887:9:20"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "37879:4:20"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "37921:22:20",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "37923:16:20"
},
"nodeType": "YulFunctionCall",
"src": "37923:18:20"
},
"nodeType": "YulExpressionStatement",
"src": "37923:18:20"
}
]
},
"condition": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "37912:4:20"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "37918:1:20"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "37909:2:20"
},
"nodeType": "YulFunctionCall",
"src": "37909:11:20"
},
"nodeType": "YulIf",
"src": "37906:37:20"
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "37787:1:20",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "37790:1:20",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "37796:4:20",
"type": ""
}
],
"src": "37756:194:20"
},
{
"body": {
"nodeType": "YulBlock",
"src": "37984:152:20",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38001:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38004:77:20",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "37994:6:20"
},
"nodeType": "YulFunctionCall",
"src": "37994:88:20"
},
"nodeType": "YulExpressionStatement",
"src": "37994:88:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38098:1:20",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38101:4:20",
"type": "",
"value": "0x31"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "38091:6:20"
},
"nodeType": "YulFunctionCall",
"src": "38091:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "38091:15:20"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38122:1:20",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "38125:4:20",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "38115:6:20"
},
"nodeType": "YulFunctionCall",
"src": "38115:15:20"
},
"nodeType": "YulExpressionStatement",
"src": "38115:15:20"
}
]
},
"name": "panic_error_0x31",
"nodeType": "YulFunctionDefinition",
"src": "37956:180:20"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_bytes4(value) -> cleaned {\n cleaned := and(value, 0xffffffff00000000000000000000000000000000000000000000000000000000)\n }\n\n function validator_revert_t_bytes4(value) {\n if iszero(eq(value, cleanup_t_bytes4(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes4(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n mstore(add(dst, length), 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_bool(add(headStart, offset), dataEnd)\n }\n\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory_with_cleanup(src, dst, length)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3 {\n if slt(sub(dataEnd, headStart), 128) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 96))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value3 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory_with_cleanup(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_addresst_string_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function 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 store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approval to current owne\")\n\n mstore(add(memPtr, 32), \"r\")\n\n }\n\n function abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 33)\n store_literal_in_memory_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve caller is not to\")\n\n mstore(add(memPtr, 32), \"ken owner or approved for all\")\n\n }\n\n function abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 61)\n store_literal_in_memory_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_c6e14a63ffb144eeef7cce6988e5dce07c60a7e0a7b1ef25dbe18c61483e0a83_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: caller is not token owne\")\n\n mstore(add(memPtr, 32), \"r or approved\")\n\n }\n\n function abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 45)\n store_literal_in_memory_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_12a8e5623d251e191fe4a291d9a59bcc01a4db7a1f5c20fc8de44358c18308af_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Enumerable: owner index ou\")\n\n mstore(add(memPtr, 32), \"t of bounds\")\n\n }\n\n function abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 43)\n store_literal_in_memory_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Enumerable: global index o\")\n\n mstore(add(memPtr, 32), \"ut of bounds\")\n\n }\n\n function abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 44)\n store_literal_in_memory_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: invalid token ID\")\n\n }\n\n function abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n store_literal_in_memory_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_b08d2b0fec7cc108ab049809a8beb42779d969a49299d0c317c907d9db22974f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: address zero is not a va\")\n\n mstore(add(memPtr, 32), \"lid owner\")\n\n }\n\n function abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 41)\n store_literal_in_memory_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_6d05c90094f31cfeb8f0eb86f0a513af3f7f8992991fbde41b08aa7960677159_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer from incorrect \")\n\n mstore(add(memPtr, 32), \"owner\")\n\n }\n\n function abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 37)\n store_literal_in_memory_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_277f8ee9d5b4fc3c4149386f24de0fc1bbc63a8210e2197bfd1c0376a2ac5f48_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to the zero add\")\n\n mstore(add(memPtr, 32), \"ress\")\n\n }\n\n function abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 36)\n store_literal_in_memory_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: approve to caller\")\n\n }\n\n function abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: transfer to non ERC721Re\")\n\n mstore(add(memPtr, 32), \"ceiver implementer\")\n\n }\n\n function abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 50)\n store_literal_in_memory_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value1, value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value1, pos)\n\n end := pos\n }\n\n function store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721URIStorage: URI set of non\")\n\n mstore(add(memPtr, 32), \"existent token\")\n\n }\n\n function abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 46)\n store_literal_in_memory_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_7521de1f20ce4d7bb86b61090bad73a87315a1f4baff36cc352901c7777280c4_to_t_string_memory_ptr_fromStack( tail)\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 identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n mstore(add(headStart, 96), sub(tail, headStart))\n tail := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack(value3, tail)\n\n }\n\n function abi_decode_t_bytes4_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes4(value)\n }\n\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes4_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function store_literal_in_memory_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721Enumerable: consecutive tr\")\n\n mstore(add(memPtr, 32), \"ansfers not supported\")\n\n }\n\n function abi_encode_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 53)\n store_literal_in_memory_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_da49291af84b6a1e37ed9eacd9a67360593e4a0e561cb261a6a738f621783314_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x12() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n\n function store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: mint to the zero address\")\n\n }\n\n function abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(memPtr) {\n\n mstore(add(memPtr, 0), \"ERC721: token already minted\")\n\n }\n\n function abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 28)\n store_literal_in_memory_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n diff := sub(x, y)\n\n if gt(diff, x) { panic_error_0x11() }\n\n }\n\n function panic_error_0x31() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x31)\n revert(0, 0x24)\n }\n\n}\n",
"id": 20,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063b88d4fde11610071578063b88d4fde14610343578063c87b56dd1461035f578063d204c45e1461038f578063e985e9c5146103ab578063f2fde38b146103db5761012c565b806370a08231146102b1578063715018a6146102e15780638da5cb5b146102eb57806395d89b4114610309578063a22cb465146103275761012c565b806323b872dd116100f457806323b872dd146101e95780632f745c591461020557806342842e0e146102355780634f6ccce7146102515780636352211e146102815761012c565b806301ffc9a71461013157806306fdde0314610161578063081812fc1461017f578063095ea7b3146101af57806318160ddd146101cb575b600080fd5b61014b60048036038101906101469190612375565b6103f7565b60405161015891906123bd565b60405180910390f35b610169610409565b6040516101769190612468565b60405180910390f35b610199600480360381019061019491906124c0565b61049b565b6040516101a6919061252e565b60405180910390f35b6101c960048036038101906101c49190612575565b6104e1565b005b6101d36105f8565b6040516101e091906125c4565b60405180910390f35b61020360048036038101906101fe91906125df565b610605565b005b61021f600480360381019061021a9190612575565b610665565b60405161022c91906125c4565b60405180910390f35b61024f600480360381019061024a91906125df565b61070a565b005b61026b600480360381019061026691906124c0565b61072a565b60405161027891906125c4565b60405180910390f35b61029b600480360381019061029691906124c0565b61079b565b6040516102a8919061252e565b60405180910390f35b6102cb60048036038101906102c69190612632565b610821565b6040516102d891906125c4565b60405180910390f35b6102e96108d8565b005b6102f36108ec565b604051610300919061252e565b60405180910390f35b610311610916565b60405161031e9190612468565b60405180910390f35b610341600480360381019061033c919061268b565b6109a8565b005b61035d60048036038101906103589190612800565b6109be565b005b610379600480360381019061037491906124c0565b610a20565b6040516103869190612468565b60405180910390f35b6103a960048036038101906103a49190612924565b610a32565b005b6103c560048036038101906103c09190612980565b610a6b565b6040516103d291906123bd565b60405180910390f35b6103f560048036038101906103f09190612632565b610aff565b005b600061040282610b82565b9050919050565b606060008054610418906129ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610444906129ef565b80156104915780601f1061046657610100808354040283529160200191610491565b820191906000526020600020905b81548152906001019060200180831161047457829003601f168201915b5050505050905090565b60006104a682610be3565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006104ec8261079b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361055c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055390612a92565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661057b610c2e565b73ffffffffffffffffffffffffffffffffffffffff1614806105aa57506105a9816105a4610c2e565b610a6b565b5b6105e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e090612b24565b60405180910390fd5b6105f38383610c36565b505050565b6000600880549050905090565b610616610610610c2e565b82610cef565b610655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161064c90612bb6565b60405180910390fd5b610660838383610d84565b505050565b600061067083610821565b82106106b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a890612c48565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610725838383604051806020016040528060008152506109be565b505050565b60006107346105f8565b8210610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c90612cda565b60405180910390fd5b6008828154811061078957610788612cfa565b5b90600052602060002001549050919050565b6000806107a78361107d565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080f90612d75565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610891576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088890612e07565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108e06110ba565b6108ea6000611138565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610925906129ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610951906129ef565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b5050505050905090565b6109ba6109b3610c2e565b83836111fe565b5050565b6109cf6109c9610c2e565b83610cef565b610a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0590612bb6565b60405180910390fd5b610a1a8484848461136a565b50505050565b6060610a2b826113c6565b9050919050565b610a3a6110ba565b6000610a46600c6114d8565b9050610a52600c6114e6565b610a5c83826114fc565b610a66818361151a565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610b076110ba565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6d90612e99565b60405180910390fd5b610b7f81611138565b50565b6000634906490660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bdc5750610bdb826115be565b5b9050919050565b610bec81611638565b610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290612d75565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16610ca98361079b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610cfb8361079b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610d3d5750610d3c8185610a6b565b5b80610d7b57508373ffffffffffffffffffffffffffffffffffffffff16610d638461049b565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16610da48261079b565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190612f2b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6090612fbd565b60405180910390fd5b610e768383836001611679565b8273ffffffffffffffffffffffffffffffffffffffff16610e968261079b565b73ffffffffffffffffffffffffffffffffffffffff1614610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee390612f2b565b60405180910390fd5b6004600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611078838383600161168b565b505050565b60006002600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6110c2610c2e565b73ffffffffffffffffffffffffffffffffffffffff166110e06108ec565b73ffffffffffffffffffffffffffffffffffffffff1614611136576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112d90613029565b60405180910390fd5b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361126c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126390613095565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161135d91906123bd565b60405180910390a3505050565b611375848484610d84565b61138184848484611691565b6113c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b790613127565b60405180910390fd5b50505050565b60606113d182610be3565b6000600a600084815260200190815260200160002080546113f1906129ef565b80601f016020809104026020016040519081016040528092919081815260200182805461141d906129ef565b801561146a5780601f1061143f5761010080835404028352916020019161146a565b820191906000526020600020905b81548152906001019060200180831161144d57829003601f168201915b50505050509050600061147b611818565b905060008151036114905781925050506114d3565b6000825111156114c55780826040516020016114ad929190613183565b604051602081830303815290604052925050506114d3565b6114ce8461182f565b925050505b919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b611516828260405180602001604052806000815250611897565b5050565b61152382611638565b611562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155990613219565b60405180910390fd5b80600a6000848152602001908152602001600020908161158291906133e5565b507ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce7826040516115b291906125c4565b60405180910390a15050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806116315750611630826118f2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff1661165a8361107d565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b611685848484846119d4565b50505050565b50505050565b60006116b28473ffffffffffffffffffffffffffffffffffffffff16611b32565b1561180b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026116db610c2e565b8786866040518563ffffffff1660e01b81526004016116fd949392919061350c565b6020604051808303816000875af192505050801561173957506040513d601f19601f82011682018060405250810190611736919061356d565b60015b6117bb573d8060008114611769576040519150601f19603f3d011682016040523d82523d6000602084013e61176e565b606091505b5060008151036117b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117aa90613127565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611810565b600190505b949350505050565b606060405180602001604052806000815250905090565b606061183a82610be3565b6000611844611818565b90506000815111611864576040518060200160405280600081525061188f565b8061186e84611b55565b60405160200161187f929190613183565b6040516020818303038152906040525b915050919050565b6118a18383611c23565b6118ae6000848484611691565b6118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e490613127565b60405180910390fd5b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119bd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119cd57506119cc82611e40565b5b9050919050565b6119e084848484611eaa565b6001811115611a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1b9061360c565b60405180910390fd5b6000829050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611a6b57611a6681611eb0565b611aaa565b8373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614611aa957611aa88582611ef9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611aec57611ae781612066565b611b2b565b8473ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614611b2a57611b298482612137565b5b5b5050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b606060006001611b64846121b6565b01905060008167ffffffffffffffff811115611b8357611b826126d5565b5b6040519080825280601f01601f191660200182016040528015611bb55781602001600182028036833780820191505090505b509050600082602001820190505b600115611c18578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611c0c57611c0b61362c565b5b04945060008503611bc3575b819350505050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c89906136a7565b60405180910390fd5b611c9b81611638565b15611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290613713565b60405180910390fd5b611ce9600083836001611679565b611cf281611638565b15611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2990613713565b60405180910390fd5b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e3c60008383600161168b565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b50505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001611f0684610821565b611f109190613762565b9050600060076000848152602001908152602001600020549050818114611ff5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061207a9190613762565b90506000600960008481526020019081526020016000205490506000600883815481106120aa576120a9612cfa565b5b9060005260206000200154905080600883815481106120cc576120cb612cfa565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061211b5761211a613796565b5b6001900381819060005260206000200160009055905550505050565b600061214283610821565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612214577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161220a5761220961362c565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612251576d04ee2d6d415b85acef810000000083816122475761224661362c565b5b0492506020810190505b662386f26fc10000831061228057662386f26fc1000083816122765761227561362c565b5b0492506010810190505b6305f5e10083106122a9576305f5e100838161229f5761229e61362c565b5b0492506008810190505b61271083106122ce5761271083816122c4576122c361362c565b5b0492506004810190505b606483106122f157606483816122e7576122e661362c565b5b0492506002810190505b600a8310612300576001810190505b80915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123528161231d565b811461235d57600080fd5b50565b60008135905061236f81612349565b92915050565b60006020828403121561238b5761238a612313565b5b600061239984828501612360565b91505092915050565b60008115159050919050565b6123b7816123a2565b82525050565b60006020820190506123d260008301846123ae565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124125780820151818401526020810190506123f7565b60008484015250505050565b6000601f19601f8301169050919050565b600061243a826123d8565b61244481856123e3565b93506124548185602086016123f4565b61245d8161241e565b840191505092915050565b60006020820190508181036000830152612482818461242f565b905092915050565b6000819050919050565b61249d8161248a565b81146124a857600080fd5b50565b6000813590506124ba81612494565b92915050565b6000602082840312156124d6576124d5612313565b5b60006124e4848285016124ab565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612518826124ed565b9050919050565b6125288161250d565b82525050565b6000602082019050612543600083018461251f565b92915050565b6125528161250d565b811461255d57600080fd5b50565b60008135905061256f81612549565b92915050565b6000806040838503121561258c5761258b612313565b5b600061259a85828601612560565b92505060206125ab858286016124ab565b9150509250929050565b6125be8161248a565b82525050565b60006020820190506125d960008301846125b5565b92915050565b6000806000606084860312156125f8576125f7612313565b5b600061260686828701612560565b935050602061261786828701612560565b9250506040612628868287016124ab565b9150509250925092565b60006020828403121561264857612647612313565b5b600061265684828501612560565b91505092915050565b612668816123a2565b811461267357600080fd5b50565b6000813590506126858161265f565b92915050565b600080604083850312156126a2576126a1612313565b5b60006126b085828601612560565b92505060206126c185828601612676565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61270d8261241e565b810181811067ffffffffffffffff8211171561272c5761272b6126d5565b5b80604052505050565b600061273f612309565b905061274b8282612704565b919050565b600067ffffffffffffffff82111561276b5761276a6126d5565b5b6127748261241e565b9050602081019050919050565b82818337600083830152505050565b60006127a361279e84612750565b612735565b9050828152602081018484840111156127bf576127be6126d0565b5b6127ca848285612781565b509392505050565b600082601f8301126127e7576127e66126cb565b5b81356127f7848260208601612790565b91505092915050565b6000806000806080858703121561281a57612819612313565b5b600061282887828801612560565b945050602061283987828801612560565b935050604061284a878288016124ab565b925050606085013567ffffffffffffffff81111561286b5761286a612318565b5b612877878288016127d2565b91505092959194509250565b600067ffffffffffffffff82111561289e5761289d6126d5565b5b6128a78261241e565b9050602081019050919050565b60006128c76128c284612883565b612735565b9050828152602081018484840111156128e3576128e26126d0565b5b6128ee848285612781565b509392505050565b600082601f83011261290b5761290a6126cb565b5b813561291b8482602086016128b4565b91505092915050565b6000806040838503121561293b5761293a612313565b5b600061294985828601612560565b925050602083013567ffffffffffffffff81111561296a57612969612318565b5b612976858286016128f6565b9150509250929050565b6000806040838503121561299757612996612313565b5b60006129a585828601612560565b92505060206129b685828601612560565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a0757607f821691505b602082108103612a1a57612a196129c0565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612a7c6021836123e3565b9150612a8782612a20565b604082019050919050565b60006020820190508181036000830152612aab81612a6f565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000612b0e603d836123e3565b9150612b1982612ab2565b604082019050919050565b60006020820190508181036000830152612b3d81612b01565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000612ba0602d836123e3565b9150612bab82612b44565b604082019050919050565b60006020820190508181036000830152612bcf81612b93565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612c32602b836123e3565b9150612c3d82612bd6565b604082019050919050565b60006020820190508181036000830152612c6181612c25565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612cc4602c836123e3565b9150612ccf82612c68565b604082019050919050565b60006020820190508181036000830152612cf381612cb7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612d5f6018836123e3565b9150612d6a82612d29565b602082019050919050565b60006020820190508181036000830152612d8e81612d52565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612df16029836123e3565b9150612dfc82612d95565b604082019050919050565b60006020820190508181036000830152612e2081612de4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e836026836123e3565b9150612e8e82612e27565b604082019050919050565b60006020820190508181036000830152612eb281612e76565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000612f156025836123e3565b9150612f2082612eb9565b604082019050919050565b60006020820190508181036000830152612f4481612f08565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612fa76024836123e3565b9150612fb282612f4b565b604082019050919050565b60006020820190508181036000830152612fd681612f9a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130136020836123e3565b915061301e82612fdd565b602082019050919050565b6000602082019050818103600083015261304281613006565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061307f6019836123e3565b915061308a82613049565b602082019050919050565b600060208201905081810360008301526130ae81613072565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006131116032836123e3565b915061311c826130b5565b604082019050919050565b6000602082019050818103600083015261314081613104565b9050919050565b600081905092915050565b600061315d826123d8565b6131678185613147565b93506131778185602086016123f4565b80840191505092915050565b600061318f8285613152565b915061319b8284613152565b91508190509392505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000613203602e836123e3565b915061320e826131a7565b604082019050919050565b60006020820190508181036000830152613232816131f6565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261329b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261325e565b6132a5868361325e565b95508019841693508086168417925050509392505050565b6000819050919050565b60006132e26132dd6132d88461248a565b6132bd565b61248a565b9050919050565b6000819050919050565b6132fc836132c7565b613310613308826132e9565b84845461326b565b825550505050565b600090565b613325613318565b6133308184846132f3565b505050565b5b818110156133545761334960008261331d565b600181019050613336565b5050565b601f8211156133995761336a81613239565b6133738461324e565b81016020851015613382578190505b61339661338e8561324e565b830182613335565b50505b505050565b600082821c905092915050565b60006133bc6000198460080261339e565b1980831691505092915050565b60006133d583836133ab565b9150826002028217905092915050565b6133ee826123d8565b67ffffffffffffffff811115613407576134066126d5565b5b61341182546129ef565b61341c828285613358565b600060209050601f83116001811461344f576000841561343d578287015190505b61344785826133c9565b8655506134af565b601f19841661345d86613239565b60005b8281101561348557848901518255600182019150602085019450602081019050613460565b868310156134a2578489015161349e601f8916826133ab565b8355505b6001600288020188555050505b505050505050565b600081519050919050565b600082825260208201905092915050565b60006134de826134b7565b6134e881856134c2565b93506134f88185602086016123f4565b6135018161241e565b840191505092915050565b6000608082019050613521600083018761251f565b61352e602083018661251f565b61353b60408301856125b5565b818103606083015261354d81846134d3565b905095945050505050565b60008151905061356781612349565b92915050565b60006020828403121561358357613582612313565b5b600061359184828501613558565b91505092915050565b7f455243373231456e756d657261626c653a20636f6e736563757469766520747260008201527f616e7366657273206e6f7420737570706f727465640000000000000000000000602082015250565b60006135f66035836123e3565b91506136018261359a565b604082019050919050565b60006020820190508181036000830152613625816135e9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006136916020836123e3565b915061369c8261365b565b602082019050919050565b600060208201905081810360008301526136c081613684565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006136fd601c836123e3565b9150613708826136c7565b602082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061376d8261248a565b91506137788361248a565b92508282039050818111156137905761378f613733565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212202f2eb4278c0a1ebdf611397b1d309baa58b6be602944da1af38fb7ab9676f50e64736f6c63430008120033",
View raw

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

View raw

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment