Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hm0429/1987604bf6b38fbb91447d8c5f47e337 to your computer and use it in GitHub Desktop.
Save hm0429/1987604bf6b38fbb91447d8c5f47e337 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.23+commit.f704f362.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard ERC20 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
*/
interface IERC20Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC20InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC20InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
* @param spender Address that may be allowed to operate on tokens without being their owner.
* @param allowance Amount of tokens a `spender` is allowed to operate with.
* @param needed Minimum amount required to perform a transfer.
*/
error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC20InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `spender` to be approved. Used in approvals.
* @param spender Address that may be allowed to operate on tokens without being their owner.
*/
error ERC20InvalidSpender(address spender);
}
/**
* @dev Standard ERC721 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
*/
interface IERC721Errors {
/**
* @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
* Used in balance queries.
* @param owner Address of the current owner of a token.
*/
error ERC721InvalidOwner(address owner);
/**
* @dev Indicates a `tokenId` whose `owner` is the zero address.
* @param tokenId Identifier number of a token.
*/
error ERC721NonexistentToken(uint256 tokenId);
/**
* @dev Indicates an error related to the ownership over a particular token. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param tokenId Identifier number of a token.
* @param owner Address of the current owner of a token.
*/
error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC721InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC721InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param tokenId Identifier number of a token.
*/
error ERC721InsufficientApproval(address operator, uint256 tokenId);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC721InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC721InvalidOperator(address operator);
}
/**
* @dev Standard ERC1155 Errors
* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
*/
interface IERC1155Errors {
/**
* @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
* @param balance Current balance for the interacting account.
* @param needed Minimum amount required to perform a transfer.
* @param tokenId Identifier number of a token.
*/
error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);
/**
* @dev Indicates a failure with the token `sender`. Used in transfers.
* @param sender Address whose tokens are being transferred.
*/
error ERC1155InvalidSender(address sender);
/**
* @dev Indicates a failure with the token `receiver`. Used in transfers.
* @param receiver Address to which tokens are being transferred.
*/
error ERC1155InvalidReceiver(address receiver);
/**
* @dev Indicates a failure with the `operator`’s approval. Used in transfers.
* @param operator Address that may be allowed to operate on tokens without being their owner.
* @param owner Address of the current owner of a token.
*/
error ERC1155MissingApprovalForAll(address operator, address owner);
/**
* @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
* @param approver Address initiating an approval operation.
*/
error ERC1155InvalidApprover(address approver);
/**
* @dev Indicates a failure with the `operator` to be approved. Used in approvals.
* @param operator Address that may be allowed to operate on tokens without being their owner.
*/
error ERC1155InvalidOperator(address operator);
/**
* @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
* Used in batch transfers.
* @param idsLength Length of the array of token identifiers
* @param valuesLength Length of the array of token amounts
*/
error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC5267.sol)
pragma solidity ^0.8.20;
interface IERC5267 {
/**
* @dev MAY be emitted to signal that the domain could have changed.
*/
event EIP712DomainChanged();
/**
* @dev returns the fields and values that describe the domain separator used by this contract for EIP-712
* signature.
*/
function eip712Domain()
external
view
returns (
bytes1 fields,
string memory name,
string memory version,
uint256 chainId,
address verifyingContract,
bytes32 salt,
uint256[] memory extensions
);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
*
* 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.
*/
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
mapping(address account => uint256) private _balances;
mapping(address account => mapping(address spender => 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 returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual 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 returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual 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 `value`.
*/
function transfer(address to, uint256 value) public virtual returns (bool) {
address owner = _msgSender();
_transfer(owner, to, value);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `value` 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 value) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, value);
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 `value`.
* - the caller must have allowance for ``from``'s tokens of at least
* `value`.
*/
function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, value);
_transfer(from, to, value);
return true;
}
/**
* @dev Moves a `value` 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.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _transfer(address from, address to, uint256 value) internal {
if (from == address(0)) {
revert ERC20InvalidSender(address(0));
}
if (to == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(from, to, value);
}
/**
* @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
* (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
* this function.
*
* Emits a {Transfer} event.
*/
function _update(address from, address to, uint256 value) internal virtual {
if (from == address(0)) {
// Overflow check required: The rest of the code assumes that totalSupply never overflows
_totalSupply += value;
} else {
uint256 fromBalance = _balances[from];
if (fromBalance < value) {
revert ERC20InsufficientBalance(from, fromBalance, value);
}
unchecked {
// Overflow not possible: value <= fromBalance <= totalSupply.
_balances[from] = fromBalance - value;
}
}
if (to == address(0)) {
unchecked {
// Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
_totalSupply -= value;
}
} else {
unchecked {
// Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
_balances[to] += value;
}
}
emit Transfer(from, to, value);
}
/**
* @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
* Relies on the `_update` mechanism
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead.
*/
function _mint(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidReceiver(address(0));
}
_update(address(0), account, value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
* Relies on the `_update` mechanism.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* NOTE: This function is not virtual, {_update} should be overridden instead
*/
function _burn(address account, uint256 value) internal {
if (account == address(0)) {
revert ERC20InvalidSender(address(0));
}
_update(account, address(0), value);
}
/**
* @dev Sets `value` 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.
*
* Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
*/
function _approve(address owner, address spender, uint256 value) internal {
_approve(owner, spender, value, true);
}
/**
* @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
*
* By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
* `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
* `Approval` event during `transferFrom` operations.
*
* Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
* true using the following override:
* ```
* function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
* super._approve(owner, spender, value, true);
* }
* ```
*
* Requirements are the same as {_approve}.
*/
function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
if (owner == address(0)) {
revert ERC20InvalidApprover(address(0));
}
if (spender == address(0)) {
revert ERC20InvalidSpender(address(0));
}
_allowances[owner][spender] = value;
if (emitEvent) {
emit Approval(owner, spender, value);
}
}
/**
* @dev Updates `owner` s allowance for `spender` based on spent `value`.
*
* Does not update the allowance value in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Does not emit an {Approval} event.
*/
function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
if (currentAllowance < value) {
revert ERC20InsufficientAllowance(spender, currentAllowance, value);
}
unchecked {
_approve(owner, spender, currentAllowance - value, false);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Permit.sol)
pragma solidity ^0.8.20;
import {IERC20Permit} from "./IERC20Permit.sol";
import {ERC20} from "../ERC20.sol";
import {ECDSA} from "../../../utils/cryptography/ECDSA.sol";
import {EIP712} from "../../../utils/cryptography/EIP712.sol";
import {Nonces} from "../../../utils/Nonces.sol";
/**
* @dev Implementation of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
abstract contract ERC20Permit is ERC20, IERC20Permit, EIP712, Nonces {
bytes32 private constant PERMIT_TYPEHASH =
keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
/**
* @dev Permit deadline has expired.
*/
error ERC2612ExpiredSignature(uint256 deadline);
/**
* @dev Mismatched signature.
*/
error ERC2612InvalidSigner(address signer, address owner);
/**
* @dev Initializes the {EIP712} domain separator using the `name` parameter, and setting `version` to `"1"`.
*
* It's a good idea to use the same `name` that is defined as the ERC20 token name.
*/
constructor(string memory name) EIP712(name, "1") {}
/**
* @inheritdoc IERC20Permit
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) public virtual {
if (block.timestamp > deadline) {
revert ERC2612ExpiredSignature(deadline);
}
bytes32 structHash = keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, _useNonce(owner), deadline));
bytes32 hash = _hashTypedDataV4(structHash);
address signer = ECDSA.recover(hash, v, r, s);
if (signer != owner) {
revert ERC2612InvalidSigner(signer, owner);
}
_approve(owner, spender, value);
}
/**
* @inheritdoc IERC20Permit
*/
function nonces(address owner) public view virtual override(IERC20Permit, Nonces) returns (uint256) {
return super.nonces(owner);
}
/**
* @inheritdoc IERC20Permit
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view virtual returns (bytes32) {
return _domainSeparatorV4();
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
import {IERC20} from "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*/
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 v5.0.0) (token/ERC20/extensions/IERC20Permit.sol)
pragma solidity ^0.8.20;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*
* ==== Security Considerations
*
* There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
* expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
* considered as an intention to spend the allowance in any specific way. The second is that because permits have
* built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should
* take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be
* generally recommended is:
*
* ```solidity
* function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public {
* try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {}
* doThing(..., value);
* }
*
* function doThing(..., uint256 value) public {
* token.safeTransferFrom(msg.sender, address(this), value);
* ...
* }
* ```
*
* Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of
* `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also
* {SafeERC20-safeTransferFrom}).
*
* Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so
* contracts should have entry points that don't rely on permit.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*
* CAUTION: See Security Considerations above.
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.20;
/**
* @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 value of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the value of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);
/**
* @dev Moves a `value` amount of tokens from `from` to `to` using the
* allowance mechanism. `value` 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 value) external returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol)
pragma solidity ^0.8.20;
/**
* @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
*
* These functions can be used to verify that a message was signed by the holder
* of the private keys of a given address.
*/
library ECDSA {
enum RecoverError {
NoError,
InvalidSignature,
InvalidSignatureLength,
InvalidSignatureS
}
/**
* @dev The signature derives the `address(0)`.
*/
error ECDSAInvalidSignature();
/**
* @dev The signature has an invalid length.
*/
error ECDSAInvalidSignatureLength(uint256 length);
/**
* @dev The signature has an S value that is in the upper half order.
*/
error ECDSAInvalidSignatureS(bytes32 s);
/**
* @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not
* return address(0) without also returning an error description. Errors are documented using an enum (error type)
* and a bytes32 providing additional information about the error.
*
* If no error is returned, then the address can be used for verification purposes.
*
* The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
*
* Documentation for signature generation:
* - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
* - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
*/
function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) {
if (signature.length == 65) {
bytes32 r;
bytes32 s;
uint8 v;
// ecrecover takes the signature parameters, and the only way to get them
// currently is to use assembly.
/// @solidity memory-safe-assembly
assembly {
r := mload(add(signature, 0x20))
s := mload(add(signature, 0x40))
v := byte(0, mload(add(signature, 0x60)))
}
return tryRecover(hash, v, r, s);
} else {
return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length));
}
}
/**
* @dev Returns the address that signed a hashed message (`hash`) with
* `signature`. This address can then be used for verification purposes.
*
* The `ecrecover` EVM precompile allows for malleable (non-unique) signatures:
* this function rejects them by requiring the `s` value to be in the lower
* half order, and the `v` value to be either 27 or 28.
*
* IMPORTANT: `hash` _must_ be the result of a hash operation for the
* verification to be secure: it is possible to craft signatures that
* recover to arbitrary addresses for non-hashed data. A safe way to ensure
* this is by receiving a hash of the original message (which may otherwise
* be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it.
*/
function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
(address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature);
_throwError(error, errorArg);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
*
* See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
*/
function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) {
unchecked {
bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
// We do not check for an overflow here since the shift operation results in 0 or 1.
uint8 v = uint8((uint256(vs) >> 255) + 27);
return tryRecover(hash, v, r, s);
}
}
/**
* @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
*/
function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) {
(address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs);
_throwError(error, errorArg);
return recovered;
}
/**
* @dev Overload of {ECDSA-tryRecover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function tryRecover(
bytes32 hash,
uint8 v,
bytes32 r,
bytes32 s
) internal pure returns (address, RecoverError, bytes32) {
// EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
// unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
// the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
// signatures from current libraries generate a unique signature with an s-value in the lower half order.
//
// If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
// with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
// vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
// these malleable signatures as well.
if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
return (address(0), RecoverError.InvalidSignatureS, s);
}
// If the signature is valid (and not malleable), return the signer address
address signer = ecrecover(hash, v, r, s);
if (signer == address(0)) {
return (address(0), RecoverError.InvalidSignature, bytes32(0));
}
return (signer, RecoverError.NoError, bytes32(0));
}
/**
* @dev Overload of {ECDSA-recover} that receives the `v`,
* `r` and `s` signature fields separately.
*/
function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) {
(address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s);
_throwError(error, errorArg);
return recovered;
}
/**
* @dev Optionally reverts with the corresponding custom error according to the `error` argument provided.
*/
function _throwError(RecoverError error, bytes32 errorArg) private pure {
if (error == RecoverError.NoError) {
return; // no error: do nothing
} else if (error == RecoverError.InvalidSignature) {
revert ECDSAInvalidSignature();
} else if (error == RecoverError.InvalidSignatureLength) {
revert ECDSAInvalidSignatureLength(uint256(errorArg));
} else if (error == RecoverError.InvalidSignatureS) {
revert ECDSAInvalidSignatureS(errorArg);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/EIP712.sol)
pragma solidity ^0.8.20;
import {MessageHashUtils} from "./MessageHashUtils.sol";
import {ShortStrings, ShortString} from "../ShortStrings.sol";
import {IERC5267} from "../../interfaces/IERC5267.sol";
/**
* @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data.
*
* The encoding scheme specified in the EIP requires a domain separator and a hash of the typed structured data, whose
* encoding is very generic and therefore its implementation in Solidity is not feasible, thus this contract
* does not implement the encoding itself. Protocols need to implement the type-specific encoding they need in order to
* produce the hash of their typed data using a combination of `abi.encode` and `keccak256`.
*
* This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding
* scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA
* ({_hashTypedDataV4}).
*
* The implementation of the domain separator was designed to be as efficient as possible while still properly updating
* the chain id to protect against replay attacks on an eventual fork of the chain.
*
* NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method
* https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask].
*
* NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain
* separator of the implementation contract. This will cause the {_domainSeparatorV4} function to always rebuild the
* separator from the immutable values, which is cheaper than accessing a cached version in cold storage.
*
* @custom:oz-upgrades-unsafe-allow state-variable-immutable
*/
abstract contract EIP712 is IERC5267 {
using ShortStrings for *;
bytes32 private constant TYPE_HASH =
keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)");
// Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
// invalidate the cached domain separator if the chain id changes.
bytes32 private immutable _cachedDomainSeparator;
uint256 private immutable _cachedChainId;
address private immutable _cachedThis;
bytes32 private immutable _hashedName;
bytes32 private immutable _hashedVersion;
ShortString private immutable _name;
ShortString private immutable _version;
string private _nameFallback;
string private _versionFallback;
/**
* @dev Initializes the domain separator and parameter caches.
*
* The meaning of `name` and `version` is specified in
* https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
*
* - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
* - `version`: the current major version of the signing domain.
*
* NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
* contract upgrade].
*/
constructor(string memory name, string memory version) {
_name = name.toShortStringWithFallback(_nameFallback);
_version = version.toShortStringWithFallback(_versionFallback);
_hashedName = keccak256(bytes(name));
_hashedVersion = keccak256(bytes(version));
_cachedChainId = block.chainid;
_cachedDomainSeparator = _buildDomainSeparator();
_cachedThis = address(this);
}
/**
* @dev Returns the domain separator for the current chain.
*/
function _domainSeparatorV4() internal view returns (bytes32) {
if (address(this) == _cachedThis && block.chainid == _cachedChainId) {
return _cachedDomainSeparator;
} else {
return _buildDomainSeparator();
}
}
function _buildDomainSeparator() private view returns (bytes32) {
return keccak256(abi.encode(TYPE_HASH, _hashedName, _hashedVersion, block.chainid, address(this)));
}
/**
* @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
* function returns the hash of the fully encoded EIP712 message for this domain.
*
* This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
*
* ```solidity
* bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
* keccak256("Mail(address to,string contents)"),
* mailTo,
* keccak256(bytes(mailContents))
* )));
* address signer = ECDSA.recover(digest, signature);
* ```
*/
function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
return MessageHashUtils.toTypedDataHash(_domainSeparatorV4(), structHash);
}
/**
* @dev See {IERC-5267}.
*/
function eip712Domain()
public
view
virtual
returns (
bytes1 fields,
string memory name,
string memory version,
uint256 chainId,
address verifyingContract,
bytes32 salt,
uint256[] memory extensions
)
{
return (
hex"0f", // 01111
_EIP712Name(),
_EIP712Version(),
block.chainid,
address(this),
bytes32(0),
new uint256[](0)
);
}
/**
* @dev The name parameter for the EIP712 domain.
*
* NOTE: By default this function reads _name which is an immutable value.
* It only reads from storage if necessary (in case the value is too large to fit in a ShortString).
*/
// solhint-disable-next-line func-name-mixedcase
function _EIP712Name() internal view returns (string memory) {
return _name.toStringWithFallback(_nameFallback);
}
/**
* @dev The version parameter for the EIP712 domain.
*
* NOTE: By default this function reads _version which is an immutable value.
* It only reads from storage if necessary (in case the value is too large to fit in a ShortString).
*/
// solhint-disable-next-line func-name-mixedcase
function _EIP712Version() internal view returns (string memory) {
return _version.toStringWithFallback(_versionFallback);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol)
pragma solidity ^0.8.20;
import {Strings} from "../Strings.sol";
/**
* @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing.
*
* The library provides methods for generating a hash of a message that conforms to the
* https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712]
* specifications.
*/
library MessageHashUtils {
/**
* @dev Returns the keccak256 digest of an EIP-191 signed data with version
* `0x45` (`personal_sign` messages).
*
* The digest is calculated by prefixing a bytes32 `messageHash` with
* `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the
* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
*
* NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with
* keccak256, although any bytes32 value can be safely used because the final digest will
* be re-hashed.
*
* See {ECDSA-recover}.
*/
function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash
mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix
digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20)
}
}
/**
* @dev Returns the keccak256 digest of an EIP-191 signed data with version
* `0x45` (`personal_sign` messages).
*
* The digest is calculated by prefixing an arbitrary `message` with
* `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the
* hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method.
*
* See {ECDSA-recover}.
*/
function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) {
return
keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message));
}
/**
* @dev Returns the keccak256 digest of an EIP-191 signed data with version
* `0x00` (data with intended validator).
*
* The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended
* `validator` address. Then hashing the result.
*
* See {ECDSA-recover}.
*/
function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) {
return keccak256(abi.encodePacked(hex"19_00", validator, data));
}
/**
* @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`).
*
* The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with
* `\x19\x01` and hashing the result. It corresponds to the hash signed by the
* https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712.
*
* See {ECDSA-recover}.
*/
function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) {
/// @solidity memory-safe-assembly
assembly {
let ptr := mload(0x40)
mstore(ptr, hex"19_01")
mstore(add(ptr, 0x02), domainSeparator)
mstore(add(ptr, 0x22), structHash)
digest := keccak256(ptr, 0x42)
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)
pragma solidity ^0.8.20;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
/**
* @dev Muldiv operation overflow.
*/
error MathOverflowedMulDiv();
enum Rounding {
Floor, // Toward negative infinity
Ceil, // Toward positive infinity
Trunc, // Toward zero
Expand // Away from zero
}
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @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 towards infinity instead
* of rounding towards zero.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
if (b == 0) {
// Guarantee the same behavior as in a regular Solidity division.
return a / b;
}
// (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 = x * y; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
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.
if (denominator <= prod1) {
revert MathOverflowedMulDiv();
}
///////////////////////////////////////////////
// 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.
uint256 twos = denominator & (0 - denominator);
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 (unsignedRoundsUp(rounding) && 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
* towards zero.
*
* 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 + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2 of a positive value rounded towards zero.
* 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 + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10 of a positive value rounded towards zero.
* 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 + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256 of a positive value rounded towards zero.
* 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 + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
}
}
/**
* @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
*/
function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
return uint8(rounding) % 2 == 1;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.20;
/**
* @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 v5.0.0) (utils/Nonces.sol)
pragma solidity ^0.8.20;
/**
* @dev Provides tracking nonces for addresses. Nonces will only increment.
*/
abstract contract Nonces {
/**
* @dev The nonce used for an `account` is not the expected current nonce.
*/
error InvalidAccountNonce(address account, uint256 currentNonce);
mapping(address account => uint256) private _nonces;
/**
* @dev Returns the next unused nonce for an address.
*/
function nonces(address owner) public view virtual returns (uint256) {
return _nonces[owner];
}
/**
* @dev Consumes a nonce.
*
* Returns the current value and increments nonce.
*/
function _useNonce(address owner) internal virtual returns (uint256) {
// For each account, the nonce has an initial value of 0, can only be incremented by one, and cannot be
// decremented or reset. This guarantees that the nonce never overflows.
unchecked {
// It is important to do x++ and not ++x here.
return _nonces[owner]++;
}
}
/**
* @dev Same as {_useNonce} but checking that `nonce` is the next valid for `owner`.
*/
function _useCheckedNonce(address owner, uint256 nonce) internal virtual {
uint256 current = _useNonce(owner);
if (nonce != current) {
revert InvalidAccountNonce(owner, current);
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/ShortStrings.sol)
pragma solidity ^0.8.20;
import {StorageSlot} from "./StorageSlot.sol";
// | string | 0xAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA |
// | length | 0x BB |
type ShortString is bytes32;
/**
* @dev This library provides functions to convert short memory strings
* into a `ShortString` type that can be used as an immutable variable.
*
* Strings of arbitrary length can be optimized using this library if
* they are short enough (up to 31 bytes) by packing them with their
* length (1 byte) in a single EVM word (32 bytes). Additionally, a
* fallback mechanism can be used for every other case.
*
* Usage example:
*
* ```solidity
* contract Named {
* using ShortStrings for *;
*
* ShortString private immutable _name;
* string private _nameFallback;
*
* constructor(string memory contractName) {
* _name = contractName.toShortStringWithFallback(_nameFallback);
* }
*
* function name() external view returns (string memory) {
* return _name.toStringWithFallback(_nameFallback);
* }
* }
* ```
*/
library ShortStrings {
// Used as an identifier for strings longer than 31 bytes.
bytes32 private constant FALLBACK_SENTINEL = 0x00000000000000000000000000000000000000000000000000000000000000FF;
error StringTooLong(string str);
error InvalidShortString();
/**
* @dev Encode a string of at most 31 chars into a `ShortString`.
*
* This will trigger a `StringTooLong` error is the input string is too long.
*/
function toShortString(string memory str) internal pure returns (ShortString) {
bytes memory bstr = bytes(str);
if (bstr.length > 31) {
revert StringTooLong(str);
}
return ShortString.wrap(bytes32(uint256(bytes32(bstr)) | bstr.length));
}
/**
* @dev Decode a `ShortString` back to a "normal" string.
*/
function toString(ShortString sstr) internal pure returns (string memory) {
uint256 len = byteLength(sstr);
// using `new string(len)` would work locally but is not memory safe.
string memory str = new string(32);
/// @solidity memory-safe-assembly
assembly {
mstore(str, len)
mstore(add(str, 0x20), sstr)
}
return str;
}
/**
* @dev Return the length of a `ShortString`.
*/
function byteLength(ShortString sstr) internal pure returns (uint256) {
uint256 result = uint256(ShortString.unwrap(sstr)) & 0xFF;
if (result > 31) {
revert InvalidShortString();
}
return result;
}
/**
* @dev Encode a string into a `ShortString`, or write it to storage if it is too long.
*/
function toShortStringWithFallback(string memory value, string storage store) internal returns (ShortString) {
if (bytes(value).length < 32) {
return toShortString(value);
} else {
StorageSlot.getStringSlot(store).value = value;
return ShortString.wrap(FALLBACK_SENTINEL);
}
}
/**
* @dev Decode a string that was encoded to `ShortString` or written to storage using {setWithFallback}.
*/
function toStringWithFallback(ShortString value, string storage store) internal pure returns (string memory) {
if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {
return toString(value);
} else {
return store;
}
}
/**
* @dev Return the length of a string that was encoded to `ShortString` or written to storage using
* {setWithFallback}.
*
* WARNING: This will return the "byte length" of the string. This may not reflect the actual length in terms of
* actual characters as the UTF-8 encoding of a single character can span over multiple bytes.
*/
function byteLengthWithFallback(ShortString value, string storage store) internal view returns (uint256) {
if (ShortString.unwrap(value) != FALLBACK_SENTINEL) {
return byteLength(value);
} else {
return bytes(store).length;
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.
pragma solidity ^0.8.20;
/**
* @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(newImplementation.code.length > 0);
* StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
* }
* }
* ```
*/
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 v5.0.0) (utils/Strings.sol)
pragma solidity ^0.8.20;
import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant HEX_DIGITS = "0123456789abcdef";
uint8 private constant ADDRESS_LENGTH = 20;
/**
* @dev The `value` string doesn't fit in the specified `length`.
*/
error StringsInsufficientHexLength(uint256 value, uint256 length);
/**
* @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), HEX_DIGITS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toStringSigned(int256 value) internal pure returns (string memory) {
return string.concat(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) {
uint256 localValue = value;
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = HEX_DIGITS[localValue & 0xf];
localValue >>= 4;
}
if (localValue != 0) {
revert StringsInsufficientHexLength(value, length);
}
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 bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
}
}
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
{
"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": {
"@_2095": {
"entryPoint": null,
"id": 2095,
"parameterSlots": 2,
"returnSlots": 0
},
"@_213": {
"entryPoint": null,
"id": 213,
"parameterSlots": 2,
"returnSlots": 0
},
"@_3477": {
"entryPoint": null,
"id": 3477,
"parameterSlots": 0,
"returnSlots": 0
},
"@_803": {
"entryPoint": null,
"id": 803,
"parameterSlots": 1,
"returnSlots": 0
},
"@_buildDomainSeparator_2142": {
"entryPoint": 541,
"id": 2142,
"parameterSlots": 0,
"returnSlots": 1
},
"@getStringSlot_1372": {
"entryPoint": 739,
"id": 1372,
"parameterSlots": 1,
"returnSlots": 1
},
"@toShortStringWithFallback_1226": {
"entryPoint": 456,
"id": 1226,
"parameterSlots": 2,
"returnSlots": 1
},
"@toShortString_1128": {
"entryPoint": 633,
"id": 1128,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1681,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_fromStack": {
"entryPoint": 1597,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1863,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1614,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
"entryPoint": 1698,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1927,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_dataslot_t_bytes_memory_ptr": {
"entryPoint": 1971,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 900,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 1961,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 748,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1789,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1209,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 1662,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 1588,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1631,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1030,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1171,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32": {
"entryPoint": 2008,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1048,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1360,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 1805,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 918,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 848,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1331,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 1039,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1301,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x22": {
"entryPoint": 803,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 758,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1087,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"read_from_memoryt_bytes32": {
"entryPoint": 1986,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"round_up_to_mul_of_32": {
"entryPoint": 1847,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 933,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1289,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1143,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 945,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1096,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1139,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:8813:18",
"nodeType": "YulBlock",
"src": "0:8813:18",
"statements": [
{
"body": {
"nativeSrc": "66:40:18",
"nodeType": "YulBlock",
"src": "66:40:18",
"statements": [
{
"nativeSrc": "77:22:18",
"nodeType": "YulAssignment",
"src": "77:22:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "93:5:18",
"nodeType": "YulIdentifier",
"src": "93:5:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "87:5:18",
"nodeType": "YulIdentifier",
"src": "87:5:18"
},
"nativeSrc": "87:12:18",
"nodeType": "YulFunctionCall",
"src": "87:12:18"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "77:6:18",
"nodeType": "YulIdentifier",
"src": "77:6:18"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7:99:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "49:5:18",
"nodeType": "YulTypedName",
"src": "49:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "59:6:18",
"nodeType": "YulTypedName",
"src": "59:6:18",
"type": ""
}
],
"src": "7:99:18"
},
{
"body": {
"nativeSrc": "140:152:18",
"nodeType": "YulBlock",
"src": "140:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "157:1:18",
"nodeType": "YulLiteral",
"src": "157:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "160:77:18",
"nodeType": "YulLiteral",
"src": "160:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "150:6:18",
"nodeType": "YulIdentifier",
"src": "150:6:18"
},
"nativeSrc": "150:88:18",
"nodeType": "YulFunctionCall",
"src": "150:88:18"
},
"nativeSrc": "150:88:18",
"nodeType": "YulExpressionStatement",
"src": "150:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "254:1:18",
"nodeType": "YulLiteral",
"src": "254:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "257:4:18",
"nodeType": "YulLiteral",
"src": "257:4:18",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "247:6:18",
"nodeType": "YulIdentifier",
"src": "247:6:18"
},
"nativeSrc": "247:15:18",
"nodeType": "YulFunctionCall",
"src": "247:15:18"
},
"nativeSrc": "247:15:18",
"nodeType": "YulExpressionStatement",
"src": "247:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "278:1:18",
"nodeType": "YulLiteral",
"src": "278:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "281:4:18",
"nodeType": "YulLiteral",
"src": "281:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "271:6:18",
"nodeType": "YulIdentifier",
"src": "271:6:18"
},
"nativeSrc": "271:15:18",
"nodeType": "YulFunctionCall",
"src": "271:15:18"
},
"nativeSrc": "271:15:18",
"nodeType": "YulExpressionStatement",
"src": "271:15:18"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "112:180:18",
"nodeType": "YulFunctionDefinition",
"src": "112:180:18"
},
{
"body": {
"nativeSrc": "326:152:18",
"nodeType": "YulBlock",
"src": "326:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "343:1:18",
"nodeType": "YulLiteral",
"src": "343:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "346:77:18",
"nodeType": "YulLiteral",
"src": "346:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "336:6:18",
"nodeType": "YulIdentifier",
"src": "336:6:18"
},
"nativeSrc": "336:88:18",
"nodeType": "YulFunctionCall",
"src": "336:88:18"
},
"nativeSrc": "336:88:18",
"nodeType": "YulExpressionStatement",
"src": "336:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "440:1:18",
"nodeType": "YulLiteral",
"src": "440:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "443:4:18",
"nodeType": "YulLiteral",
"src": "443:4:18",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "433:6:18",
"nodeType": "YulIdentifier",
"src": "433:6:18"
},
"nativeSrc": "433:15:18",
"nodeType": "YulFunctionCall",
"src": "433:15:18"
},
"nativeSrc": "433:15:18",
"nodeType": "YulExpressionStatement",
"src": "433:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "464:1:18",
"nodeType": "YulLiteral",
"src": "464:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "467:4:18",
"nodeType": "YulLiteral",
"src": "467:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "457:6:18",
"nodeType": "YulIdentifier",
"src": "457:6:18"
},
"nativeSrc": "457:15:18",
"nodeType": "YulFunctionCall",
"src": "457:15:18"
},
"nativeSrc": "457:15:18",
"nodeType": "YulExpressionStatement",
"src": "457:15:18"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "298:180:18",
"nodeType": "YulFunctionDefinition",
"src": "298:180:18"
},
{
"body": {
"nativeSrc": "535:269:18",
"nodeType": "YulBlock",
"src": "535:269:18",
"statements": [
{
"nativeSrc": "545:22:18",
"nodeType": "YulAssignment",
"src": "545:22:18",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "559:4:18",
"nodeType": "YulIdentifier",
"src": "559:4:18"
},
{
"kind": "number",
"nativeSrc": "565:1:18",
"nodeType": "YulLiteral",
"src": "565:1:18",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "555:3:18",
"nodeType": "YulIdentifier",
"src": "555:3:18"
},
"nativeSrc": "555:12:18",
"nodeType": "YulFunctionCall",
"src": "555:12:18"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "545:6:18",
"nodeType": "YulIdentifier",
"src": "545:6:18"
}
]
},
{
"nativeSrc": "576:38:18",
"nodeType": "YulVariableDeclaration",
"src": "576:38:18",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "606:4:18",
"nodeType": "YulIdentifier",
"src": "606:4:18"
},
{
"kind": "number",
"nativeSrc": "612:1:18",
"nodeType": "YulLiteral",
"src": "612:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "602:3:18",
"nodeType": "YulIdentifier",
"src": "602:3:18"
},
"nativeSrc": "602:12:18",
"nodeType": "YulFunctionCall",
"src": "602:12:18"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "580:18:18",
"nodeType": "YulTypedName",
"src": "580:18:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "653:51:18",
"nodeType": "YulBlock",
"src": "653:51:18",
"statements": [
{
"nativeSrc": "667:27:18",
"nodeType": "YulAssignment",
"src": "667:27:18",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "681:6:18",
"nodeType": "YulIdentifier",
"src": "681:6:18"
},
{
"kind": "number",
"nativeSrc": "689:4:18",
"nodeType": "YulLiteral",
"src": "689:4:18",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "677:3:18",
"nodeType": "YulIdentifier",
"src": "677:3:18"
},
"nativeSrc": "677:17:18",
"nodeType": "YulFunctionCall",
"src": "677:17:18"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "667:6:18",
"nodeType": "YulIdentifier",
"src": "667:6:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "633:18:18",
"nodeType": "YulIdentifier",
"src": "633:18:18"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "626:6:18",
"nodeType": "YulIdentifier",
"src": "626:6:18"
},
"nativeSrc": "626:26:18",
"nodeType": "YulFunctionCall",
"src": "626:26:18"
},
"nativeSrc": "623:81:18",
"nodeType": "YulIf",
"src": "623:81:18"
},
{
"body": {
"nativeSrc": "756:42:18",
"nodeType": "YulBlock",
"src": "756:42:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "770:16:18",
"nodeType": "YulIdentifier",
"src": "770:16:18"
},
"nativeSrc": "770:18:18",
"nodeType": "YulFunctionCall",
"src": "770:18:18"
},
"nativeSrc": "770:18:18",
"nodeType": "YulExpressionStatement",
"src": "770:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "720:18:18",
"nodeType": "YulIdentifier",
"src": "720:18:18"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "743:6:18",
"nodeType": "YulIdentifier",
"src": "743:6:18"
},
{
"kind": "number",
"nativeSrc": "751:2:18",
"nodeType": "YulLiteral",
"src": "751:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "740:2:18",
"nodeType": "YulIdentifier",
"src": "740:2:18"
},
"nativeSrc": "740:14:18",
"nodeType": "YulFunctionCall",
"src": "740:14:18"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "717:2:18",
"nodeType": "YulIdentifier",
"src": "717:2:18"
},
"nativeSrc": "717:38:18",
"nodeType": "YulFunctionCall",
"src": "717:38:18"
},
"nativeSrc": "714:84:18",
"nodeType": "YulIf",
"src": "714:84:18"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "484:320:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "519:4:18",
"nodeType": "YulTypedName",
"src": "519:4:18",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "528:6:18",
"nodeType": "YulTypedName",
"src": "528:6:18",
"type": ""
}
],
"src": "484:320:18"
},
{
"body": {
"nativeSrc": "864:87:18",
"nodeType": "YulBlock",
"src": "864:87:18",
"statements": [
{
"nativeSrc": "874:11:18",
"nodeType": "YulAssignment",
"src": "874:11:18",
"value": {
"name": "ptr",
"nativeSrc": "882:3:18",
"nodeType": "YulIdentifier",
"src": "882:3:18"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "874:4:18",
"nodeType": "YulIdentifier",
"src": "874:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "902:1:18",
"nodeType": "YulLiteral",
"src": "902:1:18",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nativeSrc": "905:3:18",
"nodeType": "YulIdentifier",
"src": "905:3:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "895:6:18",
"nodeType": "YulIdentifier",
"src": "895:6:18"
},
"nativeSrc": "895:14:18",
"nodeType": "YulFunctionCall",
"src": "895:14:18"
},
"nativeSrc": "895:14:18",
"nodeType": "YulExpressionStatement",
"src": "895:14:18"
},
{
"nativeSrc": "918:26:18",
"nodeType": "YulAssignment",
"src": "918:26:18",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "936:1:18",
"nodeType": "YulLiteral",
"src": "936:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "939:4:18",
"nodeType": "YulLiteral",
"src": "939:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nativeSrc": "926:9:18",
"nodeType": "YulIdentifier",
"src": "926:9:18"
},
"nativeSrc": "926:18:18",
"nodeType": "YulFunctionCall",
"src": "926:18:18"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "918:4:18",
"nodeType": "YulIdentifier",
"src": "918:4:18"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nativeSrc": "810:141:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "851:3:18",
"nodeType": "YulTypedName",
"src": "851:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "859:4:18",
"nodeType": "YulTypedName",
"src": "859:4:18",
"type": ""
}
],
"src": "810:141:18"
},
{
"body": {
"nativeSrc": "1001:49:18",
"nodeType": "YulBlock",
"src": "1001:49:18",
"statements": [
{
"nativeSrc": "1011:33:18",
"nodeType": "YulAssignment",
"src": "1011:33:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1029:5:18",
"nodeType": "YulIdentifier",
"src": "1029:5:18"
},
{
"kind": "number",
"nativeSrc": "1036:2:18",
"nodeType": "YulLiteral",
"src": "1036:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1025:3:18",
"nodeType": "YulIdentifier",
"src": "1025:3:18"
},
"nativeSrc": "1025:14:18",
"nodeType": "YulFunctionCall",
"src": "1025:14:18"
},
{
"kind": "number",
"nativeSrc": "1041:2:18",
"nodeType": "YulLiteral",
"src": "1041:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nativeSrc": "1021:3:18",
"nodeType": "YulIdentifier",
"src": "1021:3:18"
},
"nativeSrc": "1021:23:18",
"nodeType": "YulFunctionCall",
"src": "1021:23:18"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1011:6:18",
"nodeType": "YulIdentifier",
"src": "1011:6:18"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nativeSrc": "957:93:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "984:5:18",
"nodeType": "YulTypedName",
"src": "984:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "994:6:18",
"nodeType": "YulTypedName",
"src": "994:6:18",
"type": ""
}
],
"src": "957:93:18"
},
{
"body": {
"nativeSrc": "1109:54:18",
"nodeType": "YulBlock",
"src": "1109:54:18",
"statements": [
{
"nativeSrc": "1119:37:18",
"nodeType": "YulAssignment",
"src": "1119:37:18",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "1144:4:18",
"nodeType": "YulIdentifier",
"src": "1144:4:18"
},
{
"name": "value",
"nativeSrc": "1150:5:18",
"nodeType": "YulIdentifier",
"src": "1150:5:18"
}
],
"functionName": {
"name": "shl",
"nativeSrc": "1140:3:18",
"nodeType": "YulIdentifier",
"src": "1140:3:18"
},
"nativeSrc": "1140:16:18",
"nodeType": "YulFunctionCall",
"src": "1140:16:18"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "1119:8:18",
"nodeType": "YulIdentifier",
"src": "1119:8:18"
}
]
}
]
},
"name": "shift_left_dynamic",
"nativeSrc": "1056:107:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "1084:4:18",
"nodeType": "YulTypedName",
"src": "1084:4:18",
"type": ""
},
{
"name": "value",
"nativeSrc": "1090:5:18",
"nodeType": "YulTypedName",
"src": "1090:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "1100:8:18",
"nodeType": "YulTypedName",
"src": "1100:8:18",
"type": ""
}
],
"src": "1056:107:18"
},
{
"body": {
"nativeSrc": "1245:317:18",
"nodeType": "YulBlock",
"src": "1245:317:18",
"statements": [
{
"nativeSrc": "1255:35:18",
"nodeType": "YulVariableDeclaration",
"src": "1255:35:18",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nativeSrc": "1276:10:18",
"nodeType": "YulIdentifier",
"src": "1276:10:18"
},
{
"kind": "number",
"nativeSrc": "1288:1:18",
"nodeType": "YulLiteral",
"src": "1288:1:18",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "1272:3:18",
"nodeType": "YulIdentifier",
"src": "1272:3:18"
},
"nativeSrc": "1272:18:18",
"nodeType": "YulFunctionCall",
"src": "1272:18:18"
},
"variables": [
{
"name": "shiftBits",
"nativeSrc": "1259:9:18",
"nodeType": "YulTypedName",
"src": "1259:9:18",
"type": ""
}
]
},
{
"nativeSrc": "1299:109:18",
"nodeType": "YulVariableDeclaration",
"src": "1299:109:18",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "1330:9:18",
"nodeType": "YulIdentifier",
"src": "1330:9:18"
},
{
"kind": "number",
"nativeSrc": "1341:66:18",
"nodeType": "YulLiteral",
"src": "1341:66:18",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "1311:18:18",
"nodeType": "YulIdentifier",
"src": "1311:18:18"
},
"nativeSrc": "1311:97:18",
"nodeType": "YulFunctionCall",
"src": "1311:97:18"
},
"variables": [
{
"name": "mask",
"nativeSrc": "1303:4:18",
"nodeType": "YulTypedName",
"src": "1303:4:18",
"type": ""
}
]
},
{
"nativeSrc": "1417:51:18",
"nodeType": "YulAssignment",
"src": "1417:51:18",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "1448:9:18",
"nodeType": "YulIdentifier",
"src": "1448:9:18"
},
{
"name": "toInsert",
"nativeSrc": "1459:8:18",
"nodeType": "YulIdentifier",
"src": "1459:8:18"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "1429:18:18",
"nodeType": "YulIdentifier",
"src": "1429:18:18"
},
"nativeSrc": "1429:39:18",
"nodeType": "YulFunctionCall",
"src": "1429:39:18"
},
"variableNames": [
{
"name": "toInsert",
"nativeSrc": "1417:8:18",
"nodeType": "YulIdentifier",
"src": "1417:8:18"
}
]
},
{
"nativeSrc": "1477:30:18",
"nodeType": "YulAssignment",
"src": "1477:30:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1490:5:18",
"nodeType": "YulIdentifier",
"src": "1490:5:18"
},
{
"arguments": [
{
"name": "mask",
"nativeSrc": "1501:4:18",
"nodeType": "YulIdentifier",
"src": "1501:4:18"
}
],
"functionName": {
"name": "not",
"nativeSrc": "1497:3:18",
"nodeType": "YulIdentifier",
"src": "1497:3:18"
},
"nativeSrc": "1497:9:18",
"nodeType": "YulFunctionCall",
"src": "1497:9:18"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1486:3:18",
"nodeType": "YulIdentifier",
"src": "1486:3:18"
},
"nativeSrc": "1486:21:18",
"nodeType": "YulFunctionCall",
"src": "1486:21:18"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "1477:5:18",
"nodeType": "YulIdentifier",
"src": "1477:5:18"
}
]
},
{
"nativeSrc": "1516:40:18",
"nodeType": "YulAssignment",
"src": "1516:40:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1529:5:18",
"nodeType": "YulIdentifier",
"src": "1529:5:18"
},
{
"arguments": [
{
"name": "toInsert",
"nativeSrc": "1540:8:18",
"nodeType": "YulIdentifier",
"src": "1540:8:18"
},
{
"name": "mask",
"nativeSrc": "1550:4:18",
"nodeType": "YulIdentifier",
"src": "1550:4:18"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1536:3:18",
"nodeType": "YulIdentifier",
"src": "1536:3:18"
},
"nativeSrc": "1536:19:18",
"nodeType": "YulFunctionCall",
"src": "1536:19:18"
}
],
"functionName": {
"name": "or",
"nativeSrc": "1526:2:18",
"nodeType": "YulIdentifier",
"src": "1526:2:18"
},
"nativeSrc": "1526:30:18",
"nodeType": "YulFunctionCall",
"src": "1526:30:18"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1516:6:18",
"nodeType": "YulIdentifier",
"src": "1516:6:18"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nativeSrc": "1169:393:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1206:5:18",
"nodeType": "YulTypedName",
"src": "1206:5:18",
"type": ""
},
{
"name": "shiftBytes",
"nativeSrc": "1213:10:18",
"nodeType": "YulTypedName",
"src": "1213:10:18",
"type": ""
},
{
"name": "toInsert",
"nativeSrc": "1225:8:18",
"nodeType": "YulTypedName",
"src": "1225:8:18",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "1238:6:18",
"nodeType": "YulTypedName",
"src": "1238:6:18",
"type": ""
}
],
"src": "1169:393:18"
},
{
"body": {
"nativeSrc": "1613:32:18",
"nodeType": "YulBlock",
"src": "1613:32:18",
"statements": [
{
"nativeSrc": "1623:16:18",
"nodeType": "YulAssignment",
"src": "1623:16:18",
"value": {
"name": "value",
"nativeSrc": "1634:5:18",
"nodeType": "YulIdentifier",
"src": "1634:5:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1623:7:18",
"nodeType": "YulIdentifier",
"src": "1623:7:18"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "1568:77:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1595:5:18",
"nodeType": "YulTypedName",
"src": "1595:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1605:7:18",
"nodeType": "YulTypedName",
"src": "1605:7:18",
"type": ""
}
],
"src": "1568:77:18"
},
{
"body": {
"nativeSrc": "1683:28:18",
"nodeType": "YulBlock",
"src": "1683:28:18",
"statements": [
{
"nativeSrc": "1693:12:18",
"nodeType": "YulAssignment",
"src": "1693:12:18",
"value": {
"name": "value",
"nativeSrc": "1700:5:18",
"nodeType": "YulIdentifier",
"src": "1700:5:18"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "1693:3:18",
"nodeType": "YulIdentifier",
"src": "1693:3:18"
}
]
}
]
},
"name": "identity",
"nativeSrc": "1651:60:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1669:5:18",
"nodeType": "YulTypedName",
"src": "1669:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "1679:3:18",
"nodeType": "YulTypedName",
"src": "1679:3:18",
"type": ""
}
],
"src": "1651:60:18"
},
{
"body": {
"nativeSrc": "1777:82:18",
"nodeType": "YulBlock",
"src": "1777:82:18",
"statements": [
{
"nativeSrc": "1787:66:18",
"nodeType": "YulAssignment",
"src": "1787:66:18",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1845:5:18",
"nodeType": "YulIdentifier",
"src": "1845:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1827:17:18",
"nodeType": "YulIdentifier",
"src": "1827:17:18"
},
"nativeSrc": "1827:24:18",
"nodeType": "YulFunctionCall",
"src": "1827:24:18"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "1818:8:18",
"nodeType": "YulIdentifier",
"src": "1818:8:18"
},
"nativeSrc": "1818:34:18",
"nodeType": "YulFunctionCall",
"src": "1818:34:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1800:17:18",
"nodeType": "YulIdentifier",
"src": "1800:17:18"
},
"nativeSrc": "1800:53:18",
"nodeType": "YulFunctionCall",
"src": "1800:53:18"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "1787:9:18",
"nodeType": "YulIdentifier",
"src": "1787:9:18"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "1717:142:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1757:5:18",
"nodeType": "YulTypedName",
"src": "1757:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "1767:9:18",
"nodeType": "YulTypedName",
"src": "1767:9:18",
"type": ""
}
],
"src": "1717:142:18"
},
{
"body": {
"nativeSrc": "1912:28:18",
"nodeType": "YulBlock",
"src": "1912:28:18",
"statements": [
{
"nativeSrc": "1922:12:18",
"nodeType": "YulAssignment",
"src": "1922:12:18",
"value": {
"name": "value",
"nativeSrc": "1929:5:18",
"nodeType": "YulIdentifier",
"src": "1929:5:18"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "1922:3:18",
"nodeType": "YulIdentifier",
"src": "1922:3:18"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nativeSrc": "1865:75:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1898:5:18",
"nodeType": "YulTypedName",
"src": "1898:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "1908:3:18",
"nodeType": "YulTypedName",
"src": "1908:3:18",
"type": ""
}
],
"src": "1865:75:18"
},
{
"body": {
"nativeSrc": "2022:193:18",
"nodeType": "YulBlock",
"src": "2022:193:18",
"statements": [
{
"nativeSrc": "2032:63:18",
"nodeType": "YulVariableDeclaration",
"src": "2032:63:18",
"value": {
"arguments": [
{
"name": "value_0",
"nativeSrc": "2087:7:18",
"nodeType": "YulIdentifier",
"src": "2087:7:18"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "2056:30:18",
"nodeType": "YulIdentifier",
"src": "2056:30:18"
},
"nativeSrc": "2056:39:18",
"nodeType": "YulFunctionCall",
"src": "2056:39:18"
},
"variables": [
{
"name": "convertedValue_0",
"nativeSrc": "2036:16:18",
"nodeType": "YulTypedName",
"src": "2036:16:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "2111:4:18",
"nodeType": "YulIdentifier",
"src": "2111:4:18"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "2151:4:18",
"nodeType": "YulIdentifier",
"src": "2151:4:18"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "2145:5:18",
"nodeType": "YulIdentifier",
"src": "2145:5:18"
},
"nativeSrc": "2145:11:18",
"nodeType": "YulFunctionCall",
"src": "2145:11:18"
},
{
"name": "offset",
"nativeSrc": "2158:6:18",
"nodeType": "YulIdentifier",
"src": "2158:6:18"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nativeSrc": "2190:16:18",
"nodeType": "YulIdentifier",
"src": "2190:16:18"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nativeSrc": "2166:23:18",
"nodeType": "YulIdentifier",
"src": "2166:23:18"
},
"nativeSrc": "2166:41:18",
"nodeType": "YulFunctionCall",
"src": "2166:41:18"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nativeSrc": "2117:27:18",
"nodeType": "YulIdentifier",
"src": "2117:27:18"
},
"nativeSrc": "2117:91:18",
"nodeType": "YulFunctionCall",
"src": "2117:91:18"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "2104:6:18",
"nodeType": "YulIdentifier",
"src": "2104:6:18"
},
"nativeSrc": "2104:105:18",
"nodeType": "YulFunctionCall",
"src": "2104:105:18"
},
"nativeSrc": "2104:105:18",
"nodeType": "YulExpressionStatement",
"src": "2104:105:18"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "1946:269:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "1999:4:18",
"nodeType": "YulTypedName",
"src": "1999:4:18",
"type": ""
},
{
"name": "offset",
"nativeSrc": "2005:6:18",
"nodeType": "YulTypedName",
"src": "2005:6:18",
"type": ""
},
{
"name": "value_0",
"nativeSrc": "2013:7:18",
"nodeType": "YulTypedName",
"src": "2013:7:18",
"type": ""
}
],
"src": "1946:269:18"
},
{
"body": {
"nativeSrc": "2270:24:18",
"nodeType": "YulBlock",
"src": "2270:24:18",
"statements": [
{
"nativeSrc": "2280:8:18",
"nodeType": "YulAssignment",
"src": "2280:8:18",
"value": {
"kind": "number",
"nativeSrc": "2287:1:18",
"nodeType": "YulLiteral",
"src": "2287:1:18",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "2280:3:18",
"nodeType": "YulIdentifier",
"src": "2280:3:18"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "2221:73:18",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nativeSrc": "2266:3:18",
"nodeType": "YulTypedName",
"src": "2266:3:18",
"type": ""
}
],
"src": "2221:73:18"
},
{
"body": {
"nativeSrc": "2353:136:18",
"nodeType": "YulBlock",
"src": "2353:136:18",
"statements": [
{
"nativeSrc": "2363:46:18",
"nodeType": "YulVariableDeclaration",
"src": "2363:46:18",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "2377:30:18",
"nodeType": "YulIdentifier",
"src": "2377:30:18"
},
"nativeSrc": "2377:32:18",
"nodeType": "YulFunctionCall",
"src": "2377:32:18"
},
"variables": [
{
"name": "zero_0",
"nativeSrc": "2367:6:18",
"nodeType": "YulTypedName",
"src": "2367:6:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "2462:4:18",
"nodeType": "YulIdentifier",
"src": "2462:4:18"
},
{
"name": "offset",
"nativeSrc": "2468:6:18",
"nodeType": "YulIdentifier",
"src": "2468:6:18"
},
{
"name": "zero_0",
"nativeSrc": "2476:6:18",
"nodeType": "YulIdentifier",
"src": "2476:6:18"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "2418:43:18",
"nodeType": "YulIdentifier",
"src": "2418:43:18"
},
"nativeSrc": "2418:65:18",
"nodeType": "YulFunctionCall",
"src": "2418:65:18"
},
"nativeSrc": "2418:65:18",
"nodeType": "YulExpressionStatement",
"src": "2418:65:18"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "2300:189:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "2339:4:18",
"nodeType": "YulTypedName",
"src": "2339:4:18",
"type": ""
},
{
"name": "offset",
"nativeSrc": "2345:6:18",
"nodeType": "YulTypedName",
"src": "2345:6:18",
"type": ""
}
],
"src": "2300:189:18"
},
{
"body": {
"nativeSrc": "2545:136:18",
"nodeType": "YulBlock",
"src": "2545:136:18",
"statements": [
{
"body": {
"nativeSrc": "2612:63:18",
"nodeType": "YulBlock",
"src": "2612:63:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nativeSrc": "2656:5:18",
"nodeType": "YulIdentifier",
"src": "2656:5:18"
},
{
"kind": "number",
"nativeSrc": "2663:1:18",
"nodeType": "YulLiteral",
"src": "2663:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "2626:29:18",
"nodeType": "YulIdentifier",
"src": "2626:29:18"
},
"nativeSrc": "2626:39:18",
"nodeType": "YulFunctionCall",
"src": "2626:39:18"
},
"nativeSrc": "2626:39:18",
"nodeType": "YulExpressionStatement",
"src": "2626:39:18"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nativeSrc": "2565:5:18",
"nodeType": "YulIdentifier",
"src": "2565:5:18"
},
{
"name": "end",
"nativeSrc": "2572:3:18",
"nodeType": "YulIdentifier",
"src": "2572:3:18"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "2562:2:18",
"nodeType": "YulIdentifier",
"src": "2562:2:18"
},
"nativeSrc": "2562:14:18",
"nodeType": "YulFunctionCall",
"src": "2562:14:18"
},
"nativeSrc": "2555:120:18",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "2577:26:18",
"nodeType": "YulBlock",
"src": "2577:26:18",
"statements": [
{
"nativeSrc": "2579:22:18",
"nodeType": "YulAssignment",
"src": "2579:22:18",
"value": {
"arguments": [
{
"name": "start",
"nativeSrc": "2592:5:18",
"nodeType": "YulIdentifier",
"src": "2592:5:18"
},
{
"kind": "number",
"nativeSrc": "2599:1:18",
"nodeType": "YulLiteral",
"src": "2599:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2588:3:18",
"nodeType": "YulIdentifier",
"src": "2588:3:18"
},
"nativeSrc": "2588:13:18",
"nodeType": "YulFunctionCall",
"src": "2588:13:18"
},
"variableNames": [
{
"name": "start",
"nativeSrc": "2579:5:18",
"nodeType": "YulIdentifier",
"src": "2579:5:18"
}
]
}
]
},
"pre": {
"nativeSrc": "2559:2:18",
"nodeType": "YulBlock",
"src": "2559:2:18",
"statements": []
},
"src": "2555:120:18"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "2495:186:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nativeSrc": "2533:5:18",
"nodeType": "YulTypedName",
"src": "2533:5:18",
"type": ""
},
{
"name": "end",
"nativeSrc": "2540:3:18",
"nodeType": "YulTypedName",
"src": "2540:3:18",
"type": ""
}
],
"src": "2495:186:18"
},
{
"body": {
"nativeSrc": "2766:464:18",
"nodeType": "YulBlock",
"src": "2766:464:18",
"statements": [
{
"body": {
"nativeSrc": "2792:431:18",
"nodeType": "YulBlock",
"src": "2792:431:18",
"statements": [
{
"nativeSrc": "2806:54:18",
"nodeType": "YulVariableDeclaration",
"src": "2806:54:18",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "2854:5:18",
"nodeType": "YulIdentifier",
"src": "2854:5:18"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "2822:31:18",
"nodeType": "YulIdentifier",
"src": "2822:31:18"
},
"nativeSrc": "2822:38:18",
"nodeType": "YulFunctionCall",
"src": "2822:38:18"
},
"variables": [
{
"name": "dataArea",
"nativeSrc": "2810:8:18",
"nodeType": "YulTypedName",
"src": "2810:8:18",
"type": ""
}
]
},
{
"nativeSrc": "2873:63:18",
"nodeType": "YulVariableDeclaration",
"src": "2873:63:18",
"value": {
"arguments": [
{
"name": "dataArea",
"nativeSrc": "2896:8:18",
"nodeType": "YulIdentifier",
"src": "2896:8:18"
},
{
"arguments": [
{
"name": "startIndex",
"nativeSrc": "2924:10:18",
"nodeType": "YulIdentifier",
"src": "2924:10:18"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "2906:17:18",
"nodeType": "YulIdentifier",
"src": "2906:17:18"
},
"nativeSrc": "2906:29:18",
"nodeType": "YulFunctionCall",
"src": "2906:29:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2892:3:18",
"nodeType": "YulIdentifier",
"src": "2892:3:18"
},
"nativeSrc": "2892:44:18",
"nodeType": "YulFunctionCall",
"src": "2892:44:18"
},
"variables": [
{
"name": "deleteStart",
"nativeSrc": "2877:11:18",
"nodeType": "YulTypedName",
"src": "2877:11:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3093:27:18",
"nodeType": "YulBlock",
"src": "3093:27:18",
"statements": [
{
"nativeSrc": "3095:23:18",
"nodeType": "YulAssignment",
"src": "3095:23:18",
"value": {
"name": "dataArea",
"nativeSrc": "3110:8:18",
"nodeType": "YulIdentifier",
"src": "3110:8:18"
},
"variableNames": [
{
"name": "deleteStart",
"nativeSrc": "3095:11:18",
"nodeType": "YulIdentifier",
"src": "3095:11:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nativeSrc": "3077:10:18",
"nodeType": "YulIdentifier",
"src": "3077:10:18"
},
{
"kind": "number",
"nativeSrc": "3089:2:18",
"nodeType": "YulLiteral",
"src": "3089:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "3074:2:18",
"nodeType": "YulIdentifier",
"src": "3074:2:18"
},
"nativeSrc": "3074:18:18",
"nodeType": "YulFunctionCall",
"src": "3074:18:18"
},
"nativeSrc": "3071:49:18",
"nodeType": "YulIf",
"src": "3071:49:18"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nativeSrc": "3162:11:18",
"nodeType": "YulIdentifier",
"src": "3162:11:18"
},
{
"arguments": [
{
"name": "dataArea",
"nativeSrc": "3179:8:18",
"nodeType": "YulIdentifier",
"src": "3179:8:18"
},
{
"arguments": [
{
"name": "len",
"nativeSrc": "3207:3:18",
"nodeType": "YulIdentifier",
"src": "3207:3:18"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "3189:17:18",
"nodeType": "YulIdentifier",
"src": "3189:17:18"
},
"nativeSrc": "3189:22:18",
"nodeType": "YulFunctionCall",
"src": "3189:22:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3175:3:18",
"nodeType": "YulIdentifier",
"src": "3175:3:18"
},
"nativeSrc": "3175:37:18",
"nodeType": "YulFunctionCall",
"src": "3175:37:18"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "3133:28:18",
"nodeType": "YulIdentifier",
"src": "3133:28:18"
},
"nativeSrc": "3133:80:18",
"nodeType": "YulFunctionCall",
"src": "3133:80:18"
},
"nativeSrc": "3133:80:18",
"nodeType": "YulExpressionStatement",
"src": "3133:80:18"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nativeSrc": "2783:3:18",
"nodeType": "YulIdentifier",
"src": "2783:3:18"
},
{
"kind": "number",
"nativeSrc": "2788:2:18",
"nodeType": "YulLiteral",
"src": "2788:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2780:2:18",
"nodeType": "YulIdentifier",
"src": "2780:2:18"
},
"nativeSrc": "2780:11:18",
"nodeType": "YulFunctionCall",
"src": "2780:11:18"
},
"nativeSrc": "2777:446:18",
"nodeType": "YulIf",
"src": "2777:446:18"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "2687:543:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nativeSrc": "2742:5:18",
"nodeType": "YulTypedName",
"src": "2742:5:18",
"type": ""
},
{
"name": "len",
"nativeSrc": "2749:3:18",
"nodeType": "YulTypedName",
"src": "2749:3:18",
"type": ""
},
{
"name": "startIndex",
"nativeSrc": "2754:10:18",
"nodeType": "YulTypedName",
"src": "2754:10:18",
"type": ""
}
],
"src": "2687:543:18"
},
{
"body": {
"nativeSrc": "3299:54:18",
"nodeType": "YulBlock",
"src": "3299:54:18",
"statements": [
{
"nativeSrc": "3309:37:18",
"nodeType": "YulAssignment",
"src": "3309:37:18",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "3334:4:18",
"nodeType": "YulIdentifier",
"src": "3334:4:18"
},
{
"name": "value",
"nativeSrc": "3340:5:18",
"nodeType": "YulIdentifier",
"src": "3340:5:18"
}
],
"functionName": {
"name": "shr",
"nativeSrc": "3330:3:18",
"nodeType": "YulIdentifier",
"src": "3330:3:18"
},
"nativeSrc": "3330:16:18",
"nodeType": "YulFunctionCall",
"src": "3330:16:18"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "3309:8:18",
"nodeType": "YulIdentifier",
"src": "3309:8:18"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "3236:117:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "3274:4:18",
"nodeType": "YulTypedName",
"src": "3274:4:18",
"type": ""
},
{
"name": "value",
"nativeSrc": "3280:5:18",
"nodeType": "YulTypedName",
"src": "3280:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "3290:8:18",
"nodeType": "YulTypedName",
"src": "3290:8:18",
"type": ""
}
],
"src": "3236:117:18"
},
{
"body": {
"nativeSrc": "3410:118:18",
"nodeType": "YulBlock",
"src": "3410:118:18",
"statements": [
{
"nativeSrc": "3420:68:18",
"nodeType": "YulVariableDeclaration",
"src": "3420:68:18",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3469:1:18",
"nodeType": "YulLiteral",
"src": "3469:1:18",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nativeSrc": "3472:5:18",
"nodeType": "YulIdentifier",
"src": "3472:5:18"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "3465:3:18",
"nodeType": "YulIdentifier",
"src": "3465:3:18"
},
"nativeSrc": "3465:13:18",
"nodeType": "YulFunctionCall",
"src": "3465:13:18"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3484:1:18",
"nodeType": "YulLiteral",
"src": "3484:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nativeSrc": "3480:3:18",
"nodeType": "YulIdentifier",
"src": "3480:3:18"
},
"nativeSrc": "3480:6:18",
"nodeType": "YulFunctionCall",
"src": "3480:6:18"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "3436:28:18",
"nodeType": "YulIdentifier",
"src": "3436:28:18"
},
"nativeSrc": "3436:51:18",
"nodeType": "YulFunctionCall",
"src": "3436:51:18"
}
],
"functionName": {
"name": "not",
"nativeSrc": "3432:3:18",
"nodeType": "YulIdentifier",
"src": "3432:3:18"
},
"nativeSrc": "3432:56:18",
"nodeType": "YulFunctionCall",
"src": "3432:56:18"
},
"variables": [
{
"name": "mask",
"nativeSrc": "3424:4:18",
"nodeType": "YulTypedName",
"src": "3424:4:18",
"type": ""
}
]
},
{
"nativeSrc": "3497:25:18",
"nodeType": "YulAssignment",
"src": "3497:25:18",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3511:4:18",
"nodeType": "YulIdentifier",
"src": "3511:4:18"
},
{
"name": "mask",
"nativeSrc": "3517:4:18",
"nodeType": "YulIdentifier",
"src": "3517:4:18"
}
],
"functionName": {
"name": "and",
"nativeSrc": "3507:3:18",
"nodeType": "YulIdentifier",
"src": "3507:3:18"
},
"nativeSrc": "3507:15:18",
"nodeType": "YulFunctionCall",
"src": "3507:15:18"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "3497:6:18",
"nodeType": "YulIdentifier",
"src": "3497:6:18"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nativeSrc": "3359:169:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "3387:4:18",
"nodeType": "YulTypedName",
"src": "3387:4:18",
"type": ""
},
{
"name": "bytes",
"nativeSrc": "3393:5:18",
"nodeType": "YulTypedName",
"src": "3393:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "3403:6:18",
"nodeType": "YulTypedName",
"src": "3403:6:18",
"type": ""
}
],
"src": "3359:169:18"
},
{
"body": {
"nativeSrc": "3614:214:18",
"nodeType": "YulBlock",
"src": "3614:214:18",
"statements": [
{
"nativeSrc": "3747:37:18",
"nodeType": "YulAssignment",
"src": "3747:37:18",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3774:4:18",
"nodeType": "YulIdentifier",
"src": "3774:4:18"
},
{
"name": "len",
"nativeSrc": "3780:3:18",
"nodeType": "YulIdentifier",
"src": "3780:3:18"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "3755:18:18",
"nodeType": "YulIdentifier",
"src": "3755:18:18"
},
"nativeSrc": "3755:29:18",
"nodeType": "YulFunctionCall",
"src": "3755:29:18"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "3747:4:18",
"nodeType": "YulIdentifier",
"src": "3747:4:18"
}
]
},
{
"nativeSrc": "3793:29:18",
"nodeType": "YulAssignment",
"src": "3793:29:18",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3804:4:18",
"nodeType": "YulIdentifier",
"src": "3804:4:18"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3814:1:18",
"nodeType": "YulLiteral",
"src": "3814:1:18",
"type": "",
"value": "2"
},
{
"name": "len",
"nativeSrc": "3817:3:18",
"nodeType": "YulIdentifier",
"src": "3817:3:18"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "3810:3:18",
"nodeType": "YulIdentifier",
"src": "3810:3:18"
},
"nativeSrc": "3810:11:18",
"nodeType": "YulFunctionCall",
"src": "3810:11:18"
}
],
"functionName": {
"name": "or",
"nativeSrc": "3801:2:18",
"nodeType": "YulIdentifier",
"src": "3801:2:18"
},
"nativeSrc": "3801:21:18",
"nodeType": "YulFunctionCall",
"src": "3801:21:18"
},
"variableNames": [
{
"name": "used",
"nativeSrc": "3793:4:18",
"nodeType": "YulIdentifier",
"src": "3793:4:18"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "3533:295:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "3595:4:18",
"nodeType": "YulTypedName",
"src": "3595:4:18",
"type": ""
},
{
"name": "len",
"nativeSrc": "3601:3:18",
"nodeType": "YulTypedName",
"src": "3601:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nativeSrc": "3609:4:18",
"nodeType": "YulTypedName",
"src": "3609:4:18",
"type": ""
}
],
"src": "3533:295:18"
},
{
"body": {
"nativeSrc": "3925:1303:18",
"nodeType": "YulBlock",
"src": "3925:1303:18",
"statements": [
{
"nativeSrc": "3936:51:18",
"nodeType": "YulVariableDeclaration",
"src": "3936:51:18",
"value": {
"arguments": [
{
"name": "src",
"nativeSrc": "3983:3:18",
"nodeType": "YulIdentifier",
"src": "3983:3:18"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "3950:32:18",
"nodeType": "YulIdentifier",
"src": "3950:32:18"
},
"nativeSrc": "3950:37:18",
"nodeType": "YulFunctionCall",
"src": "3950:37:18"
},
"variables": [
{
"name": "newLen",
"nativeSrc": "3940:6:18",
"nodeType": "YulTypedName",
"src": "3940:6:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4072:22:18",
"nodeType": "YulBlock",
"src": "4072:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "4074:16:18",
"nodeType": "YulIdentifier",
"src": "4074:16:18"
},
"nativeSrc": "4074:18:18",
"nodeType": "YulFunctionCall",
"src": "4074:18:18"
},
"nativeSrc": "4074:18:18",
"nodeType": "YulExpressionStatement",
"src": "4074:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4044:6:18",
"nodeType": "YulIdentifier",
"src": "4044:6:18"
},
{
"kind": "number",
"nativeSrc": "4052:18:18",
"nodeType": "YulLiteral",
"src": "4052:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4041:2:18",
"nodeType": "YulIdentifier",
"src": "4041:2:18"
},
"nativeSrc": "4041:30:18",
"nodeType": "YulFunctionCall",
"src": "4041:30:18"
},
"nativeSrc": "4038:56:18",
"nodeType": "YulIf",
"src": "4038:56:18"
},
{
"nativeSrc": "4104:52:18",
"nodeType": "YulVariableDeclaration",
"src": "4104:52:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "4150:4:18",
"nodeType": "YulIdentifier",
"src": "4150:4:18"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "4144:5:18",
"nodeType": "YulIdentifier",
"src": "4144:5:18"
},
"nativeSrc": "4144:11:18",
"nodeType": "YulFunctionCall",
"src": "4144:11:18"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nativeSrc": "4118:25:18",
"nodeType": "YulIdentifier",
"src": "4118:25:18"
},
"nativeSrc": "4118:38:18",
"nodeType": "YulFunctionCall",
"src": "4118:38:18"
},
"variables": [
{
"name": "oldLen",
"nativeSrc": "4108:6:18",
"nodeType": "YulTypedName",
"src": "4108:6:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4249:4:18",
"nodeType": "YulIdentifier",
"src": "4249:4:18"
},
{
"name": "oldLen",
"nativeSrc": "4255:6:18",
"nodeType": "YulIdentifier",
"src": "4255:6:18"
},
{
"name": "newLen",
"nativeSrc": "4263:6:18",
"nodeType": "YulIdentifier",
"src": "4263:6:18"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "4203:45:18",
"nodeType": "YulIdentifier",
"src": "4203:45:18"
},
"nativeSrc": "4203:67:18",
"nodeType": "YulFunctionCall",
"src": "4203:67:18"
},
"nativeSrc": "4203:67:18",
"nodeType": "YulExpressionStatement",
"src": "4203:67:18"
},
{
"nativeSrc": "4280:18:18",
"nodeType": "YulVariableDeclaration",
"src": "4280:18:18",
"value": {
"kind": "number",
"nativeSrc": "4297:1:18",
"nodeType": "YulLiteral",
"src": "4297:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nativeSrc": "4284:9:18",
"nodeType": "YulTypedName",
"src": "4284:9:18",
"type": ""
}
]
},
{
"nativeSrc": "4308:17:18",
"nodeType": "YulAssignment",
"src": "4308:17:18",
"value": {
"kind": "number",
"nativeSrc": "4321:4:18",
"nodeType": "YulLiteral",
"src": "4321:4:18",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "4308:9:18",
"nodeType": "YulIdentifier",
"src": "4308:9:18"
}
]
},
{
"cases": [
{
"body": {
"nativeSrc": "4372:611:18",
"nodeType": "YulBlock",
"src": "4372:611:18",
"statements": [
{
"nativeSrc": "4386:37:18",
"nodeType": "YulVariableDeclaration",
"src": "4386:37:18",
"value": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4405:6:18",
"nodeType": "YulIdentifier",
"src": "4405:6:18"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "4417:4:18",
"nodeType": "YulLiteral",
"src": "4417:4:18",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nativeSrc": "4413:3:18",
"nodeType": "YulIdentifier",
"src": "4413:3:18"
},
"nativeSrc": "4413:9:18",
"nodeType": "YulFunctionCall",
"src": "4413:9:18"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4401:3:18",
"nodeType": "YulIdentifier",
"src": "4401:3:18"
},
"nativeSrc": "4401:22:18",
"nodeType": "YulFunctionCall",
"src": "4401:22:18"
},
"variables": [
{
"name": "loopEnd",
"nativeSrc": "4390:7:18",
"nodeType": "YulTypedName",
"src": "4390:7:18",
"type": ""
}
]
},
{
"nativeSrc": "4437:51:18",
"nodeType": "YulVariableDeclaration",
"src": "4437:51:18",
"value": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4483:4:18",
"nodeType": "YulIdentifier",
"src": "4483:4:18"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "4451:31:18",
"nodeType": "YulIdentifier",
"src": "4451:31:18"
},
"nativeSrc": "4451:37:18",
"nodeType": "YulFunctionCall",
"src": "4451:37:18"
},
"variables": [
{
"name": "dstPtr",
"nativeSrc": "4441:6:18",
"nodeType": "YulTypedName",
"src": "4441:6:18",
"type": ""
}
]
},
{
"nativeSrc": "4501:10:18",
"nodeType": "YulVariableDeclaration",
"src": "4501:10:18",
"value": {
"kind": "number",
"nativeSrc": "4510:1:18",
"nodeType": "YulLiteral",
"src": "4510:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "4505:1:18",
"nodeType": "YulTypedName",
"src": "4505:1:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4569:163:18",
"nodeType": "YulBlock",
"src": "4569:163:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4594:6:18",
"nodeType": "YulIdentifier",
"src": "4594:6:18"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "4612:3:18",
"nodeType": "YulIdentifier",
"src": "4612:3:18"
},
{
"name": "srcOffset",
"nativeSrc": "4617:9:18",
"nodeType": "YulIdentifier",
"src": "4617:9:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4608:3:18",
"nodeType": "YulIdentifier",
"src": "4608:3:18"
},
"nativeSrc": "4608:19:18",
"nodeType": "YulFunctionCall",
"src": "4608:19:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4602:5:18",
"nodeType": "YulIdentifier",
"src": "4602:5:18"
},
"nativeSrc": "4602:26:18",
"nodeType": "YulFunctionCall",
"src": "4602:26:18"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4587:6:18",
"nodeType": "YulIdentifier",
"src": "4587:6:18"
},
"nativeSrc": "4587:42:18",
"nodeType": "YulFunctionCall",
"src": "4587:42:18"
},
"nativeSrc": "4587:42:18",
"nodeType": "YulExpressionStatement",
"src": "4587:42:18"
},
{
"nativeSrc": "4646:24:18",
"nodeType": "YulAssignment",
"src": "4646:24:18",
"value": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4660:6:18",
"nodeType": "YulIdentifier",
"src": "4660:6:18"
},
{
"kind": "number",
"nativeSrc": "4668:1:18",
"nodeType": "YulLiteral",
"src": "4668:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4656:3:18",
"nodeType": "YulIdentifier",
"src": "4656:3:18"
},
"nativeSrc": "4656:14:18",
"nodeType": "YulFunctionCall",
"src": "4656:14:18"
},
"variableNames": [
{
"name": "dstPtr",
"nativeSrc": "4646:6:18",
"nodeType": "YulIdentifier",
"src": "4646:6:18"
}
]
},
{
"nativeSrc": "4687:31:18",
"nodeType": "YulAssignment",
"src": "4687:31:18",
"value": {
"arguments": [
{
"name": "srcOffset",
"nativeSrc": "4704:9:18",
"nodeType": "YulIdentifier",
"src": "4704:9:18"
},
{
"kind": "number",
"nativeSrc": "4715:2:18",
"nodeType": "YulLiteral",
"src": "4715:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4700:3:18",
"nodeType": "YulIdentifier",
"src": "4700:3:18"
},
"nativeSrc": "4700:18:18",
"nodeType": "YulFunctionCall",
"src": "4700:18:18"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "4687:9:18",
"nodeType": "YulIdentifier",
"src": "4687:9:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "4535:1:18",
"nodeType": "YulIdentifier",
"src": "4535:1:18"
},
{
"name": "loopEnd",
"nativeSrc": "4538:7:18",
"nodeType": "YulIdentifier",
"src": "4538:7:18"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "4532:2:18",
"nodeType": "YulIdentifier",
"src": "4532:2:18"
},
"nativeSrc": "4532:14:18",
"nodeType": "YulFunctionCall",
"src": "4532:14:18"
},
"nativeSrc": "4524:208:18",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "4547:21:18",
"nodeType": "YulBlock",
"src": "4547:21:18",
"statements": [
{
"nativeSrc": "4549:17:18",
"nodeType": "YulAssignment",
"src": "4549:17:18",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "4558:1:18",
"nodeType": "YulIdentifier",
"src": "4558:1:18"
},
{
"kind": "number",
"nativeSrc": "4561:4:18",
"nodeType": "YulLiteral",
"src": "4561:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4554:3:18",
"nodeType": "YulIdentifier",
"src": "4554:3:18"
},
"nativeSrc": "4554:12:18",
"nodeType": "YulFunctionCall",
"src": "4554:12:18"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "4549:1:18",
"nodeType": "YulIdentifier",
"src": "4549:1:18"
}
]
}
]
},
"pre": {
"nativeSrc": "4528:3:18",
"nodeType": "YulBlock",
"src": "4528:3:18",
"statements": []
},
"src": "4524:208:18"
},
{
"body": {
"nativeSrc": "4768:156:18",
"nodeType": "YulBlock",
"src": "4768:156:18",
"statements": [
{
"nativeSrc": "4786:43:18",
"nodeType": "YulVariableDeclaration",
"src": "4786:43:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "4813:3:18",
"nodeType": "YulIdentifier",
"src": "4813:3:18"
},
{
"name": "srcOffset",
"nativeSrc": "4818:9:18",
"nodeType": "YulIdentifier",
"src": "4818:9:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4809:3:18",
"nodeType": "YulIdentifier",
"src": "4809:3:18"
},
"nativeSrc": "4809:19:18",
"nodeType": "YulFunctionCall",
"src": "4809:19:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4803:5:18",
"nodeType": "YulIdentifier",
"src": "4803:5:18"
},
"nativeSrc": "4803:26:18",
"nodeType": "YulFunctionCall",
"src": "4803:26:18"
},
"variables": [
{
"name": "lastValue",
"nativeSrc": "4790:9:18",
"nodeType": "YulTypedName",
"src": "4790:9:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4853:6:18",
"nodeType": "YulIdentifier",
"src": "4853:6:18"
},
{
"arguments": [
{
"name": "lastValue",
"nativeSrc": "4880:9:18",
"nodeType": "YulIdentifier",
"src": "4880:9:18"
},
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "4895:6:18",
"nodeType": "YulIdentifier",
"src": "4895:6:18"
},
{
"kind": "number",
"nativeSrc": "4903:4:18",
"nodeType": "YulLiteral",
"src": "4903:4:18",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4891:3:18",
"nodeType": "YulIdentifier",
"src": "4891:3:18"
},
"nativeSrc": "4891:17:18",
"nodeType": "YulFunctionCall",
"src": "4891:17:18"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "4861:18:18",
"nodeType": "YulIdentifier",
"src": "4861:18:18"
},
"nativeSrc": "4861:48:18",
"nodeType": "YulFunctionCall",
"src": "4861:48:18"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4846:6:18",
"nodeType": "YulIdentifier",
"src": "4846:6:18"
},
"nativeSrc": "4846:64:18",
"nodeType": "YulFunctionCall",
"src": "4846:64:18"
},
"nativeSrc": "4846:64:18",
"nodeType": "YulExpressionStatement",
"src": "4846:64:18"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nativeSrc": "4751:7:18",
"nodeType": "YulIdentifier",
"src": "4751:7:18"
},
{
"name": "newLen",
"nativeSrc": "4760:6:18",
"nodeType": "YulIdentifier",
"src": "4760:6:18"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "4748:2:18",
"nodeType": "YulIdentifier",
"src": "4748:2:18"
},
"nativeSrc": "4748:19:18",
"nodeType": "YulFunctionCall",
"src": "4748:19:18"
},
"nativeSrc": "4745:179:18",
"nodeType": "YulIf",
"src": "4745:179:18"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4944:4:18",
"nodeType": "YulIdentifier",
"src": "4944:4:18"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "4958:6:18",
"nodeType": "YulIdentifier",
"src": "4958:6:18"
},
{
"kind": "number",
"nativeSrc": "4966:1:18",
"nodeType": "YulLiteral",
"src": "4966:1:18",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "4954:3:18",
"nodeType": "YulIdentifier",
"src": "4954:3:18"
},
"nativeSrc": "4954:14:18",
"nodeType": "YulFunctionCall",
"src": "4954:14:18"
},
{
"kind": "number",
"nativeSrc": "4970:1:18",
"nodeType": "YulLiteral",
"src": "4970:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4950:3:18",
"nodeType": "YulIdentifier",
"src": "4950:3:18"
},
"nativeSrc": "4950:22:18",
"nodeType": "YulFunctionCall",
"src": "4950:22:18"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4937:6:18",
"nodeType": "YulIdentifier",
"src": "4937:6:18"
},
"nativeSrc": "4937:36:18",
"nodeType": "YulFunctionCall",
"src": "4937:36:18"
},
"nativeSrc": "4937:36:18",
"nodeType": "YulExpressionStatement",
"src": "4937:36:18"
}
]
},
"nativeSrc": "4365:618:18",
"nodeType": "YulCase",
"src": "4365:618:18",
"value": {
"kind": "number",
"nativeSrc": "4370:1:18",
"nodeType": "YulLiteral",
"src": "4370:1:18",
"type": "",
"value": "1"
}
},
{
"body": {
"nativeSrc": "5000:222:18",
"nodeType": "YulBlock",
"src": "5000:222:18",
"statements": [
{
"nativeSrc": "5014:14:18",
"nodeType": "YulVariableDeclaration",
"src": "5014:14:18",
"value": {
"kind": "number",
"nativeSrc": "5027:1:18",
"nodeType": "YulLiteral",
"src": "5027:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nativeSrc": "5018:5:18",
"nodeType": "YulTypedName",
"src": "5018:5:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "5051:67:18",
"nodeType": "YulBlock",
"src": "5051:67:18",
"statements": [
{
"nativeSrc": "5069:35:18",
"nodeType": "YulAssignment",
"src": "5069:35:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "5088:3:18",
"nodeType": "YulIdentifier",
"src": "5088:3:18"
},
{
"name": "srcOffset",
"nativeSrc": "5093:9:18",
"nodeType": "YulIdentifier",
"src": "5093:9:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5084:3:18",
"nodeType": "YulIdentifier",
"src": "5084:3:18"
},
"nativeSrc": "5084:19:18",
"nodeType": "YulFunctionCall",
"src": "5084:19:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "5078:5:18",
"nodeType": "YulIdentifier",
"src": "5078:5:18"
},
"nativeSrc": "5078:26:18",
"nodeType": "YulFunctionCall",
"src": "5078:26:18"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "5069:5:18",
"nodeType": "YulIdentifier",
"src": "5069:5:18"
}
]
}
]
},
"condition": {
"name": "newLen",
"nativeSrc": "5044:6:18",
"nodeType": "YulIdentifier",
"src": "5044:6:18"
},
"nativeSrc": "5041:77:18",
"nodeType": "YulIf",
"src": "5041:77:18"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "5138:4:18",
"nodeType": "YulIdentifier",
"src": "5138:4:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "5197:5:18",
"nodeType": "YulIdentifier",
"src": "5197:5:18"
},
{
"name": "newLen",
"nativeSrc": "5204:6:18",
"nodeType": "YulIdentifier",
"src": "5204:6:18"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "5144:52:18",
"nodeType": "YulIdentifier",
"src": "5144:52:18"
},
"nativeSrc": "5144:67:18",
"nodeType": "YulFunctionCall",
"src": "5144:67:18"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "5131:6:18",
"nodeType": "YulIdentifier",
"src": "5131:6:18"
},
"nativeSrc": "5131:81:18",
"nodeType": "YulFunctionCall",
"src": "5131:81:18"
},
"nativeSrc": "5131:81:18",
"nodeType": "YulExpressionStatement",
"src": "5131:81:18"
}
]
},
"nativeSrc": "4992:230:18",
"nodeType": "YulCase",
"src": "4992:230:18",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4345:6:18",
"nodeType": "YulIdentifier",
"src": "4345:6:18"
},
{
"kind": "number",
"nativeSrc": "4353:2:18",
"nodeType": "YulLiteral",
"src": "4353:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4342:2:18",
"nodeType": "YulIdentifier",
"src": "4342:2:18"
},
"nativeSrc": "4342:14:18",
"nodeType": "YulFunctionCall",
"src": "4342:14:18"
},
"nativeSrc": "4335:887:18",
"nodeType": "YulSwitch",
"src": "4335:887:18"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nativeSrc": "3833:1395:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "3914:4:18",
"nodeType": "YulTypedName",
"src": "3914:4:18",
"type": ""
},
{
"name": "src",
"nativeSrc": "3920:3:18",
"nodeType": "YulTypedName",
"src": "3920:3:18",
"type": ""
}
],
"src": "3833:1395:18"
},
{
"body": {
"nativeSrc": "5279:32:18",
"nodeType": "YulBlock",
"src": "5279:32:18",
"statements": [
{
"nativeSrc": "5289:16:18",
"nodeType": "YulAssignment",
"src": "5289:16:18",
"value": {
"name": "value",
"nativeSrc": "5300:5:18",
"nodeType": "YulIdentifier",
"src": "5300:5:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "5289:7:18",
"nodeType": "YulIdentifier",
"src": "5289:7:18"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nativeSrc": "5234:77:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5261:5:18",
"nodeType": "YulTypedName",
"src": "5261:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "5271:7:18",
"nodeType": "YulTypedName",
"src": "5271:7:18",
"type": ""
}
],
"src": "5234:77:18"
},
{
"body": {
"nativeSrc": "5382:53:18",
"nodeType": "YulBlock",
"src": "5382:53:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5399:3:18",
"nodeType": "YulIdentifier",
"src": "5399:3:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "5422:5:18",
"nodeType": "YulIdentifier",
"src": "5422:5:18"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nativeSrc": "5404:17:18",
"nodeType": "YulIdentifier",
"src": "5404:17:18"
},
"nativeSrc": "5404:24:18",
"nodeType": "YulFunctionCall",
"src": "5404:24:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5392:6:18",
"nodeType": "YulIdentifier",
"src": "5392:6:18"
},
"nativeSrc": "5392:37:18",
"nodeType": "YulFunctionCall",
"src": "5392:37:18"
},
"nativeSrc": "5392:37:18",
"nodeType": "YulExpressionStatement",
"src": "5392:37:18"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "5317:118:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5370:5:18",
"nodeType": "YulTypedName",
"src": "5370:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5377:3:18",
"nodeType": "YulTypedName",
"src": "5377:3:18",
"type": ""
}
],
"src": "5317:118:18"
},
{
"body": {
"nativeSrc": "5506:53:18",
"nodeType": "YulBlock",
"src": "5506:53:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5523:3:18",
"nodeType": "YulIdentifier",
"src": "5523:3:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "5546:5:18",
"nodeType": "YulIdentifier",
"src": "5546:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "5528:17:18",
"nodeType": "YulIdentifier",
"src": "5528:17:18"
},
"nativeSrc": "5528:24:18",
"nodeType": "YulFunctionCall",
"src": "5528:24:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5516:6:18",
"nodeType": "YulIdentifier",
"src": "5516:6:18"
},
"nativeSrc": "5516:37:18",
"nodeType": "YulFunctionCall",
"src": "5516:37:18"
},
"nativeSrc": "5516:37:18",
"nodeType": "YulExpressionStatement",
"src": "5516:37:18"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "5441:118:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5494:5:18",
"nodeType": "YulTypedName",
"src": "5494:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5501:3:18",
"nodeType": "YulTypedName",
"src": "5501:3:18",
"type": ""
}
],
"src": "5441:118:18"
},
{
"body": {
"nativeSrc": "5610:81:18",
"nodeType": "YulBlock",
"src": "5610:81:18",
"statements": [
{
"nativeSrc": "5620:65:18",
"nodeType": "YulAssignment",
"src": "5620:65:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "5635:5:18",
"nodeType": "YulIdentifier",
"src": "5635:5:18"
},
{
"kind": "number",
"nativeSrc": "5642:42:18",
"nodeType": "YulLiteral",
"src": "5642:42:18",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "5631:3:18",
"nodeType": "YulIdentifier",
"src": "5631:3:18"
},
"nativeSrc": "5631:54:18",
"nodeType": "YulFunctionCall",
"src": "5631:54:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "5620:7:18",
"nodeType": "YulIdentifier",
"src": "5620:7:18"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "5565:126:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5592:5:18",
"nodeType": "YulTypedName",
"src": "5592:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "5602:7:18",
"nodeType": "YulTypedName",
"src": "5602:7:18",
"type": ""
}
],
"src": "5565:126:18"
},
{
"body": {
"nativeSrc": "5742:51:18",
"nodeType": "YulBlock",
"src": "5742:51:18",
"statements": [
{
"nativeSrc": "5752:35:18",
"nodeType": "YulAssignment",
"src": "5752:35:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "5781:5:18",
"nodeType": "YulIdentifier",
"src": "5781:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "5763:17:18",
"nodeType": "YulIdentifier",
"src": "5763:17:18"
},
"nativeSrc": "5763:24:18",
"nodeType": "YulFunctionCall",
"src": "5763:24:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "5752:7:18",
"nodeType": "YulIdentifier",
"src": "5752:7:18"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "5697:96:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5724:5:18",
"nodeType": "YulTypedName",
"src": "5724:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "5734:7:18",
"nodeType": "YulTypedName",
"src": "5734:7:18",
"type": ""
}
],
"src": "5697:96:18"
},
{
"body": {
"nativeSrc": "5864:53:18",
"nodeType": "YulBlock",
"src": "5864:53:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5881:3:18",
"nodeType": "YulIdentifier",
"src": "5881:3:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "5904:5:18",
"nodeType": "YulIdentifier",
"src": "5904:5:18"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "5886:17:18",
"nodeType": "YulIdentifier",
"src": "5886:17:18"
},
"nativeSrc": "5886:24:18",
"nodeType": "YulFunctionCall",
"src": "5886:24:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5874:6:18",
"nodeType": "YulIdentifier",
"src": "5874:6:18"
},
"nativeSrc": "5874:37:18",
"nodeType": "YulFunctionCall",
"src": "5874:37:18"
},
"nativeSrc": "5874:37:18",
"nodeType": "YulExpressionStatement",
"src": "5874:37:18"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "5799:118:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5852:5:18",
"nodeType": "YulTypedName",
"src": "5852:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5859:3:18",
"nodeType": "YulTypedName",
"src": "5859:3:18",
"type": ""
}
],
"src": "5799:118:18"
},
{
"body": {
"nativeSrc": "6133:454:18",
"nodeType": "YulBlock",
"src": "6133:454:18",
"statements": [
{
"nativeSrc": "6143:27:18",
"nodeType": "YulAssignment",
"src": "6143:27:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "6155:9:18",
"nodeType": "YulIdentifier",
"src": "6155:9:18"
},
{
"kind": "number",
"nativeSrc": "6166:3:18",
"nodeType": "YulLiteral",
"src": "6166:3:18",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6151:3:18",
"nodeType": "YulIdentifier",
"src": "6151:3:18"
},
"nativeSrc": "6151:19:18",
"nodeType": "YulFunctionCall",
"src": "6151:19:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "6143:4:18",
"nodeType": "YulIdentifier",
"src": "6143:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "6224:6:18",
"nodeType": "YulIdentifier",
"src": "6224:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6237:9:18",
"nodeType": "YulIdentifier",
"src": "6237:9:18"
},
{
"kind": "number",
"nativeSrc": "6248:1:18",
"nodeType": "YulLiteral",
"src": "6248:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6233:3:18",
"nodeType": "YulIdentifier",
"src": "6233:3:18"
},
"nativeSrc": "6233:17:18",
"nodeType": "YulFunctionCall",
"src": "6233:17:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "6180:43:18",
"nodeType": "YulIdentifier",
"src": "6180:43:18"
},
"nativeSrc": "6180:71:18",
"nodeType": "YulFunctionCall",
"src": "6180:71:18"
},
"nativeSrc": "6180:71:18",
"nodeType": "YulExpressionStatement",
"src": "6180:71:18"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "6305:6:18",
"nodeType": "YulIdentifier",
"src": "6305:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6318:9:18",
"nodeType": "YulIdentifier",
"src": "6318:9:18"
},
{
"kind": "number",
"nativeSrc": "6329:2:18",
"nodeType": "YulLiteral",
"src": "6329:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6314:3:18",
"nodeType": "YulIdentifier",
"src": "6314:3:18"
},
"nativeSrc": "6314:18:18",
"nodeType": "YulFunctionCall",
"src": "6314:18:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "6261:43:18",
"nodeType": "YulIdentifier",
"src": "6261:43:18"
},
"nativeSrc": "6261:72:18",
"nodeType": "YulFunctionCall",
"src": "6261:72:18"
},
"nativeSrc": "6261:72:18",
"nodeType": "YulExpressionStatement",
"src": "6261:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nativeSrc": "6387:6:18",
"nodeType": "YulIdentifier",
"src": "6387:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6400:9:18",
"nodeType": "YulIdentifier",
"src": "6400:9:18"
},
{
"kind": "number",
"nativeSrc": "6411:2:18",
"nodeType": "YulLiteral",
"src": "6411:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6396:3:18",
"nodeType": "YulIdentifier",
"src": "6396:3:18"
},
"nativeSrc": "6396:18:18",
"nodeType": "YulFunctionCall",
"src": "6396:18:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "6343:43:18",
"nodeType": "YulIdentifier",
"src": "6343:43:18"
},
"nativeSrc": "6343:72:18",
"nodeType": "YulFunctionCall",
"src": "6343:72:18"
},
"nativeSrc": "6343:72:18",
"nodeType": "YulExpressionStatement",
"src": "6343:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nativeSrc": "6469:6:18",
"nodeType": "YulIdentifier",
"src": "6469:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6482:9:18",
"nodeType": "YulIdentifier",
"src": "6482:9:18"
},
{
"kind": "number",
"nativeSrc": "6493:2:18",
"nodeType": "YulLiteral",
"src": "6493:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6478:3:18",
"nodeType": "YulIdentifier",
"src": "6478:3:18"
},
"nativeSrc": "6478:18:18",
"nodeType": "YulFunctionCall",
"src": "6478:18:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "6425:43:18",
"nodeType": "YulIdentifier",
"src": "6425:43:18"
},
"nativeSrc": "6425:72:18",
"nodeType": "YulFunctionCall",
"src": "6425:72:18"
},
"nativeSrc": "6425:72:18",
"nodeType": "YulExpressionStatement",
"src": "6425:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nativeSrc": "6551:6:18",
"nodeType": "YulIdentifier",
"src": "6551:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6564:9:18",
"nodeType": "YulIdentifier",
"src": "6564:9:18"
},
{
"kind": "number",
"nativeSrc": "6575:3:18",
"nodeType": "YulLiteral",
"src": "6575:3:18",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6560:3:18",
"nodeType": "YulIdentifier",
"src": "6560:3:18"
},
"nativeSrc": "6560:19:18",
"nodeType": "YulFunctionCall",
"src": "6560:19:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "6507:43:18",
"nodeType": "YulIdentifier",
"src": "6507:43:18"
},
"nativeSrc": "6507:73:18",
"nodeType": "YulFunctionCall",
"src": "6507:73:18"
},
"nativeSrc": "6507:73:18",
"nodeType": "YulExpressionStatement",
"src": "6507:73:18"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
"nativeSrc": "5923:664:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "6073:9:18",
"nodeType": "YulTypedName",
"src": "6073:9:18",
"type": ""
},
{
"name": "value4",
"nativeSrc": "6085:6:18",
"nodeType": "YulTypedName",
"src": "6085:6:18",
"type": ""
},
{
"name": "value3",
"nativeSrc": "6093:6:18",
"nodeType": "YulTypedName",
"src": "6093:6:18",
"type": ""
},
{
"name": "value2",
"nativeSrc": "6101:6:18",
"nodeType": "YulTypedName",
"src": "6101:6:18",
"type": ""
},
{
"name": "value1",
"nativeSrc": "6109:6:18",
"nodeType": "YulTypedName",
"src": "6109:6:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "6117:6:18",
"nodeType": "YulTypedName",
"src": "6117:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "6128:4:18",
"nodeType": "YulTypedName",
"src": "6128:4:18",
"type": ""
}
],
"src": "5923:664:18"
},
{
"body": {
"nativeSrc": "6689:73:18",
"nodeType": "YulBlock",
"src": "6689:73:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6706:3:18",
"nodeType": "YulIdentifier",
"src": "6706:3:18"
},
{
"name": "length",
"nativeSrc": "6711:6:18",
"nodeType": "YulIdentifier",
"src": "6711:6:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6699:6:18",
"nodeType": "YulIdentifier",
"src": "6699:6:18"
},
"nativeSrc": "6699:19:18",
"nodeType": "YulFunctionCall",
"src": "6699:19:18"
},
"nativeSrc": "6699:19:18",
"nodeType": "YulExpressionStatement",
"src": "6699:19:18"
},
{
"nativeSrc": "6727:29:18",
"nodeType": "YulAssignment",
"src": "6727:29:18",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6746:3:18",
"nodeType": "YulIdentifier",
"src": "6746:3:18"
},
{
"kind": "number",
"nativeSrc": "6751:4:18",
"nodeType": "YulLiteral",
"src": "6751:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6742:3:18",
"nodeType": "YulIdentifier",
"src": "6742:3:18"
},
"nativeSrc": "6742:14:18",
"nodeType": "YulFunctionCall",
"src": "6742:14:18"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "6727:11:18",
"nodeType": "YulIdentifier",
"src": "6727:11:18"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "6593:169:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "6661:3:18",
"nodeType": "YulTypedName",
"src": "6661:3:18",
"type": ""
},
{
"name": "length",
"nativeSrc": "6666:6:18",
"nodeType": "YulTypedName",
"src": "6666:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "6677:11:18",
"nodeType": "YulTypedName",
"src": "6677:11:18",
"type": ""
}
],
"src": "6593:169:18"
},
{
"body": {
"nativeSrc": "6830:184:18",
"nodeType": "YulBlock",
"src": "6830:184:18",
"statements": [
{
"nativeSrc": "6840:10:18",
"nodeType": "YulVariableDeclaration",
"src": "6840:10:18",
"value": {
"kind": "number",
"nativeSrc": "6849:1:18",
"nodeType": "YulLiteral",
"src": "6849:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "6844:1:18",
"nodeType": "YulTypedName",
"src": "6844:1:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "6909:63:18",
"nodeType": "YulBlock",
"src": "6909:63:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "6934:3:18",
"nodeType": "YulIdentifier",
"src": "6934:3:18"
},
{
"name": "i",
"nativeSrc": "6939:1:18",
"nodeType": "YulIdentifier",
"src": "6939:1:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6930:3:18",
"nodeType": "YulIdentifier",
"src": "6930:3:18"
},
"nativeSrc": "6930:11:18",
"nodeType": "YulFunctionCall",
"src": "6930:11:18"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "6953:3:18",
"nodeType": "YulIdentifier",
"src": "6953:3:18"
},
{
"name": "i",
"nativeSrc": "6958:1:18",
"nodeType": "YulIdentifier",
"src": "6958:1:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6949:3:18",
"nodeType": "YulIdentifier",
"src": "6949:3:18"
},
"nativeSrc": "6949:11:18",
"nodeType": "YulFunctionCall",
"src": "6949:11:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "6943:5:18",
"nodeType": "YulIdentifier",
"src": "6943:5:18"
},
"nativeSrc": "6943:18:18",
"nodeType": "YulFunctionCall",
"src": "6943:18:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6923:6:18",
"nodeType": "YulIdentifier",
"src": "6923:6:18"
},
"nativeSrc": "6923:39:18",
"nodeType": "YulFunctionCall",
"src": "6923:39:18"
},
"nativeSrc": "6923:39:18",
"nodeType": "YulExpressionStatement",
"src": "6923:39:18"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "6870:1:18",
"nodeType": "YulIdentifier",
"src": "6870:1:18"
},
{
"name": "length",
"nativeSrc": "6873:6:18",
"nodeType": "YulIdentifier",
"src": "6873:6:18"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "6867:2:18",
"nodeType": "YulIdentifier",
"src": "6867:2:18"
},
"nativeSrc": "6867:13:18",
"nodeType": "YulFunctionCall",
"src": "6867:13:18"
},
"nativeSrc": "6859:113:18",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "6881:19:18",
"nodeType": "YulBlock",
"src": "6881:19:18",
"statements": [
{
"nativeSrc": "6883:15:18",
"nodeType": "YulAssignment",
"src": "6883:15:18",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "6892:1:18",
"nodeType": "YulIdentifier",
"src": "6892:1:18"
},
{
"kind": "number",
"nativeSrc": "6895:2:18",
"nodeType": "YulLiteral",
"src": "6895:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6888:3:18",
"nodeType": "YulIdentifier",
"src": "6888:3:18"
},
"nativeSrc": "6888:10:18",
"nodeType": "YulFunctionCall",
"src": "6888:10:18"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "6883:1:18",
"nodeType": "YulIdentifier",
"src": "6883:1:18"
}
]
}
]
},
"pre": {
"nativeSrc": "6863:3:18",
"nodeType": "YulBlock",
"src": "6863:3:18",
"statements": []
},
"src": "6859:113:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "6992:3:18",
"nodeType": "YulIdentifier",
"src": "6992:3:18"
},
{
"name": "length",
"nativeSrc": "6997:6:18",
"nodeType": "YulIdentifier",
"src": "6997:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6988:3:18",
"nodeType": "YulIdentifier",
"src": "6988:3:18"
},
"nativeSrc": "6988:16:18",
"nodeType": "YulFunctionCall",
"src": "6988:16:18"
},
{
"kind": "number",
"nativeSrc": "7006:1:18",
"nodeType": "YulLiteral",
"src": "7006:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6981:6:18",
"nodeType": "YulIdentifier",
"src": "6981:6:18"
},
"nativeSrc": "6981:27:18",
"nodeType": "YulFunctionCall",
"src": "6981:27:18"
},
"nativeSrc": "6981:27:18",
"nodeType": "YulExpressionStatement",
"src": "6981:27:18"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "6768:246:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "6812:3:18",
"nodeType": "YulTypedName",
"src": "6812:3:18",
"type": ""
},
{
"name": "dst",
"nativeSrc": "6817:3:18",
"nodeType": "YulTypedName",
"src": "6817:3:18",
"type": ""
},
{
"name": "length",
"nativeSrc": "6822:6:18",
"nodeType": "YulTypedName",
"src": "6822:6:18",
"type": ""
}
],
"src": "6768:246:18"
},
{
"body": {
"nativeSrc": "7068:54:18",
"nodeType": "YulBlock",
"src": "7068:54:18",
"statements": [
{
"nativeSrc": "7078:38:18",
"nodeType": "YulAssignment",
"src": "7078:38:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "7096:5:18",
"nodeType": "YulIdentifier",
"src": "7096:5:18"
},
{
"kind": "number",
"nativeSrc": "7103:2:18",
"nodeType": "YulLiteral",
"src": "7103:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7092:3:18",
"nodeType": "YulIdentifier",
"src": "7092:3:18"
},
"nativeSrc": "7092:14:18",
"nodeType": "YulFunctionCall",
"src": "7092:14:18"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "7112:2:18",
"nodeType": "YulLiteral",
"src": "7112:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "7108:3:18",
"nodeType": "YulIdentifier",
"src": "7108:3:18"
},
"nativeSrc": "7108:7:18",
"nodeType": "YulFunctionCall",
"src": "7108:7:18"
}
],
"functionName": {
"name": "and",
"nativeSrc": "7088:3:18",
"nodeType": "YulIdentifier",
"src": "7088:3:18"
},
"nativeSrc": "7088:28:18",
"nodeType": "YulFunctionCall",
"src": "7088:28:18"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "7078:6:18",
"nodeType": "YulIdentifier",
"src": "7078:6:18"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "7020:102:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7051:5:18",
"nodeType": "YulTypedName",
"src": "7051:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "7061:6:18",
"nodeType": "YulTypedName",
"src": "7061:6:18",
"type": ""
}
],
"src": "7020:102:18"
},
{
"body": {
"nativeSrc": "7220:285:18",
"nodeType": "YulBlock",
"src": "7220:285:18",
"statements": [
{
"nativeSrc": "7230:53:18",
"nodeType": "YulVariableDeclaration",
"src": "7230:53:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7277:5:18",
"nodeType": "YulIdentifier",
"src": "7277:5:18"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7244:32:18",
"nodeType": "YulIdentifier",
"src": "7244:32:18"
},
"nativeSrc": "7244:39:18",
"nodeType": "YulFunctionCall",
"src": "7244:39:18"
},
"variables": [
{
"name": "length",
"nativeSrc": "7234:6:18",
"nodeType": "YulTypedName",
"src": "7234:6:18",
"type": ""
}
]
},
{
"nativeSrc": "7292:78:18",
"nodeType": "YulAssignment",
"src": "7292:78:18",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7358:3:18",
"nodeType": "YulIdentifier",
"src": "7358:3:18"
},
{
"name": "length",
"nativeSrc": "7363:6:18",
"nodeType": "YulIdentifier",
"src": "7363:6:18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "7299:58:18",
"nodeType": "YulIdentifier",
"src": "7299:58:18"
},
"nativeSrc": "7299:71:18",
"nodeType": "YulFunctionCall",
"src": "7299:71:18"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "7292:3:18",
"nodeType": "YulIdentifier",
"src": "7292:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "7418:5:18",
"nodeType": "YulIdentifier",
"src": "7418:5:18"
},
{
"kind": "number",
"nativeSrc": "7425:4:18",
"nodeType": "YulLiteral",
"src": "7425:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7414:3:18",
"nodeType": "YulIdentifier",
"src": "7414:3:18"
},
"nativeSrc": "7414:16:18",
"nodeType": "YulFunctionCall",
"src": "7414:16:18"
},
{
"name": "pos",
"nativeSrc": "7432:3:18",
"nodeType": "YulIdentifier",
"src": "7432:3:18"
},
{
"name": "length",
"nativeSrc": "7437:6:18",
"nodeType": "YulIdentifier",
"src": "7437:6:18"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "7379:34:18",
"nodeType": "YulIdentifier",
"src": "7379:34:18"
},
"nativeSrc": "7379:65:18",
"nodeType": "YulFunctionCall",
"src": "7379:65:18"
},
"nativeSrc": "7379:65:18",
"nodeType": "YulExpressionStatement",
"src": "7379:65:18"
},
{
"nativeSrc": "7453:46:18",
"nodeType": "YulAssignment",
"src": "7453:46:18",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7464:3:18",
"nodeType": "YulIdentifier",
"src": "7464:3:18"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "7491:6:18",
"nodeType": "YulIdentifier",
"src": "7491:6:18"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "7469:21:18",
"nodeType": "YulIdentifier",
"src": "7469:21:18"
},
"nativeSrc": "7469:29:18",
"nodeType": "YulFunctionCall",
"src": "7469:29:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7460:3:18",
"nodeType": "YulIdentifier",
"src": "7460:3:18"
},
"nativeSrc": "7460:39:18",
"nodeType": "YulFunctionCall",
"src": "7460:39:18"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "7453:3:18",
"nodeType": "YulIdentifier",
"src": "7453:3:18"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "7128:377:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7201:5:18",
"nodeType": "YulTypedName",
"src": "7201:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "7208:3:18",
"nodeType": "YulTypedName",
"src": "7208:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "7216:3:18",
"nodeType": "YulTypedName",
"src": "7216:3:18",
"type": ""
}
],
"src": "7128:377:18"
},
{
"body": {
"nativeSrc": "7629:195:18",
"nodeType": "YulBlock",
"src": "7629:195:18",
"statements": [
{
"nativeSrc": "7639:26:18",
"nodeType": "YulAssignment",
"src": "7639:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "7651:9:18",
"nodeType": "YulIdentifier",
"src": "7651:9:18"
},
{
"kind": "number",
"nativeSrc": "7662:2:18",
"nodeType": "YulLiteral",
"src": "7662:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7647:3:18",
"nodeType": "YulIdentifier",
"src": "7647:3:18"
},
"nativeSrc": "7647:18:18",
"nodeType": "YulFunctionCall",
"src": "7647:18:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7639:4:18",
"nodeType": "YulIdentifier",
"src": "7639:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7686:9:18",
"nodeType": "YulIdentifier",
"src": "7686:9:18"
},
{
"kind": "number",
"nativeSrc": "7697:1:18",
"nodeType": "YulLiteral",
"src": "7697:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7682:3:18",
"nodeType": "YulIdentifier",
"src": "7682:3:18"
},
"nativeSrc": "7682:17:18",
"nodeType": "YulFunctionCall",
"src": "7682:17:18"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "7705:4:18",
"nodeType": "YulIdentifier",
"src": "7705:4:18"
},
{
"name": "headStart",
"nativeSrc": "7711:9:18",
"nodeType": "YulIdentifier",
"src": "7711:9:18"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "7701:3:18",
"nodeType": "YulIdentifier",
"src": "7701:3:18"
},
"nativeSrc": "7701:20:18",
"nodeType": "YulFunctionCall",
"src": "7701:20:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7675:6:18",
"nodeType": "YulIdentifier",
"src": "7675:6:18"
},
"nativeSrc": "7675:47:18",
"nodeType": "YulFunctionCall",
"src": "7675:47:18"
},
"nativeSrc": "7675:47:18",
"nodeType": "YulExpressionStatement",
"src": "7675:47:18"
},
{
"nativeSrc": "7731:86:18",
"nodeType": "YulAssignment",
"src": "7731:86:18",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "7803:6:18",
"nodeType": "YulIdentifier",
"src": "7803:6:18"
},
{
"name": "tail",
"nativeSrc": "7812:4:18",
"nodeType": "YulIdentifier",
"src": "7812:4:18"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "7739:63:18",
"nodeType": "YulIdentifier",
"src": "7739:63:18"
},
"nativeSrc": "7739:78:18",
"nodeType": "YulFunctionCall",
"src": "7739:78:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7731:4:18",
"nodeType": "YulIdentifier",
"src": "7731:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "7511:313:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7601:9:18",
"nodeType": "YulTypedName",
"src": "7601:9:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "7613:6:18",
"nodeType": "YulTypedName",
"src": "7613:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "7624:4:18",
"nodeType": "YulTypedName",
"src": "7624:4:18",
"type": ""
}
],
"src": "7511:313:18"
},
{
"body": {
"nativeSrc": "7888:40:18",
"nodeType": "YulBlock",
"src": "7888:40:18",
"statements": [
{
"nativeSrc": "7899:22:18",
"nodeType": "YulAssignment",
"src": "7899:22:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7915:5:18",
"nodeType": "YulIdentifier",
"src": "7915:5:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "7909:5:18",
"nodeType": "YulIdentifier",
"src": "7909:5:18"
},
"nativeSrc": "7909:12:18",
"nodeType": "YulFunctionCall",
"src": "7909:12:18"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "7899:6:18",
"nodeType": "YulIdentifier",
"src": "7899:6:18"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nativeSrc": "7830:98:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7871:5:18",
"nodeType": "YulTypedName",
"src": "7871:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "7881:6:18",
"nodeType": "YulTypedName",
"src": "7881:6:18",
"type": ""
}
],
"src": "7830:98:18"
},
{
"body": {
"nativeSrc": "7990:60:18",
"nodeType": "YulBlock",
"src": "7990:60:18",
"statements": [
{
"nativeSrc": "8000:11:18",
"nodeType": "YulAssignment",
"src": "8000:11:18",
"value": {
"name": "ptr",
"nativeSrc": "8008:3:18",
"nodeType": "YulIdentifier",
"src": "8008:3:18"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "8000:4:18",
"nodeType": "YulIdentifier",
"src": "8000:4:18"
}
]
},
{
"nativeSrc": "8021:22:18",
"nodeType": "YulAssignment",
"src": "8021:22:18",
"value": {
"arguments": [
{
"name": "ptr",
"nativeSrc": "8033:3:18",
"nodeType": "YulIdentifier",
"src": "8033:3:18"
},
{
"kind": "number",
"nativeSrc": "8038:4:18",
"nodeType": "YulLiteral",
"src": "8038:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8029:3:18",
"nodeType": "YulIdentifier",
"src": "8029:3:18"
},
"nativeSrc": "8029:14:18",
"nodeType": "YulFunctionCall",
"src": "8029:14:18"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "8021:4:18",
"nodeType": "YulIdentifier",
"src": "8021:4:18"
}
]
}
]
},
"name": "array_dataslot_t_bytes_memory_ptr",
"nativeSrc": "7934:116:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "7977:3:18",
"nodeType": "YulTypedName",
"src": "7977:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "7985:4:18",
"nodeType": "YulTypedName",
"src": "7985:4:18",
"type": ""
}
],
"src": "7934:116:18"
},
{
"body": {
"nativeSrc": "8111:99:18",
"nodeType": "YulBlock",
"src": "8111:99:18",
"statements": [
{
"nativeSrc": "8122:42:18",
"nodeType": "YulVariableDeclaration",
"src": "8122:42:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "ptr",
"nativeSrc": "8159:3:18",
"nodeType": "YulIdentifier",
"src": "8159:3:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "8153:5:18",
"nodeType": "YulIdentifier",
"src": "8153:5:18"
},
"nativeSrc": "8153:10:18",
"nodeType": "YulFunctionCall",
"src": "8153:10:18"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nativeSrc": "8135:17:18",
"nodeType": "YulIdentifier",
"src": "8135:17:18"
},
"nativeSrc": "8135:29:18",
"nodeType": "YulFunctionCall",
"src": "8135:29:18"
},
"variables": [
{
"name": "value",
"nativeSrc": "8126:5:18",
"nodeType": "YulTypedName",
"src": "8126:5:18",
"type": ""
}
]
},
{
"nativeSrc": "8174:29:18",
"nodeType": "YulAssignment",
"src": "8174:29:18",
"value": {
"name": "value",
"nativeSrc": "8198:5:18",
"nodeType": "YulIdentifier",
"src": "8198:5:18"
},
"variableNames": [
{
"name": "returnValue",
"nativeSrc": "8174:11:18",
"nodeType": "YulIdentifier",
"src": "8174:11:18"
}
]
}
]
},
"name": "read_from_memoryt_bytes32",
"nativeSrc": "8056:154:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "8091:3:18",
"nodeType": "YulTypedName",
"src": "8091:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "returnValue",
"nativeSrc": "8099:11:18",
"nodeType": "YulTypedName",
"src": "8099:11:18",
"type": ""
}
],
"src": "8056:154:18"
},
{
"body": {
"nativeSrc": "8306:504:18",
"nodeType": "YulBlock",
"src": "8306:504:18",
"statements": [
{
"nativeSrc": "8317:52:18",
"nodeType": "YulVariableDeclaration",
"src": "8317:52:18",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "8363:5:18",
"nodeType": "YulIdentifier",
"src": "8363:5:18"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nativeSrc": "8331:31:18",
"nodeType": "YulIdentifier",
"src": "8331:31:18"
},
"nativeSrc": "8331:38:18",
"nodeType": "YulFunctionCall",
"src": "8331:38:18"
},
"variables": [
{
"name": "length",
"nativeSrc": "8321:6:18",
"nodeType": "YulTypedName",
"src": "8321:6:18",
"type": ""
}
]
},
{
"nativeSrc": "8378:21:18",
"nodeType": "YulVariableDeclaration",
"src": "8378:21:18",
"value": {
"name": "array",
"nativeSrc": "8394:5:18",
"nodeType": "YulIdentifier",
"src": "8394:5:18"
},
"variables": [
{
"name": "dataArea",
"nativeSrc": "8382:8:18",
"nodeType": "YulTypedName",
"src": "8382:8:18",
"type": ""
}
]
},
{
"nativeSrc": "8409:52:18",
"nodeType": "YulAssignment",
"src": "8409:52:18",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "8455:5:18",
"nodeType": "YulIdentifier",
"src": "8455:5:18"
}
],
"functionName": {
"name": "array_dataslot_t_bytes_memory_ptr",
"nativeSrc": "8421:33:18",
"nodeType": "YulIdentifier",
"src": "8421:33:18"
},
"nativeSrc": "8421:40:18",
"nodeType": "YulFunctionCall",
"src": "8421:40:18"
},
"variableNames": [
{
"name": "dataArea",
"nativeSrc": "8409:8:18",
"nodeType": "YulIdentifier",
"src": "8409:8:18"
}
]
},
{
"nativeSrc": "8471:44:18",
"nodeType": "YulAssignment",
"src": "8471:44:18",
"value": {
"arguments": [
{
"name": "dataArea",
"nativeSrc": "8506:8:18",
"nodeType": "YulIdentifier",
"src": "8506:8:18"
}
],
"functionName": {
"name": "read_from_memoryt_bytes32",
"nativeSrc": "8480:25:18",
"nodeType": "YulIdentifier",
"src": "8480:25:18"
},
"nativeSrc": "8480:35:18",
"nodeType": "YulFunctionCall",
"src": "8480:35:18"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "8471:5:18",
"nodeType": "YulIdentifier",
"src": "8471:5:18"
}
]
},
{
"body": {
"nativeSrc": "8543:260:18",
"nodeType": "YulBlock",
"src": "8543:260:18",
"statements": [
{
"nativeSrc": "8557:236:18",
"nodeType": "YulAssignment",
"src": "8557:236:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "8587:5:18",
"nodeType": "YulIdentifier",
"src": "8587:5:18"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nativeSrc": "8654:1:18",
"nodeType": "YulLiteral",
"src": "8654:1:18",
"type": "",
"value": "8"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "8661:2:18",
"nodeType": "YulLiteral",
"src": "8661:2:18",
"type": "",
"value": "32"
},
{
"name": "length",
"nativeSrc": "8665:6:18",
"nodeType": "YulIdentifier",
"src": "8665:6:18"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "8657:3:18",
"nodeType": "YulIdentifier",
"src": "8657:3:18"
},
"nativeSrc": "8657:15:18",
"nodeType": "YulFunctionCall",
"src": "8657:15:18"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "8650:3:18",
"nodeType": "YulIdentifier",
"src": "8650:3:18"
},
"nativeSrc": "8650:23:18",
"nodeType": "YulFunctionCall",
"src": "8650:23:18"
},
{
"kind": "number",
"nativeSrc": "8695:66:18",
"nodeType": "YulLiteral",
"src": "8695:66:18",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "8610:18:18",
"nodeType": "YulIdentifier",
"src": "8610:18:18"
},
"nativeSrc": "8610:169:18",
"nodeType": "YulFunctionCall",
"src": "8610:169:18"
}
],
"functionName": {
"name": "and",
"nativeSrc": "8566:3:18",
"nodeType": "YulIdentifier",
"src": "8566:3:18"
},
"nativeSrc": "8566:227:18",
"nodeType": "YulFunctionCall",
"src": "8566:227:18"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "8557:5:18",
"nodeType": "YulIdentifier",
"src": "8557:5:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nativeSrc": "8531:6:18",
"nodeType": "YulIdentifier",
"src": "8531:6:18"
},
{
"kind": "number",
"nativeSrc": "8539:2:18",
"nodeType": "YulLiteral",
"src": "8539:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "8528:2:18",
"nodeType": "YulIdentifier",
"src": "8528:2:18"
},
"nativeSrc": "8528:14:18",
"nodeType": "YulFunctionCall",
"src": "8528:14:18"
},
"nativeSrc": "8525:278:18",
"nodeType": "YulIf",
"src": "8525:278:18"
}
]
},
"name": "convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32",
"nativeSrc": "8216:594:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nativeSrc": "8290:5:18",
"nodeType": "YulTypedName",
"src": "8290:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "8300:5:18",
"nodeType": "YulTypedName",
"src": "8300:5:18",
"type": ""
}
],
"src": "8216:594:18"
}
]
},
"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 function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function 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_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_address_to_t_address_fromStack(value4, add(headStart, 128))\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 array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_dataslot_t_bytes_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function read_from_memoryt_bytes32(ptr) -> returnValue {\n\n let value := cleanup_t_bytes32(mload(ptr))\n\n returnValue :=\n\n value\n\n }\n\n function convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32(array) -> value {\n\n let length := array_length_t_bytes_memory_ptr(array)\n let dataArea := array\n\n dataArea := array_dataslot_t_bytes_memory_ptr(array)\n\n value := read_from_memoryt_bytes32(dataArea)\n\n if lt(length, 32) {\n value := and(\n value,\n shift_left_dynamic(\n mul(8, sub(32, length)),\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n )\n )\n }\n\n }\n\n}\n",
"id": 18,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "61016060405234801562000011575f80fd5b506040518060400160405280600481526020017f5069796f00000000000000000000000000000000000000000000000000000000815250806040518060400160405280600181526020017f31000000000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5069796f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5049594f000000000000000000000000000000000000000000000000000000008152508160039081620000fc919062000550565b5080600490816200010e919062000550565b50505062000127600583620001c860201b90919060201c565b610120818152505062000145600682620001c860201b90919060201c565b6101408181525050818051906020012060e08181525050808051906020012061010081815250504660a08181525050620001846200021d60201b60201c565b608081815250503073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff168152505050505062000847565b5f602083511015620001ed57620001e5836200027960201b60201c565b905062000217565b82620001ff83620002e360201b60201c565b5f0190816200020f919062000550565b5060ff5f1b90505b92915050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f60e0516101005146306040516020016200025e959493929190620006a2565b60405160208183030381529060405280519060200120905090565b5f80829050601f81511115620002c857826040517f305a27a9000000000000000000000000000000000000000000000000000000008152600401620002bf919062000787565b60405180910390fd5b805181620002d690620007d8565b5f1c175f1b915050919050565b5f819050919050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200036857607f821691505b6020821081036200037e576200037d62000323565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003e27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620003a5565b620003ee8683620003a5565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000438620004326200042c8462000406565b6200040f565b62000406565b9050919050565b5f819050919050565b620004538362000418565b6200046b62000462826200043f565b848454620003b1565b825550505050565b5f90565b6200048162000473565b6200048e81848462000448565b505050565b5b81811015620004b557620004a95f8262000477565b60018101905062000494565b5050565b601f8211156200050457620004ce8162000384565b620004d98462000396565b81016020851015620004e9578190505b62000501620004f88562000396565b83018262000493565b50505b505050565b5f82821c905092915050565b5f620005265f198460080262000509565b1980831691505092915050565b5f62000540838362000515565b9150826002028217905092915050565b6200055b82620002ec565b67ffffffffffffffff811115620005775762000576620002f6565b5b62000583825462000350565b62000590828285620004b9565b5f60209050601f831160018114620005c6575f8415620005b1578287015190505b620005bd858262000533565b8655506200062c565b601f198416620005d68662000384565b5f5b82811015620005ff57848901518255600182019150602085019450602081019050620005d8565b868310156200061f57848901516200061b601f89168262000515565b8355505b6001600288020188555050505b505050505050565b5f819050919050565b620006488162000634565b82525050565b620006598162000406565b82525050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200068a826200065f565b9050919050565b6200069c816200067e565b82525050565b5f60a082019050620006b75f8301886200063d565b620006c660208301876200063d565b620006d560408301866200063d565b620006e460608301856200064e565b620006f3608083018462000691565b9695505050505050565b5f82825260208201905092915050565b5f5b838110156200072c5780820151818401526020810190506200070f565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6200075382620002ec565b6200075f8185620006fd565b9350620007718185602086016200070d565b6200077c8162000737565b840191505092915050565b5f6020820190508181035f830152620007a1818462000747565b905092915050565b5f81519050919050565b5f819050602082019050919050565b5f620007cf825162000634565b80915050919050565b5f620007e482620007a9565b82620007f084620007b3565b9050620007fd81620007c2565b9250602082101562000840576200083b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff83602003600802620003a5565b831692505b5050919050565b60805160a05160c05160e051610100516101205161014051611b6e620008995f395f610a1501525f6109da01525f610f0e01525f610eed01525f6108d801525f61092e01525f6109570152611b6e5ff3fe608060405234801561000f575f80fd5b50600436106100cd575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b411461022d578063a9059cbb1461024b578063d505accf1461027b578063dd62ed3e14610297576100cd565b806370a08231146101a95780637ecebe00146101d957806384b0196e14610209576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f57806323b872dd1461013d578063313ce5671461016d5780633644e5151461018b575b5f80fd5b6100d96102c7565b6040516100e691906113de565b60405180910390f35b6101096004803603810190610104919061148f565b610357565b60405161011691906114e7565b60405180910390f35b610127610379565b604051610134919061150f565b60405180910390f35b61015760048036038101906101529190611528565b610382565b60405161016491906114e7565b60405180910390f35b6101756103b0565b6040516101829190611593565b60405180910390f35b6101936103b8565b6040516101a091906115c4565b60405180910390f35b6101c360048036038101906101be91906115dd565b6103c6565b6040516101d0919061150f565b60405180910390f35b6101f360048036038101906101ee91906115dd565b61040b565b604051610200919061150f565b60405180910390f35b61021161041c565b6040516102249796959493929190611708565b60405180910390f35b6102356104c1565b60405161024291906113de565b60405180910390f35b6102656004803603810190610260919061148f565b610551565b60405161027291906114e7565b60405180910390f35b610295600480360381019061029091906117de565b610573565b005b6102b160048036038101906102ac919061187b565b6106b8565b6040516102be919061150f565b60405180910390f35b6060600380546102d6906118e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610302906118e6565b801561034d5780601f106103245761010080835404028352916020019161034d565b820191905f5260205f20905b81548152906001019060200180831161033057829003601f168201915b5050505050905090565b5f8061036161073a565b905061036e818585610741565b600191505092915050565b5f600254905090565b5f8061038c61073a565b9050610399858285610753565b6103a48585856107e5565b60019150509392505050565b5f6012905090565b5f6103c16108d5565b905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f6104158261098b565b9050919050565b5f6060805f805f606061042d6109d1565b610435610a0c565b46305f801b5f67ffffffffffffffff81111561045457610453611916565b5b6040519080825280602002602001820160405280156104825781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b6060600480546104d0906118e6565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc906118e6565b80156105475780601f1061051e57610100808354040283529160200191610547565b820191905f5260205f20905b81548152906001019060200180831161052a57829003601f168201915b5050505050905090565b5f8061055b61073a565b90506105688185856107e5565b600191505092915050565b834211156105b857836040517f627913020000000000000000000000000000000000000000000000000000000081526004016105af919061150f565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886105e68c610a47565b896040516020016105fc96959493929190611943565b6040516020818303038152906040528051906020012090505f61061e82610a9a565b90505f61062d82878787610ab3565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106a157808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016106989291906119a2565b60405180910390fd5b6106ac8a8a8a610741565b50505050505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61074e8383836001610ae1565b505050565b5f61075e84846106b8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107df57818110156107d0578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107c7939291906119c9565b60405180910390fd5b6107de84848484035f610ae1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610855575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161084c91906119fe565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108c5575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108bc91906119fe565b60405180910390fd5b6108d0838383610cb0565b505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561095057507f000000000000000000000000000000000000000000000000000000000000000046145b1561097d577f00000000000000000000000000000000000000000000000000000000000000009050610988565b610985610ec9565b90505b90565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060610a0760057f0000000000000000000000000000000000000000000000000000000000000000610f5e90919063ffffffff16565b905090565b6060610a4260067f0000000000000000000000000000000000000000000000000000000000000000610f5e90919063ffffffff16565b905090565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f610aac610aa66108d5565b8361100b565b9050919050565b5f805f80610ac38888888861104b565b925092509250610ad38282611132565b829350505050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b51575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b4891906119fe565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc1575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610bb891906119fe565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610caa578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ca1919061150f565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d00578060025f828254610cf49190611a44565b92505081905550610dce565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d89578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d80939291906119c9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e15578060025f8282540392505081905550610e5f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ebc919061150f565b60405180910390a3505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000004630604051602001610f43959493929190611a77565b60405160208183030381529060405280519060200120905090565b606060ff5f1b8314610f7a57610f7383611294565b9050611005565b818054610f86906118e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb2906118e6565b8015610ffd5780601f10610fd457610100808354040283529160200191610ffd565b820191905f5260205f20905b815481529060010190602001808311610fe057829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c1115611087575f600385925092509250611128565b5f6001888888886040515f81526020016040526040516110aa9493929190611ac8565b6020604051602081039080840390855afa1580156110ca573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361111b575f60015f801b93509350935050611128565b805f805f1b935093509350505b9450945094915050565b5f600381111561114557611144611b0b565b5b82600381111561115857611157611b0b565b5b0315611290576001600381111561117257611171611b0b565b5b82600381111561118557611184611b0b565b5b036111bc576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260038111156111d0576111cf611b0b565b5b8260038111156111e3576111e2611b0b565b5b0361122757805f1c6040517ffce698f700000000000000000000000000000000000000000000000000000000815260040161121e919061150f565b60405180910390fd5b60038081111561123a57611239611b0b565b5b82600381111561124d5761124c611b0b565b5b0361128f57806040517fd78bce0c00000000000000000000000000000000000000000000000000000000815260040161128691906115c4565b60405180910390fd5b5b5050565b60605f6112a083611306565b90505f602067ffffffffffffffff8111156112be576112bd611916565b5b6040519080825280601f01601f1916602001820160405280156112f05781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f8060ff835f1c169050601f81111561134b576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561138b578082015181840152602081019050611370565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113b082611354565b6113ba818561135e565b93506113ca81856020860161136e565b6113d381611396565b840191505092915050565b5f6020820190508181035f8301526113f681846113a6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61142b82611402565b9050919050565b61143b81611421565b8114611445575f80fd5b50565b5f8135905061145681611432565b92915050565b5f819050919050565b61146e8161145c565b8114611478575f80fd5b50565b5f8135905061148981611465565b92915050565b5f80604083850312156114a5576114a46113fe565b5b5f6114b285828601611448565b92505060206114c38582860161147b565b9150509250929050565b5f8115159050919050565b6114e1816114cd565b82525050565b5f6020820190506114fa5f8301846114d8565b92915050565b6115098161145c565b82525050565b5f6020820190506115225f830184611500565b92915050565b5f805f6060848603121561153f5761153e6113fe565b5b5f61154c86828701611448565b935050602061155d86828701611448565b925050604061156e8682870161147b565b9150509250925092565b5f60ff82169050919050565b61158d81611578565b82525050565b5f6020820190506115a65f830184611584565b92915050565b5f819050919050565b6115be816115ac565b82525050565b5f6020820190506115d75f8301846115b5565b92915050565b5f602082840312156115f2576115f16113fe565b5b5f6115ff84828501611448565b91505092915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b61163c81611608565b82525050565b61164b81611421565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6116838161145c565b82525050565b5f611694838361167a565b60208301905092915050565b5f602082019050919050565b5f6116b682611651565b6116c0818561165b565b93506116cb8361166b565b805f5b838110156116fb5781516116e28882611689565b97506116ed836116a0565b9250506001810190506116ce565b5085935050505092915050565b5f60e08201905061171b5f83018a611633565b818103602083015261172d81896113a6565b9050818103604083015261174181886113a6565b90506117506060830187611500565b61175d6080830186611642565b61176a60a08301856115b5565b81810360c083015261177c81846116ac565b905098975050505050505050565b61179381611578565b811461179d575f80fd5b50565b5f813590506117ae8161178a565b92915050565b6117bd816115ac565b81146117c7575f80fd5b50565b5f813590506117d8816117b4565b92915050565b5f805f805f805f60e0888a0312156117f9576117f86113fe565b5b5f6118068a828b01611448565b97505060206118178a828b01611448565b96505060406118288a828b0161147b565b95505060606118398a828b0161147b565b945050608061184a8a828b016117a0565b93505060a061185b8a828b016117ca565b92505060c061186c8a828b016117ca565b91505092959891949750929550565b5f8060408385031215611891576118906113fe565b5b5f61189e85828601611448565b92505060206118af85828601611448565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118fd57607f821691505b6020821081036119105761190f6118b9565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60c0820190506119565f8301896115b5565b6119636020830188611642565b6119706040830187611642565b61197d6060830186611500565b61198a6080830185611500565b61199760a0830184611500565b979650505050505050565b5f6040820190506119b55f830185611642565b6119c26020830184611642565b9392505050565b5f6060820190506119dc5f830186611642565b6119e96020830185611500565b6119f66040830184611500565b949350505050565b5f602082019050611a115f830184611642565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a4e8261145c565b9150611a598361145c565b9250828201905080821115611a7157611a70611a17565b5b92915050565b5f60a082019050611a8a5f8301886115b5565b611a9760208301876115b5565b611aa460408301866115b5565b611ab16060830185611500565b611abe6080830184611642565b9695505050505050565b5f608082019050611adb5f8301876115b5565b611ae86020830186611584565b611af560408301856115b5565b611b0260608301846115b5565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffdfea26469706673582212205a5632ca5de1d17531c35752ed8677f34d4b4d88fe06ae5dbef50725256fb8e464736f6c63430008170033",
"opcodes": "PUSH2 0x160 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5069796F00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP1 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3100000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5069796F00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x4 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x5049594F00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH3 0xFC SWAP2 SWAP1 PUSH3 0x550 JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH3 0x10E SWAP2 SWAP1 PUSH3 0x550 JUMP JUMPDEST POP POP POP PUSH3 0x127 PUSH1 0x5 DUP4 PUSH3 0x1C8 PUSH1 0x20 SHL SWAP1 SWAP2 SWAP1 PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x120 DUP2 DUP2 MSTORE POP POP PUSH3 0x145 PUSH1 0x6 DUP3 PUSH3 0x1C8 PUSH1 0x20 SHL SWAP1 SWAP2 SWAP1 PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x140 DUP2 DUP2 MSTORE POP POP DUP2 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH1 0xE0 DUP2 DUP2 MSTORE POP POP DUP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 PUSH2 0x100 DUP2 DUP2 MSTORE POP POP CHAINID PUSH1 0xA0 DUP2 DUP2 MSTORE POP POP PUSH3 0x184 PUSH3 0x21D PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x80 DUP2 DUP2 MSTORE POP POP ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0xC0 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP POP POP POP PUSH3 0x847 JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP4 MLOAD LT ISZERO PUSH3 0x1ED JUMPI PUSH3 0x1E5 DUP4 PUSH3 0x279 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP PUSH3 0x217 JUMP JUMPDEST DUP3 PUSH3 0x1FF DUP4 PUSH3 0x2E3 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH0 ADD SWAP1 DUP2 PUSH3 0x20F SWAP2 SWAP1 PUSH3 0x550 JUMP JUMPDEST POP PUSH1 0xFF PUSH0 SHL SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD CHAINID ADDRESS PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH3 0x25E SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH3 0x6A2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 DUP3 SWAP1 POP PUSH1 0x1F DUP2 MLOAD GT ISZERO PUSH3 0x2C8 JUMPI DUP3 PUSH1 0x40 MLOAD PUSH32 0x305A27A900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x2BF SWAP2 SWAP1 PUSH3 0x787 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH3 0x2D6 SWAP1 PUSH3 0x7D8 JUMP JUMPDEST PUSH0 SHR OR PUSH0 SHL SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x368 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH3 0x37E JUMPI PUSH3 0x37D PUSH3 0x323 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH3 0x3E2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH3 0x3A5 JUMP JUMPDEST PUSH3 0x3EE DUP7 DUP4 PUSH3 0x3A5 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 PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH3 0x438 PUSH3 0x432 PUSH3 0x42C DUP5 PUSH3 0x406 JUMP JUMPDEST PUSH3 0x40F JUMP JUMPDEST PUSH3 0x406 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x453 DUP4 PUSH3 0x418 JUMP JUMPDEST PUSH3 0x46B PUSH3 0x462 DUP3 PUSH3 0x43F JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH3 0x3B1 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH3 0x481 PUSH3 0x473 JUMP JUMPDEST PUSH3 0x48E DUP2 DUP5 DUP5 PUSH3 0x448 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH3 0x4B5 JUMPI PUSH3 0x4A9 PUSH0 DUP3 PUSH3 0x477 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH3 0x494 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH3 0x504 JUMPI PUSH3 0x4CE DUP2 PUSH3 0x384 JUMP JUMPDEST PUSH3 0x4D9 DUP5 PUSH3 0x396 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH3 0x4E9 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH3 0x501 PUSH3 0x4F8 DUP6 PUSH3 0x396 JUMP JUMPDEST DUP4 ADD DUP3 PUSH3 0x493 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x526 PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH3 0x509 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH3 0x540 DUP4 DUP4 PUSH3 0x515 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH3 0x55B DUP3 PUSH3 0x2EC JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH3 0x577 JUMPI PUSH3 0x576 PUSH3 0x2F6 JUMP JUMPDEST JUMPDEST PUSH3 0x583 DUP3 SLOAD PUSH3 0x350 JUMP JUMPDEST PUSH3 0x590 DUP3 DUP3 DUP6 PUSH3 0x4B9 JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH3 0x5C6 JUMPI PUSH0 DUP5 ISZERO PUSH3 0x5B1 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH3 0x5BD DUP6 DUP3 PUSH3 0x533 JUMP JUMPDEST DUP7 SSTORE POP PUSH3 0x62C JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH3 0x5D6 DUP7 PUSH3 0x384 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH3 0x5FF 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 0x5D8 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH3 0x61F JUMPI DUP5 DUP10 ADD MLOAD PUSH3 0x61B PUSH1 0x1F DUP10 AND DUP3 PUSH3 0x515 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 PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x648 DUP2 PUSH3 0x634 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH3 0x659 DUP2 PUSH3 0x406 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH3 0x68A DUP3 PUSH3 0x65F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH3 0x69C DUP2 PUSH3 0x67E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH3 0x6B7 PUSH0 DUP4 ADD DUP9 PUSH3 0x63D JUMP JUMPDEST PUSH3 0x6C6 PUSH1 0x20 DUP4 ADD DUP8 PUSH3 0x63D JUMP JUMPDEST PUSH3 0x6D5 PUSH1 0x40 DUP4 ADD DUP7 PUSH3 0x63D JUMP JUMPDEST PUSH3 0x6E4 PUSH1 0x60 DUP4 ADD DUP6 PUSH3 0x64E JUMP JUMPDEST PUSH3 0x6F3 PUSH1 0x80 DUP4 ADD DUP5 PUSH3 0x691 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x72C JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH3 0x70F JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH3 0x753 DUP3 PUSH3 0x2EC JUMP JUMPDEST PUSH3 0x75F DUP2 DUP6 PUSH3 0x6FD JUMP JUMPDEST SWAP4 POP PUSH3 0x771 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH3 0x70D JUMP JUMPDEST PUSH3 0x77C DUP2 PUSH3 0x737 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH3 0x7A1 DUP2 DUP5 PUSH3 0x747 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH3 0x7CF DUP3 MLOAD PUSH3 0x634 JUMP JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH3 0x7E4 DUP3 PUSH3 0x7A9 JUMP JUMPDEST DUP3 PUSH3 0x7F0 DUP5 PUSH3 0x7B3 JUMP JUMPDEST SWAP1 POP PUSH3 0x7FD DUP2 PUSH3 0x7C2 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP3 LT ISZERO PUSH3 0x840 JUMPI PUSH3 0x83B PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 PUSH1 0x20 SUB PUSH1 0x8 MUL PUSH3 0x3A5 JUMP JUMPDEST DUP4 AND SWAP3 POP JUMPDEST POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH1 0xA0 MLOAD PUSH1 0xC0 MLOAD PUSH1 0xE0 MLOAD PUSH2 0x100 MLOAD PUSH2 0x120 MLOAD PUSH2 0x140 MLOAD PUSH2 0x1B6E PUSH3 0x899 PUSH0 CODECOPY PUSH0 PUSH2 0xA15 ADD MSTORE PUSH0 PUSH2 0x9DA ADD MSTORE PUSH0 PUSH2 0xF0E ADD MSTORE PUSH0 PUSH2 0xEED ADD MSTORE PUSH0 PUSH2 0x8D8 ADD MSTORE PUSH0 PUSH2 0x92E ADD MSTORE PUSH0 PUSH2 0x957 ADD MSTORE PUSH2 0x1B6E PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x8A JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x22D JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x24B JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x27B JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x297 JUMPI PUSH2 0xCD JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1A9 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x1D9 JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x209 JUMPI PUSH2 0xCD JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xD1 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x13D JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x18B JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xD9 PUSH2 0x2C7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE6 SWAP2 SWAP1 PUSH2 0x13DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x109 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x104 SWAP2 SWAP1 PUSH2 0x148F JUMP JUMPDEST PUSH2 0x357 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x14E7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x379 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x157 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x1528 JUMP JUMPDEST PUSH2 0x382 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x164 SWAP2 SWAP1 PUSH2 0x14E7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x175 PUSH2 0x3B0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x1593 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x193 PUSH2 0x3B8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A0 SWAP2 SWAP1 PUSH2 0x15C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BE SWAP2 SWAP1 PUSH2 0x15DD JUMP JUMPDEST PUSH2 0x3C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D0 SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EE SWAP2 SWAP1 PUSH2 0x15DD JUMP JUMPDEST PUSH2 0x40B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x211 PUSH2 0x41C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x224 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1708 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x235 PUSH2 0x4C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x242 SWAP2 SWAP1 PUSH2 0x13DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x265 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x260 SWAP2 SWAP1 PUSH2 0x148F JUMP JUMPDEST PUSH2 0x551 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x272 SWAP2 SWAP1 PUSH2 0x14E7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x295 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x290 SWAP2 SWAP1 PUSH2 0x17DE JUMP JUMPDEST PUSH2 0x573 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AC SWAP2 SWAP1 PUSH2 0x187B JUMP JUMPDEST PUSH2 0x6B8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BE SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x2D6 SWAP1 PUSH2 0x18E6 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 0x302 SWAP1 PUSH2 0x18E6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x34D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x324 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x34D JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x330 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x361 PUSH2 0x73A JUMP JUMPDEST SWAP1 POP PUSH2 0x36E DUP2 DUP6 DUP6 PUSH2 0x741 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x38C PUSH2 0x73A JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP6 DUP3 DUP6 PUSH2 0x753 JUMP JUMPDEST PUSH2 0x3A4 DUP6 DUP6 DUP6 PUSH2 0x7E5 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x3C1 PUSH2 0x8D5 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x415 DUP3 PUSH2 0x98B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0x60 PUSH2 0x42D PUSH2 0x9D1 JUMP JUMPDEST PUSH2 0x435 PUSH2 0xA0C JUMP JUMPDEST CHAINID ADDRESS PUSH0 DUP1 SHL PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x454 JUMPI PUSH2 0x453 PUSH2 0x1916 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x482 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP PUSH32 0xF00000000000000000000000000000000000000000000000000000000000000 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 SWAP7 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x4D0 SWAP1 PUSH2 0x18E6 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 0x4FC SWAP1 PUSH2 0x18E6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x547 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x51E JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x547 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x52A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x55B PUSH2 0x73A JUMP JUMPDEST SWAP1 POP PUSH2 0x568 DUP2 DUP6 DUP6 PUSH2 0x7E5 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x5B8 JUMPI DUP4 PUSH1 0x40 MLOAD PUSH32 0x6279130200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5AF SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x5E6 DUP13 PUSH2 0xA47 JUMP JUMPDEST DUP10 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x5FC SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1943 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH0 PUSH2 0x61E DUP3 PUSH2 0xA9A JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x62D DUP3 DUP8 DUP8 DUP8 PUSH2 0xAB3 JUMP JUMPDEST SWAP1 POP DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6A1 JUMPI DUP1 DUP11 PUSH1 0x40 MLOAD PUSH32 0x4B800E4600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP3 SWAP2 SWAP1 PUSH2 0x19A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6AC DUP11 DUP11 DUP11 PUSH2 0x741 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x74E DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xAE1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x75E DUP5 DUP5 PUSH2 0x6B8 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7DF JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7D0 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH32 0xFB8F41B200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7C7 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x19C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7DE DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0xAE1 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x855 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x96C6FD1E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x84C SWAP2 SWAP1 PUSH2 0x19FE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8C5 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xEC442F0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8BC SWAP2 SWAP1 PUSH2 0x19FE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8D0 DUP4 DUP4 DUP4 PUSH2 0xCB0 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 ISZERO PUSH2 0x950 JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x97D JUMPI PUSH32 0x0 SWAP1 POP PUSH2 0x988 JUMP JUMPDEST PUSH2 0x985 PUSH2 0xEC9 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x7 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xA07 PUSH1 0x5 PUSH32 0x0 PUSH2 0xF5E SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0xA42 PUSH1 0x6 PUSH32 0x0 PUSH2 0xF5E SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x7 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH1 0x1 ADD SWAP2 SWAP1 POP SSTORE SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xAAC PUSH2 0xAA6 PUSH2 0x8D5 JUMP JUMPDEST DUP4 PUSH2 0x100B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH2 0xAC3 DUP9 DUP9 DUP9 DUP9 PUSH2 0x104B JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0xAD3 DUP3 DUP3 PUSH2 0x1132 JUMP JUMPDEST DUP3 SWAP4 POP POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB51 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xE602DF0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB48 SWAP2 SWAP1 PUSH2 0x19FE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xBC1 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x94280D6200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBB8 SWAP2 SWAP1 PUSH2 0x19FE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 PUSH0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0xCAA JUMPI DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCA1 SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xD00 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xCF4 SWAP2 SWAP1 PUSH2 0x1A44 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0xDCE JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xD89 JUMPI DUP4 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH32 0xE450D38C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD80 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x19C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xE15 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0xE5F JUMP JUMPDEST DUP1 PUSH0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xEBC SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH32 0x0 PUSH32 0x0 CHAINID ADDRESS PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF43 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1A77 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xFF PUSH0 SHL DUP4 EQ PUSH2 0xF7A JUMPI PUSH2 0xF73 DUP4 PUSH2 0x1294 JUMP JUMPDEST SWAP1 POP PUSH2 0x1005 JUMP JUMPDEST DUP2 DUP1 SLOAD PUSH2 0xF86 SWAP1 PUSH2 0x18E6 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 0xFB2 SWAP1 PUSH2 0x18E6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xFFD JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xFD4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xFFD JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xFE0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP4 PUSH1 0x2 DUP3 ADD MSTORE DUP3 PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 DUP2 KECCAK256 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 PUSH0 SHR GT ISZERO PUSH2 0x1087 JUMPI PUSH0 PUSH1 0x3 DUP6 SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x1128 JUMP JUMPDEST PUSH0 PUSH1 0x1 DUP9 DUP9 DUP9 DUP9 PUSH1 0x40 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0x10AA SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1AC8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x10CA JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP PUSH1 0x20 PUSH1 0x40 MLOAD SUB MLOAD SWAP1 POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x111B JUMPI PUSH0 PUSH1 0x1 PUSH0 DUP1 SHL SWAP4 POP SWAP4 POP SWAP4 POP POP PUSH2 0x1128 JUMP JUMPDEST DUP1 PUSH0 DUP1 PUSH0 SHL SWAP4 POP SWAP4 POP SWAP4 POP POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1145 JUMPI PUSH2 0x1144 PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1158 JUMPI PUSH2 0x1157 PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST SUB ISZERO PUSH2 0x1290 JUMPI PUSH1 0x1 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1172 JUMPI PUSH2 0x1171 PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1185 JUMPI PUSH2 0x1184 PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST SUB PUSH2 0x11BC JUMPI PUSH1 0x40 MLOAD PUSH32 0xF645EEDF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x11D0 JUMPI PUSH2 0x11CF PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x11E3 JUMPI PUSH2 0x11E2 PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST SUB PUSH2 0x1227 JUMPI DUP1 PUSH0 SHR PUSH1 0x40 MLOAD PUSH32 0xFCE698F700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x121E SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 DUP1 DUP2 GT ISZERO PUSH2 0x123A JUMPI PUSH2 0x1239 PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x124D JUMPI PUSH2 0x124C PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST SUB PUSH2 0x128F JUMPI DUP1 PUSH1 0x40 MLOAD PUSH32 0xD78BCE0C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1286 SWAP2 SWAP1 PUSH2 0x15C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x12A0 DUP4 PUSH2 0x1306 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x20 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x12BE JUMPI PUSH2 0x12BD PUSH2 0x1916 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 0x12F0 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 DUP2 DUP2 MSTORE DUP4 PUSH1 0x20 DUP3 ADD MSTORE DUP1 SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0xFF DUP4 PUSH0 SHR AND SWAP1 POP PUSH1 0x1F DUP2 GT ISZERO PUSH2 0x134B JUMPI PUSH1 0x40 MLOAD PUSH32 0xB3512B0C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x138B JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1370 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x13B0 DUP3 PUSH2 0x1354 JUMP JUMPDEST PUSH2 0x13BA DUP2 DUP6 PUSH2 0x135E JUMP JUMPDEST SWAP4 POP PUSH2 0x13CA DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x136E JUMP JUMPDEST PUSH2 0x13D3 DUP2 PUSH2 0x1396 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x13F6 DUP2 DUP5 PUSH2 0x13A6 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x142B DUP3 PUSH2 0x1402 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x143B DUP2 PUSH2 0x1421 JUMP JUMPDEST DUP2 EQ PUSH2 0x1445 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1456 DUP2 PUSH2 0x1432 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x146E DUP2 PUSH2 0x145C JUMP JUMPDEST DUP2 EQ PUSH2 0x1478 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1489 DUP2 PUSH2 0x1465 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x14A5 JUMPI PUSH2 0x14A4 PUSH2 0x13FE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x14B2 DUP6 DUP3 DUP7 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x14C3 DUP6 DUP3 DUP7 ADD PUSH2 0x147B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x14E1 DUP2 PUSH2 0x14CD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x14FA PUSH0 DUP4 ADD DUP5 PUSH2 0x14D8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1509 DUP2 PUSH2 0x145C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1522 PUSH0 DUP4 ADD DUP5 PUSH2 0x1500 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153E PUSH2 0x13FE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x154C DUP7 DUP3 DUP8 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x155D DUP7 DUP3 DUP8 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x156E DUP7 DUP3 DUP8 ADD PUSH2 0x147B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x158D DUP2 PUSH2 0x1578 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x15A6 PUSH0 DUP4 ADD DUP5 PUSH2 0x1584 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x15BE DUP2 PUSH2 0x15AC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x15D7 PUSH0 DUP4 ADD DUP5 PUSH2 0x15B5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x15F2 JUMPI PUSH2 0x15F1 PUSH2 0x13FE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x15FF DUP5 DUP3 DUP6 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH32 0xFF00000000000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x163C DUP2 PUSH2 0x1608 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x164B DUP2 PUSH2 0x1421 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1683 DUP2 PUSH2 0x145C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1694 DUP4 DUP4 PUSH2 0x167A JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x16B6 DUP3 PUSH2 0x1651 JUMP JUMPDEST PUSH2 0x16C0 DUP2 DUP6 PUSH2 0x165B JUMP JUMPDEST SWAP4 POP PUSH2 0x16CB DUP4 PUSH2 0x166B JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x16FB JUMPI DUP2 MLOAD PUSH2 0x16E2 DUP9 DUP3 PUSH2 0x1689 JUMP JUMPDEST SWAP8 POP PUSH2 0x16ED DUP4 PUSH2 0x16A0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x16CE JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0xE0 DUP3 ADD SWAP1 POP PUSH2 0x171B PUSH0 DUP4 ADD DUP11 PUSH2 0x1633 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x172D DUP2 DUP10 PUSH2 0x13A6 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x1741 DUP2 DUP9 PUSH2 0x13A6 JUMP JUMPDEST SWAP1 POP PUSH2 0x1750 PUSH1 0x60 DUP4 ADD DUP8 PUSH2 0x1500 JUMP JUMPDEST PUSH2 0x175D PUSH1 0x80 DUP4 ADD DUP7 PUSH2 0x1642 JUMP JUMPDEST PUSH2 0x176A PUSH1 0xA0 DUP4 ADD DUP6 PUSH2 0x15B5 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0x177C DUP2 DUP5 PUSH2 0x16AC JUMP JUMPDEST SWAP1 POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1793 DUP2 PUSH2 0x1578 JUMP JUMPDEST DUP2 EQ PUSH2 0x179D JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x17AE DUP2 PUSH2 0x178A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x17BD DUP2 PUSH2 0x15AC JUMP JUMPDEST DUP2 EQ PUSH2 0x17C7 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x17D8 DUP2 PUSH2 0x17B4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x17F9 JUMPI PUSH2 0x17F8 PUSH2 0x13FE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1806 DUP11 DUP3 DUP12 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP8 POP POP PUSH1 0x20 PUSH2 0x1817 DUP11 DUP3 DUP12 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP7 POP POP PUSH1 0x40 PUSH2 0x1828 DUP11 DUP3 DUP12 ADD PUSH2 0x147B JUMP JUMPDEST SWAP6 POP POP PUSH1 0x60 PUSH2 0x1839 DUP11 DUP3 DUP12 ADD PUSH2 0x147B JUMP JUMPDEST SWAP5 POP POP PUSH1 0x80 PUSH2 0x184A DUP11 DUP3 DUP12 ADD PUSH2 0x17A0 JUMP JUMPDEST SWAP4 POP POP PUSH1 0xA0 PUSH2 0x185B DUP11 DUP3 DUP12 ADD PUSH2 0x17CA JUMP JUMPDEST SWAP3 POP POP PUSH1 0xC0 PUSH2 0x186C DUP11 DUP3 DUP12 ADD PUSH2 0x17CA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1891 JUMPI PUSH2 0x1890 PUSH2 0x13FE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x189E DUP6 DUP3 DUP7 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x18AF DUP6 DUP3 DUP7 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x18FD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1910 JUMPI PUSH2 0x190F PUSH2 0x18B9 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xC0 DUP3 ADD SWAP1 POP PUSH2 0x1956 PUSH0 DUP4 ADD DUP10 PUSH2 0x15B5 JUMP JUMPDEST PUSH2 0x1963 PUSH1 0x20 DUP4 ADD DUP9 PUSH2 0x1642 JUMP JUMPDEST PUSH2 0x1970 PUSH1 0x40 DUP4 ADD DUP8 PUSH2 0x1642 JUMP JUMPDEST PUSH2 0x197D PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x1500 JUMP JUMPDEST PUSH2 0x198A PUSH1 0x80 DUP4 ADD DUP6 PUSH2 0x1500 JUMP JUMPDEST PUSH2 0x1997 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x1500 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x19B5 PUSH0 DUP4 ADD DUP6 PUSH2 0x1642 JUMP JUMPDEST PUSH2 0x19C2 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1642 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x19DC PUSH0 DUP4 ADD DUP7 PUSH2 0x1642 JUMP JUMPDEST PUSH2 0x19E9 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x1500 JUMP JUMPDEST PUSH2 0x19F6 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x1500 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A11 PUSH0 DUP4 ADD DUP5 PUSH2 0x1642 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x1A4E DUP3 PUSH2 0x145C JUMP JUMPDEST SWAP2 POP PUSH2 0x1A59 DUP4 PUSH2 0x145C JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x1A71 JUMPI PUSH2 0x1A70 PUSH2 0x1A17 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x1A8A PUSH0 DUP4 ADD DUP9 PUSH2 0x15B5 JUMP JUMPDEST PUSH2 0x1A97 PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x15B5 JUMP JUMPDEST PUSH2 0x1AA4 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x15B5 JUMP JUMPDEST PUSH2 0x1AB1 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x1500 JUMP JUMPDEST PUSH2 0x1ABE PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x1642 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1ADB PUSH0 DUP4 ADD DUP8 PUSH2 0x15B5 JUMP JUMPDEST PUSH2 0x1AE8 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1584 JUMP JUMPDEST PUSH2 0x1AF5 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x15B5 JUMP JUMPDEST PUSH2 0x1B02 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x15B5 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GAS JUMP ORIGIN 0xCA 0x5D 0xE1 0xD1 PUSH22 0x31C35752ED8677F34D4B4D88FE06AE5DBEF50725256F 0xB8 0xE4 PUSH5 0x736F6C6343 STOP ADDMOD OR STOP CALLER ",
"sourceMap": "188:111:17:-:0;;;233:64;;;;;;;;;;1574:52:4;;;;;;;;;;;;;;;;;1613:4;3328:431:13;;;;;;;;;;;;;;;;;1896:113:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970:5;1962;:13;;;;;;:::i;:::-;;1995:7;1985;:17;;;;;;:::i;:::-;;1896:113;;3401:45:13;3432:13;3401:4;:30;;;;:45;;;;:::i;:::-;3393:53;;;;;;3467:51;3501:16;3467:7;:33;;;;:51;;;;:::i;:::-;3456:62;;;;;;3558:4;3542:22;;;;;;3528:36;;;;;;3607:7;3591:25;;;;;;3574:42;;;;;;3644:13;3627:30;;;;;;3692:23;:21;;;:23;;:::i;:::-;3667:48;;;;;;3747:4;3725:27;;;;;;;;;;3328:431;;1574:52:4;188:111:17;;2914:340:9;3010:11;3059:2;3043:5;3037:19;:24;3033:215;;;3084:20;3098:5;3084:13;;;:20;;:::i;:::-;3077:27;;;;3033:215;3176:5;3135:32;3161:5;3135:25;;;:32;;:::i;:::-;:38;;:46;;;;;;:::i;:::-;;1390:66;3219:17;;3195:42;;2914:340;;;;;:::o;4113:179:13:-;4168:7;2079:95;4226:11;;4239:14;;4255:13;4278:4;4204:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4194:91;;;;;;4187:98;;4113:179;:::o;1708:286:9:-;1773:11;1796:17;1822:3;1796:30;;1854:2;1840:4;:11;:16;1836:72;;;1893:3;1879:18;;;;;;;;;;;:::i;:::-;;;;;;;;1836:72;1974:4;:11;1965:4;1957:13;;;:::i;:::-;1949:22;;:36;1941:45;;1917:70;;;1708:286;;;:::o;3135:202:10:-;3203:20;3311:10;3301:20;;3135:202;;;:::o;7:99:18:-;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;5234:77::-;5271:7;5300:5;5289:16;;5234:77;;;:::o;5317:118::-;5404:24;5422:5;5404:24;:::i;:::-;5399:3;5392:37;5317:118;;:::o;5441:::-;5528:24;5546:5;5528:24;:::i;:::-;5523:3;5516:37;5441:118;;:::o;5565:126::-;5602:7;5642:42;5635:5;5631:54;5620:65;;5565:126;;;:::o;5697:96::-;5734:7;5763:24;5781:5;5763:24;:::i;:::-;5752:35;;5697:96;;;:::o;5799:118::-;5886:24;5904:5;5886:24;:::i;:::-;5881:3;5874:37;5799:118;;:::o;5923:664::-;6128:4;6166:3;6155:9;6151:19;6143:27;;6180:71;6248:1;6237:9;6233:17;6224:6;6180:71;:::i;:::-;6261:72;6329:2;6318:9;6314:18;6305:6;6261:72;:::i;:::-;6343;6411:2;6400:9;6396:18;6387:6;6343:72;:::i;:::-;6425;6493:2;6482:9;6478:18;6469:6;6425:72;:::i;:::-;6507:73;6575:3;6564:9;6560:19;6551:6;6507:73;:::i;:::-;5923:664;;;;;;;;:::o;6593:169::-;6677:11;6711:6;6706:3;6699:19;6751:4;6746:3;6742:14;6727:29;;6593:169;;;;:::o;6768:246::-;6849:1;6859:113;6873:6;6870:1;6867:13;6859:113;;;6958:1;6953:3;6949:11;6943:18;6939:1;6934:3;6930:11;6923:39;6895:2;6892:1;6888:10;6883:15;;6859:113;;;7006:1;6997:6;6992:3;6988:16;6981:27;6830:184;6768:246;;;:::o;7020:102::-;7061:6;7112:2;7108:7;7103:2;7096:5;7092:14;7088:28;7078:38;;7020:102;;;:::o;7128:377::-;7216:3;7244:39;7277:5;7244:39;:::i;:::-;7299:71;7363:6;7358:3;7299:71;:::i;:::-;7292:78;;7379:65;7437:6;7432:3;7425:4;7418:5;7414:16;7379:65;:::i;:::-;7469:29;7491:6;7469:29;:::i;:::-;7464:3;7460:39;7453:46;;7220:285;7128:377;;;;:::o;7511:313::-;7624:4;7662:2;7651:9;7647:18;7639:26;;7711:9;7705:4;7701:20;7697:1;7686:9;7682:17;7675:47;7739:78;7812:4;7803:6;7739:78;:::i;:::-;7731:86;;7511:313;;;;:::o;7830:98::-;7881:6;7915:5;7909:12;7899:22;;7830:98;;;:::o;7934:116::-;7985:4;8008:3;8000:11;;8038:4;8033:3;8029:14;8021:22;;7934:116;;;:::o;8056:154::-;8099:11;8135:29;8159:3;8153:10;8135:29;:::i;:::-;8198:5;8174:29;;8111:99;8056:154;;;:::o;8216:594::-;8300:5;8331:38;8363:5;8331:38;:::i;:::-;8394:5;8421:40;8455:5;8421:40;:::i;:::-;8409:52;;8480:35;8506:8;8480:35;:::i;:::-;8471:44;;8539:2;8531:6;8528:14;8525:278;;;8610:169;8695:66;8665:6;8661:2;8657:15;8654:1;8650:23;8610:169;:::i;:::-;8587:5;8566:227;8557:236;;8525:278;8306:504;;8216:594;;;:::o;188:111:17:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@DOMAIN_SEPARATOR_907": {
"entryPoint": 952,
"id": 907,
"parameterSlots": 0,
"returnSlots": 1
},
"@_EIP712Name_2212": {
"entryPoint": 2513,
"id": 2212,
"parameterSlots": 0,
"returnSlots": 1
},
"@_EIP712Version_2224": {
"entryPoint": 2572,
"id": 2224,
"parameterSlots": 0,
"returnSlots": 1
},
"@_approve_567": {
"entryPoint": 1857,
"id": 567,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_627": {
"entryPoint": 2785,
"id": 627,
"parameterSlots": 4,
"returnSlots": 0
},
"@_buildDomainSeparator_2142": {
"entryPoint": 3785,
"id": 2142,
"parameterSlots": 0,
"returnSlots": 1
},
"@_domainSeparatorV4_2121": {
"entryPoint": 2261,
"id": 2121,
"parameterSlots": 0,
"returnSlots": 1
},
"@_hashTypedDataV4_2158": {
"entryPoint": 2714,
"id": 2158,
"parameterSlots": 1,
"returnSlots": 1
},
"@_msgSender_982": {
"entryPoint": 1850,
"id": 982,
"parameterSlots": 0,
"returnSlots": 1
},
"@_spendAllowance_675": {
"entryPoint": 1875,
"id": 675,
"parameterSlots": 3,
"returnSlots": 0
},
"@_throwError_1997": {
"entryPoint": 4402,
"id": 1997,
"parameterSlots": 2,
"returnSlots": 0
},
"@_transfer_406": {
"entryPoint": 2021,
"id": 406,
"parameterSlots": 3,
"returnSlots": 0
},
"@_update_483": {
"entryPoint": 3248,
"id": 483,
"parameterSlots": 3,
"returnSlots": 0
},
"@_useNonce_1042": {
"entryPoint": 2631,
"id": 1042,
"parameterSlots": 1,
"returnSlots": 1
},
"@allowance_303": {
"entryPoint": 1720,
"id": 303,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_327": {
"entryPoint": 855,
"id": 327,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_262": {
"entryPoint": 966,
"id": 262,
"parameterSlots": 1,
"returnSlots": 1
},
"@byteLength_1186": {
"entryPoint": 4870,
"id": 1186,
"parameterSlots": 1,
"returnSlots": 1
},
"@decimals_240": {
"entryPoint": 944,
"id": 240,
"parameterSlots": 0,
"returnSlots": 1
},
"@eip712Domain_2200": {
"entryPoint": 1052,
"id": 2200,
"parameterSlots": 0,
"returnSlots": 7
},
"@name_222": {
"entryPoint": 711,
"id": 222,
"parameterSlots": 0,
"returnSlots": 1
},
"@nonces_1027": {
"entryPoint": 2443,
"id": 1027,
"parameterSlots": 1,
"returnSlots": 1
},
"@nonces_897": {
"entryPoint": 1035,
"id": 897,
"parameterSlots": 1,
"returnSlots": 1
},
"@permit_880": {
"entryPoint": 1395,
"id": 880,
"parameterSlots": 7,
"returnSlots": 0
},
"@recover_1948": {
"entryPoint": 2739,
"id": 1948,
"parameterSlots": 4,
"returnSlots": 1
},
"@symbol_231": {
"entryPoint": 1217,
"id": 231,
"parameterSlots": 0,
"returnSlots": 1
},
"@toStringWithFallback_1253": {
"entryPoint": 3934,
"id": 1253,
"parameterSlots": 2,
"returnSlots": 1
},
"@toString_1154": {
"entryPoint": 4756,
"id": 1154,
"parameterSlots": 1,
"returnSlots": 1
},
"@toTypedDataHash_2298": {
"entryPoint": 4107,
"id": 2298,
"parameterSlots": 2,
"returnSlots": 1
},
"@totalSupply_249": {
"entryPoint": 889,
"id": 249,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_359": {
"entryPoint": 898,
"id": 359,
"parameterSlots": 3,
"returnSlots": 1
},
"@transfer_286": {
"entryPoint": 1361,
"id": 286,
"parameterSlots": 2,
"returnSlots": 1
},
"@tryRecover_1912": {
"entryPoint": 4171,
"id": 1912,
"parameterSlots": 4,
"returnSlots": 3
},
"abi_decode_t_address": {
"entryPoint": 5192,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes32": {
"entryPoint": 6090,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 5243,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint8": {
"entryPoint": 6048,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 5597,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 6267,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 5416,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32": {
"entryPoint": 6110,
"id": null,
"parameterSlots": 2,
"returnSlots": 7
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 5263,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encodeUpdatedPos_t_uint256_to_t_uint256": {
"entryPoint": 5769,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 5698,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 5804,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 5336,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes1_to_t_bytes1_fromStack": {
"entryPoint": 5683,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_fromStack": {
"entryPoint": 5557,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 5030,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 5754,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 5376,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 5508,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 6654,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed": {
"entryPoint": 6562,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 6601,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 5351,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed": {
"entryPoint": 5896,
"id": null,
"parameterSlots": 8,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
"entryPoint": 5572,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 6467,
"id": null,
"parameterSlots": 7,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
"entryPoint": 6775,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed": {
"entryPoint": 6856,
"id": null,
"parameterSlots": 5,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 5086,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 5391,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 5523,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_dataslot_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 5739,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 5713,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 4948,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_nextElement_t_array$_t_uint256_$dyn_memory_ptr": {
"entryPoint": 5792,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack": {
"entryPoint": 5723,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 4958,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 6724,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 5153,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 5325,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes1": {
"entryPoint": 5640,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 5548,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 5122,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 5212,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 5496,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 4974,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 6374,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 6679,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x21": {
"entryPoint": 6923,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 6329,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 6422,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 5118,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 5014,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_address": {
"entryPoint": 5170,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes32": {
"entryPoint": 6068,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 5221,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint8": {
"entryPoint": 6026,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:15381:18",
"nodeType": "YulBlock",
"src": "0:15381:18",
"statements": [
{
"body": {
"nativeSrc": "66:40:18",
"nodeType": "YulBlock",
"src": "66:40:18",
"statements": [
{
"nativeSrc": "77:22:18",
"nodeType": "YulAssignment",
"src": "77:22:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "93:5:18",
"nodeType": "YulIdentifier",
"src": "93:5:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "87:5:18",
"nodeType": "YulIdentifier",
"src": "87:5:18"
},
"nativeSrc": "87:12:18",
"nodeType": "YulFunctionCall",
"src": "87:12:18"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "77:6:18",
"nodeType": "YulIdentifier",
"src": "77:6:18"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7:99:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "49:5:18",
"nodeType": "YulTypedName",
"src": "49:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "59:6:18",
"nodeType": "YulTypedName",
"src": "59:6:18",
"type": ""
}
],
"src": "7:99:18"
},
{
"body": {
"nativeSrc": "208:73:18",
"nodeType": "YulBlock",
"src": "208:73:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "225:3:18",
"nodeType": "YulIdentifier",
"src": "225:3:18"
},
{
"name": "length",
"nativeSrc": "230:6:18",
"nodeType": "YulIdentifier",
"src": "230:6:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "218:6:18",
"nodeType": "YulIdentifier",
"src": "218:6:18"
},
"nativeSrc": "218:19:18",
"nodeType": "YulFunctionCall",
"src": "218:19:18"
},
"nativeSrc": "218:19:18",
"nodeType": "YulExpressionStatement",
"src": "218:19:18"
},
{
"nativeSrc": "246:29:18",
"nodeType": "YulAssignment",
"src": "246:29:18",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "265:3:18",
"nodeType": "YulIdentifier",
"src": "265:3:18"
},
{
"kind": "number",
"nativeSrc": "270:4:18",
"nodeType": "YulLiteral",
"src": "270:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "261:3:18",
"nodeType": "YulIdentifier",
"src": "261:3:18"
},
"nativeSrc": "261:14:18",
"nodeType": "YulFunctionCall",
"src": "261:14:18"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "246:11:18",
"nodeType": "YulIdentifier",
"src": "246:11:18"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "112:169:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "180:3:18",
"nodeType": "YulTypedName",
"src": "180:3:18",
"type": ""
},
{
"name": "length",
"nativeSrc": "185:6:18",
"nodeType": "YulTypedName",
"src": "185:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "196:11:18",
"nodeType": "YulTypedName",
"src": "196:11:18",
"type": ""
}
],
"src": "112:169:18"
},
{
"body": {
"nativeSrc": "349:184:18",
"nodeType": "YulBlock",
"src": "349:184:18",
"statements": [
{
"nativeSrc": "359:10:18",
"nodeType": "YulVariableDeclaration",
"src": "359:10:18",
"value": {
"kind": "number",
"nativeSrc": "368:1:18",
"nodeType": "YulLiteral",
"src": "368:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "363:1:18",
"nodeType": "YulTypedName",
"src": "363:1:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "428:63:18",
"nodeType": "YulBlock",
"src": "428:63:18",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "453:3:18",
"nodeType": "YulIdentifier",
"src": "453:3:18"
},
{
"name": "i",
"nativeSrc": "458:1:18",
"nodeType": "YulIdentifier",
"src": "458:1:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "449:3:18",
"nodeType": "YulIdentifier",
"src": "449:3:18"
},
"nativeSrc": "449:11:18",
"nodeType": "YulFunctionCall",
"src": "449:11:18"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "472:3:18",
"nodeType": "YulIdentifier",
"src": "472:3:18"
},
{
"name": "i",
"nativeSrc": "477:1:18",
"nodeType": "YulIdentifier",
"src": "477:1:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "468:3:18",
"nodeType": "YulIdentifier",
"src": "468:3:18"
},
"nativeSrc": "468:11:18",
"nodeType": "YulFunctionCall",
"src": "468:11:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "462:5:18",
"nodeType": "YulIdentifier",
"src": "462:5:18"
},
"nativeSrc": "462:18:18",
"nodeType": "YulFunctionCall",
"src": "462:18:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "442:6:18",
"nodeType": "YulIdentifier",
"src": "442:6:18"
},
"nativeSrc": "442:39:18",
"nodeType": "YulFunctionCall",
"src": "442:39:18"
},
"nativeSrc": "442:39:18",
"nodeType": "YulExpressionStatement",
"src": "442:39:18"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "389:1:18",
"nodeType": "YulIdentifier",
"src": "389:1:18"
},
{
"name": "length",
"nativeSrc": "392:6:18",
"nodeType": "YulIdentifier",
"src": "392:6:18"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "386:2:18",
"nodeType": "YulIdentifier",
"src": "386:2:18"
},
"nativeSrc": "386:13:18",
"nodeType": "YulFunctionCall",
"src": "386:13:18"
},
"nativeSrc": "378:113:18",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "400:19:18",
"nodeType": "YulBlock",
"src": "400:19:18",
"statements": [
{
"nativeSrc": "402:15:18",
"nodeType": "YulAssignment",
"src": "402:15:18",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "411:1:18",
"nodeType": "YulIdentifier",
"src": "411:1:18"
},
{
"kind": "number",
"nativeSrc": "414:2:18",
"nodeType": "YulLiteral",
"src": "414:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "407:3:18",
"nodeType": "YulIdentifier",
"src": "407:3:18"
},
"nativeSrc": "407:10:18",
"nodeType": "YulFunctionCall",
"src": "407:10:18"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "402:1:18",
"nodeType": "YulIdentifier",
"src": "402:1:18"
}
]
}
]
},
"pre": {
"nativeSrc": "382:3:18",
"nodeType": "YulBlock",
"src": "382:3:18",
"statements": []
},
"src": "378:113:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "511:3:18",
"nodeType": "YulIdentifier",
"src": "511:3:18"
},
{
"name": "length",
"nativeSrc": "516:6:18",
"nodeType": "YulIdentifier",
"src": "516:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "507:3:18",
"nodeType": "YulIdentifier",
"src": "507:3:18"
},
"nativeSrc": "507:16:18",
"nodeType": "YulFunctionCall",
"src": "507:16:18"
},
{
"kind": "number",
"nativeSrc": "525:1:18",
"nodeType": "YulLiteral",
"src": "525:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "500:6:18",
"nodeType": "YulIdentifier",
"src": "500:6:18"
},
"nativeSrc": "500:27:18",
"nodeType": "YulFunctionCall",
"src": "500:27:18"
},
"nativeSrc": "500:27:18",
"nodeType": "YulExpressionStatement",
"src": "500:27:18"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "287:246:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "331:3:18",
"nodeType": "YulTypedName",
"src": "331:3:18",
"type": ""
},
{
"name": "dst",
"nativeSrc": "336:3:18",
"nodeType": "YulTypedName",
"src": "336:3:18",
"type": ""
},
{
"name": "length",
"nativeSrc": "341:6:18",
"nodeType": "YulTypedName",
"src": "341:6:18",
"type": ""
}
],
"src": "287:246:18"
},
{
"body": {
"nativeSrc": "587:54:18",
"nodeType": "YulBlock",
"src": "587:54:18",
"statements": [
{
"nativeSrc": "597:38:18",
"nodeType": "YulAssignment",
"src": "597:38:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "615:5:18",
"nodeType": "YulIdentifier",
"src": "615:5:18"
},
{
"kind": "number",
"nativeSrc": "622:2:18",
"nodeType": "YulLiteral",
"src": "622:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "611:3:18",
"nodeType": "YulIdentifier",
"src": "611:3:18"
},
"nativeSrc": "611:14:18",
"nodeType": "YulFunctionCall",
"src": "611:14:18"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "631:2:18",
"nodeType": "YulLiteral",
"src": "631:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "627:3:18",
"nodeType": "YulIdentifier",
"src": "627:3:18"
},
"nativeSrc": "627:7:18",
"nodeType": "YulFunctionCall",
"src": "627:7:18"
}
],
"functionName": {
"name": "and",
"nativeSrc": "607:3:18",
"nodeType": "YulIdentifier",
"src": "607:3:18"
},
"nativeSrc": "607:28:18",
"nodeType": "YulFunctionCall",
"src": "607:28:18"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "597:6:18",
"nodeType": "YulIdentifier",
"src": "597:6:18"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "539:102:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "570:5:18",
"nodeType": "YulTypedName",
"src": "570:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "580:6:18",
"nodeType": "YulTypedName",
"src": "580:6:18",
"type": ""
}
],
"src": "539:102:18"
},
{
"body": {
"nativeSrc": "739:285:18",
"nodeType": "YulBlock",
"src": "739:285:18",
"statements": [
{
"nativeSrc": "749:53:18",
"nodeType": "YulVariableDeclaration",
"src": "749:53:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "796:5:18",
"nodeType": "YulIdentifier",
"src": "796:5:18"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "763:32:18",
"nodeType": "YulIdentifier",
"src": "763:32:18"
},
"nativeSrc": "763:39:18",
"nodeType": "YulFunctionCall",
"src": "763:39:18"
},
"variables": [
{
"name": "length",
"nativeSrc": "753:6:18",
"nodeType": "YulTypedName",
"src": "753:6:18",
"type": ""
}
]
},
{
"nativeSrc": "811:78:18",
"nodeType": "YulAssignment",
"src": "811:78:18",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "877:3:18",
"nodeType": "YulIdentifier",
"src": "877:3:18"
},
{
"name": "length",
"nativeSrc": "882:6:18",
"nodeType": "YulIdentifier",
"src": "882:6:18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "818:58:18",
"nodeType": "YulIdentifier",
"src": "818:58:18"
},
"nativeSrc": "818:71:18",
"nodeType": "YulFunctionCall",
"src": "818:71:18"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "811:3:18",
"nodeType": "YulIdentifier",
"src": "811:3:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "937:5:18",
"nodeType": "YulIdentifier",
"src": "937:5:18"
},
{
"kind": "number",
"nativeSrc": "944:4:18",
"nodeType": "YulLiteral",
"src": "944:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "933:3:18",
"nodeType": "YulIdentifier",
"src": "933:3:18"
},
"nativeSrc": "933:16:18",
"nodeType": "YulFunctionCall",
"src": "933:16:18"
},
{
"name": "pos",
"nativeSrc": "951:3:18",
"nodeType": "YulIdentifier",
"src": "951:3:18"
},
{
"name": "length",
"nativeSrc": "956:6:18",
"nodeType": "YulIdentifier",
"src": "956:6:18"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "898:34:18",
"nodeType": "YulIdentifier",
"src": "898:34:18"
},
"nativeSrc": "898:65:18",
"nodeType": "YulFunctionCall",
"src": "898:65:18"
},
"nativeSrc": "898:65:18",
"nodeType": "YulExpressionStatement",
"src": "898:65:18"
},
{
"nativeSrc": "972:46:18",
"nodeType": "YulAssignment",
"src": "972:46:18",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "983:3:18",
"nodeType": "YulIdentifier",
"src": "983:3:18"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "1010:6:18",
"nodeType": "YulIdentifier",
"src": "1010:6:18"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "988:21:18",
"nodeType": "YulIdentifier",
"src": "988:21:18"
},
"nativeSrc": "988:29:18",
"nodeType": "YulFunctionCall",
"src": "988:29:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "979:3:18",
"nodeType": "YulIdentifier",
"src": "979:3:18"
},
"nativeSrc": "979:39:18",
"nodeType": "YulFunctionCall",
"src": "979:39:18"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "972:3:18",
"nodeType": "YulIdentifier",
"src": "972:3:18"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "647:377:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "720:5:18",
"nodeType": "YulTypedName",
"src": "720:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "727:3:18",
"nodeType": "YulTypedName",
"src": "727:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "735:3:18",
"nodeType": "YulTypedName",
"src": "735:3:18",
"type": ""
}
],
"src": "647:377:18"
},
{
"body": {
"nativeSrc": "1148:195:18",
"nodeType": "YulBlock",
"src": "1148:195:18",
"statements": [
{
"nativeSrc": "1158:26:18",
"nodeType": "YulAssignment",
"src": "1158:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "1170:9:18",
"nodeType": "YulIdentifier",
"src": "1170:9:18"
},
{
"kind": "number",
"nativeSrc": "1181:2:18",
"nodeType": "YulLiteral",
"src": "1181:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1166:3:18",
"nodeType": "YulIdentifier",
"src": "1166:3:18"
},
"nativeSrc": "1166:18:18",
"nodeType": "YulFunctionCall",
"src": "1166:18:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1158:4:18",
"nodeType": "YulIdentifier",
"src": "1158:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1205:9:18",
"nodeType": "YulIdentifier",
"src": "1205:9:18"
},
{
"kind": "number",
"nativeSrc": "1216:1:18",
"nodeType": "YulLiteral",
"src": "1216:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1201:3:18",
"nodeType": "YulIdentifier",
"src": "1201:3:18"
},
"nativeSrc": "1201:17:18",
"nodeType": "YulFunctionCall",
"src": "1201:17:18"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "1224:4:18",
"nodeType": "YulIdentifier",
"src": "1224:4:18"
},
{
"name": "headStart",
"nativeSrc": "1230:9:18",
"nodeType": "YulIdentifier",
"src": "1230:9:18"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1220:3:18",
"nodeType": "YulIdentifier",
"src": "1220:3:18"
},
"nativeSrc": "1220:20:18",
"nodeType": "YulFunctionCall",
"src": "1220:20:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1194:6:18",
"nodeType": "YulIdentifier",
"src": "1194:6:18"
},
"nativeSrc": "1194:47:18",
"nodeType": "YulFunctionCall",
"src": "1194:47:18"
},
"nativeSrc": "1194:47:18",
"nodeType": "YulExpressionStatement",
"src": "1194:47:18"
},
{
"nativeSrc": "1250:86:18",
"nodeType": "YulAssignment",
"src": "1250:86:18",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "1322:6:18",
"nodeType": "YulIdentifier",
"src": "1322:6:18"
},
{
"name": "tail",
"nativeSrc": "1331:4:18",
"nodeType": "YulIdentifier",
"src": "1331:4:18"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "1258:63:18",
"nodeType": "YulIdentifier",
"src": "1258:63:18"
},
"nativeSrc": "1258:78:18",
"nodeType": "YulFunctionCall",
"src": "1258:78:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1250:4:18",
"nodeType": "YulIdentifier",
"src": "1250:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "1030:313:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1120:9:18",
"nodeType": "YulTypedName",
"src": "1120:9:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "1132:6:18",
"nodeType": "YulTypedName",
"src": "1132:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "1143:4:18",
"nodeType": "YulTypedName",
"src": "1143:4:18",
"type": ""
}
],
"src": "1030:313:18"
},
{
"body": {
"nativeSrc": "1389:35:18",
"nodeType": "YulBlock",
"src": "1389:35:18",
"statements": [
{
"nativeSrc": "1399:19:18",
"nodeType": "YulAssignment",
"src": "1399:19:18",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1415:2:18",
"nodeType": "YulLiteral",
"src": "1415:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "1409:5:18",
"nodeType": "YulIdentifier",
"src": "1409:5:18"
},
"nativeSrc": "1409:9:18",
"nodeType": "YulFunctionCall",
"src": "1409:9:18"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "1399:6:18",
"nodeType": "YulIdentifier",
"src": "1399:6:18"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "1349:75:18",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "1382:6:18",
"nodeType": "YulTypedName",
"src": "1382:6:18",
"type": ""
}
],
"src": "1349:75:18"
},
{
"body": {
"nativeSrc": "1519:28:18",
"nodeType": "YulBlock",
"src": "1519:28:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1536:1:18",
"nodeType": "YulLiteral",
"src": "1536:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1539:1:18",
"nodeType": "YulLiteral",
"src": "1539:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1529:6:18",
"nodeType": "YulIdentifier",
"src": "1529:6:18"
},
"nativeSrc": "1529:12:18",
"nodeType": "YulFunctionCall",
"src": "1529:12:18"
},
"nativeSrc": "1529:12:18",
"nodeType": "YulExpressionStatement",
"src": "1529:12:18"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1430:117:18",
"nodeType": "YulFunctionDefinition",
"src": "1430:117:18"
},
{
"body": {
"nativeSrc": "1642:28:18",
"nodeType": "YulBlock",
"src": "1642:28:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1659:1:18",
"nodeType": "YulLiteral",
"src": "1659:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1662:1:18",
"nodeType": "YulLiteral",
"src": "1662:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1652:6:18",
"nodeType": "YulIdentifier",
"src": "1652:6:18"
},
"nativeSrc": "1652:12:18",
"nodeType": "YulFunctionCall",
"src": "1652:12:18"
},
"nativeSrc": "1652:12:18",
"nodeType": "YulExpressionStatement",
"src": "1652:12:18"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "1553:117:18",
"nodeType": "YulFunctionDefinition",
"src": "1553:117:18"
},
{
"body": {
"nativeSrc": "1721:81:18",
"nodeType": "YulBlock",
"src": "1721:81:18",
"statements": [
{
"nativeSrc": "1731:65:18",
"nodeType": "YulAssignment",
"src": "1731:65:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1746:5:18",
"nodeType": "YulIdentifier",
"src": "1746:5:18"
},
{
"kind": "number",
"nativeSrc": "1753:42:18",
"nodeType": "YulLiteral",
"src": "1753:42:18",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1742:3:18",
"nodeType": "YulIdentifier",
"src": "1742:3:18"
},
"nativeSrc": "1742:54:18",
"nodeType": "YulFunctionCall",
"src": "1742:54:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1731:7:18",
"nodeType": "YulIdentifier",
"src": "1731:7:18"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "1676:126:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1703:5:18",
"nodeType": "YulTypedName",
"src": "1703:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1713:7:18",
"nodeType": "YulTypedName",
"src": "1713:7:18",
"type": ""
}
],
"src": "1676:126:18"
},
{
"body": {
"nativeSrc": "1853:51:18",
"nodeType": "YulBlock",
"src": "1853:51:18",
"statements": [
{
"nativeSrc": "1863:35:18",
"nodeType": "YulAssignment",
"src": "1863:35:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1892:5:18",
"nodeType": "YulIdentifier",
"src": "1892:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "1874:17:18",
"nodeType": "YulIdentifier",
"src": "1874:17:18"
},
"nativeSrc": "1874:24:18",
"nodeType": "YulFunctionCall",
"src": "1874:24:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1863:7:18",
"nodeType": "YulIdentifier",
"src": "1863:7:18"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "1808:96:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1835:5:18",
"nodeType": "YulTypedName",
"src": "1835:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1845:7:18",
"nodeType": "YulTypedName",
"src": "1845:7:18",
"type": ""
}
],
"src": "1808:96:18"
},
{
"body": {
"nativeSrc": "1953:79:18",
"nodeType": "YulBlock",
"src": "1953:79:18",
"statements": [
{
"body": {
"nativeSrc": "2010:16:18",
"nodeType": "YulBlock",
"src": "2010:16:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "2019:1:18",
"nodeType": "YulLiteral",
"src": "2019:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "2022:1:18",
"nodeType": "YulLiteral",
"src": "2022:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "2012:6:18",
"nodeType": "YulIdentifier",
"src": "2012:6:18"
},
"nativeSrc": "2012:12:18",
"nodeType": "YulFunctionCall",
"src": "2012:12:18"
},
"nativeSrc": "2012:12:18",
"nodeType": "YulExpressionStatement",
"src": "2012:12:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1976:5:18",
"nodeType": "YulIdentifier",
"src": "1976:5:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2001:5:18",
"nodeType": "YulIdentifier",
"src": "2001:5:18"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "1983:17:18",
"nodeType": "YulIdentifier",
"src": "1983:17:18"
},
"nativeSrc": "1983:24:18",
"nodeType": "YulFunctionCall",
"src": "1983:24:18"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "1973:2:18",
"nodeType": "YulIdentifier",
"src": "1973:2:18"
},
"nativeSrc": "1973:35:18",
"nodeType": "YulFunctionCall",
"src": "1973:35:18"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "1966:6:18",
"nodeType": "YulIdentifier",
"src": "1966:6:18"
},
"nativeSrc": "1966:43:18",
"nodeType": "YulFunctionCall",
"src": "1966:43:18"
},
"nativeSrc": "1963:63:18",
"nodeType": "YulIf",
"src": "1963:63:18"
}
]
},
"name": "validator_revert_t_address",
"nativeSrc": "1910:122:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1946:5:18",
"nodeType": "YulTypedName",
"src": "1946:5:18",
"type": ""
}
],
"src": "1910:122:18"
},
{
"body": {
"nativeSrc": "2090:87:18",
"nodeType": "YulBlock",
"src": "2090:87:18",
"statements": [
{
"nativeSrc": "2100:29:18",
"nodeType": "YulAssignment",
"src": "2100:29:18",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "2122:6:18",
"nodeType": "YulIdentifier",
"src": "2122:6:18"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "2109:12:18",
"nodeType": "YulIdentifier",
"src": "2109:12:18"
},
"nativeSrc": "2109:20:18",
"nodeType": "YulFunctionCall",
"src": "2109:20:18"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "2100:5:18",
"nodeType": "YulIdentifier",
"src": "2100:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "2165:5:18",
"nodeType": "YulIdentifier",
"src": "2165:5:18"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nativeSrc": "2138:26:18",
"nodeType": "YulIdentifier",
"src": "2138:26:18"
},
"nativeSrc": "2138:33:18",
"nodeType": "YulFunctionCall",
"src": "2138:33:18"
},
"nativeSrc": "2138:33:18",
"nodeType": "YulExpressionStatement",
"src": "2138:33:18"
}
]
},
"name": "abi_decode_t_address",
"nativeSrc": "2038:139:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "2068:6:18",
"nodeType": "YulTypedName",
"src": "2068:6:18",
"type": ""
},
{
"name": "end",
"nativeSrc": "2076:3:18",
"nodeType": "YulTypedName",
"src": "2076:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "2084:5:18",
"nodeType": "YulTypedName",
"src": "2084:5:18",
"type": ""
}
],
"src": "2038:139:18"
},
{
"body": {
"nativeSrc": "2228:32:18",
"nodeType": "YulBlock",
"src": "2228:32:18",
"statements": [
{
"nativeSrc": "2238:16:18",
"nodeType": "YulAssignment",
"src": "2238:16:18",
"value": {
"name": "value",
"nativeSrc": "2249:5:18",
"nodeType": "YulIdentifier",
"src": "2249:5:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "2238:7:18",
"nodeType": "YulIdentifier",
"src": "2238:7:18"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "2183:77:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2210:5:18",
"nodeType": "YulTypedName",
"src": "2210:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "2220:7:18",
"nodeType": "YulTypedName",
"src": "2220:7:18",
"type": ""
}
],
"src": "2183:77:18"
},
{
"body": {
"nativeSrc": "2309:79:18",
"nodeType": "YulBlock",
"src": "2309:79:18",
"statements": [
{
"body": {
"nativeSrc": "2366:16:18",
"nodeType": "YulBlock",
"src": "2366:16:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "2375:1:18",
"nodeType": "YulLiteral",
"src": "2375:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "2378:1:18",
"nodeType": "YulLiteral",
"src": "2378:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "2368:6:18",
"nodeType": "YulIdentifier",
"src": "2368:6:18"
},
"nativeSrc": "2368:12:18",
"nodeType": "YulFunctionCall",
"src": "2368:12:18"
},
"nativeSrc": "2368:12:18",
"nodeType": "YulExpressionStatement",
"src": "2368:12:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "2332:5:18",
"nodeType": "YulIdentifier",
"src": "2332:5:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2357:5:18",
"nodeType": "YulIdentifier",
"src": "2357:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "2339:17:18",
"nodeType": "YulIdentifier",
"src": "2339:17:18"
},
"nativeSrc": "2339:24:18",
"nodeType": "YulFunctionCall",
"src": "2339:24:18"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "2329:2:18",
"nodeType": "YulIdentifier",
"src": "2329:2:18"
},
"nativeSrc": "2329:35:18",
"nodeType": "YulFunctionCall",
"src": "2329:35:18"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2322:6:18",
"nodeType": "YulIdentifier",
"src": "2322:6:18"
},
"nativeSrc": "2322:43:18",
"nodeType": "YulFunctionCall",
"src": "2322:43:18"
},
"nativeSrc": "2319:63:18",
"nodeType": "YulIf",
"src": "2319:63:18"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "2266:122:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2302:5:18",
"nodeType": "YulTypedName",
"src": "2302:5:18",
"type": ""
}
],
"src": "2266:122:18"
},
{
"body": {
"nativeSrc": "2446:87:18",
"nodeType": "YulBlock",
"src": "2446:87:18",
"statements": [
{
"nativeSrc": "2456:29:18",
"nodeType": "YulAssignment",
"src": "2456:29:18",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "2478:6:18",
"nodeType": "YulIdentifier",
"src": "2478:6:18"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "2465:12:18",
"nodeType": "YulIdentifier",
"src": "2465:12:18"
},
"nativeSrc": "2465:20:18",
"nodeType": "YulFunctionCall",
"src": "2465:20:18"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "2456:5:18",
"nodeType": "YulIdentifier",
"src": "2456:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "2521:5:18",
"nodeType": "YulIdentifier",
"src": "2521:5:18"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "2494:26:18",
"nodeType": "YulIdentifier",
"src": "2494:26:18"
},
"nativeSrc": "2494:33:18",
"nodeType": "YulFunctionCall",
"src": "2494:33:18"
},
"nativeSrc": "2494:33:18",
"nodeType": "YulExpressionStatement",
"src": "2494:33:18"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "2394:139:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "2424:6:18",
"nodeType": "YulTypedName",
"src": "2424:6:18",
"type": ""
},
{
"name": "end",
"nativeSrc": "2432:3:18",
"nodeType": "YulTypedName",
"src": "2432:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "2440:5:18",
"nodeType": "YulTypedName",
"src": "2440:5:18",
"type": ""
}
],
"src": "2394:139:18"
},
{
"body": {
"nativeSrc": "2622:391:18",
"nodeType": "YulBlock",
"src": "2622:391:18",
"statements": [
{
"body": {
"nativeSrc": "2668:83:18",
"nodeType": "YulBlock",
"src": "2668:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "2670:77:18",
"nodeType": "YulIdentifier",
"src": "2670:77:18"
},
"nativeSrc": "2670:79:18",
"nodeType": "YulFunctionCall",
"src": "2670:79:18"
},
"nativeSrc": "2670:79:18",
"nodeType": "YulExpressionStatement",
"src": "2670:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "2643:7:18",
"nodeType": "YulIdentifier",
"src": "2643:7:18"
},
{
"name": "headStart",
"nativeSrc": "2652:9:18",
"nodeType": "YulIdentifier",
"src": "2652:9:18"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "2639:3:18",
"nodeType": "YulIdentifier",
"src": "2639:3:18"
},
"nativeSrc": "2639:23:18",
"nodeType": "YulFunctionCall",
"src": "2639:23:18"
},
{
"kind": "number",
"nativeSrc": "2664:2:18",
"nodeType": "YulLiteral",
"src": "2664:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "2635:3:18",
"nodeType": "YulIdentifier",
"src": "2635:3:18"
},
"nativeSrc": "2635:32:18",
"nodeType": "YulFunctionCall",
"src": "2635:32:18"
},
"nativeSrc": "2632:119:18",
"nodeType": "YulIf",
"src": "2632:119:18"
},
{
"nativeSrc": "2761:117:18",
"nodeType": "YulBlock",
"src": "2761:117:18",
"statements": [
{
"nativeSrc": "2776:15:18",
"nodeType": "YulVariableDeclaration",
"src": "2776:15:18",
"value": {
"kind": "number",
"nativeSrc": "2790:1:18",
"nodeType": "YulLiteral",
"src": "2790:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "2780:6:18",
"nodeType": "YulTypedName",
"src": "2780:6:18",
"type": ""
}
]
},
{
"nativeSrc": "2805:63:18",
"nodeType": "YulAssignment",
"src": "2805:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2840:9:18",
"nodeType": "YulIdentifier",
"src": "2840:9:18"
},
{
"name": "offset",
"nativeSrc": "2851:6:18",
"nodeType": "YulIdentifier",
"src": "2851:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2836:3:18",
"nodeType": "YulIdentifier",
"src": "2836:3:18"
},
"nativeSrc": "2836:22:18",
"nodeType": "YulFunctionCall",
"src": "2836:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "2860:7:18",
"nodeType": "YulIdentifier",
"src": "2860:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "2815:20:18",
"nodeType": "YulIdentifier",
"src": "2815:20:18"
},
"nativeSrc": "2815:53:18",
"nodeType": "YulFunctionCall",
"src": "2815:53:18"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "2805:6:18",
"nodeType": "YulIdentifier",
"src": "2805:6:18"
}
]
}
]
},
{
"nativeSrc": "2888:118:18",
"nodeType": "YulBlock",
"src": "2888:118:18",
"statements": [
{
"nativeSrc": "2903:16:18",
"nodeType": "YulVariableDeclaration",
"src": "2903:16:18",
"value": {
"kind": "number",
"nativeSrc": "2917:2:18",
"nodeType": "YulLiteral",
"src": "2917:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "2907:6:18",
"nodeType": "YulTypedName",
"src": "2907:6:18",
"type": ""
}
]
},
{
"nativeSrc": "2933:63:18",
"nodeType": "YulAssignment",
"src": "2933:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2968:9:18",
"nodeType": "YulIdentifier",
"src": "2968:9:18"
},
{
"name": "offset",
"nativeSrc": "2979:6:18",
"nodeType": "YulIdentifier",
"src": "2979:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2964:3:18",
"nodeType": "YulIdentifier",
"src": "2964:3:18"
},
"nativeSrc": "2964:22:18",
"nodeType": "YulFunctionCall",
"src": "2964:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "2988:7:18",
"nodeType": "YulIdentifier",
"src": "2988:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "2943:20:18",
"nodeType": "YulIdentifier",
"src": "2943:20:18"
},
"nativeSrc": "2943:53:18",
"nodeType": "YulFunctionCall",
"src": "2943:53:18"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "2933:6:18",
"nodeType": "YulIdentifier",
"src": "2933:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nativeSrc": "2539:474:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "2584:9:18",
"nodeType": "YulTypedName",
"src": "2584:9:18",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "2595:7:18",
"nodeType": "YulTypedName",
"src": "2595:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "2607:6:18",
"nodeType": "YulTypedName",
"src": "2607:6:18",
"type": ""
},
{
"name": "value1",
"nativeSrc": "2615:6:18",
"nodeType": "YulTypedName",
"src": "2615:6:18",
"type": ""
}
],
"src": "2539:474:18"
},
{
"body": {
"nativeSrc": "3061:48:18",
"nodeType": "YulBlock",
"src": "3061:48:18",
"statements": [
{
"nativeSrc": "3071:32:18",
"nodeType": "YulAssignment",
"src": "3071:32:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "3096:5:18",
"nodeType": "YulIdentifier",
"src": "3096:5:18"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "3089:6:18",
"nodeType": "YulIdentifier",
"src": "3089:6:18"
},
"nativeSrc": "3089:13:18",
"nodeType": "YulFunctionCall",
"src": "3089:13:18"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "3082:6:18",
"nodeType": "YulIdentifier",
"src": "3082:6:18"
},
"nativeSrc": "3082:21:18",
"nodeType": "YulFunctionCall",
"src": "3082:21:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "3071:7:18",
"nodeType": "YulIdentifier",
"src": "3071:7:18"
}
]
}
]
},
"name": "cleanup_t_bool",
"nativeSrc": "3019:90:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3043:5:18",
"nodeType": "YulTypedName",
"src": "3043:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "3053:7:18",
"nodeType": "YulTypedName",
"src": "3053:7:18",
"type": ""
}
],
"src": "3019:90:18"
},
{
"body": {
"nativeSrc": "3174:50:18",
"nodeType": "YulBlock",
"src": "3174:50:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3191:3:18",
"nodeType": "YulIdentifier",
"src": "3191:3:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "3211:5:18",
"nodeType": "YulIdentifier",
"src": "3211:5:18"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nativeSrc": "3196:14:18",
"nodeType": "YulIdentifier",
"src": "3196:14:18"
},
"nativeSrc": "3196:21:18",
"nodeType": "YulFunctionCall",
"src": "3196:21:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3184:6:18",
"nodeType": "YulIdentifier",
"src": "3184:6:18"
},
"nativeSrc": "3184:34:18",
"nodeType": "YulFunctionCall",
"src": "3184:34:18"
},
"nativeSrc": "3184:34:18",
"nodeType": "YulExpressionStatement",
"src": "3184:34:18"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nativeSrc": "3115:109:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3162:5:18",
"nodeType": "YulTypedName",
"src": "3162:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "3169:3:18",
"nodeType": "YulTypedName",
"src": "3169:3:18",
"type": ""
}
],
"src": "3115:109:18"
},
{
"body": {
"nativeSrc": "3322:118:18",
"nodeType": "YulBlock",
"src": "3322:118:18",
"statements": [
{
"nativeSrc": "3332:26:18",
"nodeType": "YulAssignment",
"src": "3332:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "3344:9:18",
"nodeType": "YulIdentifier",
"src": "3344:9:18"
},
{
"kind": "number",
"nativeSrc": "3355:2:18",
"nodeType": "YulLiteral",
"src": "3355:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3340:3:18",
"nodeType": "YulIdentifier",
"src": "3340:3:18"
},
"nativeSrc": "3340:18:18",
"nodeType": "YulFunctionCall",
"src": "3340:18:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3332:4:18",
"nodeType": "YulIdentifier",
"src": "3332:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "3406:6:18",
"nodeType": "YulIdentifier",
"src": "3406:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3419:9:18",
"nodeType": "YulIdentifier",
"src": "3419:9:18"
},
{
"kind": "number",
"nativeSrc": "3430:1:18",
"nodeType": "YulLiteral",
"src": "3430:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3415:3:18",
"nodeType": "YulIdentifier",
"src": "3415:3:18"
},
"nativeSrc": "3415:17:18",
"nodeType": "YulFunctionCall",
"src": "3415:17:18"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nativeSrc": "3368:37:18",
"nodeType": "YulIdentifier",
"src": "3368:37:18"
},
"nativeSrc": "3368:65:18",
"nodeType": "YulFunctionCall",
"src": "3368:65:18"
},
"nativeSrc": "3368:65:18",
"nodeType": "YulExpressionStatement",
"src": "3368:65:18"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nativeSrc": "3230:210:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3294:9:18",
"nodeType": "YulTypedName",
"src": "3294:9:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "3306:6:18",
"nodeType": "YulTypedName",
"src": "3306:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "3317:4:18",
"nodeType": "YulTypedName",
"src": "3317:4:18",
"type": ""
}
],
"src": "3230:210:18"
},
{
"body": {
"nativeSrc": "3511:53:18",
"nodeType": "YulBlock",
"src": "3511:53:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3528:3:18",
"nodeType": "YulIdentifier",
"src": "3528:3:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "3551:5:18",
"nodeType": "YulIdentifier",
"src": "3551:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "3533:17:18",
"nodeType": "YulIdentifier",
"src": "3533:17:18"
},
"nativeSrc": "3533:24:18",
"nodeType": "YulFunctionCall",
"src": "3533:24:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3521:6:18",
"nodeType": "YulIdentifier",
"src": "3521:6:18"
},
"nativeSrc": "3521:37:18",
"nodeType": "YulFunctionCall",
"src": "3521:37:18"
},
"nativeSrc": "3521:37:18",
"nodeType": "YulExpressionStatement",
"src": "3521:37:18"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "3446:118:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3499:5:18",
"nodeType": "YulTypedName",
"src": "3499:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "3506:3:18",
"nodeType": "YulTypedName",
"src": "3506:3:18",
"type": ""
}
],
"src": "3446:118:18"
},
{
"body": {
"nativeSrc": "3668:124:18",
"nodeType": "YulBlock",
"src": "3668:124:18",
"statements": [
{
"nativeSrc": "3678:26:18",
"nodeType": "YulAssignment",
"src": "3678:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "3690:9:18",
"nodeType": "YulIdentifier",
"src": "3690:9:18"
},
{
"kind": "number",
"nativeSrc": "3701:2:18",
"nodeType": "YulLiteral",
"src": "3701:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3686:3:18",
"nodeType": "YulIdentifier",
"src": "3686:3:18"
},
"nativeSrc": "3686:18:18",
"nodeType": "YulFunctionCall",
"src": "3686:18:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3678:4:18",
"nodeType": "YulIdentifier",
"src": "3678:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "3758:6:18",
"nodeType": "YulIdentifier",
"src": "3758:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3771:9:18",
"nodeType": "YulIdentifier",
"src": "3771:9:18"
},
{
"kind": "number",
"nativeSrc": "3782:1:18",
"nodeType": "YulLiteral",
"src": "3782:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3767:3:18",
"nodeType": "YulIdentifier",
"src": "3767:3:18"
},
"nativeSrc": "3767:17:18",
"nodeType": "YulFunctionCall",
"src": "3767:17:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "3714:43:18",
"nodeType": "YulIdentifier",
"src": "3714:43:18"
},
"nativeSrc": "3714:71:18",
"nodeType": "YulFunctionCall",
"src": "3714:71:18"
},
"nativeSrc": "3714:71:18",
"nodeType": "YulExpressionStatement",
"src": "3714:71:18"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "3570:222:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3640:9:18",
"nodeType": "YulTypedName",
"src": "3640:9:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "3652:6:18",
"nodeType": "YulTypedName",
"src": "3652:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "3663:4:18",
"nodeType": "YulTypedName",
"src": "3663:4:18",
"type": ""
}
],
"src": "3570:222:18"
},
{
"body": {
"nativeSrc": "3898:519:18",
"nodeType": "YulBlock",
"src": "3898:519:18",
"statements": [
{
"body": {
"nativeSrc": "3944:83:18",
"nodeType": "YulBlock",
"src": "3944:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "3946:77:18",
"nodeType": "YulIdentifier",
"src": "3946:77:18"
},
"nativeSrc": "3946:79:18",
"nodeType": "YulFunctionCall",
"src": "3946:79:18"
},
"nativeSrc": "3946:79:18",
"nodeType": "YulExpressionStatement",
"src": "3946:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "3919:7:18",
"nodeType": "YulIdentifier",
"src": "3919:7:18"
},
{
"name": "headStart",
"nativeSrc": "3928:9:18",
"nodeType": "YulIdentifier",
"src": "3928:9:18"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3915:3:18",
"nodeType": "YulIdentifier",
"src": "3915:3:18"
},
"nativeSrc": "3915:23:18",
"nodeType": "YulFunctionCall",
"src": "3915:23:18"
},
{
"kind": "number",
"nativeSrc": "3940:2:18",
"nodeType": "YulLiteral",
"src": "3940:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3911:3:18",
"nodeType": "YulIdentifier",
"src": "3911:3:18"
},
"nativeSrc": "3911:32:18",
"nodeType": "YulFunctionCall",
"src": "3911:32:18"
},
"nativeSrc": "3908:119:18",
"nodeType": "YulIf",
"src": "3908:119:18"
},
{
"nativeSrc": "4037:117:18",
"nodeType": "YulBlock",
"src": "4037:117:18",
"statements": [
{
"nativeSrc": "4052:15:18",
"nodeType": "YulVariableDeclaration",
"src": "4052:15:18",
"value": {
"kind": "number",
"nativeSrc": "4066:1:18",
"nodeType": "YulLiteral",
"src": "4066:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4056:6:18",
"nodeType": "YulTypedName",
"src": "4056:6:18",
"type": ""
}
]
},
{
"nativeSrc": "4081:63:18",
"nodeType": "YulAssignment",
"src": "4081:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4116:9:18",
"nodeType": "YulIdentifier",
"src": "4116:9:18"
},
{
"name": "offset",
"nativeSrc": "4127:6:18",
"nodeType": "YulIdentifier",
"src": "4127:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4112:3:18",
"nodeType": "YulIdentifier",
"src": "4112:3:18"
},
"nativeSrc": "4112:22:18",
"nodeType": "YulFunctionCall",
"src": "4112:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "4136:7:18",
"nodeType": "YulIdentifier",
"src": "4136:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "4091:20:18",
"nodeType": "YulIdentifier",
"src": "4091:20:18"
},
"nativeSrc": "4091:53:18",
"nodeType": "YulFunctionCall",
"src": "4091:53:18"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "4081:6:18",
"nodeType": "YulIdentifier",
"src": "4081:6:18"
}
]
}
]
},
{
"nativeSrc": "4164:118:18",
"nodeType": "YulBlock",
"src": "4164:118:18",
"statements": [
{
"nativeSrc": "4179:16:18",
"nodeType": "YulVariableDeclaration",
"src": "4179:16:18",
"value": {
"kind": "number",
"nativeSrc": "4193:2:18",
"nodeType": "YulLiteral",
"src": "4193:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4183:6:18",
"nodeType": "YulTypedName",
"src": "4183:6:18",
"type": ""
}
]
},
{
"nativeSrc": "4209:63:18",
"nodeType": "YulAssignment",
"src": "4209:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4244:9:18",
"nodeType": "YulIdentifier",
"src": "4244:9:18"
},
{
"name": "offset",
"nativeSrc": "4255:6:18",
"nodeType": "YulIdentifier",
"src": "4255:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4240:3:18",
"nodeType": "YulIdentifier",
"src": "4240:3:18"
},
"nativeSrc": "4240:22:18",
"nodeType": "YulFunctionCall",
"src": "4240:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "4264:7:18",
"nodeType": "YulIdentifier",
"src": "4264:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "4219:20:18",
"nodeType": "YulIdentifier",
"src": "4219:20:18"
},
"nativeSrc": "4219:53:18",
"nodeType": "YulFunctionCall",
"src": "4219:53:18"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "4209:6:18",
"nodeType": "YulIdentifier",
"src": "4209:6:18"
}
]
}
]
},
{
"nativeSrc": "4292:118:18",
"nodeType": "YulBlock",
"src": "4292:118:18",
"statements": [
{
"nativeSrc": "4307:16:18",
"nodeType": "YulVariableDeclaration",
"src": "4307:16:18",
"value": {
"kind": "number",
"nativeSrc": "4321:2:18",
"nodeType": "YulLiteral",
"src": "4321:2:18",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4311:6:18",
"nodeType": "YulTypedName",
"src": "4311:6:18",
"type": ""
}
]
},
{
"nativeSrc": "4337:63:18",
"nodeType": "YulAssignment",
"src": "4337:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4372:9:18",
"nodeType": "YulIdentifier",
"src": "4372:9:18"
},
{
"name": "offset",
"nativeSrc": "4383:6:18",
"nodeType": "YulIdentifier",
"src": "4383:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4368:3:18",
"nodeType": "YulIdentifier",
"src": "4368:3:18"
},
"nativeSrc": "4368:22:18",
"nodeType": "YulFunctionCall",
"src": "4368:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "4392:7:18",
"nodeType": "YulIdentifier",
"src": "4392:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "4347:20:18",
"nodeType": "YulIdentifier",
"src": "4347:20:18"
},
"nativeSrc": "4347:53:18",
"nodeType": "YulFunctionCall",
"src": "4347:53:18"
},
"variableNames": [
{
"name": "value2",
"nativeSrc": "4337:6:18",
"nodeType": "YulIdentifier",
"src": "4337:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nativeSrc": "3798:619:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3852:9:18",
"nodeType": "YulTypedName",
"src": "3852:9:18",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "3863:7:18",
"nodeType": "YulTypedName",
"src": "3863:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "3875:6:18",
"nodeType": "YulTypedName",
"src": "3875:6:18",
"type": ""
},
{
"name": "value1",
"nativeSrc": "3883:6:18",
"nodeType": "YulTypedName",
"src": "3883:6:18",
"type": ""
},
{
"name": "value2",
"nativeSrc": "3891:6:18",
"nodeType": "YulTypedName",
"src": "3891:6:18",
"type": ""
}
],
"src": "3798:619:18"
},
{
"body": {
"nativeSrc": "4466:43:18",
"nodeType": "YulBlock",
"src": "4466:43:18",
"statements": [
{
"nativeSrc": "4476:27:18",
"nodeType": "YulAssignment",
"src": "4476:27:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "4491:5:18",
"nodeType": "YulIdentifier",
"src": "4491:5:18"
},
{
"kind": "number",
"nativeSrc": "4498:4:18",
"nodeType": "YulLiteral",
"src": "4498:4:18",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4487:3:18",
"nodeType": "YulIdentifier",
"src": "4487:3:18"
},
"nativeSrc": "4487:16:18",
"nodeType": "YulFunctionCall",
"src": "4487:16:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "4476:7:18",
"nodeType": "YulIdentifier",
"src": "4476:7:18"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nativeSrc": "4423:86:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4448:5:18",
"nodeType": "YulTypedName",
"src": "4448:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "4458:7:18",
"nodeType": "YulTypedName",
"src": "4458:7:18",
"type": ""
}
],
"src": "4423:86:18"
},
{
"body": {
"nativeSrc": "4576:51:18",
"nodeType": "YulBlock",
"src": "4576:51:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4593:3:18",
"nodeType": "YulIdentifier",
"src": "4593:3:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "4614:5:18",
"nodeType": "YulIdentifier",
"src": "4614:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nativeSrc": "4598:15:18",
"nodeType": "YulIdentifier",
"src": "4598:15:18"
},
"nativeSrc": "4598:22:18",
"nodeType": "YulFunctionCall",
"src": "4598:22:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4586:6:18",
"nodeType": "YulIdentifier",
"src": "4586:6:18"
},
"nativeSrc": "4586:35:18",
"nodeType": "YulFunctionCall",
"src": "4586:35:18"
},
"nativeSrc": "4586:35:18",
"nodeType": "YulExpressionStatement",
"src": "4586:35:18"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nativeSrc": "4515:112:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4564:5:18",
"nodeType": "YulTypedName",
"src": "4564:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "4571:3:18",
"nodeType": "YulTypedName",
"src": "4571:3:18",
"type": ""
}
],
"src": "4515:112:18"
},
{
"body": {
"nativeSrc": "4727:120:18",
"nodeType": "YulBlock",
"src": "4727:120:18",
"statements": [
{
"nativeSrc": "4737:26:18",
"nodeType": "YulAssignment",
"src": "4737:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "4749:9:18",
"nodeType": "YulIdentifier",
"src": "4749:9:18"
},
{
"kind": "number",
"nativeSrc": "4760:2:18",
"nodeType": "YulLiteral",
"src": "4760:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4745:3:18",
"nodeType": "YulIdentifier",
"src": "4745:3:18"
},
"nativeSrc": "4745:18:18",
"nodeType": "YulFunctionCall",
"src": "4745:18:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "4737:4:18",
"nodeType": "YulIdentifier",
"src": "4737:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "4813:6:18",
"nodeType": "YulIdentifier",
"src": "4813:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4826:9:18",
"nodeType": "YulIdentifier",
"src": "4826:9:18"
},
{
"kind": "number",
"nativeSrc": "4837:1:18",
"nodeType": "YulLiteral",
"src": "4837:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4822:3:18",
"nodeType": "YulIdentifier",
"src": "4822:3:18"
},
"nativeSrc": "4822:17:18",
"nodeType": "YulFunctionCall",
"src": "4822:17:18"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nativeSrc": "4773:39:18",
"nodeType": "YulIdentifier",
"src": "4773:39:18"
},
"nativeSrc": "4773:67:18",
"nodeType": "YulFunctionCall",
"src": "4773:67:18"
},
"nativeSrc": "4773:67:18",
"nodeType": "YulExpressionStatement",
"src": "4773:67:18"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nativeSrc": "4633:214:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "4699:9:18",
"nodeType": "YulTypedName",
"src": "4699:9:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "4711:6:18",
"nodeType": "YulTypedName",
"src": "4711:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "4722:4:18",
"nodeType": "YulTypedName",
"src": "4722:4:18",
"type": ""
}
],
"src": "4633:214:18"
},
{
"body": {
"nativeSrc": "4898:32:18",
"nodeType": "YulBlock",
"src": "4898:32:18",
"statements": [
{
"nativeSrc": "4908:16:18",
"nodeType": "YulAssignment",
"src": "4908:16:18",
"value": {
"name": "value",
"nativeSrc": "4919:5:18",
"nodeType": "YulIdentifier",
"src": "4919:5:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "4908:7:18",
"nodeType": "YulIdentifier",
"src": "4908:7:18"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nativeSrc": "4853:77:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4880:5:18",
"nodeType": "YulTypedName",
"src": "4880:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "4890:7:18",
"nodeType": "YulTypedName",
"src": "4890:7:18",
"type": ""
}
],
"src": "4853:77:18"
},
{
"body": {
"nativeSrc": "5001:53:18",
"nodeType": "YulBlock",
"src": "5001:53:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5018:3:18",
"nodeType": "YulIdentifier",
"src": "5018:3:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "5041:5:18",
"nodeType": "YulIdentifier",
"src": "5041:5:18"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nativeSrc": "5023:17:18",
"nodeType": "YulIdentifier",
"src": "5023:17:18"
},
"nativeSrc": "5023:24:18",
"nodeType": "YulFunctionCall",
"src": "5023:24:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5011:6:18",
"nodeType": "YulIdentifier",
"src": "5011:6:18"
},
"nativeSrc": "5011:37:18",
"nodeType": "YulFunctionCall",
"src": "5011:37:18"
},
"nativeSrc": "5011:37:18",
"nodeType": "YulExpressionStatement",
"src": "5011:37:18"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "4936:118:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4989:5:18",
"nodeType": "YulTypedName",
"src": "4989:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "4996:3:18",
"nodeType": "YulTypedName",
"src": "4996:3:18",
"type": ""
}
],
"src": "4936:118:18"
},
{
"body": {
"nativeSrc": "5158:124:18",
"nodeType": "YulBlock",
"src": "5158:124:18",
"statements": [
{
"nativeSrc": "5168:26:18",
"nodeType": "YulAssignment",
"src": "5168:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "5180:9:18",
"nodeType": "YulIdentifier",
"src": "5180:9:18"
},
{
"kind": "number",
"nativeSrc": "5191:2:18",
"nodeType": "YulLiteral",
"src": "5191:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5176:3:18",
"nodeType": "YulIdentifier",
"src": "5176:3:18"
},
"nativeSrc": "5176:18:18",
"nodeType": "YulFunctionCall",
"src": "5176:18:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5168:4:18",
"nodeType": "YulIdentifier",
"src": "5168:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "5248:6:18",
"nodeType": "YulIdentifier",
"src": "5248:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5261:9:18",
"nodeType": "YulIdentifier",
"src": "5261:9:18"
},
{
"kind": "number",
"nativeSrc": "5272:1:18",
"nodeType": "YulLiteral",
"src": "5272:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5257:3:18",
"nodeType": "YulIdentifier",
"src": "5257:3:18"
},
"nativeSrc": "5257:17:18",
"nodeType": "YulFunctionCall",
"src": "5257:17:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "5204:43:18",
"nodeType": "YulIdentifier",
"src": "5204:43:18"
},
"nativeSrc": "5204:71:18",
"nodeType": "YulFunctionCall",
"src": "5204:71:18"
},
"nativeSrc": "5204:71:18",
"nodeType": "YulExpressionStatement",
"src": "5204:71:18"
}
]
},
"name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
"nativeSrc": "5060:222:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5130:9:18",
"nodeType": "YulTypedName",
"src": "5130:9:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "5142:6:18",
"nodeType": "YulTypedName",
"src": "5142:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "5153:4:18",
"nodeType": "YulTypedName",
"src": "5153:4:18",
"type": ""
}
],
"src": "5060:222:18"
},
{
"body": {
"nativeSrc": "5354:263:18",
"nodeType": "YulBlock",
"src": "5354:263:18",
"statements": [
{
"body": {
"nativeSrc": "5400:83:18",
"nodeType": "YulBlock",
"src": "5400:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "5402:77:18",
"nodeType": "YulIdentifier",
"src": "5402:77:18"
},
"nativeSrc": "5402:79:18",
"nodeType": "YulFunctionCall",
"src": "5402:79:18"
},
"nativeSrc": "5402:79:18",
"nodeType": "YulExpressionStatement",
"src": "5402:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "5375:7:18",
"nodeType": "YulIdentifier",
"src": "5375:7:18"
},
{
"name": "headStart",
"nativeSrc": "5384:9:18",
"nodeType": "YulIdentifier",
"src": "5384:9:18"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "5371:3:18",
"nodeType": "YulIdentifier",
"src": "5371:3:18"
},
"nativeSrc": "5371:23:18",
"nodeType": "YulFunctionCall",
"src": "5371:23:18"
},
{
"kind": "number",
"nativeSrc": "5396:2:18",
"nodeType": "YulLiteral",
"src": "5396:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "5367:3:18",
"nodeType": "YulIdentifier",
"src": "5367:3:18"
},
"nativeSrc": "5367:32:18",
"nodeType": "YulFunctionCall",
"src": "5367:32:18"
},
"nativeSrc": "5364:119:18",
"nodeType": "YulIf",
"src": "5364:119:18"
},
{
"nativeSrc": "5493:117:18",
"nodeType": "YulBlock",
"src": "5493:117:18",
"statements": [
{
"nativeSrc": "5508:15:18",
"nodeType": "YulVariableDeclaration",
"src": "5508:15:18",
"value": {
"kind": "number",
"nativeSrc": "5522:1:18",
"nodeType": "YulLiteral",
"src": "5522:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5512:6:18",
"nodeType": "YulTypedName",
"src": "5512:6:18",
"type": ""
}
]
},
{
"nativeSrc": "5537:63:18",
"nodeType": "YulAssignment",
"src": "5537:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5572:9:18",
"nodeType": "YulIdentifier",
"src": "5572:9:18"
},
{
"name": "offset",
"nativeSrc": "5583:6:18",
"nodeType": "YulIdentifier",
"src": "5583:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5568:3:18",
"nodeType": "YulIdentifier",
"src": "5568:3:18"
},
"nativeSrc": "5568:22:18",
"nodeType": "YulFunctionCall",
"src": "5568:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "5592:7:18",
"nodeType": "YulIdentifier",
"src": "5592:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "5547:20:18",
"nodeType": "YulIdentifier",
"src": "5547:20:18"
},
"nativeSrc": "5547:53:18",
"nodeType": "YulFunctionCall",
"src": "5547:53:18"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "5537:6:18",
"nodeType": "YulIdentifier",
"src": "5537:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nativeSrc": "5288:329:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5324:9:18",
"nodeType": "YulTypedName",
"src": "5324:9:18",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "5335:7:18",
"nodeType": "YulTypedName",
"src": "5335:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "5347:6:18",
"nodeType": "YulTypedName",
"src": "5347:6:18",
"type": ""
}
],
"src": "5288:329:18"
},
{
"body": {
"nativeSrc": "5667:105:18",
"nodeType": "YulBlock",
"src": "5667:105:18",
"statements": [
{
"nativeSrc": "5677:89:18",
"nodeType": "YulAssignment",
"src": "5677:89:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "5692:5:18",
"nodeType": "YulIdentifier",
"src": "5692:5:18"
},
{
"kind": "number",
"nativeSrc": "5699:66:18",
"nodeType": "YulLiteral",
"src": "5699:66:18",
"type": "",
"value": "0xff00000000000000000000000000000000000000000000000000000000000000"
}
],
"functionName": {
"name": "and",
"nativeSrc": "5688:3:18",
"nodeType": "YulIdentifier",
"src": "5688:3:18"
},
"nativeSrc": "5688:78:18",
"nodeType": "YulFunctionCall",
"src": "5688:78:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "5677:7:18",
"nodeType": "YulIdentifier",
"src": "5677:7:18"
}
]
}
]
},
"name": "cleanup_t_bytes1",
"nativeSrc": "5623:149:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5649:5:18",
"nodeType": "YulTypedName",
"src": "5649:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "5659:7:18",
"nodeType": "YulTypedName",
"src": "5659:7:18",
"type": ""
}
],
"src": "5623:149:18"
},
{
"body": {
"nativeSrc": "5841:52:18",
"nodeType": "YulBlock",
"src": "5841:52:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5858:3:18",
"nodeType": "YulIdentifier",
"src": "5858:3:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "5880:5:18",
"nodeType": "YulIdentifier",
"src": "5880:5:18"
}
],
"functionName": {
"name": "cleanup_t_bytes1",
"nativeSrc": "5863:16:18",
"nodeType": "YulIdentifier",
"src": "5863:16:18"
},
"nativeSrc": "5863:23:18",
"nodeType": "YulFunctionCall",
"src": "5863:23:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5851:6:18",
"nodeType": "YulIdentifier",
"src": "5851:6:18"
},
"nativeSrc": "5851:36:18",
"nodeType": "YulFunctionCall",
"src": "5851:36:18"
},
"nativeSrc": "5851:36:18",
"nodeType": "YulExpressionStatement",
"src": "5851:36:18"
}
]
},
"name": "abi_encode_t_bytes1_to_t_bytes1_fromStack",
"nativeSrc": "5778:115:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5829:5:18",
"nodeType": "YulTypedName",
"src": "5829:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5836:3:18",
"nodeType": "YulTypedName",
"src": "5836:3:18",
"type": ""
}
],
"src": "5778:115:18"
},
{
"body": {
"nativeSrc": "5964:53:18",
"nodeType": "YulBlock",
"src": "5964:53:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5981:3:18",
"nodeType": "YulIdentifier",
"src": "5981:3:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "6004:5:18",
"nodeType": "YulIdentifier",
"src": "6004:5:18"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "5986:17:18",
"nodeType": "YulIdentifier",
"src": "5986:17:18"
},
"nativeSrc": "5986:24:18",
"nodeType": "YulFunctionCall",
"src": "5986:24:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5974:6:18",
"nodeType": "YulIdentifier",
"src": "5974:6:18"
},
"nativeSrc": "5974:37:18",
"nodeType": "YulFunctionCall",
"src": "5974:37:18"
},
"nativeSrc": "5974:37:18",
"nodeType": "YulExpressionStatement",
"src": "5974:37:18"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "5899:118:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5952:5:18",
"nodeType": "YulTypedName",
"src": "5952:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5959:3:18",
"nodeType": "YulTypedName",
"src": "5959:3:18",
"type": ""
}
],
"src": "5899:118:18"
},
{
"body": {
"nativeSrc": "6097:40:18",
"nodeType": "YulBlock",
"src": "6097:40:18",
"statements": [
{
"nativeSrc": "6108:22:18",
"nodeType": "YulAssignment",
"src": "6108:22:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "6124:5:18",
"nodeType": "YulIdentifier",
"src": "6124:5:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "6118:5:18",
"nodeType": "YulIdentifier",
"src": "6118:5:18"
},
"nativeSrc": "6118:12:18",
"nodeType": "YulFunctionCall",
"src": "6118:12:18"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "6108:6:18",
"nodeType": "YulIdentifier",
"src": "6108:6:18"
}
]
}
]
},
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "6023:114:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6080:5:18",
"nodeType": "YulTypedName",
"src": "6080:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "6090:6:18",
"nodeType": "YulTypedName",
"src": "6090:6:18",
"type": ""
}
],
"src": "6023:114:18"
},
{
"body": {
"nativeSrc": "6254:73:18",
"nodeType": "YulBlock",
"src": "6254:73:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6271:3:18",
"nodeType": "YulIdentifier",
"src": "6271:3:18"
},
{
"name": "length",
"nativeSrc": "6276:6:18",
"nodeType": "YulIdentifier",
"src": "6276:6:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6264:6:18",
"nodeType": "YulIdentifier",
"src": "6264:6:18"
},
"nativeSrc": "6264:19:18",
"nodeType": "YulFunctionCall",
"src": "6264:19:18"
},
"nativeSrc": "6264:19:18",
"nodeType": "YulExpressionStatement",
"src": "6264:19:18"
},
{
"nativeSrc": "6292:29:18",
"nodeType": "YulAssignment",
"src": "6292:29:18",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6311:3:18",
"nodeType": "YulIdentifier",
"src": "6311:3:18"
},
{
"kind": "number",
"nativeSrc": "6316:4:18",
"nodeType": "YulLiteral",
"src": "6316:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6307:3:18",
"nodeType": "YulIdentifier",
"src": "6307:3:18"
},
"nativeSrc": "6307:14:18",
"nodeType": "YulFunctionCall",
"src": "6307:14:18"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "6292:11:18",
"nodeType": "YulIdentifier",
"src": "6292:11:18"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nativeSrc": "6143:184:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "6226:3:18",
"nodeType": "YulTypedName",
"src": "6226:3:18",
"type": ""
},
{
"name": "length",
"nativeSrc": "6231:6:18",
"nodeType": "YulTypedName",
"src": "6231:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "6242:11:18",
"nodeType": "YulTypedName",
"src": "6242:11:18",
"type": ""
}
],
"src": "6143:184:18"
},
{
"body": {
"nativeSrc": "6405:60:18",
"nodeType": "YulBlock",
"src": "6405:60:18",
"statements": [
{
"nativeSrc": "6415:11:18",
"nodeType": "YulAssignment",
"src": "6415:11:18",
"value": {
"name": "ptr",
"nativeSrc": "6423:3:18",
"nodeType": "YulIdentifier",
"src": "6423:3:18"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "6415:4:18",
"nodeType": "YulIdentifier",
"src": "6415:4:18"
}
]
},
{
"nativeSrc": "6436:22:18",
"nodeType": "YulAssignment",
"src": "6436:22:18",
"value": {
"arguments": [
{
"name": "ptr",
"nativeSrc": "6448:3:18",
"nodeType": "YulIdentifier",
"src": "6448:3:18"
},
{
"kind": "number",
"nativeSrc": "6453:4:18",
"nodeType": "YulLiteral",
"src": "6453:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6444:3:18",
"nodeType": "YulIdentifier",
"src": "6444:3:18"
},
"nativeSrc": "6444:14:18",
"nodeType": "YulFunctionCall",
"src": "6444:14:18"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "6436:4:18",
"nodeType": "YulIdentifier",
"src": "6436:4:18"
}
]
}
]
},
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "6333:132:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "6392:3:18",
"nodeType": "YulTypedName",
"src": "6392:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "6400:4:18",
"nodeType": "YulTypedName",
"src": "6400:4:18",
"type": ""
}
],
"src": "6333:132:18"
},
{
"body": {
"nativeSrc": "6526:53:18",
"nodeType": "YulBlock",
"src": "6526:53:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6543:3:18",
"nodeType": "YulIdentifier",
"src": "6543:3:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "6566:5:18",
"nodeType": "YulIdentifier",
"src": "6566:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6548:17:18",
"nodeType": "YulIdentifier",
"src": "6548:17:18"
},
"nativeSrc": "6548:24:18",
"nodeType": "YulFunctionCall",
"src": "6548:24:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6536:6:18",
"nodeType": "YulIdentifier",
"src": "6536:6:18"
},
"nativeSrc": "6536:37:18",
"nodeType": "YulFunctionCall",
"src": "6536:37:18"
},
"nativeSrc": "6536:37:18",
"nodeType": "YulExpressionStatement",
"src": "6536:37:18"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "6471:108:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6514:5:18",
"nodeType": "YulTypedName",
"src": "6514:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "6521:3:18",
"nodeType": "YulTypedName",
"src": "6521:3:18",
"type": ""
}
],
"src": "6471:108:18"
},
{
"body": {
"nativeSrc": "6665:99:18",
"nodeType": "YulBlock",
"src": "6665:99:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "6709:6:18",
"nodeType": "YulIdentifier",
"src": "6709:6:18"
},
{
"name": "pos",
"nativeSrc": "6717:3:18",
"nodeType": "YulIdentifier",
"src": "6717:3:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "6675:33:18",
"nodeType": "YulIdentifier",
"src": "6675:33:18"
},
"nativeSrc": "6675:46:18",
"nodeType": "YulFunctionCall",
"src": "6675:46:18"
},
"nativeSrc": "6675:46:18",
"nodeType": "YulExpressionStatement",
"src": "6675:46:18"
},
{
"nativeSrc": "6730:28:18",
"nodeType": "YulAssignment",
"src": "6730:28:18",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6748:3:18",
"nodeType": "YulIdentifier",
"src": "6748:3:18"
},
{
"kind": "number",
"nativeSrc": "6753:4:18",
"nodeType": "YulLiteral",
"src": "6753:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6744:3:18",
"nodeType": "YulIdentifier",
"src": "6744:3:18"
},
"nativeSrc": "6744:14:18",
"nodeType": "YulFunctionCall",
"src": "6744:14:18"
},
"variableNames": [
{
"name": "updatedPos",
"nativeSrc": "6730:10:18",
"nodeType": "YulIdentifier",
"src": "6730:10:18"
}
]
}
]
},
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nativeSrc": "6585:179:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value0",
"nativeSrc": "6638:6:18",
"nodeType": "YulTypedName",
"src": "6638:6:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "6646:3:18",
"nodeType": "YulTypedName",
"src": "6646:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "updatedPos",
"nativeSrc": "6654:10:18",
"nodeType": "YulTypedName",
"src": "6654:10:18",
"type": ""
}
],
"src": "6585:179:18"
},
{
"body": {
"nativeSrc": "6845:38:18",
"nodeType": "YulBlock",
"src": "6845:38:18",
"statements": [
{
"nativeSrc": "6855:22:18",
"nodeType": "YulAssignment",
"src": "6855:22:18",
"value": {
"arguments": [
{
"name": "ptr",
"nativeSrc": "6867:3:18",
"nodeType": "YulIdentifier",
"src": "6867:3:18"
},
{
"kind": "number",
"nativeSrc": "6872:4:18",
"nodeType": "YulLiteral",
"src": "6872:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6863:3:18",
"nodeType": "YulIdentifier",
"src": "6863:3:18"
},
"nativeSrc": "6863:14:18",
"nodeType": "YulFunctionCall",
"src": "6863:14:18"
},
"variableNames": [
{
"name": "next",
"nativeSrc": "6855:4:18",
"nodeType": "YulIdentifier",
"src": "6855:4:18"
}
]
}
]
},
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "6770:113:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "6832:3:18",
"nodeType": "YulTypedName",
"src": "6832:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "next",
"nativeSrc": "6840:4:18",
"nodeType": "YulTypedName",
"src": "6840:4:18",
"type": ""
}
],
"src": "6770:113:18"
},
{
"body": {
"nativeSrc": "7043:608:18",
"nodeType": "YulBlock",
"src": "7043:608:18",
"statements": [
{
"nativeSrc": "7053:68:18",
"nodeType": "YulVariableDeclaration",
"src": "7053:68:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7115:5:18",
"nodeType": "YulIdentifier",
"src": "7115:5:18"
}
],
"functionName": {
"name": "array_length_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "7067:47:18",
"nodeType": "YulIdentifier",
"src": "7067:47:18"
},
"nativeSrc": "7067:54:18",
"nodeType": "YulFunctionCall",
"src": "7067:54:18"
},
"variables": [
{
"name": "length",
"nativeSrc": "7057:6:18",
"nodeType": "YulTypedName",
"src": "7057:6:18",
"type": ""
}
]
},
{
"nativeSrc": "7130:93:18",
"nodeType": "YulAssignment",
"src": "7130:93:18",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7211:3:18",
"nodeType": "YulIdentifier",
"src": "7211:3:18"
},
{
"name": "length",
"nativeSrc": "7216:6:18",
"nodeType": "YulIdentifier",
"src": "7216:6:18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nativeSrc": "7137:73:18",
"nodeType": "YulIdentifier",
"src": "7137:73:18"
},
"nativeSrc": "7137:86:18",
"nodeType": "YulFunctionCall",
"src": "7137:86:18"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "7130:3:18",
"nodeType": "YulIdentifier",
"src": "7130:3:18"
}
]
},
{
"nativeSrc": "7232:71:18",
"nodeType": "YulVariableDeclaration",
"src": "7232:71:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7297:5:18",
"nodeType": "YulIdentifier",
"src": "7297:5:18"
}
],
"functionName": {
"name": "array_dataslot_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "7247:49:18",
"nodeType": "YulIdentifier",
"src": "7247:49:18"
},
"nativeSrc": "7247:56:18",
"nodeType": "YulFunctionCall",
"src": "7247:56:18"
},
"variables": [
{
"name": "baseRef",
"nativeSrc": "7236:7:18",
"nodeType": "YulTypedName",
"src": "7236:7:18",
"type": ""
}
]
},
{
"nativeSrc": "7312:21:18",
"nodeType": "YulVariableDeclaration",
"src": "7312:21:18",
"value": {
"name": "baseRef",
"nativeSrc": "7326:7:18",
"nodeType": "YulIdentifier",
"src": "7326:7:18"
},
"variables": [
{
"name": "srcPtr",
"nativeSrc": "7316:6:18",
"nodeType": "YulTypedName",
"src": "7316:6:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "7402:224:18",
"nodeType": "YulBlock",
"src": "7402:224:18",
"statements": [
{
"nativeSrc": "7416:34:18",
"nodeType": "YulVariableDeclaration",
"src": "7416:34:18",
"value": {
"arguments": [
{
"name": "srcPtr",
"nativeSrc": "7443:6:18",
"nodeType": "YulIdentifier",
"src": "7443:6:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "7437:5:18",
"nodeType": "YulIdentifier",
"src": "7437:5:18"
},
"nativeSrc": "7437:13:18",
"nodeType": "YulFunctionCall",
"src": "7437:13:18"
},
"variables": [
{
"name": "elementValue0",
"nativeSrc": "7420:13:18",
"nodeType": "YulTypedName",
"src": "7420:13:18",
"type": ""
}
]
},
{
"nativeSrc": "7463:70:18",
"nodeType": "YulAssignment",
"src": "7463:70:18",
"value": {
"arguments": [
{
"name": "elementValue0",
"nativeSrc": "7514:13:18",
"nodeType": "YulIdentifier",
"src": "7514:13:18"
},
{
"name": "pos",
"nativeSrc": "7529:3:18",
"nodeType": "YulIdentifier",
"src": "7529:3:18"
}
],
"functionName": {
"name": "abi_encodeUpdatedPos_t_uint256_to_t_uint256",
"nativeSrc": "7470:43:18",
"nodeType": "YulIdentifier",
"src": "7470:43:18"
},
"nativeSrc": "7470:63:18",
"nodeType": "YulFunctionCall",
"src": "7470:63:18"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "7463:3:18",
"nodeType": "YulIdentifier",
"src": "7463:3:18"
}
]
},
{
"nativeSrc": "7546:70:18",
"nodeType": "YulAssignment",
"src": "7546:70:18",
"value": {
"arguments": [
{
"name": "srcPtr",
"nativeSrc": "7609:6:18",
"nodeType": "YulIdentifier",
"src": "7609:6:18"
}
],
"functionName": {
"name": "array_nextElement_t_array$_t_uint256_$dyn_memory_ptr",
"nativeSrc": "7556:52:18",
"nodeType": "YulIdentifier",
"src": "7556:52:18"
},
"nativeSrc": "7556:60:18",
"nodeType": "YulFunctionCall",
"src": "7556:60:18"
},
"variableNames": [
{
"name": "srcPtr",
"nativeSrc": "7546:6:18",
"nodeType": "YulIdentifier",
"src": "7546:6:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "7364:1:18",
"nodeType": "YulIdentifier",
"src": "7364:1:18"
},
{
"name": "length",
"nativeSrc": "7367:6:18",
"nodeType": "YulIdentifier",
"src": "7367:6:18"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "7361:2:18",
"nodeType": "YulIdentifier",
"src": "7361:2:18"
},
"nativeSrc": "7361:13:18",
"nodeType": "YulFunctionCall",
"src": "7361:13:18"
},
"nativeSrc": "7342:284:18",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "7375:18:18",
"nodeType": "YulBlock",
"src": "7375:18:18",
"statements": [
{
"nativeSrc": "7377:14:18",
"nodeType": "YulAssignment",
"src": "7377:14:18",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "7386:1:18",
"nodeType": "YulIdentifier",
"src": "7386:1:18"
},
{
"kind": "number",
"nativeSrc": "7389:1:18",
"nodeType": "YulLiteral",
"src": "7389:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7382:3:18",
"nodeType": "YulIdentifier",
"src": "7382:3:18"
},
"nativeSrc": "7382:9:18",
"nodeType": "YulFunctionCall",
"src": "7382:9:18"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "7377:1:18",
"nodeType": "YulIdentifier",
"src": "7377:1:18"
}
]
}
]
},
"pre": {
"nativeSrc": "7346:14:18",
"nodeType": "YulBlock",
"src": "7346:14:18",
"statements": [
{
"nativeSrc": "7348:10:18",
"nodeType": "YulVariableDeclaration",
"src": "7348:10:18",
"value": {
"kind": "number",
"nativeSrc": "7357:1:18",
"nodeType": "YulLiteral",
"src": "7357:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "7352:1:18",
"nodeType": "YulTypedName",
"src": "7352:1:18",
"type": ""
}
]
}
]
},
"src": "7342:284:18"
},
{
"nativeSrc": "7635:10:18",
"nodeType": "YulAssignment",
"src": "7635:10:18",
"value": {
"name": "pos",
"nativeSrc": "7642:3:18",
"nodeType": "YulIdentifier",
"src": "7642:3:18"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "7635:3:18",
"nodeType": "YulIdentifier",
"src": "7635:3:18"
}
]
}
]
},
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nativeSrc": "6919:732:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7022:5:18",
"nodeType": "YulTypedName",
"src": "7022:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "7029:3:18",
"nodeType": "YulTypedName",
"src": "7029:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "7038:3:18",
"nodeType": "YulTypedName",
"src": "7038:3:18",
"type": ""
}
],
"src": "6919:732:18"
},
{
"body": {
"nativeSrc": "8011:861:18",
"nodeType": "YulBlock",
"src": "8011:861:18",
"statements": [
{
"nativeSrc": "8021:27:18",
"nodeType": "YulAssignment",
"src": "8021:27:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "8033:9:18",
"nodeType": "YulIdentifier",
"src": "8033:9:18"
},
{
"kind": "number",
"nativeSrc": "8044:3:18",
"nodeType": "YulLiteral",
"src": "8044:3:18",
"type": "",
"value": "224"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8029:3:18",
"nodeType": "YulIdentifier",
"src": "8029:3:18"
},
"nativeSrc": "8029:19:18",
"nodeType": "YulFunctionCall",
"src": "8029:19:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8021:4:18",
"nodeType": "YulIdentifier",
"src": "8021:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "8100:6:18",
"nodeType": "YulIdentifier",
"src": "8100:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "8113:9:18",
"nodeType": "YulIdentifier",
"src": "8113:9:18"
},
{
"kind": "number",
"nativeSrc": "8124:1:18",
"nodeType": "YulLiteral",
"src": "8124:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8109:3:18",
"nodeType": "YulIdentifier",
"src": "8109:3:18"
},
"nativeSrc": "8109:17:18",
"nodeType": "YulFunctionCall",
"src": "8109:17:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes1_to_t_bytes1_fromStack",
"nativeSrc": "8058:41:18",
"nodeType": "YulIdentifier",
"src": "8058:41:18"
},
"nativeSrc": "8058:69:18",
"nodeType": "YulFunctionCall",
"src": "8058:69:18"
},
"nativeSrc": "8058:69:18",
"nodeType": "YulExpressionStatement",
"src": "8058:69:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "8148:9:18",
"nodeType": "YulIdentifier",
"src": "8148:9:18"
},
{
"kind": "number",
"nativeSrc": "8159:2:18",
"nodeType": "YulLiteral",
"src": "8159:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8144:3:18",
"nodeType": "YulIdentifier",
"src": "8144:3:18"
},
"nativeSrc": "8144:18:18",
"nodeType": "YulFunctionCall",
"src": "8144:18:18"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "8168:4:18",
"nodeType": "YulIdentifier",
"src": "8168:4:18"
},
{
"name": "headStart",
"nativeSrc": "8174:9:18",
"nodeType": "YulIdentifier",
"src": "8174:9:18"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "8164:3:18",
"nodeType": "YulIdentifier",
"src": "8164:3:18"
},
"nativeSrc": "8164:20:18",
"nodeType": "YulFunctionCall",
"src": "8164:20:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8137:6:18",
"nodeType": "YulIdentifier",
"src": "8137:6:18"
},
"nativeSrc": "8137:48:18",
"nodeType": "YulFunctionCall",
"src": "8137:48:18"
},
"nativeSrc": "8137:48:18",
"nodeType": "YulExpressionStatement",
"src": "8137:48:18"
},
{
"nativeSrc": "8194:86:18",
"nodeType": "YulAssignment",
"src": "8194:86:18",
"value": {
"arguments": [
{
"name": "value1",
"nativeSrc": "8266:6:18",
"nodeType": "YulIdentifier",
"src": "8266:6:18"
},
{
"name": "tail",
"nativeSrc": "8275:4:18",
"nodeType": "YulIdentifier",
"src": "8275:4:18"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "8202:63:18",
"nodeType": "YulIdentifier",
"src": "8202:63:18"
},
"nativeSrc": "8202:78:18",
"nodeType": "YulFunctionCall",
"src": "8202:78:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8194:4:18",
"nodeType": "YulIdentifier",
"src": "8194:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "8301:9:18",
"nodeType": "YulIdentifier",
"src": "8301:9:18"
},
{
"kind": "number",
"nativeSrc": "8312:2:18",
"nodeType": "YulLiteral",
"src": "8312:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8297:3:18",
"nodeType": "YulIdentifier",
"src": "8297:3:18"
},
"nativeSrc": "8297:18:18",
"nodeType": "YulFunctionCall",
"src": "8297:18:18"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "8321:4:18",
"nodeType": "YulIdentifier",
"src": "8321:4:18"
},
{
"name": "headStart",
"nativeSrc": "8327:9:18",
"nodeType": "YulIdentifier",
"src": "8327:9:18"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "8317:3:18",
"nodeType": "YulIdentifier",
"src": "8317:3:18"
},
"nativeSrc": "8317:20:18",
"nodeType": "YulFunctionCall",
"src": "8317:20:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8290:6:18",
"nodeType": "YulIdentifier",
"src": "8290:6:18"
},
"nativeSrc": "8290:48:18",
"nodeType": "YulFunctionCall",
"src": "8290:48:18"
},
"nativeSrc": "8290:48:18",
"nodeType": "YulExpressionStatement",
"src": "8290:48:18"
},
{
"nativeSrc": "8347:86:18",
"nodeType": "YulAssignment",
"src": "8347:86:18",
"value": {
"arguments": [
{
"name": "value2",
"nativeSrc": "8419:6:18",
"nodeType": "YulIdentifier",
"src": "8419:6:18"
},
{
"name": "tail",
"nativeSrc": "8428:4:18",
"nodeType": "YulIdentifier",
"src": "8428:4:18"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "8355:63:18",
"nodeType": "YulIdentifier",
"src": "8355:63:18"
},
"nativeSrc": "8355:78:18",
"nodeType": "YulFunctionCall",
"src": "8355:78:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8347:4:18",
"nodeType": "YulIdentifier",
"src": "8347:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nativeSrc": "8487:6:18",
"nodeType": "YulIdentifier",
"src": "8487:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "8500:9:18",
"nodeType": "YulIdentifier",
"src": "8500:9:18"
},
{
"kind": "number",
"nativeSrc": "8511:2:18",
"nodeType": "YulLiteral",
"src": "8511:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8496:3:18",
"nodeType": "YulIdentifier",
"src": "8496:3:18"
},
"nativeSrc": "8496:18:18",
"nodeType": "YulFunctionCall",
"src": "8496:18:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "8443:43:18",
"nodeType": "YulIdentifier",
"src": "8443:43:18"
},
"nativeSrc": "8443:72:18",
"nodeType": "YulFunctionCall",
"src": "8443:72:18"
},
"nativeSrc": "8443:72:18",
"nodeType": "YulExpressionStatement",
"src": "8443:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nativeSrc": "8569:6:18",
"nodeType": "YulIdentifier",
"src": "8569:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "8582:9:18",
"nodeType": "YulIdentifier",
"src": "8582:9:18"
},
{
"kind": "number",
"nativeSrc": "8593:3:18",
"nodeType": "YulLiteral",
"src": "8593:3:18",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8578:3:18",
"nodeType": "YulIdentifier",
"src": "8578:3:18"
},
"nativeSrc": "8578:19:18",
"nodeType": "YulFunctionCall",
"src": "8578:19:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "8525:43:18",
"nodeType": "YulIdentifier",
"src": "8525:43:18"
},
"nativeSrc": "8525:73:18",
"nodeType": "YulFunctionCall",
"src": "8525:73:18"
},
"nativeSrc": "8525:73:18",
"nodeType": "YulExpressionStatement",
"src": "8525:73:18"
},
{
"expression": {
"arguments": [
{
"name": "value5",
"nativeSrc": "8652:6:18",
"nodeType": "YulIdentifier",
"src": "8652:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "8665:9:18",
"nodeType": "YulIdentifier",
"src": "8665:9:18"
},
{
"kind": "number",
"nativeSrc": "8676:3:18",
"nodeType": "YulLiteral",
"src": "8676:3:18",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8661:3:18",
"nodeType": "YulIdentifier",
"src": "8661:3:18"
},
"nativeSrc": "8661:19:18",
"nodeType": "YulFunctionCall",
"src": "8661:19:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "8608:43:18",
"nodeType": "YulIdentifier",
"src": "8608:43:18"
},
"nativeSrc": "8608:73:18",
"nodeType": "YulFunctionCall",
"src": "8608:73:18"
},
"nativeSrc": "8608:73:18",
"nodeType": "YulExpressionStatement",
"src": "8608:73:18"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "8702:9:18",
"nodeType": "YulIdentifier",
"src": "8702:9:18"
},
{
"kind": "number",
"nativeSrc": "8713:3:18",
"nodeType": "YulLiteral",
"src": "8713:3:18",
"type": "",
"value": "192"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8698:3:18",
"nodeType": "YulIdentifier",
"src": "8698:3:18"
},
"nativeSrc": "8698:19:18",
"nodeType": "YulFunctionCall",
"src": "8698:19:18"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "8723:4:18",
"nodeType": "YulIdentifier",
"src": "8723:4:18"
},
{
"name": "headStart",
"nativeSrc": "8729:9:18",
"nodeType": "YulIdentifier",
"src": "8729:9:18"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "8719:3:18",
"nodeType": "YulIdentifier",
"src": "8719:3:18"
},
"nativeSrc": "8719:20:18",
"nodeType": "YulFunctionCall",
"src": "8719:20:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8691:6:18",
"nodeType": "YulIdentifier",
"src": "8691:6:18"
},
"nativeSrc": "8691:49:18",
"nodeType": "YulFunctionCall",
"src": "8691:49:18"
},
"nativeSrc": "8691:49:18",
"nodeType": "YulExpressionStatement",
"src": "8691:49:18"
},
{
"nativeSrc": "8749:116:18",
"nodeType": "YulAssignment",
"src": "8749:116:18",
"value": {
"arguments": [
{
"name": "value6",
"nativeSrc": "8851:6:18",
"nodeType": "YulIdentifier",
"src": "8851:6:18"
},
{
"name": "tail",
"nativeSrc": "8860:4:18",
"nodeType": "YulIdentifier",
"src": "8860:4:18"
}
],
"functionName": {
"name": "abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack",
"nativeSrc": "8757:93:18",
"nodeType": "YulIdentifier",
"src": "8757:93:18"
},
"nativeSrc": "8757:108:18",
"nodeType": "YulFunctionCall",
"src": "8757:108:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8749:4:18",
"nodeType": "YulIdentifier",
"src": "8749:4:18"
}
]
}
]
},
"name": "abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed",
"nativeSrc": "7657:1215:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7935:9:18",
"nodeType": "YulTypedName",
"src": "7935:9:18",
"type": ""
},
{
"name": "value6",
"nativeSrc": "7947:6:18",
"nodeType": "YulTypedName",
"src": "7947:6:18",
"type": ""
},
{
"name": "value5",
"nativeSrc": "7955:6:18",
"nodeType": "YulTypedName",
"src": "7955:6:18",
"type": ""
},
{
"name": "value4",
"nativeSrc": "7963:6:18",
"nodeType": "YulTypedName",
"src": "7963:6:18",
"type": ""
},
{
"name": "value3",
"nativeSrc": "7971:6:18",
"nodeType": "YulTypedName",
"src": "7971:6:18",
"type": ""
},
{
"name": "value2",
"nativeSrc": "7979:6:18",
"nodeType": "YulTypedName",
"src": "7979:6:18",
"type": ""
},
{
"name": "value1",
"nativeSrc": "7987:6:18",
"nodeType": "YulTypedName",
"src": "7987:6:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "7995:6:18",
"nodeType": "YulTypedName",
"src": "7995:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "8006:4:18",
"nodeType": "YulTypedName",
"src": "8006:4:18",
"type": ""
}
],
"src": "7657:1215:18"
},
{
"body": {
"nativeSrc": "8919:77:18",
"nodeType": "YulBlock",
"src": "8919:77:18",
"statements": [
{
"body": {
"nativeSrc": "8974:16:18",
"nodeType": "YulBlock",
"src": "8974:16:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "8983:1:18",
"nodeType": "YulLiteral",
"src": "8983:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "8986:1:18",
"nodeType": "YulLiteral",
"src": "8986:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "8976:6:18",
"nodeType": "YulIdentifier",
"src": "8976:6:18"
},
"nativeSrc": "8976:12:18",
"nodeType": "YulFunctionCall",
"src": "8976:12:18"
},
"nativeSrc": "8976:12:18",
"nodeType": "YulExpressionStatement",
"src": "8976:12:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "8942:5:18",
"nodeType": "YulIdentifier",
"src": "8942:5:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "8965:5:18",
"nodeType": "YulIdentifier",
"src": "8965:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nativeSrc": "8949:15:18",
"nodeType": "YulIdentifier",
"src": "8949:15:18"
},
"nativeSrc": "8949:22:18",
"nodeType": "YulFunctionCall",
"src": "8949:22:18"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "8939:2:18",
"nodeType": "YulIdentifier",
"src": "8939:2:18"
},
"nativeSrc": "8939:33:18",
"nodeType": "YulFunctionCall",
"src": "8939:33:18"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "8932:6:18",
"nodeType": "YulIdentifier",
"src": "8932:6:18"
},
"nativeSrc": "8932:41:18",
"nodeType": "YulFunctionCall",
"src": "8932:41:18"
},
"nativeSrc": "8929:61:18",
"nodeType": "YulIf",
"src": "8929:61:18"
}
]
},
"name": "validator_revert_t_uint8",
"nativeSrc": "8878:118:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8912:5:18",
"nodeType": "YulTypedName",
"src": "8912:5:18",
"type": ""
}
],
"src": "8878:118:18"
},
{
"body": {
"nativeSrc": "9052:85:18",
"nodeType": "YulBlock",
"src": "9052:85:18",
"statements": [
{
"nativeSrc": "9062:29:18",
"nodeType": "YulAssignment",
"src": "9062:29:18",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "9084:6:18",
"nodeType": "YulIdentifier",
"src": "9084:6:18"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "9071:12:18",
"nodeType": "YulIdentifier",
"src": "9071:12:18"
},
"nativeSrc": "9071:20:18",
"nodeType": "YulFunctionCall",
"src": "9071:20:18"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "9062:5:18",
"nodeType": "YulIdentifier",
"src": "9062:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "9125:5:18",
"nodeType": "YulIdentifier",
"src": "9125:5:18"
}
],
"functionName": {
"name": "validator_revert_t_uint8",
"nativeSrc": "9100:24:18",
"nodeType": "YulIdentifier",
"src": "9100:24:18"
},
"nativeSrc": "9100:31:18",
"nodeType": "YulFunctionCall",
"src": "9100:31:18"
},
"nativeSrc": "9100:31:18",
"nodeType": "YulExpressionStatement",
"src": "9100:31:18"
}
]
},
"name": "abi_decode_t_uint8",
"nativeSrc": "9002:135:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "9030:6:18",
"nodeType": "YulTypedName",
"src": "9030:6:18",
"type": ""
},
{
"name": "end",
"nativeSrc": "9038:3:18",
"nodeType": "YulTypedName",
"src": "9038:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "9046:5:18",
"nodeType": "YulTypedName",
"src": "9046:5:18",
"type": ""
}
],
"src": "9002:135:18"
},
{
"body": {
"nativeSrc": "9186:79:18",
"nodeType": "YulBlock",
"src": "9186:79:18",
"statements": [
{
"body": {
"nativeSrc": "9243:16:18",
"nodeType": "YulBlock",
"src": "9243:16:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "9252:1:18",
"nodeType": "YulLiteral",
"src": "9252:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "9255:1:18",
"nodeType": "YulLiteral",
"src": "9255:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "9245:6:18",
"nodeType": "YulIdentifier",
"src": "9245:6:18"
},
"nativeSrc": "9245:12:18",
"nodeType": "YulFunctionCall",
"src": "9245:12:18"
},
"nativeSrc": "9245:12:18",
"nodeType": "YulExpressionStatement",
"src": "9245:12:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "9209:5:18",
"nodeType": "YulIdentifier",
"src": "9209:5:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "9234:5:18",
"nodeType": "YulIdentifier",
"src": "9234:5:18"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nativeSrc": "9216:17:18",
"nodeType": "YulIdentifier",
"src": "9216:17:18"
},
"nativeSrc": "9216:24:18",
"nodeType": "YulFunctionCall",
"src": "9216:24:18"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "9206:2:18",
"nodeType": "YulIdentifier",
"src": "9206:2:18"
},
"nativeSrc": "9206:35:18",
"nodeType": "YulFunctionCall",
"src": "9206:35:18"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "9199:6:18",
"nodeType": "YulIdentifier",
"src": "9199:6:18"
},
"nativeSrc": "9199:43:18",
"nodeType": "YulFunctionCall",
"src": "9199:43:18"
},
"nativeSrc": "9196:63:18",
"nodeType": "YulIf",
"src": "9196:63:18"
}
]
},
"name": "validator_revert_t_bytes32",
"nativeSrc": "9143:122:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "9179:5:18",
"nodeType": "YulTypedName",
"src": "9179:5:18",
"type": ""
}
],
"src": "9143:122:18"
},
{
"body": {
"nativeSrc": "9323:87:18",
"nodeType": "YulBlock",
"src": "9323:87:18",
"statements": [
{
"nativeSrc": "9333:29:18",
"nodeType": "YulAssignment",
"src": "9333:29:18",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "9355:6:18",
"nodeType": "YulIdentifier",
"src": "9355:6:18"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "9342:12:18",
"nodeType": "YulIdentifier",
"src": "9342:12:18"
},
"nativeSrc": "9342:20:18",
"nodeType": "YulFunctionCall",
"src": "9342:20:18"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "9333:5:18",
"nodeType": "YulIdentifier",
"src": "9333:5:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "9398:5:18",
"nodeType": "YulIdentifier",
"src": "9398:5:18"
}
],
"functionName": {
"name": "validator_revert_t_bytes32",
"nativeSrc": "9371:26:18",
"nodeType": "YulIdentifier",
"src": "9371:26:18"
},
"nativeSrc": "9371:33:18",
"nodeType": "YulFunctionCall",
"src": "9371:33:18"
},
"nativeSrc": "9371:33:18",
"nodeType": "YulExpressionStatement",
"src": "9371:33:18"
}
]
},
"name": "abi_decode_t_bytes32",
"nativeSrc": "9271:139:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "9301:6:18",
"nodeType": "YulTypedName",
"src": "9301:6:18",
"type": ""
},
{
"name": "end",
"nativeSrc": "9309:3:18",
"nodeType": "YulTypedName",
"src": "9309:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "9317:5:18",
"nodeType": "YulTypedName",
"src": "9317:5:18",
"type": ""
}
],
"src": "9271:139:18"
},
{
"body": {
"nativeSrc": "9582:1033:18",
"nodeType": "YulBlock",
"src": "9582:1033:18",
"statements": [
{
"body": {
"nativeSrc": "9629:83:18",
"nodeType": "YulBlock",
"src": "9629:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "9631:77:18",
"nodeType": "YulIdentifier",
"src": "9631:77:18"
},
"nativeSrc": "9631:79:18",
"nodeType": "YulFunctionCall",
"src": "9631:79:18"
},
"nativeSrc": "9631:79:18",
"nodeType": "YulExpressionStatement",
"src": "9631:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "9603:7:18",
"nodeType": "YulIdentifier",
"src": "9603:7:18"
},
{
"name": "headStart",
"nativeSrc": "9612:9:18",
"nodeType": "YulIdentifier",
"src": "9612:9:18"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "9599:3:18",
"nodeType": "YulIdentifier",
"src": "9599:3:18"
},
"nativeSrc": "9599:23:18",
"nodeType": "YulFunctionCall",
"src": "9599:23:18"
},
{
"kind": "number",
"nativeSrc": "9624:3:18",
"nodeType": "YulLiteral",
"src": "9624:3:18",
"type": "",
"value": "224"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "9595:3:18",
"nodeType": "YulIdentifier",
"src": "9595:3:18"
},
"nativeSrc": "9595:33:18",
"nodeType": "YulFunctionCall",
"src": "9595:33:18"
},
"nativeSrc": "9592:120:18",
"nodeType": "YulIf",
"src": "9592:120:18"
},
{
"nativeSrc": "9722:117:18",
"nodeType": "YulBlock",
"src": "9722:117:18",
"statements": [
{
"nativeSrc": "9737:15:18",
"nodeType": "YulVariableDeclaration",
"src": "9737:15:18",
"value": {
"kind": "number",
"nativeSrc": "9751:1:18",
"nodeType": "YulLiteral",
"src": "9751:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "9741:6:18",
"nodeType": "YulTypedName",
"src": "9741:6:18",
"type": ""
}
]
},
{
"nativeSrc": "9766:63:18",
"nodeType": "YulAssignment",
"src": "9766:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9801:9:18",
"nodeType": "YulIdentifier",
"src": "9801:9:18"
},
{
"name": "offset",
"nativeSrc": "9812:6:18",
"nodeType": "YulIdentifier",
"src": "9812:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9797:3:18",
"nodeType": "YulIdentifier",
"src": "9797:3:18"
},
"nativeSrc": "9797:22:18",
"nodeType": "YulFunctionCall",
"src": "9797:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "9821:7:18",
"nodeType": "YulIdentifier",
"src": "9821:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "9776:20:18",
"nodeType": "YulIdentifier",
"src": "9776:20:18"
},
"nativeSrc": "9776:53:18",
"nodeType": "YulFunctionCall",
"src": "9776:53:18"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "9766:6:18",
"nodeType": "YulIdentifier",
"src": "9766:6:18"
}
]
}
]
},
{
"nativeSrc": "9849:118:18",
"nodeType": "YulBlock",
"src": "9849:118:18",
"statements": [
{
"nativeSrc": "9864:16:18",
"nodeType": "YulVariableDeclaration",
"src": "9864:16:18",
"value": {
"kind": "number",
"nativeSrc": "9878:2:18",
"nodeType": "YulLiteral",
"src": "9878:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "9868:6:18",
"nodeType": "YulTypedName",
"src": "9868:6:18",
"type": ""
}
]
},
{
"nativeSrc": "9894:63:18",
"nodeType": "YulAssignment",
"src": "9894:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9929:9:18",
"nodeType": "YulIdentifier",
"src": "9929:9:18"
},
{
"name": "offset",
"nativeSrc": "9940:6:18",
"nodeType": "YulIdentifier",
"src": "9940:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9925:3:18",
"nodeType": "YulIdentifier",
"src": "9925:3:18"
},
"nativeSrc": "9925:22:18",
"nodeType": "YulFunctionCall",
"src": "9925:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "9949:7:18",
"nodeType": "YulIdentifier",
"src": "9949:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "9904:20:18",
"nodeType": "YulIdentifier",
"src": "9904:20:18"
},
"nativeSrc": "9904:53:18",
"nodeType": "YulFunctionCall",
"src": "9904:53:18"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "9894:6:18",
"nodeType": "YulIdentifier",
"src": "9894:6:18"
}
]
}
]
},
{
"nativeSrc": "9977:118:18",
"nodeType": "YulBlock",
"src": "9977:118:18",
"statements": [
{
"nativeSrc": "9992:16:18",
"nodeType": "YulVariableDeclaration",
"src": "9992:16:18",
"value": {
"kind": "number",
"nativeSrc": "10006:2:18",
"nodeType": "YulLiteral",
"src": "10006:2:18",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nativeSrc": "9996:6:18",
"nodeType": "YulTypedName",
"src": "9996:6:18",
"type": ""
}
]
},
{
"nativeSrc": "10022:63:18",
"nodeType": "YulAssignment",
"src": "10022:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10057:9:18",
"nodeType": "YulIdentifier",
"src": "10057:9:18"
},
{
"name": "offset",
"nativeSrc": "10068:6:18",
"nodeType": "YulIdentifier",
"src": "10068:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10053:3:18",
"nodeType": "YulIdentifier",
"src": "10053:3:18"
},
"nativeSrc": "10053:22:18",
"nodeType": "YulFunctionCall",
"src": "10053:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "10077:7:18",
"nodeType": "YulIdentifier",
"src": "10077:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "10032:20:18",
"nodeType": "YulIdentifier",
"src": "10032:20:18"
},
"nativeSrc": "10032:53:18",
"nodeType": "YulFunctionCall",
"src": "10032:53:18"
},
"variableNames": [
{
"name": "value2",
"nativeSrc": "10022:6:18",
"nodeType": "YulIdentifier",
"src": "10022:6:18"
}
]
}
]
},
{
"nativeSrc": "10105:118:18",
"nodeType": "YulBlock",
"src": "10105:118:18",
"statements": [
{
"nativeSrc": "10120:16:18",
"nodeType": "YulVariableDeclaration",
"src": "10120:16:18",
"value": {
"kind": "number",
"nativeSrc": "10134:2:18",
"nodeType": "YulLiteral",
"src": "10134:2:18",
"type": "",
"value": "96"
},
"variables": [
{
"name": "offset",
"nativeSrc": "10124:6:18",
"nodeType": "YulTypedName",
"src": "10124:6:18",
"type": ""
}
]
},
{
"nativeSrc": "10150:63:18",
"nodeType": "YulAssignment",
"src": "10150:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10185:9:18",
"nodeType": "YulIdentifier",
"src": "10185:9:18"
},
{
"name": "offset",
"nativeSrc": "10196:6:18",
"nodeType": "YulIdentifier",
"src": "10196:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10181:3:18",
"nodeType": "YulIdentifier",
"src": "10181:3:18"
},
"nativeSrc": "10181:22:18",
"nodeType": "YulFunctionCall",
"src": "10181:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "10205:7:18",
"nodeType": "YulIdentifier",
"src": "10205:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "10160:20:18",
"nodeType": "YulIdentifier",
"src": "10160:20:18"
},
"nativeSrc": "10160:53:18",
"nodeType": "YulFunctionCall",
"src": "10160:53:18"
},
"variableNames": [
{
"name": "value3",
"nativeSrc": "10150:6:18",
"nodeType": "YulIdentifier",
"src": "10150:6:18"
}
]
}
]
},
{
"nativeSrc": "10233:117:18",
"nodeType": "YulBlock",
"src": "10233:117:18",
"statements": [
{
"nativeSrc": "10248:17:18",
"nodeType": "YulVariableDeclaration",
"src": "10248:17:18",
"value": {
"kind": "number",
"nativeSrc": "10262:3:18",
"nodeType": "YulLiteral",
"src": "10262:3:18",
"type": "",
"value": "128"
},
"variables": [
{
"name": "offset",
"nativeSrc": "10252:6:18",
"nodeType": "YulTypedName",
"src": "10252:6:18",
"type": ""
}
]
},
{
"nativeSrc": "10279:61:18",
"nodeType": "YulAssignment",
"src": "10279:61:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10312:9:18",
"nodeType": "YulIdentifier",
"src": "10312:9:18"
},
{
"name": "offset",
"nativeSrc": "10323:6:18",
"nodeType": "YulIdentifier",
"src": "10323:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10308:3:18",
"nodeType": "YulIdentifier",
"src": "10308:3:18"
},
"nativeSrc": "10308:22:18",
"nodeType": "YulFunctionCall",
"src": "10308:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "10332:7:18",
"nodeType": "YulIdentifier",
"src": "10332:7:18"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nativeSrc": "10289:18:18",
"nodeType": "YulIdentifier",
"src": "10289:18:18"
},
"nativeSrc": "10289:51:18",
"nodeType": "YulFunctionCall",
"src": "10289:51:18"
},
"variableNames": [
{
"name": "value4",
"nativeSrc": "10279:6:18",
"nodeType": "YulIdentifier",
"src": "10279:6:18"
}
]
}
]
},
{
"nativeSrc": "10360:119:18",
"nodeType": "YulBlock",
"src": "10360:119:18",
"statements": [
{
"nativeSrc": "10375:17:18",
"nodeType": "YulVariableDeclaration",
"src": "10375:17:18",
"value": {
"kind": "number",
"nativeSrc": "10389:3:18",
"nodeType": "YulLiteral",
"src": "10389:3:18",
"type": "",
"value": "160"
},
"variables": [
{
"name": "offset",
"nativeSrc": "10379:6:18",
"nodeType": "YulTypedName",
"src": "10379:6:18",
"type": ""
}
]
},
{
"nativeSrc": "10406:63:18",
"nodeType": "YulAssignment",
"src": "10406:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10441:9:18",
"nodeType": "YulIdentifier",
"src": "10441:9:18"
},
{
"name": "offset",
"nativeSrc": "10452:6:18",
"nodeType": "YulIdentifier",
"src": "10452:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10437:3:18",
"nodeType": "YulIdentifier",
"src": "10437:3:18"
},
"nativeSrc": "10437:22:18",
"nodeType": "YulFunctionCall",
"src": "10437:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "10461:7:18",
"nodeType": "YulIdentifier",
"src": "10461:7:18"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nativeSrc": "10416:20:18",
"nodeType": "YulIdentifier",
"src": "10416:20:18"
},
"nativeSrc": "10416:53:18",
"nodeType": "YulFunctionCall",
"src": "10416:53:18"
},
"variableNames": [
{
"name": "value5",
"nativeSrc": "10406:6:18",
"nodeType": "YulIdentifier",
"src": "10406:6:18"
}
]
}
]
},
{
"nativeSrc": "10489:119:18",
"nodeType": "YulBlock",
"src": "10489:119:18",
"statements": [
{
"nativeSrc": "10504:17:18",
"nodeType": "YulVariableDeclaration",
"src": "10504:17:18",
"value": {
"kind": "number",
"nativeSrc": "10518:3:18",
"nodeType": "YulLiteral",
"src": "10518:3:18",
"type": "",
"value": "192"
},
"variables": [
{
"name": "offset",
"nativeSrc": "10508:6:18",
"nodeType": "YulTypedName",
"src": "10508:6:18",
"type": ""
}
]
},
{
"nativeSrc": "10535:63:18",
"nodeType": "YulAssignment",
"src": "10535:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10570:9:18",
"nodeType": "YulIdentifier",
"src": "10570:9:18"
},
{
"name": "offset",
"nativeSrc": "10581:6:18",
"nodeType": "YulIdentifier",
"src": "10581:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10566:3:18",
"nodeType": "YulIdentifier",
"src": "10566:3:18"
},
"nativeSrc": "10566:22:18",
"nodeType": "YulFunctionCall",
"src": "10566:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "10590:7:18",
"nodeType": "YulIdentifier",
"src": "10590:7:18"
}
],
"functionName": {
"name": "abi_decode_t_bytes32",
"nativeSrc": "10545:20:18",
"nodeType": "YulIdentifier",
"src": "10545:20:18"
},
"nativeSrc": "10545:53:18",
"nodeType": "YulFunctionCall",
"src": "10545:53:18"
},
"variableNames": [
{
"name": "value6",
"nativeSrc": "10535:6:18",
"nodeType": "YulIdentifier",
"src": "10535:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32",
"nativeSrc": "9416:1199:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "9504:9:18",
"nodeType": "YulTypedName",
"src": "9504:9:18",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "9515:7:18",
"nodeType": "YulTypedName",
"src": "9515:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "9527:6:18",
"nodeType": "YulTypedName",
"src": "9527:6:18",
"type": ""
},
{
"name": "value1",
"nativeSrc": "9535:6:18",
"nodeType": "YulTypedName",
"src": "9535:6:18",
"type": ""
},
{
"name": "value2",
"nativeSrc": "9543:6:18",
"nodeType": "YulTypedName",
"src": "9543:6:18",
"type": ""
},
{
"name": "value3",
"nativeSrc": "9551:6:18",
"nodeType": "YulTypedName",
"src": "9551:6:18",
"type": ""
},
{
"name": "value4",
"nativeSrc": "9559:6:18",
"nodeType": "YulTypedName",
"src": "9559:6:18",
"type": ""
},
{
"name": "value5",
"nativeSrc": "9567:6:18",
"nodeType": "YulTypedName",
"src": "9567:6:18",
"type": ""
},
{
"name": "value6",
"nativeSrc": "9575:6:18",
"nodeType": "YulTypedName",
"src": "9575:6:18",
"type": ""
}
],
"src": "9416:1199:18"
},
{
"body": {
"nativeSrc": "10704:391:18",
"nodeType": "YulBlock",
"src": "10704:391:18",
"statements": [
{
"body": {
"nativeSrc": "10750:83:18",
"nodeType": "YulBlock",
"src": "10750:83:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "10752:77:18",
"nodeType": "YulIdentifier",
"src": "10752:77:18"
},
"nativeSrc": "10752:79:18",
"nodeType": "YulFunctionCall",
"src": "10752:79:18"
},
"nativeSrc": "10752:79:18",
"nodeType": "YulExpressionStatement",
"src": "10752:79:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "10725:7:18",
"nodeType": "YulIdentifier",
"src": "10725:7:18"
},
{
"name": "headStart",
"nativeSrc": "10734:9:18",
"nodeType": "YulIdentifier",
"src": "10734:9:18"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "10721:3:18",
"nodeType": "YulIdentifier",
"src": "10721:3:18"
},
"nativeSrc": "10721:23:18",
"nodeType": "YulFunctionCall",
"src": "10721:23:18"
},
{
"kind": "number",
"nativeSrc": "10746:2:18",
"nodeType": "YulLiteral",
"src": "10746:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "10717:3:18",
"nodeType": "YulIdentifier",
"src": "10717:3:18"
},
"nativeSrc": "10717:32:18",
"nodeType": "YulFunctionCall",
"src": "10717:32:18"
},
"nativeSrc": "10714:119:18",
"nodeType": "YulIf",
"src": "10714:119:18"
},
{
"nativeSrc": "10843:117:18",
"nodeType": "YulBlock",
"src": "10843:117:18",
"statements": [
{
"nativeSrc": "10858:15:18",
"nodeType": "YulVariableDeclaration",
"src": "10858:15:18",
"value": {
"kind": "number",
"nativeSrc": "10872:1:18",
"nodeType": "YulLiteral",
"src": "10872:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "10862:6:18",
"nodeType": "YulTypedName",
"src": "10862:6:18",
"type": ""
}
]
},
{
"nativeSrc": "10887:63:18",
"nodeType": "YulAssignment",
"src": "10887:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10922:9:18",
"nodeType": "YulIdentifier",
"src": "10922:9:18"
},
{
"name": "offset",
"nativeSrc": "10933:6:18",
"nodeType": "YulIdentifier",
"src": "10933:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10918:3:18",
"nodeType": "YulIdentifier",
"src": "10918:3:18"
},
"nativeSrc": "10918:22:18",
"nodeType": "YulFunctionCall",
"src": "10918:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "10942:7:18",
"nodeType": "YulIdentifier",
"src": "10942:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "10897:20:18",
"nodeType": "YulIdentifier",
"src": "10897:20:18"
},
"nativeSrc": "10897:53:18",
"nodeType": "YulFunctionCall",
"src": "10897:53:18"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "10887:6:18",
"nodeType": "YulIdentifier",
"src": "10887:6:18"
}
]
}
]
},
{
"nativeSrc": "10970:118:18",
"nodeType": "YulBlock",
"src": "10970:118:18",
"statements": [
{
"nativeSrc": "10985:16:18",
"nodeType": "YulVariableDeclaration",
"src": "10985:16:18",
"value": {
"kind": "number",
"nativeSrc": "10999:2:18",
"nodeType": "YulLiteral",
"src": "10999:2:18",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "10989:6:18",
"nodeType": "YulTypedName",
"src": "10989:6:18",
"type": ""
}
]
},
{
"nativeSrc": "11015:63:18",
"nodeType": "YulAssignment",
"src": "11015:63:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "11050:9:18",
"nodeType": "YulIdentifier",
"src": "11050:9:18"
},
{
"name": "offset",
"nativeSrc": "11061:6:18",
"nodeType": "YulIdentifier",
"src": "11061:6:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11046:3:18",
"nodeType": "YulIdentifier",
"src": "11046:3:18"
},
"nativeSrc": "11046:22:18",
"nodeType": "YulFunctionCall",
"src": "11046:22:18"
},
{
"name": "dataEnd",
"nativeSrc": "11070:7:18",
"nodeType": "YulIdentifier",
"src": "11070:7:18"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "11025:20:18",
"nodeType": "YulIdentifier",
"src": "11025:20:18"
},
"nativeSrc": "11025:53:18",
"nodeType": "YulFunctionCall",
"src": "11025:53:18"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "11015:6:18",
"nodeType": "YulIdentifier",
"src": "11015:6:18"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nativeSrc": "10621:474:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "10666:9:18",
"nodeType": "YulTypedName",
"src": "10666:9:18",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "10677:7:18",
"nodeType": "YulTypedName",
"src": "10677:7:18",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "10689:6:18",
"nodeType": "YulTypedName",
"src": "10689:6:18",
"type": ""
},
{
"name": "value1",
"nativeSrc": "10697:6:18",
"nodeType": "YulTypedName",
"src": "10697:6:18",
"type": ""
}
],
"src": "10621:474:18"
},
{
"body": {
"nativeSrc": "11129:152:18",
"nodeType": "YulBlock",
"src": "11129:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "11146:1:18",
"nodeType": "YulLiteral",
"src": "11146:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "11149:77:18",
"nodeType": "YulLiteral",
"src": "11149:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11139:6:18",
"nodeType": "YulIdentifier",
"src": "11139:6:18"
},
"nativeSrc": "11139:88:18",
"nodeType": "YulFunctionCall",
"src": "11139:88:18"
},
"nativeSrc": "11139:88:18",
"nodeType": "YulExpressionStatement",
"src": "11139:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "11243:1:18",
"nodeType": "YulLiteral",
"src": "11243:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "11246:4:18",
"nodeType": "YulLiteral",
"src": "11246:4:18",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11236:6:18",
"nodeType": "YulIdentifier",
"src": "11236:6:18"
},
"nativeSrc": "11236:15:18",
"nodeType": "YulFunctionCall",
"src": "11236:15:18"
},
"nativeSrc": "11236:15:18",
"nodeType": "YulExpressionStatement",
"src": "11236:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "11267:1:18",
"nodeType": "YulLiteral",
"src": "11267:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "11270:4:18",
"nodeType": "YulLiteral",
"src": "11270:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "11260:6:18",
"nodeType": "YulIdentifier",
"src": "11260:6:18"
},
"nativeSrc": "11260:15:18",
"nodeType": "YulFunctionCall",
"src": "11260:15:18"
},
"nativeSrc": "11260:15:18",
"nodeType": "YulExpressionStatement",
"src": "11260:15:18"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "11101:180:18",
"nodeType": "YulFunctionDefinition",
"src": "11101:180:18"
},
{
"body": {
"nativeSrc": "11338:269:18",
"nodeType": "YulBlock",
"src": "11338:269:18",
"statements": [
{
"nativeSrc": "11348:22:18",
"nodeType": "YulAssignment",
"src": "11348:22:18",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "11362:4:18",
"nodeType": "YulIdentifier",
"src": "11362:4:18"
},
{
"kind": "number",
"nativeSrc": "11368:1:18",
"nodeType": "YulLiteral",
"src": "11368:1:18",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "11358:3:18",
"nodeType": "YulIdentifier",
"src": "11358:3:18"
},
"nativeSrc": "11358:12:18",
"nodeType": "YulFunctionCall",
"src": "11358:12:18"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "11348:6:18",
"nodeType": "YulIdentifier",
"src": "11348:6:18"
}
]
},
{
"nativeSrc": "11379:38:18",
"nodeType": "YulVariableDeclaration",
"src": "11379:38:18",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "11409:4:18",
"nodeType": "YulIdentifier",
"src": "11409:4:18"
},
{
"kind": "number",
"nativeSrc": "11415:1:18",
"nodeType": "YulLiteral",
"src": "11415:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "11405:3:18",
"nodeType": "YulIdentifier",
"src": "11405:3:18"
},
"nativeSrc": "11405:12:18",
"nodeType": "YulFunctionCall",
"src": "11405:12:18"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "11383:18:18",
"nodeType": "YulTypedName",
"src": "11383:18:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "11456:51:18",
"nodeType": "YulBlock",
"src": "11456:51:18",
"statements": [
{
"nativeSrc": "11470:27:18",
"nodeType": "YulAssignment",
"src": "11470:27:18",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "11484:6:18",
"nodeType": "YulIdentifier",
"src": "11484:6:18"
},
{
"kind": "number",
"nativeSrc": "11492:4:18",
"nodeType": "YulLiteral",
"src": "11492:4:18",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "11480:3:18",
"nodeType": "YulIdentifier",
"src": "11480:3:18"
},
"nativeSrc": "11480:17:18",
"nodeType": "YulFunctionCall",
"src": "11480:17:18"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "11470:6:18",
"nodeType": "YulIdentifier",
"src": "11470:6:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "11436:18:18",
"nodeType": "YulIdentifier",
"src": "11436:18:18"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "11429:6:18",
"nodeType": "YulIdentifier",
"src": "11429:6:18"
},
"nativeSrc": "11429:26:18",
"nodeType": "YulFunctionCall",
"src": "11429:26:18"
},
"nativeSrc": "11426:81:18",
"nodeType": "YulIf",
"src": "11426:81:18"
},
{
"body": {
"nativeSrc": "11559:42:18",
"nodeType": "YulBlock",
"src": "11559:42:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "11573:16:18",
"nodeType": "YulIdentifier",
"src": "11573:16:18"
},
"nativeSrc": "11573:18:18",
"nodeType": "YulFunctionCall",
"src": "11573:18:18"
},
"nativeSrc": "11573:18:18",
"nodeType": "YulExpressionStatement",
"src": "11573:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "11523:18:18",
"nodeType": "YulIdentifier",
"src": "11523:18:18"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "11546:6:18",
"nodeType": "YulIdentifier",
"src": "11546:6:18"
},
{
"kind": "number",
"nativeSrc": "11554:2:18",
"nodeType": "YulLiteral",
"src": "11554:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "11543:2:18",
"nodeType": "YulIdentifier",
"src": "11543:2:18"
},
"nativeSrc": "11543:14:18",
"nodeType": "YulFunctionCall",
"src": "11543:14:18"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "11520:2:18",
"nodeType": "YulIdentifier",
"src": "11520:2:18"
},
"nativeSrc": "11520:38:18",
"nodeType": "YulFunctionCall",
"src": "11520:38:18"
},
"nativeSrc": "11517:84:18",
"nodeType": "YulIf",
"src": "11517:84:18"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "11287:320:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "11322:4:18",
"nodeType": "YulTypedName",
"src": "11322:4:18",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "11331:6:18",
"nodeType": "YulTypedName",
"src": "11331:6:18",
"type": ""
}
],
"src": "11287:320:18"
},
{
"body": {
"nativeSrc": "11641:152:18",
"nodeType": "YulBlock",
"src": "11641:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "11658:1:18",
"nodeType": "YulLiteral",
"src": "11658:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "11661:77:18",
"nodeType": "YulLiteral",
"src": "11661:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11651:6:18",
"nodeType": "YulIdentifier",
"src": "11651:6:18"
},
"nativeSrc": "11651:88:18",
"nodeType": "YulFunctionCall",
"src": "11651:88:18"
},
"nativeSrc": "11651:88:18",
"nodeType": "YulExpressionStatement",
"src": "11651:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "11755:1:18",
"nodeType": "YulLiteral",
"src": "11755:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "11758:4:18",
"nodeType": "YulLiteral",
"src": "11758:4:18",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11748:6:18",
"nodeType": "YulIdentifier",
"src": "11748:6:18"
},
"nativeSrc": "11748:15:18",
"nodeType": "YulFunctionCall",
"src": "11748:15:18"
},
"nativeSrc": "11748:15:18",
"nodeType": "YulExpressionStatement",
"src": "11748:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "11779:1:18",
"nodeType": "YulLiteral",
"src": "11779:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "11782:4:18",
"nodeType": "YulLiteral",
"src": "11782:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "11772:6:18",
"nodeType": "YulIdentifier",
"src": "11772:6:18"
},
"nativeSrc": "11772:15:18",
"nodeType": "YulFunctionCall",
"src": "11772:15:18"
},
"nativeSrc": "11772:15:18",
"nodeType": "YulExpressionStatement",
"src": "11772:15:18"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "11613:180:18",
"nodeType": "YulFunctionDefinition",
"src": "11613:180:18"
},
{
"body": {
"nativeSrc": "12037:537:18",
"nodeType": "YulBlock",
"src": "12037:537:18",
"statements": [
{
"nativeSrc": "12047:27:18",
"nodeType": "YulAssignment",
"src": "12047:27:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "12059:9:18",
"nodeType": "YulIdentifier",
"src": "12059:9:18"
},
{
"kind": "number",
"nativeSrc": "12070:3:18",
"nodeType": "YulLiteral",
"src": "12070:3:18",
"type": "",
"value": "192"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12055:3:18",
"nodeType": "YulIdentifier",
"src": "12055:3:18"
},
"nativeSrc": "12055:19:18",
"nodeType": "YulFunctionCall",
"src": "12055:19:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12047:4:18",
"nodeType": "YulIdentifier",
"src": "12047:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "12128:6:18",
"nodeType": "YulIdentifier",
"src": "12128:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "12141:9:18",
"nodeType": "YulIdentifier",
"src": "12141:9:18"
},
{
"kind": "number",
"nativeSrc": "12152:1:18",
"nodeType": "YulLiteral",
"src": "12152:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12137:3:18",
"nodeType": "YulIdentifier",
"src": "12137:3:18"
},
"nativeSrc": "12137:17:18",
"nodeType": "YulFunctionCall",
"src": "12137:17:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "12084:43:18",
"nodeType": "YulIdentifier",
"src": "12084:43:18"
},
"nativeSrc": "12084:71:18",
"nodeType": "YulFunctionCall",
"src": "12084:71:18"
},
"nativeSrc": "12084:71:18",
"nodeType": "YulExpressionStatement",
"src": "12084:71:18"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "12209:6:18",
"nodeType": "YulIdentifier",
"src": "12209:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "12222:9:18",
"nodeType": "YulIdentifier",
"src": "12222:9:18"
},
{
"kind": "number",
"nativeSrc": "12233:2:18",
"nodeType": "YulLiteral",
"src": "12233:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12218:3:18",
"nodeType": "YulIdentifier",
"src": "12218:3:18"
},
"nativeSrc": "12218:18:18",
"nodeType": "YulFunctionCall",
"src": "12218:18:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "12165:43:18",
"nodeType": "YulIdentifier",
"src": "12165:43:18"
},
"nativeSrc": "12165:72:18",
"nodeType": "YulFunctionCall",
"src": "12165:72:18"
},
"nativeSrc": "12165:72:18",
"nodeType": "YulExpressionStatement",
"src": "12165:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nativeSrc": "12291:6:18",
"nodeType": "YulIdentifier",
"src": "12291:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "12304:9:18",
"nodeType": "YulIdentifier",
"src": "12304:9:18"
},
{
"kind": "number",
"nativeSrc": "12315:2:18",
"nodeType": "YulLiteral",
"src": "12315:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12300:3:18",
"nodeType": "YulIdentifier",
"src": "12300:3:18"
},
"nativeSrc": "12300:18:18",
"nodeType": "YulFunctionCall",
"src": "12300:18:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "12247:43:18",
"nodeType": "YulIdentifier",
"src": "12247:43:18"
},
"nativeSrc": "12247:72:18",
"nodeType": "YulFunctionCall",
"src": "12247:72:18"
},
"nativeSrc": "12247:72:18",
"nodeType": "YulExpressionStatement",
"src": "12247:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nativeSrc": "12373:6:18",
"nodeType": "YulIdentifier",
"src": "12373:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "12386:9:18",
"nodeType": "YulIdentifier",
"src": "12386:9:18"
},
{
"kind": "number",
"nativeSrc": "12397:2:18",
"nodeType": "YulLiteral",
"src": "12397:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12382:3:18",
"nodeType": "YulIdentifier",
"src": "12382:3:18"
},
"nativeSrc": "12382:18:18",
"nodeType": "YulFunctionCall",
"src": "12382:18:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "12329:43:18",
"nodeType": "YulIdentifier",
"src": "12329:43:18"
},
"nativeSrc": "12329:72:18",
"nodeType": "YulFunctionCall",
"src": "12329:72:18"
},
"nativeSrc": "12329:72:18",
"nodeType": "YulExpressionStatement",
"src": "12329:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nativeSrc": "12455:6:18",
"nodeType": "YulIdentifier",
"src": "12455:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "12468:9:18",
"nodeType": "YulIdentifier",
"src": "12468:9:18"
},
{
"kind": "number",
"nativeSrc": "12479:3:18",
"nodeType": "YulLiteral",
"src": "12479:3:18",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12464:3:18",
"nodeType": "YulIdentifier",
"src": "12464:3:18"
},
"nativeSrc": "12464:19:18",
"nodeType": "YulFunctionCall",
"src": "12464:19:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "12411:43:18",
"nodeType": "YulIdentifier",
"src": "12411:43:18"
},
"nativeSrc": "12411:73:18",
"nodeType": "YulFunctionCall",
"src": "12411:73:18"
},
"nativeSrc": "12411:73:18",
"nodeType": "YulExpressionStatement",
"src": "12411:73:18"
},
{
"expression": {
"arguments": [
{
"name": "value5",
"nativeSrc": "12538:6:18",
"nodeType": "YulIdentifier",
"src": "12538:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "12551:9:18",
"nodeType": "YulIdentifier",
"src": "12551:9:18"
},
{
"kind": "number",
"nativeSrc": "12562:3:18",
"nodeType": "YulLiteral",
"src": "12562:3:18",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12547:3:18",
"nodeType": "YulIdentifier",
"src": "12547:3:18"
},
"nativeSrc": "12547:19:18",
"nodeType": "YulFunctionCall",
"src": "12547:19:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "12494:43:18",
"nodeType": "YulIdentifier",
"src": "12494:43:18"
},
"nativeSrc": "12494:73:18",
"nodeType": "YulFunctionCall",
"src": "12494:73:18"
},
"nativeSrc": "12494:73:18",
"nodeType": "YulExpressionStatement",
"src": "12494:73:18"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed",
"nativeSrc": "11799:775:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "11969:9:18",
"nodeType": "YulTypedName",
"src": "11969:9:18",
"type": ""
},
{
"name": "value5",
"nativeSrc": "11981:6:18",
"nodeType": "YulTypedName",
"src": "11981:6:18",
"type": ""
},
{
"name": "value4",
"nativeSrc": "11989:6:18",
"nodeType": "YulTypedName",
"src": "11989:6:18",
"type": ""
},
{
"name": "value3",
"nativeSrc": "11997:6:18",
"nodeType": "YulTypedName",
"src": "11997:6:18",
"type": ""
},
{
"name": "value2",
"nativeSrc": "12005:6:18",
"nodeType": "YulTypedName",
"src": "12005:6:18",
"type": ""
},
{
"name": "value1",
"nativeSrc": "12013:6:18",
"nodeType": "YulTypedName",
"src": "12013:6:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "12021:6:18",
"nodeType": "YulTypedName",
"src": "12021:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "12032:4:18",
"nodeType": "YulTypedName",
"src": "12032:4:18",
"type": ""
}
],
"src": "11799:775:18"
},
{
"body": {
"nativeSrc": "12706:206:18",
"nodeType": "YulBlock",
"src": "12706:206:18",
"statements": [
{
"nativeSrc": "12716:26:18",
"nodeType": "YulAssignment",
"src": "12716:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "12728:9:18",
"nodeType": "YulIdentifier",
"src": "12728:9:18"
},
{
"kind": "number",
"nativeSrc": "12739:2:18",
"nodeType": "YulLiteral",
"src": "12739:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12724:3:18",
"nodeType": "YulIdentifier",
"src": "12724:3:18"
},
"nativeSrc": "12724:18:18",
"nodeType": "YulFunctionCall",
"src": "12724:18:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12716:4:18",
"nodeType": "YulIdentifier",
"src": "12716:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "12796:6:18",
"nodeType": "YulIdentifier",
"src": "12796:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "12809:9:18",
"nodeType": "YulIdentifier",
"src": "12809:9:18"
},
{
"kind": "number",
"nativeSrc": "12820:1:18",
"nodeType": "YulLiteral",
"src": "12820:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12805:3:18",
"nodeType": "YulIdentifier",
"src": "12805:3:18"
},
"nativeSrc": "12805:17:18",
"nodeType": "YulFunctionCall",
"src": "12805:17:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "12752:43:18",
"nodeType": "YulIdentifier",
"src": "12752:43:18"
},
"nativeSrc": "12752:71:18",
"nodeType": "YulFunctionCall",
"src": "12752:71:18"
},
"nativeSrc": "12752:71:18",
"nodeType": "YulExpressionStatement",
"src": "12752:71:18"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "12877:6:18",
"nodeType": "YulIdentifier",
"src": "12877:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "12890:9:18",
"nodeType": "YulIdentifier",
"src": "12890:9:18"
},
{
"kind": "number",
"nativeSrc": "12901:2:18",
"nodeType": "YulLiteral",
"src": "12901:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12886:3:18",
"nodeType": "YulIdentifier",
"src": "12886:3:18"
},
"nativeSrc": "12886:18:18",
"nodeType": "YulFunctionCall",
"src": "12886:18:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "12833:43:18",
"nodeType": "YulIdentifier",
"src": "12833:43:18"
},
"nativeSrc": "12833:72:18",
"nodeType": "YulFunctionCall",
"src": "12833:72:18"
},
"nativeSrc": "12833:72:18",
"nodeType": "YulExpressionStatement",
"src": "12833:72:18"
}
]
},
"name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
"nativeSrc": "12580:332:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "12670:9:18",
"nodeType": "YulTypedName",
"src": "12670:9:18",
"type": ""
},
{
"name": "value1",
"nativeSrc": "12682:6:18",
"nodeType": "YulTypedName",
"src": "12682:6:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "12690:6:18",
"nodeType": "YulTypedName",
"src": "12690:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "12701:4:18",
"nodeType": "YulTypedName",
"src": "12701:4:18",
"type": ""
}
],
"src": "12580:332:18"
},
{
"body": {
"nativeSrc": "13072:288:18",
"nodeType": "YulBlock",
"src": "13072:288:18",
"statements": [
{
"nativeSrc": "13082:26:18",
"nodeType": "YulAssignment",
"src": "13082:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "13094:9:18",
"nodeType": "YulIdentifier",
"src": "13094:9:18"
},
{
"kind": "number",
"nativeSrc": "13105:2:18",
"nodeType": "YulLiteral",
"src": "13105:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13090:3:18",
"nodeType": "YulIdentifier",
"src": "13090:3:18"
},
"nativeSrc": "13090:18:18",
"nodeType": "YulFunctionCall",
"src": "13090:18:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "13082:4:18",
"nodeType": "YulIdentifier",
"src": "13082:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "13162:6:18",
"nodeType": "YulIdentifier",
"src": "13162:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "13175:9:18",
"nodeType": "YulIdentifier",
"src": "13175:9:18"
},
{
"kind": "number",
"nativeSrc": "13186:1:18",
"nodeType": "YulLiteral",
"src": "13186:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13171:3:18",
"nodeType": "YulIdentifier",
"src": "13171:3:18"
},
"nativeSrc": "13171:17:18",
"nodeType": "YulFunctionCall",
"src": "13171:17:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "13118:43:18",
"nodeType": "YulIdentifier",
"src": "13118:43:18"
},
"nativeSrc": "13118:71:18",
"nodeType": "YulFunctionCall",
"src": "13118:71:18"
},
"nativeSrc": "13118:71:18",
"nodeType": "YulExpressionStatement",
"src": "13118:71:18"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "13243:6:18",
"nodeType": "YulIdentifier",
"src": "13243:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "13256:9:18",
"nodeType": "YulIdentifier",
"src": "13256:9:18"
},
{
"kind": "number",
"nativeSrc": "13267:2:18",
"nodeType": "YulLiteral",
"src": "13267:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13252:3:18",
"nodeType": "YulIdentifier",
"src": "13252:3:18"
},
"nativeSrc": "13252:18:18",
"nodeType": "YulFunctionCall",
"src": "13252:18:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "13199:43:18",
"nodeType": "YulIdentifier",
"src": "13199:43:18"
},
"nativeSrc": "13199:72:18",
"nodeType": "YulFunctionCall",
"src": "13199:72:18"
},
"nativeSrc": "13199:72:18",
"nodeType": "YulExpressionStatement",
"src": "13199:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nativeSrc": "13325:6:18",
"nodeType": "YulIdentifier",
"src": "13325:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "13338:9:18",
"nodeType": "YulIdentifier",
"src": "13338:9:18"
},
{
"kind": "number",
"nativeSrc": "13349:2:18",
"nodeType": "YulLiteral",
"src": "13349:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13334:3:18",
"nodeType": "YulIdentifier",
"src": "13334:3:18"
},
"nativeSrc": "13334:18:18",
"nodeType": "YulFunctionCall",
"src": "13334:18:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "13281:43:18",
"nodeType": "YulIdentifier",
"src": "13281:43:18"
},
"nativeSrc": "13281:72:18",
"nodeType": "YulFunctionCall",
"src": "13281:72:18"
},
"nativeSrc": "13281:72:18",
"nodeType": "YulExpressionStatement",
"src": "13281:72:18"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed",
"nativeSrc": "12918:442:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "13028:9:18",
"nodeType": "YulTypedName",
"src": "13028:9:18",
"type": ""
},
{
"name": "value2",
"nativeSrc": "13040:6:18",
"nodeType": "YulTypedName",
"src": "13040:6:18",
"type": ""
},
{
"name": "value1",
"nativeSrc": "13048:6:18",
"nodeType": "YulTypedName",
"src": "13048:6:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "13056:6:18",
"nodeType": "YulTypedName",
"src": "13056:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "13067:4:18",
"nodeType": "YulTypedName",
"src": "13067:4:18",
"type": ""
}
],
"src": "12918:442:18"
},
{
"body": {
"nativeSrc": "13464:124:18",
"nodeType": "YulBlock",
"src": "13464:124:18",
"statements": [
{
"nativeSrc": "13474:26:18",
"nodeType": "YulAssignment",
"src": "13474:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "13486:9:18",
"nodeType": "YulIdentifier",
"src": "13486:9:18"
},
{
"kind": "number",
"nativeSrc": "13497:2:18",
"nodeType": "YulLiteral",
"src": "13497:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13482:3:18",
"nodeType": "YulIdentifier",
"src": "13482:3:18"
},
"nativeSrc": "13482:18:18",
"nodeType": "YulFunctionCall",
"src": "13482:18:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "13474:4:18",
"nodeType": "YulIdentifier",
"src": "13474:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "13554:6:18",
"nodeType": "YulIdentifier",
"src": "13554:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "13567:9:18",
"nodeType": "YulIdentifier",
"src": "13567:9:18"
},
{
"kind": "number",
"nativeSrc": "13578:1:18",
"nodeType": "YulLiteral",
"src": "13578:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13563:3:18",
"nodeType": "YulIdentifier",
"src": "13563:3:18"
},
"nativeSrc": "13563:17:18",
"nodeType": "YulFunctionCall",
"src": "13563:17:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "13510:43:18",
"nodeType": "YulIdentifier",
"src": "13510:43:18"
},
"nativeSrc": "13510:71:18",
"nodeType": "YulFunctionCall",
"src": "13510:71:18"
},
"nativeSrc": "13510:71:18",
"nodeType": "YulExpressionStatement",
"src": "13510:71:18"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nativeSrc": "13366:222:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "13436:9:18",
"nodeType": "YulTypedName",
"src": "13436:9:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "13448:6:18",
"nodeType": "YulTypedName",
"src": "13448:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "13459:4:18",
"nodeType": "YulTypedName",
"src": "13459:4:18",
"type": ""
}
],
"src": "13366:222:18"
},
{
"body": {
"nativeSrc": "13622:152:18",
"nodeType": "YulBlock",
"src": "13622:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13639:1:18",
"nodeType": "YulLiteral",
"src": "13639:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "13642:77:18",
"nodeType": "YulLiteral",
"src": "13642:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13632:6:18",
"nodeType": "YulIdentifier",
"src": "13632:6:18"
},
"nativeSrc": "13632:88:18",
"nodeType": "YulFunctionCall",
"src": "13632:88:18"
},
"nativeSrc": "13632:88:18",
"nodeType": "YulExpressionStatement",
"src": "13632:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13736:1:18",
"nodeType": "YulLiteral",
"src": "13736:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "13739:4:18",
"nodeType": "YulLiteral",
"src": "13739:4:18",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13729:6:18",
"nodeType": "YulIdentifier",
"src": "13729:6:18"
},
"nativeSrc": "13729:15:18",
"nodeType": "YulFunctionCall",
"src": "13729:15:18"
},
"nativeSrc": "13729:15:18",
"nodeType": "YulExpressionStatement",
"src": "13729:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13760:1:18",
"nodeType": "YulLiteral",
"src": "13760:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "13763:4:18",
"nodeType": "YulLiteral",
"src": "13763:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "13753:6:18",
"nodeType": "YulIdentifier",
"src": "13753:6:18"
},
"nativeSrc": "13753:15:18",
"nodeType": "YulFunctionCall",
"src": "13753:15:18"
},
"nativeSrc": "13753:15:18",
"nodeType": "YulExpressionStatement",
"src": "13753:15:18"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "13594:180:18",
"nodeType": "YulFunctionDefinition",
"src": "13594:180:18"
},
{
"body": {
"nativeSrc": "13824:147:18",
"nodeType": "YulBlock",
"src": "13824:147:18",
"statements": [
{
"nativeSrc": "13834:25:18",
"nodeType": "YulAssignment",
"src": "13834:25:18",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "13857:1:18",
"nodeType": "YulIdentifier",
"src": "13857:1:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "13839:17:18",
"nodeType": "YulIdentifier",
"src": "13839:17:18"
},
"nativeSrc": "13839:20:18",
"nodeType": "YulFunctionCall",
"src": "13839:20:18"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "13834:1:18",
"nodeType": "YulIdentifier",
"src": "13834:1:18"
}
]
},
{
"nativeSrc": "13868:25:18",
"nodeType": "YulAssignment",
"src": "13868:25:18",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "13891:1:18",
"nodeType": "YulIdentifier",
"src": "13891:1:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "13873:17:18",
"nodeType": "YulIdentifier",
"src": "13873:17:18"
},
"nativeSrc": "13873:20:18",
"nodeType": "YulFunctionCall",
"src": "13873:20:18"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "13868:1:18",
"nodeType": "YulIdentifier",
"src": "13868:1:18"
}
]
},
{
"nativeSrc": "13902:16:18",
"nodeType": "YulAssignment",
"src": "13902:16:18",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "13913:1:18",
"nodeType": "YulIdentifier",
"src": "13913:1:18"
},
{
"name": "y",
"nativeSrc": "13916:1:18",
"nodeType": "YulIdentifier",
"src": "13916:1:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13909:3:18",
"nodeType": "YulIdentifier",
"src": "13909:3:18"
},
"nativeSrc": "13909:9:18",
"nodeType": "YulFunctionCall",
"src": "13909:9:18"
},
"variableNames": [
{
"name": "sum",
"nativeSrc": "13902:3:18",
"nodeType": "YulIdentifier",
"src": "13902:3:18"
}
]
},
{
"body": {
"nativeSrc": "13942:22:18",
"nodeType": "YulBlock",
"src": "13942:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "13944:16:18",
"nodeType": "YulIdentifier",
"src": "13944:16:18"
},
"nativeSrc": "13944:18:18",
"nodeType": "YulFunctionCall",
"src": "13944:18:18"
},
"nativeSrc": "13944:18:18",
"nodeType": "YulExpressionStatement",
"src": "13944:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nativeSrc": "13934:1:18",
"nodeType": "YulIdentifier",
"src": "13934:1:18"
},
{
"name": "sum",
"nativeSrc": "13937:3:18",
"nodeType": "YulIdentifier",
"src": "13937:3:18"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "13931:2:18",
"nodeType": "YulIdentifier",
"src": "13931:2:18"
},
"nativeSrc": "13931:10:18",
"nodeType": "YulFunctionCall",
"src": "13931:10:18"
},
"nativeSrc": "13928:36:18",
"nodeType": "YulIf",
"src": "13928:36:18"
}
]
},
"name": "checked_add_t_uint256",
"nativeSrc": "13780:191:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "13811:1:18",
"nodeType": "YulTypedName",
"src": "13811:1:18",
"type": ""
},
{
"name": "y",
"nativeSrc": "13814:1:18",
"nodeType": "YulTypedName",
"src": "13814:1:18",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nativeSrc": "13820:3:18",
"nodeType": "YulTypedName",
"src": "13820:3:18",
"type": ""
}
],
"src": "13780:191:18"
},
{
"body": {
"nativeSrc": "14187:454:18",
"nodeType": "YulBlock",
"src": "14187:454:18",
"statements": [
{
"nativeSrc": "14197:27:18",
"nodeType": "YulAssignment",
"src": "14197:27:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "14209:9:18",
"nodeType": "YulIdentifier",
"src": "14209:9:18"
},
{
"kind": "number",
"nativeSrc": "14220:3:18",
"nodeType": "YulLiteral",
"src": "14220:3:18",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14205:3:18",
"nodeType": "YulIdentifier",
"src": "14205:3:18"
},
"nativeSrc": "14205:19:18",
"nodeType": "YulFunctionCall",
"src": "14205:19:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "14197:4:18",
"nodeType": "YulIdentifier",
"src": "14197:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "14278:6:18",
"nodeType": "YulIdentifier",
"src": "14278:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "14291:9:18",
"nodeType": "YulIdentifier",
"src": "14291:9:18"
},
{
"kind": "number",
"nativeSrc": "14302:1:18",
"nodeType": "YulLiteral",
"src": "14302:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14287:3:18",
"nodeType": "YulIdentifier",
"src": "14287:3:18"
},
"nativeSrc": "14287:17:18",
"nodeType": "YulFunctionCall",
"src": "14287:17:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "14234:43:18",
"nodeType": "YulIdentifier",
"src": "14234:43:18"
},
"nativeSrc": "14234:71:18",
"nodeType": "YulFunctionCall",
"src": "14234:71:18"
},
"nativeSrc": "14234:71:18",
"nodeType": "YulExpressionStatement",
"src": "14234:71:18"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "14359:6:18",
"nodeType": "YulIdentifier",
"src": "14359:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "14372:9:18",
"nodeType": "YulIdentifier",
"src": "14372:9:18"
},
{
"kind": "number",
"nativeSrc": "14383:2:18",
"nodeType": "YulLiteral",
"src": "14383:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14368:3:18",
"nodeType": "YulIdentifier",
"src": "14368:3:18"
},
"nativeSrc": "14368:18:18",
"nodeType": "YulFunctionCall",
"src": "14368:18:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "14315:43:18",
"nodeType": "YulIdentifier",
"src": "14315:43:18"
},
"nativeSrc": "14315:72:18",
"nodeType": "YulFunctionCall",
"src": "14315:72:18"
},
"nativeSrc": "14315:72:18",
"nodeType": "YulExpressionStatement",
"src": "14315:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nativeSrc": "14441:6:18",
"nodeType": "YulIdentifier",
"src": "14441:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "14454:9:18",
"nodeType": "YulIdentifier",
"src": "14454:9:18"
},
{
"kind": "number",
"nativeSrc": "14465:2:18",
"nodeType": "YulLiteral",
"src": "14465:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14450:3:18",
"nodeType": "YulIdentifier",
"src": "14450:3:18"
},
"nativeSrc": "14450:18:18",
"nodeType": "YulFunctionCall",
"src": "14450:18:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "14397:43:18",
"nodeType": "YulIdentifier",
"src": "14397:43:18"
},
"nativeSrc": "14397:72:18",
"nodeType": "YulFunctionCall",
"src": "14397:72:18"
},
"nativeSrc": "14397:72:18",
"nodeType": "YulExpressionStatement",
"src": "14397:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nativeSrc": "14523:6:18",
"nodeType": "YulIdentifier",
"src": "14523:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "14536:9:18",
"nodeType": "YulIdentifier",
"src": "14536:9:18"
},
{
"kind": "number",
"nativeSrc": "14547:2:18",
"nodeType": "YulLiteral",
"src": "14547:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14532:3:18",
"nodeType": "YulIdentifier",
"src": "14532:3:18"
},
"nativeSrc": "14532:18:18",
"nodeType": "YulFunctionCall",
"src": "14532:18:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "14479:43:18",
"nodeType": "YulIdentifier",
"src": "14479:43:18"
},
"nativeSrc": "14479:72:18",
"nodeType": "YulFunctionCall",
"src": "14479:72:18"
},
"nativeSrc": "14479:72:18",
"nodeType": "YulExpressionStatement",
"src": "14479:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nativeSrc": "14605:6:18",
"nodeType": "YulIdentifier",
"src": "14605:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "14618:9:18",
"nodeType": "YulIdentifier",
"src": "14618:9:18"
},
{
"kind": "number",
"nativeSrc": "14629:3:18",
"nodeType": "YulLiteral",
"src": "14629:3:18",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14614:3:18",
"nodeType": "YulIdentifier",
"src": "14614:3:18"
},
"nativeSrc": "14614:19:18",
"nodeType": "YulFunctionCall",
"src": "14614:19:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "14561:43:18",
"nodeType": "YulIdentifier",
"src": "14561:43:18"
},
"nativeSrc": "14561:73:18",
"nodeType": "YulFunctionCall",
"src": "14561:73:18"
},
"nativeSrc": "14561:73:18",
"nodeType": "YulExpressionStatement",
"src": "14561:73:18"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
"nativeSrc": "13977:664:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "14127:9:18",
"nodeType": "YulTypedName",
"src": "14127:9:18",
"type": ""
},
{
"name": "value4",
"nativeSrc": "14139:6:18",
"nodeType": "YulTypedName",
"src": "14139:6:18",
"type": ""
},
{
"name": "value3",
"nativeSrc": "14147:6:18",
"nodeType": "YulTypedName",
"src": "14147:6:18",
"type": ""
},
{
"name": "value2",
"nativeSrc": "14155:6:18",
"nodeType": "YulTypedName",
"src": "14155:6:18",
"type": ""
},
{
"name": "value1",
"nativeSrc": "14163:6:18",
"nodeType": "YulTypedName",
"src": "14163:6:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "14171:6:18",
"nodeType": "YulTypedName",
"src": "14171:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "14182:4:18",
"nodeType": "YulTypedName",
"src": "14182:4:18",
"type": ""
}
],
"src": "13977:664:18"
},
{
"body": {
"nativeSrc": "14825:367:18",
"nodeType": "YulBlock",
"src": "14825:367:18",
"statements": [
{
"nativeSrc": "14835:27:18",
"nodeType": "YulAssignment",
"src": "14835:27:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "14847:9:18",
"nodeType": "YulIdentifier",
"src": "14847:9:18"
},
{
"kind": "number",
"nativeSrc": "14858:3:18",
"nodeType": "YulLiteral",
"src": "14858:3:18",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14843:3:18",
"nodeType": "YulIdentifier",
"src": "14843:3:18"
},
"nativeSrc": "14843:19:18",
"nodeType": "YulFunctionCall",
"src": "14843:19:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "14835:4:18",
"nodeType": "YulIdentifier",
"src": "14835:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "14916:6:18",
"nodeType": "YulIdentifier",
"src": "14916:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "14929:9:18",
"nodeType": "YulIdentifier",
"src": "14929:9:18"
},
{
"kind": "number",
"nativeSrc": "14940:1:18",
"nodeType": "YulLiteral",
"src": "14940:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14925:3:18",
"nodeType": "YulIdentifier",
"src": "14925:3:18"
},
"nativeSrc": "14925:17:18",
"nodeType": "YulFunctionCall",
"src": "14925:17:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "14872:43:18",
"nodeType": "YulIdentifier",
"src": "14872:43:18"
},
"nativeSrc": "14872:71:18",
"nodeType": "YulFunctionCall",
"src": "14872:71:18"
},
"nativeSrc": "14872:71:18",
"nodeType": "YulExpressionStatement",
"src": "14872:71:18"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "14993:6:18",
"nodeType": "YulIdentifier",
"src": "14993:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "15006:9:18",
"nodeType": "YulIdentifier",
"src": "15006:9:18"
},
{
"kind": "number",
"nativeSrc": "15017:2:18",
"nodeType": "YulLiteral",
"src": "15017:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15002:3:18",
"nodeType": "YulIdentifier",
"src": "15002:3:18"
},
"nativeSrc": "15002:18:18",
"nodeType": "YulFunctionCall",
"src": "15002:18:18"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nativeSrc": "14953:39:18",
"nodeType": "YulIdentifier",
"src": "14953:39:18"
},
"nativeSrc": "14953:68:18",
"nodeType": "YulFunctionCall",
"src": "14953:68:18"
},
"nativeSrc": "14953:68:18",
"nodeType": "YulExpressionStatement",
"src": "14953:68:18"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nativeSrc": "15075:6:18",
"nodeType": "YulIdentifier",
"src": "15075:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "15088:9:18",
"nodeType": "YulIdentifier",
"src": "15088:9:18"
},
{
"kind": "number",
"nativeSrc": "15099:2:18",
"nodeType": "YulLiteral",
"src": "15099:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15084:3:18",
"nodeType": "YulIdentifier",
"src": "15084:3:18"
},
"nativeSrc": "15084:18:18",
"nodeType": "YulFunctionCall",
"src": "15084:18:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "15031:43:18",
"nodeType": "YulIdentifier",
"src": "15031:43:18"
},
"nativeSrc": "15031:72:18",
"nodeType": "YulFunctionCall",
"src": "15031:72:18"
},
"nativeSrc": "15031:72:18",
"nodeType": "YulExpressionStatement",
"src": "15031:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nativeSrc": "15157:6:18",
"nodeType": "YulIdentifier",
"src": "15157:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "15170:9:18",
"nodeType": "YulIdentifier",
"src": "15170:9:18"
},
{
"kind": "number",
"nativeSrc": "15181:2:18",
"nodeType": "YulLiteral",
"src": "15181:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15166:3:18",
"nodeType": "YulIdentifier",
"src": "15166:3:18"
},
"nativeSrc": "15166:18:18",
"nodeType": "YulFunctionCall",
"src": "15166:18:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "15113:43:18",
"nodeType": "YulIdentifier",
"src": "15113:43:18"
},
"nativeSrc": "15113:72:18",
"nodeType": "YulFunctionCall",
"src": "15113:72:18"
},
"nativeSrc": "15113:72:18",
"nodeType": "YulExpressionStatement",
"src": "15113:72:18"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed",
"nativeSrc": "14647:545:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "14773:9:18",
"nodeType": "YulTypedName",
"src": "14773:9:18",
"type": ""
},
{
"name": "value3",
"nativeSrc": "14785:6:18",
"nodeType": "YulTypedName",
"src": "14785:6:18",
"type": ""
},
{
"name": "value2",
"nativeSrc": "14793:6:18",
"nodeType": "YulTypedName",
"src": "14793:6:18",
"type": ""
},
{
"name": "value1",
"nativeSrc": "14801:6:18",
"nodeType": "YulTypedName",
"src": "14801:6:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "14809:6:18",
"nodeType": "YulTypedName",
"src": "14809:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "14820:4:18",
"nodeType": "YulTypedName",
"src": "14820:4:18",
"type": ""
}
],
"src": "14647:545:18"
},
{
"body": {
"nativeSrc": "15226:152:18",
"nodeType": "YulBlock",
"src": "15226:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "15243:1:18",
"nodeType": "YulLiteral",
"src": "15243:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "15246:77:18",
"nodeType": "YulLiteral",
"src": "15246:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "15236:6:18",
"nodeType": "YulIdentifier",
"src": "15236:6:18"
},
"nativeSrc": "15236:88:18",
"nodeType": "YulFunctionCall",
"src": "15236:88:18"
},
"nativeSrc": "15236:88:18",
"nodeType": "YulExpressionStatement",
"src": "15236:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "15340:1:18",
"nodeType": "YulLiteral",
"src": "15340:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "15343:4:18",
"nodeType": "YulLiteral",
"src": "15343:4:18",
"type": "",
"value": "0x21"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "15333:6:18",
"nodeType": "YulIdentifier",
"src": "15333:6:18"
},
"nativeSrc": "15333:15:18",
"nodeType": "YulFunctionCall",
"src": "15333:15:18"
},
"nativeSrc": "15333:15:18",
"nodeType": "YulExpressionStatement",
"src": "15333:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "15364:1:18",
"nodeType": "YulLiteral",
"src": "15364:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "15367:4:18",
"nodeType": "YulLiteral",
"src": "15367:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "15357:6:18",
"nodeType": "YulIdentifier",
"src": "15357:6:18"
},
"nativeSrc": "15357:15:18",
"nodeType": "YulFunctionCall",
"src": "15357:15:18"
},
"nativeSrc": "15357:15:18",
"nodeType": "YulExpressionStatement",
"src": "15357:15:18"
}
]
},
"name": "panic_error_0x21",
"nativeSrc": "15198:180:18",
"nodeType": "YulFunctionDefinition",
"src": "15198:180:18"
}
]
},
"contents": "{\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 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_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 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 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_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 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 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 cleanup_t_uint8(value) -> cleaned {\n cleaned := and(value, 0xff)\n }\n\n function abi_encode_t_uint8_to_t_uint8_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint8(value))\n }\n\n function abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n }\n\n function 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 cleanup_t_bytes1(value) -> cleaned {\n cleaned := and(value, 0xff00000000000000000000000000000000000000000000000000000000000000)\n }\n\n function abi_encode_t_bytes1_to_t_bytes1_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes1(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 array_length_t_array$_t_uint256_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encodeUpdatedPos_t_uint256_to_t_uint256(value0, pos) -> updatedPos {\n abi_encode_t_uint256_to_t_uint256(value0, pos)\n updatedPos := add(pos, 0x20)\n }\n\n function array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n // uint256[] -> uint256[]\n function abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_uint256_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_uint256_$dyn_memory_ptr_fromStack(pos, length)\n let baseRef := array_dataslot_t_array$_t_uint256_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n let elementValue0 := mload(srcPtr)\n pos := abi_encodeUpdatedPos_t_uint256_to_t_uint256(elementValue0, pos)\n srcPtr := array_nextElement_t_array$_t_uint256_$dyn_memory_ptr(srcPtr)\n }\n end := pos\n }\n\n function abi_encode_tuple_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__to_t_bytes1_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_address_t_bytes32_t_array$_t_uint256_$dyn_memory_ptr__fromStack_reversed(headStart , value6, value5, value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 224)\n\n abi_encode_t_bytes1_to_t_bytes1_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n mstore(add(headStart, 64), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value2, tail)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_address_to_t_address_fromStack(value4, add(headStart, 128))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value5, add(headStart, 160))\n\n mstore(add(headStart, 192), sub(tail, headStart))\n tail := abi_encode_t_array$_t_uint256_$dyn_memory_ptr_to_t_array$_t_uint256_$dyn_memory_ptr_fromStack(value6, tail)\n\n }\n\n function validator_revert_t_uint8(value) {\n if iszero(eq(value, cleanup_t_uint8(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint8(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint8(value)\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes32(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function abi_decode_tuple_t_addresst_addresst_uint256t_uint256t_uint8t_bytes32t_bytes32(headStart, dataEnd) -> value0, value1, value2, value3, value4, value5, value6 {\n if slt(sub(dataEnd, headStart), 224) { 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 := 96\n\n value3 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 128\n\n value4 := abi_decode_t_uint8(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 160\n\n value5 := abi_decode_t_bytes32(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 192\n\n value6 := abi_decode_t_bytes32(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 panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function abi_encode_tuple_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__to_t_bytes32_t_address_t_address_t_uint256_t_uint256_t_uint256__fromStack_reversed(headStart , value5, value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 192)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_address_to_t_address_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value4, add(headStart, 128))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value5, add(headStart, 160))\n\n }\n\n function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\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 }\n\n function abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\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 panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_address_to_t_address_fromStack(value4, add(headStart, 128))\n\n }\n\n function abi_encode_tuple_t_bytes32_t_uint8_t_bytes32_t_bytes32__to_t_bytes32_t_uint8_t_bytes32_t_bytes32__fromStack_reversed(headStart , value3, value2, value1, value0) -> tail {\n tail := add(headStart, 128)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint8_to_t_uint8_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value2, add(headStart, 64))\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value3, add(headStart, 96))\n\n }\n\n function panic_error_0x21() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x21)\n revert(0, 0x24)\n }\n\n}\n",
"id": 18,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {
"2019": [
{
"length": 32,
"start": 2391
}
],
"2021": [
{
"length": 32,
"start": 2350
}
],
"2023": [
{
"length": 32,
"start": 2264
}
],
"2025": [
{
"length": 32,
"start": 3821
}
],
"2027": [
{
"length": 32,
"start": 3854
}
],
"2030": [
{
"length": 32,
"start": 2522
}
],
"2033": [
{
"length": 32,
"start": 2581
}
]
},
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b50600436106100cd575f3560e01c806370a082311161008a57806395d89b411161006457806395d89b411461022d578063a9059cbb1461024b578063d505accf1461027b578063dd62ed3e14610297576100cd565b806370a08231146101a95780637ecebe00146101d957806384b0196e14610209576100cd565b806306fdde03146100d1578063095ea7b3146100ef57806318160ddd1461011f57806323b872dd1461013d578063313ce5671461016d5780633644e5151461018b575b5f80fd5b6100d96102c7565b6040516100e691906113de565b60405180910390f35b6101096004803603810190610104919061148f565b610357565b60405161011691906114e7565b60405180910390f35b610127610379565b604051610134919061150f565b60405180910390f35b61015760048036038101906101529190611528565b610382565b60405161016491906114e7565b60405180910390f35b6101756103b0565b6040516101829190611593565b60405180910390f35b6101936103b8565b6040516101a091906115c4565b60405180910390f35b6101c360048036038101906101be91906115dd565b6103c6565b6040516101d0919061150f565b60405180910390f35b6101f360048036038101906101ee91906115dd565b61040b565b604051610200919061150f565b60405180910390f35b61021161041c565b6040516102249796959493929190611708565b60405180910390f35b6102356104c1565b60405161024291906113de565b60405180910390f35b6102656004803603810190610260919061148f565b610551565b60405161027291906114e7565b60405180910390f35b610295600480360381019061029091906117de565b610573565b005b6102b160048036038101906102ac919061187b565b6106b8565b6040516102be919061150f565b60405180910390f35b6060600380546102d6906118e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610302906118e6565b801561034d5780601f106103245761010080835404028352916020019161034d565b820191905f5260205f20905b81548152906001019060200180831161033057829003601f168201915b5050505050905090565b5f8061036161073a565b905061036e818585610741565b600191505092915050565b5f600254905090565b5f8061038c61073a565b9050610399858285610753565b6103a48585856107e5565b60019150509392505050565b5f6012905090565b5f6103c16108d5565b905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f6104158261098b565b9050919050565b5f6060805f805f606061042d6109d1565b610435610a0c565b46305f801b5f67ffffffffffffffff81111561045457610453611916565b5b6040519080825280602002602001820160405280156104825781602001602082028036833780820191505090505b507f0f00000000000000000000000000000000000000000000000000000000000000959493929190965096509650965096509650965090919293949596565b6060600480546104d0906118e6565b80601f01602080910402602001604051908101604052809291908181526020018280546104fc906118e6565b80156105475780601f1061051e57610100808354040283529160200191610547565b820191905f5260205f20905b81548152906001019060200180831161052a57829003601f168201915b5050505050905090565b5f8061055b61073a565b90506105688185856107e5565b600191505092915050565b834211156105b857836040517f627913020000000000000000000000000000000000000000000000000000000081526004016105af919061150f565b60405180910390fd5b5f7f6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c98888886105e68c610a47565b896040516020016105fc96959493929190611943565b6040516020818303038152906040528051906020012090505f61061e82610a9a565b90505f61062d82878787610ab3565b90508973ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146106a157808a6040517f4b800e460000000000000000000000000000000000000000000000000000000081526004016106989291906119a2565b60405180910390fd5b6106ac8a8a8a610741565b50505050505050505050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b61074e8383836001610ae1565b505050565b5f61075e84846106b8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107df57818110156107d0578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107c7939291906119c9565b60405180910390fd5b6107de84848484035f610ae1565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610855575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161084c91906119fe565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108c5575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108bc91906119fe565b60405180910390fd5b6108d0838383610cb0565b505050565b5f7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614801561095057507f000000000000000000000000000000000000000000000000000000000000000046145b1561097d577f00000000000000000000000000000000000000000000000000000000000000009050610988565b610985610ec9565b90505b90565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060610a0760057f0000000000000000000000000000000000000000000000000000000000000000610f5e90919063ffffffff16565b905090565b6060610a4260067f0000000000000000000000000000000000000000000000000000000000000000610f5e90919063ffffffff16565b905090565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f815480929190600101919050559050919050565b5f610aac610aa66108d5565b8361100b565b9050919050565b5f805f80610ac38888888861104b565b925092509250610ad38282611132565b829350505050949350505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b51575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610b4891906119fe565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bc1575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610bb891906119fe565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610caa578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610ca1919061150f565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d00578060025f828254610cf49190611a44565b92505081905550610dce565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610d89578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610d80939291906119c9565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e15578060025f8282540392505081905550610e5f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610ebc919061150f565b60405180910390a3505050565b5f7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000004630604051602001610f43959493929190611a77565b60405160208183030381529060405280519060200120905090565b606060ff5f1b8314610f7a57610f7383611294565b9050611005565b818054610f86906118e6565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb2906118e6565b8015610ffd5780601f10610fd457610100808354040283529160200191610ffd565b820191905f5260205f20905b815481529060010190602001808311610fe057829003601f168201915b505050505090505b92915050565b5f6040517f190100000000000000000000000000000000000000000000000000000000000081528360028201528260228201526042812091505092915050565b5f805f7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0845f1c1115611087575f600385925092509250611128565b5f6001888888886040515f81526020016040526040516110aa9493929190611ac8565b6020604051602081039080840390855afa1580156110ca573d5f803e3d5ffd5b5050506020604051035190505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361111b575f60015f801b93509350935050611128565b805f805f1b935093509350505b9450945094915050565b5f600381111561114557611144611b0b565b5b82600381111561115857611157611b0b565b5b0315611290576001600381111561117257611171611b0b565b5b82600381111561118557611184611b0b565b5b036111bc576040517ff645eedf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600260038111156111d0576111cf611b0b565b5b8260038111156111e3576111e2611b0b565b5b0361122757805f1c6040517ffce698f700000000000000000000000000000000000000000000000000000000815260040161121e919061150f565b60405180910390fd5b60038081111561123a57611239611b0b565b5b82600381111561124d5761124c611b0b565b5b0361128f57806040517fd78bce0c00000000000000000000000000000000000000000000000000000000815260040161128691906115c4565b60405180910390fd5b5b5050565b60605f6112a083611306565b90505f602067ffffffffffffffff8111156112be576112bd611916565b5b6040519080825280601f01601f1916602001820160405280156112f05781602001600182028036833780820191505090505b5090508181528360208201528092505050919050565b5f8060ff835f1c169050601f81111561134b576040517fb3512b0c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561138b578082015181840152602081019050611370565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6113b082611354565b6113ba818561135e565b93506113ca81856020860161136e565b6113d381611396565b840191505092915050565b5f6020820190508181035f8301526113f681846113a6565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61142b82611402565b9050919050565b61143b81611421565b8114611445575f80fd5b50565b5f8135905061145681611432565b92915050565b5f819050919050565b61146e8161145c565b8114611478575f80fd5b50565b5f8135905061148981611465565b92915050565b5f80604083850312156114a5576114a46113fe565b5b5f6114b285828601611448565b92505060206114c38582860161147b565b9150509250929050565b5f8115159050919050565b6114e1816114cd565b82525050565b5f6020820190506114fa5f8301846114d8565b92915050565b6115098161145c565b82525050565b5f6020820190506115225f830184611500565b92915050565b5f805f6060848603121561153f5761153e6113fe565b5b5f61154c86828701611448565b935050602061155d86828701611448565b925050604061156e8682870161147b565b9150509250925092565b5f60ff82169050919050565b61158d81611578565b82525050565b5f6020820190506115a65f830184611584565b92915050565b5f819050919050565b6115be816115ac565b82525050565b5f6020820190506115d75f8301846115b5565b92915050565b5f602082840312156115f2576115f16113fe565b5b5f6115ff84828501611448565b91505092915050565b5f7fff0000000000000000000000000000000000000000000000000000000000000082169050919050565b61163c81611608565b82525050565b61164b81611421565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b6116838161145c565b82525050565b5f611694838361167a565b60208301905092915050565b5f602082019050919050565b5f6116b682611651565b6116c0818561165b565b93506116cb8361166b565b805f5b838110156116fb5781516116e28882611689565b97506116ed836116a0565b9250506001810190506116ce565b5085935050505092915050565b5f60e08201905061171b5f83018a611633565b818103602083015261172d81896113a6565b9050818103604083015261174181886113a6565b90506117506060830187611500565b61175d6080830186611642565b61176a60a08301856115b5565b81810360c083015261177c81846116ac565b905098975050505050505050565b61179381611578565b811461179d575f80fd5b50565b5f813590506117ae8161178a565b92915050565b6117bd816115ac565b81146117c7575f80fd5b50565b5f813590506117d8816117b4565b92915050565b5f805f805f805f60e0888a0312156117f9576117f86113fe565b5b5f6118068a828b01611448565b97505060206118178a828b01611448565b96505060406118288a828b0161147b565b95505060606118398a828b0161147b565b945050608061184a8a828b016117a0565b93505060a061185b8a828b016117ca565b92505060c061186c8a828b016117ca565b91505092959891949750929550565b5f8060408385031215611891576118906113fe565b5b5f61189e85828601611448565b92505060206118af85828601611448565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806118fd57607f821691505b6020821081036119105761190f6118b9565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60c0820190506119565f8301896115b5565b6119636020830188611642565b6119706040830187611642565b61197d6060830186611500565b61198a6080830185611500565b61199760a0830184611500565b979650505050505050565b5f6040820190506119b55f830185611642565b6119c26020830184611642565b9392505050565b5f6060820190506119dc5f830186611642565b6119e96020830185611500565b6119f66040830184611500565b949350505050565b5f602082019050611a115f830184611642565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611a4e8261145c565b9150611a598361145c565b9250828201905080821115611a7157611a70611a17565b5b92915050565b5f60a082019050611a8a5f8301886115b5565b611a9760208301876115b5565b611aa460408301866115b5565b611ab16060830185611500565b611abe6080830184611642565b9695505050505050565b5f608082019050611adb5f8301876115b5565b611ae86020830186611584565b611af560408301856115b5565b611b0260608301846115b5565b95945050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602160045260245ffdfea26469706673582212205a5632ca5de1d17531c35752ed8677f34d4b4d88fe06ae5dbef50725256fb8e464736f6c63430008170033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCD JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x70A08231 GT PUSH2 0x8A JUMPI DUP1 PUSH4 0x95D89B41 GT PUSH2 0x64 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x22D JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x24B JUMPI DUP1 PUSH4 0xD505ACCF EQ PUSH2 0x27B JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x297 JUMPI PUSH2 0xCD JUMP JUMPDEST DUP1 PUSH4 0x70A08231 EQ PUSH2 0x1A9 JUMPI DUP1 PUSH4 0x7ECEBE00 EQ PUSH2 0x1D9 JUMPI DUP1 PUSH4 0x84B0196E EQ PUSH2 0x209 JUMPI PUSH2 0xCD JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xD1 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0xEF JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x11F JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x13D JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x3644E515 EQ PUSH2 0x18B JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0xD9 PUSH2 0x2C7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE6 SWAP2 SWAP1 PUSH2 0x13DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x109 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x104 SWAP2 SWAP1 PUSH2 0x148F JUMP JUMPDEST PUSH2 0x357 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP2 SWAP1 PUSH2 0x14E7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x379 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x157 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x152 SWAP2 SWAP1 PUSH2 0x1528 JUMP JUMPDEST PUSH2 0x382 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x164 SWAP2 SWAP1 PUSH2 0x14E7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x175 PUSH2 0x3B0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x182 SWAP2 SWAP1 PUSH2 0x1593 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x193 PUSH2 0x3B8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1A0 SWAP2 SWAP1 PUSH2 0x15C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1C3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1BE SWAP2 SWAP1 PUSH2 0x15DD JUMP JUMPDEST PUSH2 0x3C6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D0 SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1F3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1EE SWAP2 SWAP1 PUSH2 0x15DD JUMP JUMPDEST PUSH2 0x40B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x200 SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x211 PUSH2 0x41C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x224 SWAP8 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1708 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x235 PUSH2 0x4C1 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x242 SWAP2 SWAP1 PUSH2 0x13DE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x265 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x260 SWAP2 SWAP1 PUSH2 0x148F JUMP JUMPDEST PUSH2 0x551 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x272 SWAP2 SWAP1 PUSH2 0x14E7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x295 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x290 SWAP2 SWAP1 PUSH2 0x17DE JUMP JUMPDEST PUSH2 0x573 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B1 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2AC SWAP2 SWAP1 PUSH2 0x187B JUMP JUMPDEST PUSH2 0x6B8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2BE SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x2D6 SWAP1 PUSH2 0x18E6 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 0x302 SWAP1 PUSH2 0x18E6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x34D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x324 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x34D JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x330 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x361 PUSH2 0x73A JUMP JUMPDEST SWAP1 POP PUSH2 0x36E DUP2 DUP6 DUP6 PUSH2 0x741 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x38C PUSH2 0x73A JUMP JUMPDEST SWAP1 POP PUSH2 0x399 DUP6 DUP3 DUP6 PUSH2 0x753 JUMP JUMPDEST PUSH2 0x3A4 DUP6 DUP6 DUP6 PUSH2 0x7E5 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x3C1 PUSH2 0x8D5 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x415 DUP3 PUSH2 0x98B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0x60 PUSH2 0x42D PUSH2 0x9D1 JUMP JUMPDEST PUSH2 0x435 PUSH2 0xA0C JUMP JUMPDEST CHAINID ADDRESS PUSH0 DUP1 SHL PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x454 JUMPI PUSH2 0x453 PUSH2 0x1916 JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x482 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x20 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP PUSH32 0xF00000000000000000000000000000000000000000000000000000000000000 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP7 POP SWAP1 SWAP2 SWAP3 SWAP4 SWAP5 SWAP6 SWAP7 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x4D0 SWAP1 PUSH2 0x18E6 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 0x4FC SWAP1 PUSH2 0x18E6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x547 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x51E JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x547 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x52A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x55B PUSH2 0x73A JUMP JUMPDEST SWAP1 POP PUSH2 0x568 DUP2 DUP6 DUP6 PUSH2 0x7E5 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP4 TIMESTAMP GT ISZERO PUSH2 0x5B8 JUMPI DUP4 PUSH1 0x40 MLOAD PUSH32 0x6279130200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5AF SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH32 0x6E71EDAE12B1B97F4D1F60370FEF10105FA2FAAE0126114A169C64845D6126C9 DUP9 DUP9 DUP9 PUSH2 0x5E6 DUP13 PUSH2 0xA47 JUMP JUMPDEST DUP10 PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x5FC SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1943 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP PUSH0 PUSH2 0x61E DUP3 PUSH2 0xA9A JUMP JUMPDEST SWAP1 POP PUSH0 PUSH2 0x62D DUP3 DUP8 DUP8 DUP8 PUSH2 0xAB3 JUMP JUMPDEST SWAP1 POP DUP10 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6A1 JUMPI DUP1 DUP11 PUSH1 0x40 MLOAD PUSH32 0x4B800E4600000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x698 SWAP3 SWAP2 SWAP1 PUSH2 0x19A2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6AC DUP11 DUP11 DUP11 PUSH2 0x741 JUMP JUMPDEST POP POP POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x74E DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0xAE1 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x75E DUP5 DUP5 PUSH2 0x6B8 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x7DF JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x7D0 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH32 0xFB8F41B200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x7C7 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x19C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x7DE DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0xAE1 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x855 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x96C6FD1E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x84C SWAP2 SWAP1 PUSH2 0x19FE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x8C5 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xEC442F0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x8BC SWAP2 SWAP1 PUSH2 0x19FE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x8D0 DUP4 DUP4 DUP4 PUSH2 0xCB0 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 ISZERO PUSH2 0x950 JUMPI POP PUSH32 0x0 CHAINID EQ JUMPDEST ISZERO PUSH2 0x97D JUMPI PUSH32 0x0 SWAP1 POP PUSH2 0x988 JUMP JUMPDEST PUSH2 0x985 PUSH2 0xEC9 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x7 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0xA07 PUSH1 0x5 PUSH32 0x0 PUSH2 0xF5E SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH2 0xA42 PUSH1 0x6 PUSH32 0x0 PUSH2 0xF5E SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x7 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH1 0x1 ADD SWAP2 SWAP1 POP SSTORE SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xAAC PUSH2 0xAA6 PUSH2 0x8D5 JUMP JUMPDEST DUP4 PUSH2 0x100B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH2 0xAC3 DUP9 DUP9 DUP9 DUP9 PUSH2 0x104B JUMP JUMPDEST SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0xAD3 DUP3 DUP3 PUSH2 0x1132 JUMP JUMPDEST DUP3 SWAP4 POP POP POP POP SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xB51 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xE602DF0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB48 SWAP2 SWAP1 PUSH2 0x19FE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xBC1 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x94280D6200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xBB8 SWAP2 SWAP1 PUSH2 0x19FE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 PUSH0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 ISZERO PUSH2 0xCAA JUMPI DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0xCA1 SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xD00 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0xCF4 SWAP2 SWAP1 PUSH2 0x1A44 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0xDCE JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 LT ISZERO PUSH2 0xD89 JUMPI DUP4 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH32 0xE450D38C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD80 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x19C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 DUP2 SUB PUSH0 DUP1 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xE15 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0xE5F JUMP JUMPDEST DUP1 PUSH0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 DUP3 DUP3 SLOAD ADD SWAP3 POP POP DUP2 SWAP1 SSTORE POP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF DUP4 PUSH1 0x40 MLOAD PUSH2 0xEBC SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x8B73C3C69BB8FE3D512ECC4CF759CC79239F7B179B0FFACAA9A75D522B39400F PUSH32 0x0 PUSH32 0x0 CHAINID ADDRESS PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0xF43 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1A77 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE DUP1 MLOAD SWAP1 PUSH1 0x20 ADD KECCAK256 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0xFF PUSH0 SHL DUP4 EQ PUSH2 0xF7A JUMPI PUSH2 0xF73 DUP4 PUSH2 0x1294 JUMP JUMPDEST SWAP1 POP PUSH2 0x1005 JUMP JUMPDEST DUP2 DUP1 SLOAD PUSH2 0xF86 SWAP1 PUSH2 0x18E6 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 0xFB2 SWAP1 PUSH2 0x18E6 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xFFD JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xFD4 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xFFD JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xFE0 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1901000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE DUP4 PUSH1 0x2 DUP3 ADD MSTORE DUP3 PUSH1 0x22 DUP3 ADD MSTORE PUSH1 0x42 DUP2 KECCAK256 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH32 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0 DUP5 PUSH0 SHR GT ISZERO PUSH2 0x1087 JUMPI PUSH0 PUSH1 0x3 DUP6 SWAP3 POP SWAP3 POP SWAP3 POP PUSH2 0x1128 JUMP JUMPDEST PUSH0 PUSH1 0x1 DUP9 DUP9 DUP9 DUP9 PUSH1 0x40 MLOAD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0x10AA SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1AC8 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 SUB SWAP1 DUP1 DUP5 SUB SWAP1 DUP6 GAS STATICCALL ISZERO DUP1 ISZERO PUSH2 0x10CA JUMPI RETURNDATASIZE PUSH0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH0 REVERT JUMPDEST POP POP POP PUSH1 0x20 PUSH1 0x40 MLOAD SUB MLOAD SWAP1 POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x111B JUMPI PUSH0 PUSH1 0x1 PUSH0 DUP1 SHL SWAP4 POP SWAP4 POP SWAP4 POP POP PUSH2 0x1128 JUMP JUMPDEST DUP1 PUSH0 DUP1 PUSH0 SHL SWAP4 POP SWAP4 POP SWAP4 POP POP JUMPDEST SWAP5 POP SWAP5 POP SWAP5 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1145 JUMPI PUSH2 0x1144 PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1158 JUMPI PUSH2 0x1157 PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST SUB ISZERO PUSH2 0x1290 JUMPI PUSH1 0x1 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1172 JUMPI PUSH2 0x1171 PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x1185 JUMPI PUSH2 0x1184 PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST SUB PUSH2 0x11BC JUMPI PUSH1 0x40 MLOAD PUSH32 0xF645EEDF00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x11D0 JUMPI PUSH2 0x11CF PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x11E3 JUMPI PUSH2 0x11E2 PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST SUB PUSH2 0x1227 JUMPI DUP1 PUSH0 SHR PUSH1 0x40 MLOAD PUSH32 0xFCE698F700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x121E SWAP2 SWAP1 PUSH2 0x150F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 DUP1 DUP2 GT ISZERO PUSH2 0x123A JUMPI PUSH2 0x1239 PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST DUP3 PUSH1 0x3 DUP2 GT ISZERO PUSH2 0x124D JUMPI PUSH2 0x124C PUSH2 0x1B0B JUMP JUMPDEST JUMPDEST SUB PUSH2 0x128F JUMPI DUP1 PUSH1 0x40 MLOAD PUSH32 0xD78BCE0C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1286 SWAP2 SWAP1 PUSH2 0x15C4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 PUSH2 0x12A0 DUP4 PUSH2 0x1306 JUMP JUMPDEST SWAP1 POP PUSH0 PUSH1 0x20 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x12BE JUMPI PUSH2 0x12BD PUSH2 0x1916 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 0x12F0 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 DUP2 DUP2 MSTORE DUP4 PUSH1 0x20 DUP3 ADD MSTORE DUP1 SWAP3 POP POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0xFF DUP4 PUSH0 SHR AND SWAP1 POP PUSH1 0x1F DUP2 GT ISZERO PUSH2 0x134B JUMPI PUSH1 0x40 MLOAD PUSH32 0xB3512B0C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x138B JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x1370 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x13B0 DUP3 PUSH2 0x1354 JUMP JUMPDEST PUSH2 0x13BA DUP2 DUP6 PUSH2 0x135E JUMP JUMPDEST SWAP4 POP PUSH2 0x13CA DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x136E JUMP JUMPDEST PUSH2 0x13D3 DUP2 PUSH2 0x1396 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x13F6 DUP2 DUP5 PUSH2 0x13A6 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x142B DUP3 PUSH2 0x1402 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x143B DUP2 PUSH2 0x1421 JUMP JUMPDEST DUP2 EQ PUSH2 0x1445 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1456 DUP2 PUSH2 0x1432 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x146E DUP2 PUSH2 0x145C JUMP JUMPDEST DUP2 EQ PUSH2 0x1478 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1489 DUP2 PUSH2 0x1465 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x14A5 JUMPI PUSH2 0x14A4 PUSH2 0x13FE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x14B2 DUP6 DUP3 DUP7 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x14C3 DUP6 DUP3 DUP7 ADD PUSH2 0x147B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x14E1 DUP2 PUSH2 0x14CD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x14FA PUSH0 DUP4 ADD DUP5 PUSH2 0x14D8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1509 DUP2 PUSH2 0x145C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1522 PUSH0 DUP4 ADD DUP5 PUSH2 0x1500 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x153F JUMPI PUSH2 0x153E PUSH2 0x13FE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x154C DUP7 DUP3 DUP8 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x155D DUP7 DUP3 DUP8 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x156E DUP7 DUP3 DUP8 ADD PUSH2 0x147B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x158D DUP2 PUSH2 0x1578 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x15A6 PUSH0 DUP4 ADD DUP5 PUSH2 0x1584 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x15BE DUP2 PUSH2 0x15AC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x15D7 PUSH0 DUP4 ADD DUP5 PUSH2 0x15B5 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x15F2 JUMPI PUSH2 0x15F1 PUSH2 0x13FE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x15FF DUP5 DUP3 DUP6 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH32 0xFF00000000000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x163C DUP2 PUSH2 0x1608 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x164B DUP2 PUSH2 0x1421 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1683 DUP2 PUSH2 0x145C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1694 DUP4 DUP4 PUSH2 0x167A JUMP JUMPDEST PUSH1 0x20 DUP4 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x16B6 DUP3 PUSH2 0x1651 JUMP JUMPDEST PUSH2 0x16C0 DUP2 DUP6 PUSH2 0x165B JUMP JUMPDEST SWAP4 POP PUSH2 0x16CB DUP4 PUSH2 0x166B JUMP JUMPDEST DUP1 PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x16FB JUMPI DUP2 MLOAD PUSH2 0x16E2 DUP9 DUP3 PUSH2 0x1689 JUMP JUMPDEST SWAP8 POP PUSH2 0x16ED DUP4 PUSH2 0x16A0 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x16CE JUMP JUMPDEST POP DUP6 SWAP4 POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0xE0 DUP3 ADD SWAP1 POP PUSH2 0x171B PUSH0 DUP4 ADD DUP11 PUSH2 0x1633 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0x172D DUP2 DUP10 PUSH2 0x13A6 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0x1741 DUP2 DUP9 PUSH2 0x13A6 JUMP JUMPDEST SWAP1 POP PUSH2 0x1750 PUSH1 0x60 DUP4 ADD DUP8 PUSH2 0x1500 JUMP JUMPDEST PUSH2 0x175D PUSH1 0x80 DUP4 ADD DUP7 PUSH2 0x1642 JUMP JUMPDEST PUSH2 0x176A PUSH1 0xA0 DUP4 ADD DUP6 PUSH2 0x15B5 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0xC0 DUP4 ADD MSTORE PUSH2 0x177C DUP2 DUP5 PUSH2 0x16AC JUMP JUMPDEST SWAP1 POP SWAP9 SWAP8 POP POP POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x1793 DUP2 PUSH2 0x1578 JUMP JUMPDEST DUP2 EQ PUSH2 0x179D JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x17AE DUP2 PUSH2 0x178A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x17BD DUP2 PUSH2 0x15AC JUMP JUMPDEST DUP2 EQ PUSH2 0x17C7 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x17D8 DUP2 PUSH2 0x17B4 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 DUP1 PUSH0 DUP1 PUSH0 PUSH1 0xE0 DUP9 DUP11 SUB SLT ISZERO PUSH2 0x17F9 JUMPI PUSH2 0x17F8 PUSH2 0x13FE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1806 DUP11 DUP3 DUP12 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP8 POP POP PUSH1 0x20 PUSH2 0x1817 DUP11 DUP3 DUP12 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP7 POP POP PUSH1 0x40 PUSH2 0x1828 DUP11 DUP3 DUP12 ADD PUSH2 0x147B JUMP JUMPDEST SWAP6 POP POP PUSH1 0x60 PUSH2 0x1839 DUP11 DUP3 DUP12 ADD PUSH2 0x147B JUMP JUMPDEST SWAP5 POP POP PUSH1 0x80 PUSH2 0x184A DUP11 DUP3 DUP12 ADD PUSH2 0x17A0 JUMP JUMPDEST SWAP4 POP POP PUSH1 0xA0 PUSH2 0x185B DUP11 DUP3 DUP12 ADD PUSH2 0x17CA JUMP JUMPDEST SWAP3 POP POP PUSH1 0xC0 PUSH2 0x186C DUP11 DUP3 DUP12 ADD PUSH2 0x17CA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP9 SWAP2 SWAP5 SWAP8 POP SWAP3 SWAP6 POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1891 JUMPI PUSH2 0x1890 PUSH2 0x13FE JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x189E DUP6 DUP3 DUP7 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x18AF DUP6 DUP3 DUP7 ADD PUSH2 0x1448 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x18FD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1910 JUMPI PUSH2 0x190F PUSH2 0x18B9 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0xC0 DUP3 ADD SWAP1 POP PUSH2 0x1956 PUSH0 DUP4 ADD DUP10 PUSH2 0x15B5 JUMP JUMPDEST PUSH2 0x1963 PUSH1 0x20 DUP4 ADD DUP9 PUSH2 0x1642 JUMP JUMPDEST PUSH2 0x1970 PUSH1 0x40 DUP4 ADD DUP8 PUSH2 0x1642 JUMP JUMPDEST PUSH2 0x197D PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0x1500 JUMP JUMPDEST PUSH2 0x198A PUSH1 0x80 DUP4 ADD DUP6 PUSH2 0x1500 JUMP JUMPDEST PUSH2 0x1997 PUSH1 0xA0 DUP4 ADD DUP5 PUSH2 0x1500 JUMP JUMPDEST SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x19B5 PUSH0 DUP4 ADD DUP6 PUSH2 0x1642 JUMP JUMPDEST PUSH2 0x19C2 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x1642 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x19DC PUSH0 DUP4 ADD DUP7 PUSH2 0x1642 JUMP JUMPDEST PUSH2 0x19E9 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x1500 JUMP JUMPDEST PUSH2 0x19F6 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x1500 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A11 PUSH0 DUP4 ADD DUP5 PUSH2 0x1642 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x1A4E DUP3 PUSH2 0x145C JUMP JUMPDEST SWAP2 POP PUSH2 0x1A59 DUP4 PUSH2 0x145C JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x1A71 JUMPI PUSH2 0x1A70 PUSH2 0x1A17 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP PUSH2 0x1A8A PUSH0 DUP4 ADD DUP9 PUSH2 0x15B5 JUMP JUMPDEST PUSH2 0x1A97 PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x15B5 JUMP JUMPDEST PUSH2 0x1AA4 PUSH1 0x40 DUP4 ADD DUP7 PUSH2 0x15B5 JUMP JUMPDEST PUSH2 0x1AB1 PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x1500 JUMP JUMPDEST PUSH2 0x1ABE PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x1642 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x1ADB PUSH0 DUP4 ADD DUP8 PUSH2 0x15B5 JUMP JUMPDEST PUSH2 0x1AE8 PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x1584 JUMP JUMPDEST PUSH2 0x1AF5 PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x15B5 JUMP JUMPDEST PUSH2 0x1B02 PUSH1 0x60 DUP4 ADD DUP5 PUSH2 0x15B5 JUMP JUMPDEST SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x21 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 GAS JUMP ORIGIN 0xCA 0x5D 0xE1 0xD1 PUSH22 0x31C35752ED8677F34D4B4D88FE06AE5DBEF50725256F 0xB8 0xE4 PUSH5 0x736F6C6343 STOP ADDMOD OR STOP CALLER ",
"sourceMap": "188:111:17:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4293:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3144:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5039:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3002:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2656:112:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3299:116:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2406:143:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5144:557:13;;;:::i;:::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;2276:93:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3610:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1680:672:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3846:140:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:89;2119:13;2151:5;2144:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89;:::o;4293:186::-;4366:4;4382:13;4398:12;:10;:12::i;:::-;4382:28;;4420:31;4429:5;4436:7;4445:5;4420:8;:31::i;:::-;4468:4;4461:11;;;4293:186;;;;:::o;3144:97::-;3196:7;3222:12;;3215:19;;3144:97;:::o;5039:244::-;5126:4;5142:15;5160:12;:10;:12::i;:::-;5142:30;;5182:37;5198:4;5204:7;5213:5;5182:15;:37::i;:::-;5229:26;5239:4;5245:2;5249:5;5229:9;:26::i;:::-;5272:4;5265:11;;;5039:244;;;;;:::o;3002:82::-;3051:5;3075:2;3068:9;;3002:82;:::o;2656:112:4:-;2715:7;2741:20;:18;:20::i;:::-;2734:27;;2656:112;:::o;3299:116:2:-;3364:7;3390:9;:18;3400:7;3390:18;;;;;;;;;;;;;;;;3383:25;;3299:116;;;:::o;2406:143:4:-;2497:7;2523:19;2536:5;2523:12;:19::i;:::-;2516:26;;2406:143;;;:::o;5144:557:13:-;5242:13;5269:18;5301:21;5336:15;5365:25;5404:12;5430:27;5533:13;:11;:13::i;:::-;5560:16;:14;:16::i;:::-;5590:13;5625:4;5652:1;5644:10;;5682:1;5668:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5482:212;;;;;;;;;;;;;;;;;;;;;5144:557;;;;;;;:::o;2276:93:2:-;2323:13;2355:7;2348:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2276:93;:::o;3610:178::-;3679:4;3695:13;3711:12;:10;:12::i;:::-;3695:28;;3733:27;3743:5;3750:2;3754:5;3733:9;:27::i;:::-;3777:4;3770:11;;;3610:178;;;;:::o;1680:672:4:-;1901:8;1883:15;:26;1879:97;;;1956:8;1932:33;;;;;;;;;;;:::i;:::-;;;;;;;;1879:97;1986:18;1022:95;2045:5;2052:7;2061:5;2068:16;2078:5;2068:9;:16::i;:::-;2086:8;2017:78;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2007:89;;;;;;1986:110;;2107:12;2122:28;2139:10;2122:16;:28::i;:::-;2107:43;;2161:14;2178:28;2192:4;2198:1;2201;2204;2178:13;:28::i;:::-;2161:45;;2230:5;2220:15;;:6;:15;;;2216:88;;2279:6;2287:5;2258:35;;;;;;;;;;;;:::i;:::-;;;;;;;;2216:88;2314:31;2323:5;2330:7;2339:5;2314:8;:31::i;:::-;1869:483;;;1680:672;;;;;;;:::o;3846:140:2:-;3926:7;3952:11;:18;3964:5;3952:18;;;;;;;;;;;;;;;:27;3971:7;3952:27;;;;;;;;;;;;;;;;3945:34;;3846:140;;;;:::o;656:96:7:-;709:7;735:10;728:17;;656:96;:::o;8989:128:2:-;9073:37;9082:5;9089:7;9098:5;9105:4;9073:8;:37::i;:::-;8989:128;;;:::o;10663:477::-;10762:24;10789:25;10799:5;10806:7;10789:9;:25::i;:::-;10762:52;;10848:17;10828:16;:37;10824:310;;10904:5;10885:16;:24;10881:130;;;10963:7;10972:16;10990:5;10936:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;10881:130;11052:57;11061:5;11068:7;11096:5;11077:16;:24;11103:5;11052:8;:57::i;:::-;10824:310;10752:388;10663:477;;;:::o;5656:300::-;5755:1;5739:18;;:4;:18;;;5735:86;;5807:1;5780:30;;;;;;;;;;;:::i;:::-;;;;;;;;5735:86;5848:1;5834:16;;:2;:16;;;5830:86;;5902:1;5873:32;;;;;;;;;;;:::i;:::-;;;;;;;;5830:86;5925:24;5933:4;5939:2;5943:5;5925:7;:24::i;:::-;5656:300;;;:::o;3845:262:13:-;3898:7;3938:11;3921:28;;3929:4;3921:28;;;:63;;;;;3970:14;3953:13;:31;3921:63;3917:184;;;4007:22;4000:29;;;;3917:184;4067:23;:21;:23::i;:::-;4060:30;;3845:262;;:::o;538:107:8:-;598:7;624;:14;632:5;624:14;;;;;;;;;;;;;;;;617:21;;538:107;;;:::o;6021:126:13:-;6067:13;6099:41;6126:13;6099:5;:26;;:41;;;;:::i;:::-;6092:48;;6021:126;:::o;6473:135::-;6522:13;6554:47;6584:16;6554:8;:29;;:47;;;;:::i;:::-;6547:54;;6473:135;:::o;759:395:8:-;819:7;1121;:14;1129:5;1121:14;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;1114:23;;759:395;;;:::o;4917:176:13:-;4994:7;5020:66;5053:20;:18;:20::i;:::-;5075:10;5020:32;:66::i;:::-;5013:73;;4917:176;;;:::o;6803:260:12:-;6888:7;6908:17;6927:18;6947:16;6967:25;6978:4;6984:1;6987;6990;6967:10;:25::i;:::-;6907:85;;;;;;7002:28;7014:5;7021:8;7002:11;:28::i;:::-;7047:9;7040:16;;;;;6803:260;;;;;;:::o;9949:432:2:-;10078:1;10061:19;;:5;:19;;;10057:89;;10132:1;10103:32;;;;;;;;;;;:::i;:::-;;;;;;;;10057:89;10178:1;10159:21;;:7;:21;;;10155:90;;10231:1;10203:31;;;;;;;;;;;:::i;:::-;;;;;;;;10155:90;10284:5;10254:11;:18;10266:5;10254:18;;;;;;;;;;;;;;;:27;10273:7;10254:27;;;;;;;;;;;;;;;:35;;;;10303:9;10299:76;;;10349:7;10333:31;;10342:5;10333:31;;;10358:5;10333:31;;;;;;:::i;:::-;;;;;;;;10299:76;9949:432;;;;:::o;6271:1107::-;6376:1;6360:18;;:4;:18;;;6356:540;;6512:5;6496:12;;:21;;;;;;;:::i;:::-;;;;;;;;6356:540;;;6548:19;6570:9;:15;6580:4;6570:15;;;;;;;;;;;;;;;;6548:37;;6617:5;6603:11;:19;6599:115;;;6674:4;6680:11;6693:5;6649:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6599:115;6866:5;6852:11;:19;6834:9;:15;6844:4;6834:15;;;;;;;;;;;;;;;:37;;;;6534:362;6356:540;6924:1;6910:16;;:2;:16;;;6906:425;;7089:5;7073:12;;:21;;;;;;;;;;;6906:425;;;7301:5;7284:9;:13;7294:2;7284:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;6906:425;7361:2;7346:25;;7355:4;7346:25;;;7365:5;7346:25;;;;;;:::i;:::-;;;;;;;;6271:1107;;;:::o;4113:179:13:-;4168:7;2079:95;4226:11;4239:14;4255:13;4278:4;4204:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4194:91;;;;;;4187:98;;4113:179;:::o;3385:267:9:-;3479:13;1390:66;3537:17;;3527:5;3508:46;3504:142;;3577:15;3586:5;3577:8;:15::i;:::-;3570:22;;;;3504:142;3630:5;3623:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3385:267;;;;;:::o;3353:401:14:-;3446:14;3555:4;3549:11;3585:10;3580:3;3573:23;3632:15;3625:4;3620:3;3616:14;3609:39;3684:10;3677:4;3672:3;3668:14;3661:34;3733:4;3728:3;3718:20;3708:30;;3524:224;3353:401;;;;:::o;5140:1530:12:-;5266:7;5275:12;5289:7;6199:66;6194:1;6186:10;;:79;6182:164;;;6297:1;6301:30;6333:1;6281:54;;;;;;;;6182:164;6440:14;6457:24;6467:4;6473:1;6476;6479;6457:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6440:41;;6513:1;6495:20;;:6;:20;;;6491:113;;6547:1;6551:29;6590:1;6582:10;;6531:62;;;;;;;;;6491:113;6622:6;6630:20;6660:1;6652:10;;6614:49;;;;;;;5140:1530;;;;;;;;;:::o;7196:532::-;7291:20;7282:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;7278:444;7327:7;7278:444;7387:29;7378:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;7374:348;;7439:23;;;;;;;;;;;;;;7374:348;7492:35;7483:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;7479:243;;7586:8;7578:17;;7550:46;;;;;;;;;;;:::i;:::-;;;;;;;;7479:243;7626:30;7617:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;7613:109;;7702:8;7679:32;;;;;;;;;;;:::i;:::-;;;;;;;;7613:109;7196:532;;;:::o;2078:405:9:-;2137:13;2162:11;2176:16;2187:4;2176:10;:16::i;:::-;2162:30;;2280:17;2311:2;2300:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2280:34;;2402:3;2397;2390:16;2442:4;2435;2430:3;2426:14;2419:28;2473:3;2466:10;;;;2078:405;;;:::o;2555:245::-;2616:7;2635:14;2688:4;2679;2652:33;;:40;2635:57;;2715:2;2706:6;:11;2702:69;;;2740:20;;;;;;;;;;;;;;2702:69;2787:6;2780:13;;;2555:245;;;:::o;7:99:18:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:77::-;4890:7;4919:5;4908:16;;4853:77;;;:::o;4936:118::-;5023:24;5041:5;5023:24;:::i;:::-;5018:3;5011:37;4936:118;;:::o;5060:222::-;5153:4;5191:2;5180:9;5176:18;5168:26;;5204:71;5272:1;5261:9;5257:17;5248:6;5204:71;:::i;:::-;5060:222;;;;:::o;5288:329::-;5347:6;5396:2;5384:9;5375:7;5371:23;5367:32;5364:119;;;5402:79;;:::i;:::-;5364:119;5522:1;5547:53;5592:7;5583:6;5572:9;5568:22;5547:53;:::i;:::-;5537:63;;5493:117;5288:329;;;;:::o;5623:149::-;5659:7;5699:66;5692:5;5688:78;5677:89;;5623:149;;;:::o;5778:115::-;5863:23;5880:5;5863:23;:::i;:::-;5858:3;5851:36;5778:115;;:::o;5899:118::-;5986:24;6004:5;5986:24;:::i;:::-;5981:3;5974:37;5899:118;;:::o;6023:114::-;6090:6;6124:5;6118:12;6108:22;;6023:114;;;:::o;6143:184::-;6242:11;6276:6;6271:3;6264:19;6316:4;6311:3;6307:14;6292:29;;6143:184;;;;:::o;6333:132::-;6400:4;6423:3;6415:11;;6453:4;6448:3;6444:14;6436:22;;6333:132;;;:::o;6471:108::-;6548:24;6566:5;6548:24;:::i;:::-;6543:3;6536:37;6471:108;;:::o;6585:179::-;6654:10;6675:46;6717:3;6709:6;6675:46;:::i;:::-;6753:4;6748:3;6744:14;6730:28;;6585:179;;;;:::o;6770:113::-;6840:4;6872;6867:3;6863:14;6855:22;;6770:113;;;:::o;6919:732::-;7038:3;7067:54;7115:5;7067:54;:::i;:::-;7137:86;7216:6;7211:3;7137:86;:::i;:::-;7130:93;;7247:56;7297:5;7247:56;:::i;:::-;7326:7;7357:1;7342:284;7367:6;7364:1;7361:13;7342:284;;;7443:6;7437:13;7470:63;7529:3;7514:13;7470:63;:::i;:::-;7463:70;;7556:60;7609:6;7556:60;:::i;:::-;7546:70;;7402:224;7389:1;7386;7382:9;7377:14;;7342:284;;;7346:14;7642:3;7635:10;;7043:608;;;6919:732;;;;:::o;7657:1215::-;8006:4;8044:3;8033:9;8029:19;8021:27;;8058:69;8124:1;8113:9;8109:17;8100:6;8058:69;:::i;:::-;8174:9;8168:4;8164:20;8159:2;8148:9;8144:18;8137:48;8202:78;8275:4;8266:6;8202:78;:::i;:::-;8194:86;;8327:9;8321:4;8317:20;8312:2;8301:9;8297:18;8290:48;8355:78;8428:4;8419:6;8355:78;:::i;:::-;8347:86;;8443:72;8511:2;8500:9;8496:18;8487:6;8443:72;:::i;:::-;8525:73;8593:3;8582:9;8578:19;8569:6;8525:73;:::i;:::-;8608;8676:3;8665:9;8661:19;8652:6;8608:73;:::i;:::-;8729:9;8723:4;8719:20;8713:3;8702:9;8698:19;8691:49;8757:108;8860:4;8851:6;8757:108;:::i;:::-;8749:116;;7657:1215;;;;;;;;;;:::o;8878:118::-;8949:22;8965:5;8949:22;:::i;:::-;8942:5;8939:33;8929:61;;8986:1;8983;8976:12;8929:61;8878:118;:::o;9002:135::-;9046:5;9084:6;9071:20;9062:29;;9100:31;9125:5;9100:31;:::i;:::-;9002:135;;;;:::o;9143:122::-;9216:24;9234:5;9216:24;:::i;:::-;9209:5;9206:35;9196:63;;9255:1;9252;9245:12;9196:63;9143:122;:::o;9271:139::-;9317:5;9355:6;9342:20;9333:29;;9371:33;9398:5;9371:33;:::i;:::-;9271:139;;;;:::o;9416:1199::-;9527:6;9535;9543;9551;9559;9567;9575;9624:3;9612:9;9603:7;9599:23;9595:33;9592:120;;;9631:79;;:::i;:::-;9592:120;9751:1;9776:53;9821:7;9812:6;9801:9;9797:22;9776:53;:::i;:::-;9766:63;;9722:117;9878:2;9904:53;9949:7;9940:6;9929:9;9925:22;9904:53;:::i;:::-;9894:63;;9849:118;10006:2;10032:53;10077:7;10068:6;10057:9;10053:22;10032:53;:::i;:::-;10022:63;;9977:118;10134:2;10160:53;10205:7;10196:6;10185:9;10181:22;10160:53;:::i;:::-;10150:63;;10105:118;10262:3;10289:51;10332:7;10323:6;10312:9;10308:22;10289:51;:::i;:::-;10279:61;;10233:117;10389:3;10416:53;10461:7;10452:6;10441:9;10437:22;10416:53;:::i;:::-;10406:63;;10360:119;10518:3;10545:53;10590:7;10581:6;10570:9;10566:22;10545:53;:::i;:::-;10535:63;;10489:119;9416:1199;;;;;;;;;;:::o;10621:474::-;10689:6;10697;10746:2;10734:9;10725:7;10721:23;10717:32;10714:119;;;10752:79;;:::i;:::-;10714:119;10872:1;10897:53;10942:7;10933:6;10922:9;10918:22;10897:53;:::i;:::-;10887:63;;10843:117;10999:2;11025:53;11070:7;11061:6;11050:9;11046:22;11025:53;:::i;:::-;11015:63;;10970:118;10621:474;;;;;:::o;11101:180::-;11149:77;11146:1;11139:88;11246:4;11243:1;11236:15;11270:4;11267:1;11260:15;11287:320;11331:6;11368:1;11362:4;11358:12;11348:22;;11415:1;11409:4;11405:12;11436:18;11426:81;;11492:4;11484:6;11480:17;11470:27;;11426:81;11554:2;11546:6;11543:14;11523:18;11520:38;11517:84;;11573:18;;:::i;:::-;11517:84;11338:269;11287:320;;;:::o;11613:180::-;11661:77;11658:1;11651:88;11758:4;11755:1;11748:15;11782:4;11779:1;11772:15;11799:775;12032:4;12070:3;12059:9;12055:19;12047:27;;12084:71;12152:1;12141:9;12137:17;12128:6;12084:71;:::i;:::-;12165:72;12233:2;12222:9;12218:18;12209:6;12165:72;:::i;:::-;12247;12315:2;12304:9;12300:18;12291:6;12247:72;:::i;:::-;12329;12397:2;12386:9;12382:18;12373:6;12329:72;:::i;:::-;12411:73;12479:3;12468:9;12464:19;12455:6;12411:73;:::i;:::-;12494;12562:3;12551:9;12547:19;12538:6;12494:73;:::i;:::-;11799:775;;;;;;;;;:::o;12580:332::-;12701:4;12739:2;12728:9;12724:18;12716:26;;12752:71;12820:1;12809:9;12805:17;12796:6;12752:71;:::i;:::-;12833:72;12901:2;12890:9;12886:18;12877:6;12833:72;:::i;:::-;12580:332;;;;;:::o;12918:442::-;13067:4;13105:2;13094:9;13090:18;13082:26;;13118:71;13186:1;13175:9;13171:17;13162:6;13118:71;:::i;:::-;13199:72;13267:2;13256:9;13252:18;13243:6;13199:72;:::i;:::-;13281;13349:2;13338:9;13334:18;13325:6;13281:72;:::i;:::-;12918:442;;;;;;:::o;13366:222::-;13459:4;13497:2;13486:9;13482:18;13474:26;;13510:71;13578:1;13567:9;13563:17;13554:6;13510:71;:::i;:::-;13366:222;;;;:::o;13594:180::-;13642:77;13639:1;13632:88;13739:4;13736:1;13729:15;13763:4;13760:1;13753:15;13780:191;13820:3;13839:20;13857:1;13839:20;:::i;:::-;13834:25;;13873:20;13891:1;13873:20;:::i;:::-;13868:25;;13916:1;13913;13909:9;13902:16;;13937:3;13934:1;13931:10;13928:36;;;13944:18;;:::i;:::-;13928:36;13780:191;;;;:::o;13977:664::-;14182:4;14220:3;14209:9;14205:19;14197:27;;14234:71;14302:1;14291:9;14287:17;14278:6;14234:71;:::i;:::-;14315:72;14383:2;14372:9;14368:18;14359:6;14315:72;:::i;:::-;14397;14465:2;14454:9;14450:18;14441:6;14397:72;:::i;:::-;14479;14547:2;14536:9;14532:18;14523:6;14479:72;:::i;:::-;14561:73;14629:3;14618:9;14614:19;14605:6;14561:73;:::i;:::-;13977:664;;;;;;;;:::o;14647:545::-;14820:4;14858:3;14847:9;14843:19;14835:27;;14872:71;14940:1;14929:9;14925:17;14916:6;14872:71;:::i;:::-;14953:68;15017:2;15006:9;15002:18;14993:6;14953:68;:::i;:::-;15031:72;15099:2;15088:9;15084:18;15075:6;15031:72;:::i;:::-;15113;15181:2;15170:9;15166:18;15157:6;15113:72;:::i;:::-;14647:545;;;;;;;:::o;15198:180::-;15246:77;15243:1;15236:88;15343:4;15340:1;15333:15;15367:4;15364:1;15357:15"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1404400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"DOMAIN_SEPARATOR()": "infinite",
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2852",
"decimals()": "427",
"eip712Domain()": "infinite",
"name()": "infinite",
"nonces(address)": "2916",
"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "infinite",
"symbol()": "infinite",
"totalSupply()": "2477",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"DOMAIN_SEPARATOR()": "3644e515",
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"eip712Domain()": "84b0196e",
"name()": "06fdde03",
"nonces(address)": "7ecebe00",
"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": "d505accf",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "ECDSAInvalidSignature",
"type": "error"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "length",
"type": "uint256"
}
],
"name": "ECDSAInvalidSignatureLength",
"type": "error"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "ECDSAInvalidSignatureS",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "allowance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientAllowance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientBalance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "approver",
"type": "address"
}
],
"name": "ERC20InvalidApprover",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "receiver",
"type": "address"
}
],
"name": "ERC20InvalidReceiver",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "ERC20InvalidSender",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "ERC20InvalidSpender",
"type": "error"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
}
],
"name": "ERC2612ExpiredSignature",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "signer",
"type": "address"
},
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "ERC2612InvalidSigner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "currentNonce",
"type": "uint256"
}
],
"name": "InvalidAccountNonce",
"type": "error"
},
{
"inputs": [],
"name": "InvalidShortString",
"type": "error"
},
{
"inputs": [
{
"internalType": "string",
"name": "str",
"type": "string"
}
],
"name": "StringTooLong",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [],
"name": "EIP712DomainChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [],
"name": "DOMAIN_SEPARATOR",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "eip712Domain",
"outputs": [
{
"internalType": "bytes1",
"name": "fields",
"type": "bytes1"
},
{
"internalType": "string",
"name": "name",
"type": "string"
},
{
"internalType": "string",
"name": "version",
"type": "string"
},
{
"internalType": "uint256",
"name": "chainId",
"type": "uint256"
},
{
"internalType": "address",
"name": "verifyingContract",
"type": "address"
},
{
"internalType": "bytes32",
"name": "salt",
"type": "bytes32"
},
{
"internalType": "uint256[]",
"name": "extensions",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "nonces",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "permit",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.23+commit.f704f362"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [],
"name": "ECDSAInvalidSignature",
"type": "error"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "length",
"type": "uint256"
}
],
"name": "ECDSAInvalidSignatureLength",
"type": "error"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "ECDSAInvalidSignatureS",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "allowance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientAllowance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "ERC20InsufficientBalance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "approver",
"type": "address"
}
],
"name": "ERC20InvalidApprover",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "receiver",
"type": "address"
}
],
"name": "ERC20InvalidReceiver",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "ERC20InvalidSender",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "ERC20InvalidSpender",
"type": "error"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
}
],
"name": "ERC2612ExpiredSignature",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "signer",
"type": "address"
},
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "ERC2612InvalidSigner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "currentNonce",
"type": "uint256"
}
],
"name": "InvalidAccountNonce",
"type": "error"
},
{
"inputs": [],
"name": "InvalidShortString",
"type": "error"
},
{
"inputs": [
{
"internalType": "string",
"name": "str",
"type": "string"
}
],
"name": "StringTooLong",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [],
"name": "EIP712DomainChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [],
"name": "DOMAIN_SEPARATOR",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "approve",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "eip712Domain",
"outputs": [
{
"internalType": "bytes1",
"name": "fields",
"type": "bytes1"
},
{
"internalType": "string",
"name": "name",
"type": "string"
},
{
"internalType": "string",
"name": "version",
"type": "string"
},
{
"internalType": "uint256",
"name": "chainId",
"type": "uint256"
},
{
"internalType": "address",
"name": "verifyingContract",
"type": "address"
},
{
"internalType": "bytes32",
"name": "salt",
"type": "bytes32"
},
{
"internalType": "uint256[]",
"name": "extensions",
"type": "uint256[]"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "nonces",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "spender",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "deadline",
"type": "uint256"
},
{
"internalType": "uint8",
"name": "v",
"type": "uint8"
},
{
"internalType": "bytes32",
"name": "r",
"type": "bytes32"
},
{
"internalType": "bytes32",
"name": "s",
"type": "bytes32"
}
],
"name": "permit",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"errors": {
"ECDSAInvalidSignature()": [
{
"details": "The signature derives the `address(0)`."
}
],
"ECDSAInvalidSignatureLength(uint256)": [
{
"details": "The signature has an invalid length."
}
],
"ECDSAInvalidSignatureS(bytes32)": [
{
"details": "The signature has an S value that is in the upper half order."
}
],
"ERC20InsufficientAllowance(address,uint256,uint256)": [
{
"details": "Indicates a failure with the `spender`’s `allowance`. Used in transfers.",
"params": {
"allowance": "Amount of tokens a `spender` is allowed to operate with.",
"needed": "Minimum amount required to perform a transfer.",
"spender": "Address that may be allowed to operate on tokens without being their owner."
}
}
],
"ERC20InsufficientBalance(address,uint256,uint256)": [
{
"details": "Indicates an error related to the current `balance` of a `sender`. Used in transfers.",
"params": {
"balance": "Current balance for the interacting account.",
"needed": "Minimum amount required to perform a transfer.",
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC20InvalidApprover(address)": [
{
"details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.",
"params": {
"approver": "Address initiating an approval operation."
}
}
],
"ERC20InvalidReceiver(address)": [
{
"details": "Indicates a failure with the token `receiver`. Used in transfers.",
"params": {
"receiver": "Address to which tokens are being transferred."
}
}
],
"ERC20InvalidSender(address)": [
{
"details": "Indicates a failure with the token `sender`. Used in transfers.",
"params": {
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC20InvalidSpender(address)": [
{
"details": "Indicates a failure with the `spender` to be approved. Used in approvals.",
"params": {
"spender": "Address that may be allowed to operate on tokens without being their owner."
}
}
],
"ERC2612ExpiredSignature(uint256)": [
{
"details": "Permit deadline has expired."
}
],
"ERC2612InvalidSigner(address,address)": [
{
"details": "Mismatched signature."
}
],
"InvalidAccountNonce(address,uint256)": [
{
"details": "The nonce used for an `account` is not the expected current nonce."
}
]
},
"events": {
"Approval(address,address,uint256)": {
"details": "Emitted when the allowance of a `spender` for an `owner` is set by a call to {approve}. `value` is the new allowance."
},
"EIP712DomainChanged()": {
"details": "MAY be emitted to signal that the domain could have changed."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
}
},
"kind": "dev",
"methods": {
"DOMAIN_SEPARATOR()": {
"details": "Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}."
},
"allowance(address,address)": {
"details": "See {IERC20-allowance}."
},
"approve(address,uint256)": {
"details": "See {IERC20-approve}. NOTE: If `value` 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."
},
"balanceOf(address)": {
"details": "See {IERC20-balanceOf}."
},
"decimals()": {
"details": "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}."
},
"eip712Domain()": {
"details": "See {IERC-5267}."
},
"name()": {
"details": "Returns the name of the token."
},
"nonces(address)": {
"details": "Returns the current nonce for `owner`. This value must be included whenever a signature is generated for {permit}. Every successful call to {permit} increases ``owner``'s nonce by one. This prevents a signature from being used multiple times."
},
"permit(address,address,uint256,uint256,uint8,bytes32,bytes32)": {
"details": "Sets `value` as the allowance of `spender` over ``owner``'s tokens, given ``owner``'s signed approval. IMPORTANT: The same issues {IERC20-approve} has related to transaction ordering also apply here. Emits an {Approval} event. Requirements: - `spender` cannot be the zero address. - `deadline` must be a timestamp in the future. - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` over the EIP712-formatted function arguments. - the signature must use ``owner``'s current nonce (see {nonces}). For more information on the signature format, see the https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP section]. CAUTION: See Security Considerations above."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transfer(address,uint256)": {
"details": "See {IERC20-transfer}. Requirements: - `to` cannot be the zero address. - the caller must have a balance of at least `value`."
},
"transferFrom(address,address,uint256)": {
"details": "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 `value`. - the caller must have allowance for ``from``'s tokens of at least `value`."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/PiyoCoin.sol": "MyToken"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/interfaces/IERC5267.sol": {
"keccak256": "0x92aa1df62dc3d33f1656d63bede0923e0df0b706ad4137c8b10b0a8fe549fd92",
"license": "MIT",
"urls": [
"bzz-raw://c5c0f29195ad64cbe556da8e257dac8f05f78c53f90323c0d2accf8e6922d33a",
"dweb:/ipfs/QmQ61TED8uaCZwcbh8KkgRSsCav7x7HbcGHwHts3U4DmUP"
]
},
"@openzeppelin/contracts/interfaces/draft-IERC6093.sol": {
"keccak256": "0x60c65f701957fdd6faea1acb0bb45825791d473693ed9ecb34726fdfaa849dd7",
"license": "MIT",
"urls": [
"bzz-raw://ea290300e0efc4d901244949dc4d877fd46e6c5e43dc2b26620e8efab3ab803f",
"dweb:/ipfs/QmcLLJppxKeJWqHxE2CUkcfhuRTgHSn8J4kijcLa5MYhSt"
]
},
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"keccak256": "0xc3e1fa9d1987f8d349dfb4d6fe93bf2ca014b52ba335cfac30bfe71e357e6f80",
"license": "MIT",
"urls": [
"bzz-raw://c5703ccdeb7b1d685e375ed719117e9edf2ab4bc544f24f23b0d50ec82257229",
"dweb:/ipfs/QmTdwkbQq7owpCiyuzE7eh5LrD2ddrBCZ5WHVsWPi1RrTS"
]
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"keccak256": "0xc6a8ff0ea489379b61faa647490411b80102578440ab9d84e9a957cc12164e70",
"license": "MIT",
"urls": [
"bzz-raw://0ea104e577e63faea3b69c415637e99e755dcbf64c5833d7140c35a714d6d90c",
"dweb:/ipfs/Qmau6x4Ns9XdyynRCNNp3RhLqijJjFm7z5fyZazfYFGYdq"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol": {
"keccak256": "0xc858a86a35701004d89022a5e98819aac46ccbdc4072fc9dd43928a676b1a2ee",
"license": "MIT",
"urls": [
"bzz-raw://18acebb483c512c0eaafcb437f09c839972c3f0d36f0201ea7baa2926b987dd2",
"dweb:/ipfs/Qmd9bf2noaDSYDtf6FMSzKu7LPhuf91jsVNmcoCuTCuGic"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0xaa761817f6cd7892fcf158b3c776b34551cde36f48ff9703d53898bc45a94ea2",
"license": "MIT",
"urls": [
"bzz-raw://0ad7c8d4d08938c8dfc43d75a148863fb324b80cf53e0a36f7e5a4ac29008850",
"dweb:/ipfs/QmcrhfPgVNf5mkdhQvy1pMv51TFokD3Y4Wa5WZhFqVh8UV"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol": {
"keccak256": "0x6008dabfe393240d73d7dd7688033f72740d570aa422254d29a7dce8568f3aff",
"license": "MIT",
"urls": [
"bzz-raw://f5196ec75139918c6c7bb4251b36395e668f1fa6d206beba7e7520e74913940d",
"dweb:/ipfs/QmSyqjksXxmm2mCG6qRd1yuwLykypkSVBbnBnGqJRcuJMi"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2",
"license": "MIT",
"urls": [
"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12",
"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF"
]
},
"@openzeppelin/contracts/utils/Nonces.sol": {
"keccak256": "0x0082767004fca261c332e9ad100868327a863a88ef724e844857128845ab350f",
"license": "MIT",
"urls": [
"bzz-raw://132dce9686a54e025eb5ba5d2e48208f847a1ec3e60a3e527766d7bf53fb7f9e",
"dweb:/ipfs/QmXn1a2nUZMpu2z6S88UoTfMVtY2YNh86iGrzJDYmMkKeZ"
]
},
"@openzeppelin/contracts/utils/ShortStrings.sol": {
"keccak256": "0x18a7171df639a934592915a520ecb97c5bbc9675a1105607aac8a94e72bf62c6",
"license": "MIT",
"urls": [
"bzz-raw://7478e1f13da69a2867ccd883001d836b75620362e743f196376d63ed0c422a1c",
"dweb:/ipfs/QmWywcQ9TNfwtoqAxbn25d8C5VrV12PrPS9UjtGe6pL2BA"
]
},
"@openzeppelin/contracts/utils/StorageSlot.sol": {
"keccak256": "0x32ba59b4b7299237c8ba56319110989d7978a039faf754793064e967e5894418",
"license": "MIT",
"urls": [
"bzz-raw://1ae50c8b562427df610cc4540c9bf104acca7ef8e2dcae567ae7e52272281e9c",
"dweb:/ipfs/QmTHiadFCSJUPpRjNegc5SahmeU8bAoY8i9Aq6tVscbcKR"
]
},
"@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0x55f102ea785d8399c0e58d1108e2d289506dde18abc6db1b7f68c1f9f9bc5792",
"license": "MIT",
"urls": [
"bzz-raw://6e52e0a7765c943ef14e5bcf11e46e6139fa044be564881378349236bf2e3453",
"dweb:/ipfs/QmZEeeXoFPW47amyP35gfzomF9DixqqTEPwzBakv6cZw6i"
]
},
"@openzeppelin/contracts/utils/cryptography/ECDSA.sol": {
"keccak256": "0xeed0a08b0b091f528356cbc7245891a4c748682d4f6a18055e8e6ca77d12a6cf",
"license": "MIT",
"urls": [
"bzz-raw://ba80ba06c8e6be852847e4c5f4492cef801feb6558ae09ed705ff2e04ea8b13c",
"dweb:/ipfs/QmXRJDv3xHLVQCVXg1ZvR35QS9sij5y9NDWYzMfUfAdTHF"
]
},
"@openzeppelin/contracts/utils/cryptography/EIP712.sol": {
"keccak256": "0x999f705a027ed6dc2d4e0df2cc4a509852c6bfd11de1c8161bf88832d0503fd0",
"license": "MIT",
"urls": [
"bzz-raw://0798def67258d9a3cc20b2b4da7ebf351a5cefe0abfdd665d2d81f8e32f89b21",
"dweb:/ipfs/QmPEvJosnPfzHNjKvCv2D3891mA2Ww8eUwkqrxBjuYdHCt"
]
},
"@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol": {
"keccak256": "0xba333517a3add42cd35fe877656fc3dfcc9de53baa4f3aabbd6d12a92e4ea435",
"license": "MIT",
"urls": [
"bzz-raw://2ceacff44c0fdc81e48e0e0b1db87a2076d3c1fb497341de077bf1da9f6b406c",
"dweb:/ipfs/QmRUo1muMRAewxrKQ7TkXUtknyRoR57AyEkoPpiuZQ8FzX"
]
},
"@openzeppelin/contracts/utils/math/Math.sol": {
"keccak256": "0x005ec64c6313f0555d59e278f9a7a5ab2db5bdc72a027f255a37c327af1ec02d",
"license": "MIT",
"urls": [
"bzz-raw://4ece9f0b9c8daca08c76b6b5405a6446b6f73b3a15fab7ff56e296cbd4a2c875",
"dweb:/ipfs/QmQyRpyPRL5SQuAgj6SHmbir3foX65FJjbVTTQrA2EFg6L"
]
},
"@openzeppelin/contracts/utils/math/SignedMath.sol": {
"keccak256": "0x5f7e4076e175393767754387c962926577f1660dd9b810187b9002407656be72",
"license": "MIT",
"urls": [
"bzz-raw://7d533a1c97cd43a57cd9c465f7ee8dd0e39ae93a8fb8ff8e5303a356b081cdcc",
"dweb:/ipfs/QmVBEei6aTnvYNZp2CHYVNKyZS4q1KkjANfY39WVXZXVoT"
]
},
"contracts/PiyoCoin.sol": {
"keccak256": "0xb0339c842c5a0a806d8eb503cfb72a77ce0865cccb567b2cd8d9432d602f939d",
"license": "MIT",
"urls": [
"bzz-raw://6e07151997f25c3493b1884d3c93e64353bdc1b00963d45ff0bf33a2884d322c",
"dweb:/ipfs/QmNSspDE9LHxSSfvZhaRaDTC1Kfkj6AXCoAy8xprqUo76s"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.sol";
contract Piyo is ERC20, ERC20Permit {
constructor() ERC20("Piyo", "PIYO") ERC20Permit("Piyo") {
_mint(msg.sender, 42000000 * 10 ** decimals());
}
}
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": {
"@_2095": {
"entryPoint": null,
"id": 2095,
"parameterSlots": 2,
"returnSlots": 0
},
"@_213": {
"entryPoint": null,
"id": 213,
"parameterSlots": 2,
"returnSlots": 0
},
"@_3488": {
"entryPoint": null,
"id": 3488,
"parameterSlots": 0,
"returnSlots": 0
},
"@_803": {
"entryPoint": null,
"id": 803,
"parameterSlots": 1,
"returnSlots": 0
},
"@_buildDomainSeparator_2142": {
"entryPoint": 605,
"id": 2142,
"parameterSlots": 0,
"returnSlots": 1
},
"@_mint_516": {
"entryPoint": 705,
"id": 516,
"parameterSlots": 2,
"returnSlots": 0
},
"@_update_483": {
"entryPoint": 958,
"id": 483,
"parameterSlots": 3,
"returnSlots": 0
},
"@decimals_240": {
"entryPoint": 697,
"id": 240,
"parameterSlots": 0,
"returnSlots": 1
},
"@getStringSlot_1372": {
"entryPoint": 949,
"id": 1372,
"parameterSlots": 1,
"returnSlots": 1
},
"@toShortStringWithFallback_1226": {
"entryPoint": 520,
"id": 1226,
"parameterSlots": 2,
"returnSlots": 1
},
"@toShortString_1128": {
"entryPoint": 843,
"id": 1128,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 2986,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_fromStack": {
"entryPoint": 2902,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3195,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 2919,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 3094,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 3509,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed": {
"entryPoint": 3003,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3259,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 3568,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_dataslot_t_bytes_memory_ptr": {
"entryPoint": 3303,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 1658,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 3293,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1506,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 3121,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 3451,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_helper": {
"entryPoint": 2403,
"id": null,
"parameterSlots": 4,
"returnSlots": 2
},
"checked_exp_t_uint256_t_uint8": {
"entryPoint": 2739,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_exp_unsigned": {
"entryPoint": 2493,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"checked_mul_t_uint256": {
"entryPoint": 2819,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1967,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 2967,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 2893,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 2936,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1788,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 2727,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1929,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_bytes_to_fixedbytes_from_t_bytes_memory_ptr_to_t_bytes32": {
"entryPoint": 3340,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1806,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 2118,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 3137,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 1676,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1606,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 2089,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 1797,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 2059,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 2346,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1561,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1516,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1845,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"read_from_memoryt_bytes32": {
"entryPoint": 3318,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"round_up_to_mul_of_32": {
"entryPoint": 3179,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 1691,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_1_unsigned": {
"entryPoint": 2391,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 2047,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1901,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 1703,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1854,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1897,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:12936:18",
"nodeType": "YulBlock",
"src": "0:12936:18",
"statements": [
{
"body": {
"nativeSrc": "66:40:18",
"nodeType": "YulBlock",
"src": "66:40:18",
"statements": [
{
"nativeSrc": "77:22:18",
"nodeType": "YulAssignment",
"src": "77:22:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "93:5:18",
"nodeType": "YulIdentifier",
"src": "93:5:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "87:5:18",
"nodeType": "YulIdentifier",
"src": "87:5:18"
},
"nativeSrc": "87:12:18",
"nodeType": "YulFunctionCall",
"src": "87:12:18"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "77:6:18",
"nodeType": "YulIdentifier",
"src": "77:6:18"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7:99:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "49:5:18",
"nodeType": "YulTypedName",
"src": "49:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "59:6:18",
"nodeType": "YulTypedName",
"src": "59:6:18",
"type": ""
}
],
"src": "7:99:18"
},
{
"body": {
"nativeSrc": "140:152:18",
"nodeType": "YulBlock",
"src": "140:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "157:1:18",
"nodeType": "YulLiteral",
"src": "157:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "160:77:18",
"nodeType": "YulLiteral",
"src": "160:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "150:6:18",
"nodeType": "YulIdentifier",
"src": "150:6:18"
},
"nativeSrc": "150:88:18",
"nodeType": "YulFunctionCall",
"src": "150:88:18"
},
"nativeSrc": "150:88:18",
"nodeType": "YulExpressionStatement",
"src": "150:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "254:1:18",
"nodeType": "YulLiteral",
"src": "254:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "257:4:18",
"nodeType": "YulLiteral",
"src": "257:4:18",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "247:6:18",
"nodeType": "YulIdentifier",
"src": "247:6:18"
},
"nativeSrc": "247:15:18",
"nodeType": "YulFunctionCall",
"src": "247:15:18"
},
"nativeSrc": "247:15:18",
"nodeType": "YulExpressionStatement",
"src": "247:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "278:1:18",
"nodeType": "YulLiteral",
"src": "278:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "281:4:18",
"nodeType": "YulLiteral",
"src": "281:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "271:6:18",
"nodeType": "YulIdentifier",
"src": "271:6:18"
},
"nativeSrc": "271:15:18",
"nodeType": "YulFunctionCall",
"src": "271:15:18"
},
"nativeSrc": "271:15:18",
"nodeType": "YulExpressionStatement",
"src": "271:15:18"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "112:180:18",
"nodeType": "YulFunctionDefinition",
"src": "112:180:18"
},
{
"body": {
"nativeSrc": "326:152:18",
"nodeType": "YulBlock",
"src": "326:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "343:1:18",
"nodeType": "YulLiteral",
"src": "343:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "346:77:18",
"nodeType": "YulLiteral",
"src": "346:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "336:6:18",
"nodeType": "YulIdentifier",
"src": "336:6:18"
},
"nativeSrc": "336:88:18",
"nodeType": "YulFunctionCall",
"src": "336:88:18"
},
"nativeSrc": "336:88:18",
"nodeType": "YulExpressionStatement",
"src": "336:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "440:1:18",
"nodeType": "YulLiteral",
"src": "440:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "443:4:18",
"nodeType": "YulLiteral",
"src": "443:4:18",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "433:6:18",
"nodeType": "YulIdentifier",
"src": "433:6:18"
},
"nativeSrc": "433:15:18",
"nodeType": "YulFunctionCall",
"src": "433:15:18"
},
"nativeSrc": "433:15:18",
"nodeType": "YulExpressionStatement",
"src": "433:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "464:1:18",
"nodeType": "YulLiteral",
"src": "464:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "467:4:18",
"nodeType": "YulLiteral",
"src": "467:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "457:6:18",
"nodeType": "YulIdentifier",
"src": "457:6:18"
},
"nativeSrc": "457:15:18",
"nodeType": "YulFunctionCall",
"src": "457:15:18"
},
"nativeSrc": "457:15:18",
"nodeType": "YulExpressionStatement",
"src": "457:15:18"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "298:180:18",
"nodeType": "YulFunctionDefinition",
"src": "298:180:18"
},
{
"body": {
"nativeSrc": "535:269:18",
"nodeType": "YulBlock",
"src": "535:269:18",
"statements": [
{
"nativeSrc": "545:22:18",
"nodeType": "YulAssignment",
"src": "545:22:18",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "559:4:18",
"nodeType": "YulIdentifier",
"src": "559:4:18"
},
{
"kind": "number",
"nativeSrc": "565:1:18",
"nodeType": "YulLiteral",
"src": "565:1:18",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "555:3:18",
"nodeType": "YulIdentifier",
"src": "555:3:18"
},
"nativeSrc": "555:12:18",
"nodeType": "YulFunctionCall",
"src": "555:12:18"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "545:6:18",
"nodeType": "YulIdentifier",
"src": "545:6:18"
}
]
},
{
"nativeSrc": "576:38:18",
"nodeType": "YulVariableDeclaration",
"src": "576:38:18",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "606:4:18",
"nodeType": "YulIdentifier",
"src": "606:4:18"
},
{
"kind": "number",
"nativeSrc": "612:1:18",
"nodeType": "YulLiteral",
"src": "612:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "602:3:18",
"nodeType": "YulIdentifier",
"src": "602:3:18"
},
"nativeSrc": "602:12:18",
"nodeType": "YulFunctionCall",
"src": "602:12:18"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "580:18:18",
"nodeType": "YulTypedName",
"src": "580:18:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "653:51:18",
"nodeType": "YulBlock",
"src": "653:51:18",
"statements": [
{
"nativeSrc": "667:27:18",
"nodeType": "YulAssignment",
"src": "667:27:18",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "681:6:18",
"nodeType": "YulIdentifier",
"src": "681:6:18"
},
{
"kind": "number",
"nativeSrc": "689:4:18",
"nodeType": "YulLiteral",
"src": "689:4:18",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "677:3:18",
"nodeType": "YulIdentifier",
"src": "677:3:18"
},
"nativeSrc": "677:17:18",
"nodeType": "YulFunctionCall",
"src": "677:17:18"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "667:6:18",
"nodeType": "YulIdentifier",
"src": "667:6:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "633:18:18",
"nodeType": "YulIdentifier",
"src": "633:18:18"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "626:6:18",
"nodeType": "YulIdentifier",
"src": "626:6:18"
},
"nativeSrc": "626:26:18",
"nodeType": "YulFunctionCall",
"src": "626:26:18"
},
"nativeSrc": "623:81:18",
"nodeType": "YulIf",
"src": "623:81:18"
},
{
"body": {
"nativeSrc": "756:42:18",
"nodeType": "YulBlock",
"src": "756:42:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "770:16:18",
"nodeType": "YulIdentifier",
"src": "770:16:18"
},
"nativeSrc": "770:18:18",
"nodeType": "YulFunctionCall",
"src": "770:18:18"
},
"nativeSrc": "770:18:18",
"nodeType": "YulExpressionStatement",
"src": "770:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "720:18:18",
"nodeType": "YulIdentifier",
"src": "720:18:18"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "743:6:18",
"nodeType": "YulIdentifier",
"src": "743:6:18"
},
{
"kind": "number",
"nativeSrc": "751:2:18",
"nodeType": "YulLiteral",
"src": "751:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "740:2:18",
"nodeType": "YulIdentifier",
"src": "740:2:18"
},
"nativeSrc": "740:14:18",
"nodeType": "YulFunctionCall",
"src": "740:14:18"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "717:2:18",
"nodeType": "YulIdentifier",
"src": "717:2:18"
},
"nativeSrc": "717:38:18",
"nodeType": "YulFunctionCall",
"src": "717:38:18"
},
"nativeSrc": "714:84:18",
"nodeType": "YulIf",
"src": "714:84:18"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "484:320:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "519:4:18",
"nodeType": "YulTypedName",
"src": "519:4:18",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "528:6:18",
"nodeType": "YulTypedName",
"src": "528:6:18",
"type": ""
}
],
"src": "484:320:18"
},
{
"body": {
"nativeSrc": "864:87:18",
"nodeType": "YulBlock",
"src": "864:87:18",
"statements": [
{
"nativeSrc": "874:11:18",
"nodeType": "YulAssignment",
"src": "874:11:18",
"value": {
"name": "ptr",
"nativeSrc": "882:3:18",
"nodeType": "YulIdentifier",
"src": "882:3:18"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "874:4:18",
"nodeType": "YulIdentifier",
"src": "874:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "902:1:18",
"nodeType": "YulLiteral",
"src": "902:1:18",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nativeSrc": "905:3:18",
"nodeType": "YulIdentifier",
"src": "905:3:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "895:6:18",
"nodeType": "YulIdentifier",
"src": "895:6:18"
},
"nativeSrc": "895:14:18",
"nodeType": "YulFunctionCall",
"src": "895:14:18"
},
"nativeSrc": "895:14:18",
"nodeType": "YulExpressionStatement",
"src": "895:14:18"
},
{
"nativeSrc": "918:26:18",
"nodeType": "YulAssignment",
"src": "918:26:18",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "936:1:18",
"nodeType": "YulLiteral",
"src": "936:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "939:4:18",
"nodeType": "YulLiteral",
"src": "939:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nativeSrc": "926:9:18",
"nodeType": "YulIdentifier",
"src": "926:9:18"
},
"nativeSrc": "926:18:18",
"nodeType": "YulFunctionCall",
"src": "926:18:18"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "918:4:18",
"nodeType": "YulIdentifier",
"src": "918:4:18"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nativeSrc": "810:141:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "851:3:18",
"nodeType": "YulTypedName",
"src": "851:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "859:4:18",
"nodeType": "YulTypedName",
"src": "859:4:18",
"type": ""
}
],
"src": "810:141:18"
},
{
"body": {
"nativeSrc": "1001:49:18",
"nodeType": "YulBlock",
"src": "1001:49:18",
"statements": [
{
"nativeSrc": "1011:33:18",
"nodeType": "YulAssignment",
"src": "1011:33:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1029:5:18",
"nodeType": "YulIdentifier",
"src": "1029:5:18"
},
{
"kind": "number",
"nativeSrc": "1036:2:18",
"nodeType": "YulLiteral",
"src": "1036:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1025:3:18",
"nodeType": "YulIdentifier",
"src": "1025:3:18"
},
"nativeSrc": "1025:14:18",
"nodeType": "YulFunctionCall",
"src": "1025:14:18"
},
{
"kind": "number",
"nativeSrc": "1041:2:18",
"nodeType": "YulLiteral",
"src": "1041:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nativeSrc": "1021:3:18",
"nodeType": "YulIdentifier",
"src": "1021:3:18"
},
"nativeSrc": "1021:23:18",
"nodeType": "YulFunctionCall",
"src": "1021:23:18"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1011:6:18",
"nodeType": "YulIdentifier",
"src": "1011:6:18"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nativeSrc": "957:93:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "984:5:18",
"nodeType": "YulTypedName",
"src": "984:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "994:6:18",
"nodeType": "YulTypedName",
"src": "994:6:18",
"type": ""
}
],
"src": "957:93:18"
},
{
"body": {
"nativeSrc": "1109:54:18",
"nodeType": "YulBlock",
"src": "1109:54:18",
"statements": [
{
"nativeSrc": "1119:37:18",
"nodeType": "YulAssignment",
"src": "1119:37:18",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "1144:4:18",
"nodeType": "YulIdentifier",
"src": "1144:4:18"
},
{
"name": "value",
"nativeSrc": "1150:5:18",
"nodeType": "YulIdentifier",
"src": "1150:5:18"
}
],
"functionName": {
"name": "shl",
"nativeSrc": "1140:3:18",
"nodeType": "YulIdentifier",
"src": "1140:3:18"
},
"nativeSrc": "1140:16:18",
"nodeType": "YulFunctionCall",
"src": "1140:16:18"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "1119:8:18",
"nodeType": "YulIdentifier",
"src": "1119:8:18"
}
]
}
]
},
"name": "shift_left_dynamic",
"nativeSrc": "1056:107:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "1084:4:18",
"nodeType": "YulTypedName",
"src": "1084:4:18",
"type": ""
},
{
"name": "value",
"nativeSrc": "1090:5:18",
"nodeType": "YulTypedName",
"src": "1090:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "1100:8:18",
"nodeType": "YulTypedName",
"src": "1100:8:18",
"type": ""
}
],
"src": "1056:107:18"
},
{
"body": {
"nativeSrc": "1245:317:18",
"nodeType": "YulBlock",
"src": "1245:317:18",
"statements": [
{
"nativeSrc": "1255:35:18",
"nodeType": "YulVariableDeclaration",
"src": "1255:35:18",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nativeSrc": "1276:10:18",
"nodeType": "YulIdentifier",
"src": "1276:10:18"
},
{
"kind": "number",
"nativeSrc": "1288:1:18",
"nodeType": "YulLiteral",
"src": "1288:1:18",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "1272:3:18",
"nodeType": "YulIdentifier",
"src": "1272:3:18"
},
"nativeSrc": "1272:18:18",
"nodeType": "YulFunctionCall",
"src": "1272:18:18"
},
"variables": [
{
"name": "shiftBits",
"nativeSrc": "1259:9:18",
"nodeType": "YulTypedName",
"src": "1259:9:18",
"type": ""
}
]
},
{
"nativeSrc": "1299:109:18",
"nodeType": "YulVariableDeclaration",
"src": "1299:109:18",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "1330:9:18",
"nodeType": "YulIdentifier",
"src": "1330:9:18"
},
{
"kind": "number",
"nativeSrc": "1341:66:18",
"nodeType": "YulLiteral",
"src": "1341:66:18",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "1311:18:18",
"nodeType": "YulIdentifier",
"src": "1311:18:18"
},
"nativeSrc": "1311:97:18",
"nodeType": "YulFunctionCall",
"src": "1311:97:18"
},
"variables": [
{
"name": "mask",
"nativeSrc": "1303:4:18",
"nodeType": "YulTypedName",
"src": "1303:4:18",
"type": ""
}
]
},
{
"nativeSrc": "1417:51:18",
"nodeType": "YulAssignment",
"src": "1417:51:18",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "1448:9:18",
"nodeType": "YulIdentifier",
"src": "1448:9:18"
},
{
"name": "toInsert",
"nativeSrc": "1459:8:18",
"nodeType": "YulIdentifier",
"src": "1459:8:18"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "1429:18:18",
"nodeType": "YulIdentifier",
"src": "1429:18:18"
},
"nativeSrc": "1429:39:18",
"nodeType": "YulFunctionCall",
"src": "1429:39:18"
},
"variableNames": [
{
"name": "toInsert",
"nativeSrc": "1417:8:18",
"nodeType": "YulIdentifier",
"src": "1417:8:18"
}
]
},
{
"nativeSrc": "1477:30:18",
"nodeType": "YulAssignment",
"src": "1477:30:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1490:5:18",
"nodeType": "YulIdentifier",
"src": "1490:5:18"
},
{
"arguments": [
{
"name": "mask",
"nativeSrc": "1501:4:18",
"nodeType": "YulIdentifier",
"src": "1501:4:18"
}
],
"functionName": {
"name": "not",
"nativeSrc": "1497:3:18",
"nodeType": "YulIdentifier",
"src": "1497:3:18"
},
"nativeSrc": "1497:9:18",
"nodeType": "YulFunctionCall",
"src": "1497:9:18"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1486:3:18",
"nodeType": "YulIdentifier",
"src": "1486:3:18"
},
"nativeSrc": "1486:21:18",
"nodeType": "YulFunctionCall",
"src": "1486:21:18"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "1477:5:18",
"nodeType": "YulIdentifier",
"src": "1477:5:18"
}
]
},
{
"nativeSrc": "1516:40:18",
"nodeType": "YulAssignment",
"src": "1516:40:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1529:5:18",
"nodeType": "YulIdentifier",
"src": "1529:5:18"
},
{
"arguments": [
{
"name": "toInsert",
"nativeSrc": "1540:8:18",
"nodeType": "YulIdentifier",
"src": "1540:8:18"
},
{
"name": "mask",
"nativeSrc": "1550:4:18",
"nodeType": "YulIdentifier",
"src": "1550:4:18"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1536:3:18",
"nodeType": "YulIdentifier",
"src": "1536:3:18"
},
"nativeSrc": "1536:19:18",
"nodeType": "YulFunctionCall",
"src": "1536:19:18"
}
],
"functionName": {
"name": "or",
"nativeSrc": "1526:2:18",
"nodeType": "YulIdentifier",
"src": "1526:2:18"
},
"nativeSrc": "1526:30:18",
"nodeType": "YulFunctionCall",
"src": "1526:30:18"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1516:6:18",
"nodeType": "YulIdentifier",
"src": "1516:6:18"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nativeSrc": "1169:393:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1206:5:18",
"nodeType": "YulTypedName",
"src": "1206:5:18",
"type": ""
},
{
"name": "shiftBytes",
"nativeSrc": "1213:10:18",
"nodeType": "YulTypedName",
"src": "1213:10:18",
"type": ""
},
{
"name": "toInsert",
"nativeSrc": "1225:8:18",
"nodeType": "YulTypedName",
"src": "1225:8:18",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "1238:6:18",
"nodeType": "YulTypedName",
"src": "1238:6:18",
"type": ""
}
],
"src": "1169:393:18"
},
{
"body": {
"nativeSrc": "1613:32:18",
"nodeType": "YulBlock",
"src": "1613:32:18",
"statements": [
{
"nativeSrc": "1623:16:18",
"nodeType": "YulAssignment",
"src": "1623:16:18",
"value": {
"name": "value",
"nativeSrc": "1634:5:18",
"nodeType": "YulIdentifier",
"src": "1634:5:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1623:7:18",
"nodeType": "YulIdentifier",
"src": "1623:7:18"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "1568:77:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1595:5:18",
"nodeType": "YulTypedName",
"src": "1595:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1605:7:18",
"nodeType": "YulTypedName",
"src": "1605:7:18",
"type": ""
}
],
"src": "1568:77:18"
},
{
"body": {
"nativeSrc": "1683:28:18",
"nodeType": "YulBlock",
"src": "1683:28:18",
"statements": [
{
"nativeSrc": "1693:12:18",
"nodeType": "YulAssignment",
"src": "1693:12:18",
"value": {
"name": "value",
"nativeSrc": "1700:5:18",
"nodeType": "YulIdentifier",
"src": "1700:5:18"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "1693:3:18",
"nodeType": "YulIdentifier",
"src": "1693:3:18"
}
]
}
]
},
"name": "identity",
"nativeSrc": "1651:60:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1669:5:18",
"nodeType": "YulTypedName",
"src": "1669:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "1679:3:18",
"nodeType": "YulTypedName",
"src": "1679:3:18",
"type": ""
}
],
"src": "1651:60:18"
},
{
"body": {
"nativeSrc": "1777:82:18",
"nodeType": "YulBlock",
"src": "1777:82:18",
"statements": [
{
"nativeSrc": "1787:66:18",
"nodeType": "YulAssignment",
"src": "1787:66:18",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1845:5:18",
"nodeType": "YulIdentifier",
"src": "1845:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1827:17:18",
"nodeType": "YulIdentifier",
"src": "1827:17:18"
},
"nativeSrc": "1827:24:18",
"nodeType": "YulFunctionCall",
"src": "1827:24:18"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "1818:8:18",
"nodeType": "YulIdentifier",
"src": "1818:8:18"
},
"nativeSrc": "1818:34:18",
"nodeType": "YulFunctionCall",
"src": "1818:34:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1800:17:18",
"nodeType": "YulIdentifier",
"src": "1800:17:18"
},
"nativeSrc": "1800:53:18",
"nodeType": "YulFunctionCall",
"src": "1800:53:18"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "1787:9:18",
"nodeType": "YulIdentifier",
"src": "1787:9:18"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "1717:142:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1757:5:18",
"nodeType": "YulTypedName",
"src": "1757:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "1767:9:18",
"nodeType": "YulTypedName",
"src": "1767:9:18",
"type": ""
}
],
"src": "1717:142:18"
},
{
"body": {
"nativeSrc": "1912:28:18",
"nodeType": "YulBlock",
"src": "1912:28:18",
"statements": [
{
"nativeSrc": "1922:12:18",
"nodeType": "YulAssignment",
"src": "1922:12:18",
"value": {
"name": "value",
"nativeSrc": "1929:5:18",
"nodeType": "YulIdentifier",
"src": "1929:5:18"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "1922:3:18",
"nodeType": "YulIdentifier",
"src": "1922:3:18"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nativeSrc": "1865:75:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1898:5:18",
"nodeType": "YulTypedName",
"src": "1898:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "1908:3:18",
"nodeType": "YulTypedName",
"src": "1908:3:18",
"type": ""
}
],
"src": "1865:75:18"
},
{
"body": {
"nativeSrc": "2022:193:18",
"nodeType": "YulBlock",
"src": "2022:193:18",
"statements": [
{
"nativeSrc": "2032:63:18",
"nodeType": "YulVariableDeclaration",
"src": "2032:63:18",
"value": {
"arguments": [
{
"name": "value_0",
"nativeSrc": "2087:7:18",
"nodeType": "YulIdentifier",
"src": "2087:7:18"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "2056:30:18",
"nodeType": "YulIdentifier",
"src": "2056:30:18"
},
"nativeSrc": "2056:39:18",
"nodeType": "YulFunctionCall",
"src": "2056:39:18"
},
"variables": [
{
"name": "convertedValue_0",
"nativeSrc": "2036:16:18",
"nodeType": "YulTypedName",
"src": "2036:16:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "2111:4:18",
"nodeType": "YulIdentifier",
"src": "2111:4:18"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "2151:4:18",
"nodeType": "YulIdentifier",
"src": "2151:4:18"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "2145:5:18",
"nodeType": "YulIdentifier",
"src": "2145:5:18"
},
"nativeSrc": "2145:11:18",
"nodeType": "YulFunctionCall",
"src": "2145:11:18"
},
{
"name": "offset",
"nativeSrc": "2158:6:18",
"nodeType": "YulIdentifier",
"src": "2158:6:18"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nativeSrc": "2190:16:18",
"nodeType": "YulIdentifier",
"src": "2190:16:18"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nativeSrc": "2166:23:18",
"nodeType": "YulIdentifier",
"src": "2166:23:18"
},
"nativeSrc": "2166:41:18",
"nodeType": "YulFunctionCall",
"src": "2166:41:18"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nativeSrc": "2117:27:18",
"nodeType": "YulIdentifier",
"src": "2117:27:18"
},
"nativeSrc": "2117:91:18",
"nodeType": "YulFunctionCall",
"src": "2117:91:18"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "2104:6:18",
"nodeType": "YulIdentifier",
"src": "2104:6:18"
},
"nativeSrc": "2104:105:18",
"nodeType": "YulFunctionCall",
"src": "2104:105:18"
},
"nativeSrc": "2104:105:18",
"nodeType": "YulExpressionStatement",
"src": "2104:105:18"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "1946:269:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "1999:4:18",
"nodeType": "YulTypedName",
"src": "1999:4:18",
"type": ""
},
{
"name": "offset",
"nativeSrc": "2005:6:18",
"nodeType": "YulTypedName",
"src": "2005:6:18",
"type": ""
},
{
"name": "value_0",
"nativeSrc": "2013:7:18",
"nodeType": "YulTypedName",
"src": "2013:7:18",
"type": ""
}
],
"src": "1946:269:18"
},
{
"body": {
"nativeSrc": "2270:24:18",
"nodeType": "YulBlock",
"src": "2270:24:18",
"statements": [
{
"nativeSrc": "2280:8:18",
"nodeType": "YulAssignment",
"src": "2280:8:18",
"value": {
"kind": "number",
"nativeSrc": "2287:1:18",
"nodeType": "YulLiteral",
"src": "2287:1:18",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "2280:3:18",
"nodeType": "YulIdentifier",
"src": "2280:3:18"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "2221:73:18",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nativeSrc": "2266:3:18",
"nodeType": "YulTypedName",
"src": "2266:3:18",
"type": ""
}
],
"src": "2221:73:18"
},
{
"body": {
"nativeSrc": "2353:136:18",
"nodeType": "YulBlock",
"src": "2353:136:18",
"statements": [
{
"nativeSrc": "2363:46:18",
"nodeType": "YulVariableDeclaration",
"src": "2363:46:18",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "2377:30:18",
"nodeType": "YulIdentifier",
"src": "2377:30:18"
},
"nativeSrc": "2377:32:18",
"nodeType": "YulFunctionCall",
"src": "2377:32:18"
},
"variables": [
{
"name": "zero_0",
"nativeSrc": "2367:6:18",
"nodeType": "YulTypedName",
"src": "2367:6:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "2462:4:18",
"nodeType": "YulIdentifier",
"src": "2462:4:18"
},
{
"name": "offset",
"nativeSrc": "2468:6:18",
"nodeType": "YulIdentifier",
"src": "2468:6:18"
},
{
"name": "zero_0",
"nativeSrc": "2476:6:18",
"nodeType": "YulIdentifier",
"src": "2476:6:18"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "2418:43:18",
"nodeType": "YulIdentifier",
"src": "2418:43:18"
},
"nativeSrc": "2418:65:18",
"nodeType": "YulFunctionCall",
"src": "2418:65:18"
},
"nativeSrc": "2418:65:18",
"nodeType": "YulExpressionStatement",
"src": "2418:65:18"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "2300:189:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "2339:4:18",
"nodeType": "YulTypedName",
"src": "2339:4:18",
"type": ""
},
{
"name": "offset",
"nativeSrc": "2345:6:18",
"nodeType": "YulTypedName",
"src": "2345:6:18",
"type": ""
}
],
"src": "2300:189:18"
},
{
"body": {
"nativeSrc": "2545:136:18",
"nodeType": "YulBlock",
"src": "2545:136:18",
"statements": [
{
"body": {
"nativeSrc": "2612:63:18",
"nodeType": "YulBlock",
"src": "2612:63:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nativeSrc": "2656:5:18",
"nodeType": "YulIdentifier",
"src": "2656:5:18"
},
{
"kind": "number",
"nativeSrc": "2663:1:18",
"nodeType": "YulLiteral",
"src": "2663:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "2626:29:18",
"nodeType": "YulIdentifier",
"src": "2626:29:18"
},
"nativeSrc": "2626:39:18",
"nodeType": "YulFunctionCall",
"src": "2626:39:18"
},
"nativeSrc": "2626:39:18",
"nodeType": "YulExpressionStatement",
"src": "2626:39:18"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nativeSrc": "2565:5:18",
"nodeType": "YulIdentifier",
"src": "2565:5:18"
},
{
"name": "end",
"nativeSrc": "2572:3:18",
"nodeType": "YulIdentifier",
"src": "2572:3:18"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "2562:2:18",
"nodeType": "YulIdentifier",
"src": "2562:2:18"
},
"nativeSrc": "2562:14:18",
"nodeType": "YulFunctionCall",
"src": "2562:14:18"
},
"nativeSrc": "2555:120:18",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "2577:26:18",
"nodeType": "YulBlock",
"src": "2577:26:18",
"statements": [
{
"nativeSrc": "2579:22:18",
"nodeType": "YulAssignment",
"src": "2579:22:18",
"value": {
"arguments": [
{
"name": "start",
"nativeSrc": "2592:5:18",
"nodeType": "YulIdentifier",
"src": "2592:5:18"
},
{
"kind": "number",
"nativeSrc": "2599:1:18",
"nodeType": "YulLiteral",
"src": "2599:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2588:3:18",
"nodeType": "YulIdentifier",
"src": "2588:3:18"
},
"nativeSrc": "2588:13:18",
"nodeType": "YulFunctionCall",
"src": "2588:13:18"
},
"variableNames": [
{
"name": "start",
"nativeSrc": "2579:5:18",
"nodeType": "YulIdentifier",
"src": "2579:5:18"
}
]
}
]
},
"pre": {
"nativeSrc": "2559:2:18",
"nodeType": "YulBlock",
"src": "2559:2:18",
"statements": []
},
"src": "2555:120:18"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "2495:186:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nativeSrc": "2533:5:18",
"nodeType": "YulTypedName",
"src": "2533:5:18",
"type": ""
},
{
"name": "end",
"nativeSrc": "2540:3:18",
"nodeType": "YulTypedName",
"src": "2540:3:18",
"type": ""
}
],
"src": "2495:186:18"
},
{
"body": {
"nativeSrc": "2766:464:18",
"nodeType": "YulBlock",
"src": "2766:464:18",
"statements": [
{
"body": {
"nativeSrc": "2792:431:18",
"nodeType": "YulBlock",
"src": "2792:431:18",
"statements": [
{
"nativeSrc": "2806:54:18",
"nodeType": "YulVariableDeclaration",
"src": "2806:54:18",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "2854:5:18",
"nodeType": "YulIdentifier",
"src": "2854:5:18"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "2822:31:18",
"nodeType": "YulIdentifier",
"src": "2822:31:18"
},
"nativeSrc": "2822:38:18",
"nodeType": "YulFunctionCall",
"src": "2822:38:18"
},
"variables": [
{
"name": "dataArea",
"nativeSrc": "2810:8:18",
"nodeType": "YulTypedName",
"src": "2810:8:18",
"type": ""
}
]
},
{
"nativeSrc": "2873:63:18",
"nodeType": "YulVariableDeclaration",
"src": "2873:63:18",
"value": {
"arguments": [
{
"name": "dataArea",
"nativeSrc": "2896:8:18",
"nodeType": "YulIdentifier",
"src": "2896:8:18"
},
{
"arguments": [
{
"name": "startIndex",
"nativeSrc": "2924:10:18",
"nodeType": "YulIdentifier",
"src": "2924:10:18"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "2906:17:18",
"nodeType": "YulIdentifier",
"src": "2906:17:18"
},
"nativeSrc": "2906:29:18",
"nodeType": "YulFunctionCall",
"src": "2906:29:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2892:3:18",
"nodeType": "YulIdentifier",
"src": "2892:3:18"
},
"nativeSrc": "2892:44:18",
"nodeType": "YulFunctionCall",
"src": "2892:44:18"
},
"variables": [
{
"name": "deleteStart",
"nativeSrc": "2877:11:18",
"nodeType": "YulTypedName",
"src": "2877:11:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3093:27:18",
"nodeType": "YulBlock",
"src": "3093:27:18",
"statements": [
{
"nativeSrc": "3095:23:18",
"nodeType": "YulAssignment",
"src": "3095:23:18",
"value": {
"name": "dataArea",
"nativeSrc": "3110:8:18",
"nodeType": "YulIdentifier",
"src": "3110:8:18"
},
"variableNames": [
{
"name": "deleteStart",
"nativeSrc": "3095:11:18",
"nodeType": "YulIdentifier",
"src": "3095:11:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nativeSrc": "3077:10:18",
"nodeType": "YulIdentifier",
"src": "3077:10:18"
},
{
"kind": "number",
"nativeSrc": "3089:2:18",
"nodeType": "YulLiteral",
"src": "3089:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "3074:2:18",
"nodeType": "YulIdentifier",
"src": "3074:2:18"
},
"nativeSrc": "3074:18:18",
"nodeType": "YulFunctionCall",
"src": "3074:18:18"
},
"nativeSrc": "3071:49:18",
"nodeType": "YulIf",
"src": "3071:49:18"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nativeSrc": "3162:11:18",
"nodeType": "YulIdentifier",
"src": "3162:11:18"
},
{
"arguments": [
{
"name": "dataArea",
"nativeSrc": "3179:8:18",
"nodeType": "YulIdentifier",
"src": "3179:8:18"
},
{
"arguments": [
{
"name": "len",
"nativeSrc": "3207:3:18",
"nodeType": "YulIdentifier",
"src": "3207:3:18"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "3189:17:18",
"nodeType": "YulIdentifier",
"src": "3189:17:18"
},
"nativeSrc": "3189:22:18",
"nodeType": "YulFunctionCall",
"src": "3189:22:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3175:3:18",
"nodeType": "YulIdentifier",
"src": "3175:3:18"
},
"nativeSrc": "3175:37:18",
"nodeType": "YulFunctionCall",
"src": "3175:37:18"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "3133:28:18",
"nodeType": "YulIdentifier",
"src": "3133:28:18"
},
"nativeSrc": "3133:80:18",
"nodeType": "YulFunctionCall",
"src": "3133:80:18"
},
"nativeSrc": "3133:80:18",
"nodeType": "YulExpressionStatement",
"src": "3133:80:18"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nativeSrc": "2783:3:18",
"nodeType": "YulIdentifier",
"src": "2783:3:18"
},
{
"kind": "number",
"nativeSrc": "2788:2:18",
"nodeType": "YulLiteral",
"src": "2788:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2780:2:18",
"nodeType": "YulIdentifier",
"src": "2780:2:18"
},
"nativeSrc": "2780:11:18",
"nodeType": "YulFunctionCall",
"src": "2780:11:18"
},
"nativeSrc": "2777:446:18",
"nodeType": "YulIf",
"src": "2777:446:18"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "2687:543:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nativeSrc": "2742:5:18",
"nodeType": "YulTypedName",
"src": "2742:5:18",
"type": ""
},
{
"name": "len",
"nativeSrc": "2749:3:18",
"nodeType": "YulTypedName",
"src": "2749:3:18",
"type": ""
},
{
"name": "startIndex",
"nativeSrc": "2754:10:18",
"nodeType": "YulTypedName",
"src": "2754:10:18",
"type": ""
}
],
"src": "2687:543:18"
},
{
"body": {
"nativeSrc": "3299:54:18",
"nodeType": "YulBlock",
"src": "3299:54:18",
"statements": [
{
"nativeSrc": "3309:37:18",
"nodeType": "YulAssignment",
"src": "3309:37:18",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "3334:4:18",
"nodeType": "YulIdentifier",
"src": "3334:4:18"
},
{
"name": "value",
"nativeSrc": "3340:5:18",
"nodeType": "YulIdentifier",
"src": "3340:5:18"
}
],
"functionName": {
"name": "shr",
"nativeSrc": "3330:3:18",
"nodeType": "YulIdentifier",
"src": "3330:3:18"
},
"nativeSrc": "3330:16:18",
"nodeType": "YulFunctionCall",
"src": "3330:16:18"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "3309:8:18",
"nodeType": "YulIdentifier",
"src": "3309:8:18"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "3236:117:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "3274:4:18",
"nodeType": "YulTypedName",
"src": "3274:4:18",
"type": ""
},
{
"name": "value",
"nativeSrc": "3280:5:18",
"nodeType": "YulTypedName",
"src": "3280:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "3290:8:18",
"nodeType": "YulTypedName",
"src": "3290:8:18",
"type": ""
}
],
"src": "3236:117:18"
},
{
"body": {
"nativeSrc": "3410:118:18",
"nodeType": "YulBlock",
"src": "3410:118:18",
"statements": [
{
"nativeSrc": "3420:68:18",
"nodeType": "YulVariableDeclaration",
"src": "3420:68:18",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3469:1:18",
"nodeType": "YulLiteral",
"src": "3469:1:18",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nativeSrc": "3472:5:18",
"nodeType": "YulIdentifier",
"src": "3472:5:18"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "3465:3:18",
"nodeType": "YulIdentifier",
"src": "3465:3:18"
},
"nativeSrc": "3465:13:18",
"nodeType": "YulFunctionCall",
"src": "3465:13:18"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3484:1:18",
"nodeType": "YulLiteral",
"src": "3484:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nativeSrc": "3480:3:18",
"nodeType": "YulIdentifier",
"src": "3480:3:18"
},
"nativeSrc": "3480:6:18",
"nodeType": "YulFunctionCall",
"src": "3480:6:18"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "3436:28:18",
"nodeType": "YulIdentifier",
"src": "3436:28:18"
},
"nativeSrc": "3436:51:18",
"nodeType": "YulFunctionCall",
"src": "3436:51:18"
}
],
"functionName": {
"name": "not",
"nativeSrc": "3432:3:18",
"nodeType": "YulIdentifier",
"src": "3432:3:18"
},
"nativeSrc": "3432:56:18",
"nodeType": "YulFunctionCall",
"src": "3432:56:18"
},
"variables": [
{
"name": "mask",
"nativeSrc": "3424:4:18",
"nodeType": "YulTypedName",
"src": "3424:4:18",
"type": ""
}
]
},
{
"nativeSrc": "3497:25:18",
"nodeType": "YulAssignment",
"src": "3497:25:18",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3511:4:18",
"nodeType": "YulIdentifier",
"src": "3511:4:18"
},
{
"name": "mask",
"nativeSrc": "3517:4:18",
"nodeType": "YulIdentifier",
"src": "3517:4:18"
}
],
"functionName": {
"name": "and",
"nativeSrc": "3507:3:18",
"nodeType": "YulIdentifier",
"src": "3507:3:18"
},
"nativeSrc": "3507:15:18",
"nodeType": "YulFunctionCall",
"src": "3507:15:18"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "3497:6:18",
"nodeType": "YulIdentifier",
"src": "3497:6:18"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nativeSrc": "3359:169:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "3387:4:18",
"nodeType": "YulTypedName",
"src": "3387:4:18",
"type": ""
},
{
"name": "bytes",
"nativeSrc": "3393:5:18",
"nodeType": "YulTypedName",
"src": "3393:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "3403:6:18",
"nodeType": "YulTypedName",
"src": "3403:6:18",
"type": ""
}
],
"src": "3359:169:18"
},
{
"body": {
"nativeSrc": "3614:214:18",
"nodeType": "YulBlock",
"src": "3614:214:18",
"statements": [
{
"nativeSrc": "3747:37:18",
"nodeType": "YulAssignment",
"src": "3747:37:18",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3774:4:18",
"nodeType": "YulIdentifier",
"src": "3774:4:18"
},
{
"name": "len",
"nativeSrc": "3780:3:18",
"nodeType": "YulIdentifier",
"src": "3780:3:18"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "3755:18:18",
"nodeType": "YulIdentifier",
"src": "3755:18:18"
},
"nativeSrc": "3755:29:18",
"nodeType": "YulFunctionCall",
"src": "3755:29:18"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "3747:4:18",
"nodeType": "YulIdentifier",
"src": "3747:4:18"
}
]
},
{
"nativeSrc": "3793:29:18",
"nodeType": "YulAssignment",
"src": "3793:29:18",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3804:4:18",
"nodeType": "YulIdentifier",
"src": "3804:4:18"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3814:1:18",
"nodeType": "YulLiteral",
"src": "3814:1:18",
"type": "",
"value": "2"
},
{
"name": "len",
"nativeSrc": "3817:3:18",
"nodeType": "YulIdentifier",
"src": "3817:3:18"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "3810:3:18",
"nodeType": "YulIdentifier",
"src": "3810:3:18"
},
"nativeSrc": "3810:11:18",
"nodeType": "YulFunctionCall",
"src": "3810:11:18"
}
],
"functionName": {
"name": "or",
"nativeSrc": "3801:2:18",
"nodeType": "YulIdentifier",
"src": "3801:2:18"
},
"nativeSrc": "3801:21:18",
"nodeType": "YulFunctionCall",
"src": "3801:21:18"
},
"variableNames": [
{
"name": "used",
"nativeSrc": "3793:4:18",
"nodeType": "YulIdentifier",
"src": "3793:4:18"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "3533:295:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "3595:4:18",
"nodeType": "YulTypedName",
"src": "3595:4:18",
"type": ""
},
{
"name": "len",
"nativeSrc": "3601:3:18",
"nodeType": "YulTypedName",
"src": "3601:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nativeSrc": "3609:4:18",
"nodeType": "YulTypedName",
"src": "3609:4:18",
"type": ""
}
],
"src": "3533:295:18"
},
{
"body": {
"nativeSrc": "3925:1303:18",
"nodeType": "YulBlock",
"src": "3925:1303:18",
"statements": [
{
"nativeSrc": "3936:51:18",
"nodeType": "YulVariableDeclaration",
"src": "3936:51:18",
"value": {
"arguments": [
{
"name": "src",
"nativeSrc": "3983:3:18",
"nodeType": "YulIdentifier",
"src": "3983:3:18"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "3950:32:18",
"nodeType": "YulIdentifier",
"src": "3950:32:18"
},
"nativeSrc": "3950:37:18",
"nodeType": "YulFunctionCall",
"src": "3950:37:18"
},
"variables": [
{
"name": "newLen",
"nativeSrc": "3940:6:18",
"nodeType": "YulTypedName",
"src": "3940:6:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4072:22:18",
"nodeType": "YulBlock",
"src": "4072:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "4074:16:18",
"nodeType": "YulIdentifier",
"src": "4074:16:18"
},
"nativeSrc": "4074:18:18",
"nodeType": "YulFunctionCall",
"src": "4074:18:18"
},
"nativeSrc": "4074:18:18",
"nodeType": "YulExpressionStatement",
"src": "4074:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4044:6:18",
"nodeType": "YulIdentifier",
"src": "4044:6:18"
},
{
"kind": "number",
"nativeSrc": "4052:18:18",
"nodeType": "YulLiteral",
"src": "4052:18:18",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4041:2:18",
"nodeType": "YulIdentifier",
"src": "4041:2:18"
},
"nativeSrc": "4041:30:18",
"nodeType": "YulFunctionCall",
"src": "4041:30:18"
},
"nativeSrc": "4038:56:18",
"nodeType": "YulIf",
"src": "4038:56:18"
},
{
"nativeSrc": "4104:52:18",
"nodeType": "YulVariableDeclaration",
"src": "4104:52:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "4150:4:18",
"nodeType": "YulIdentifier",
"src": "4150:4:18"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "4144:5:18",
"nodeType": "YulIdentifier",
"src": "4144:5:18"
},
"nativeSrc": "4144:11:18",
"nodeType": "YulFunctionCall",
"src": "4144:11:18"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nativeSrc": "4118:25:18",
"nodeType": "YulIdentifier",
"src": "4118:25:18"
},
"nativeSrc": "4118:38:18",
"nodeType": "YulFunctionCall",
"src": "4118:38:18"
},
"variables": [
{
"name": "oldLen",
"nativeSrc": "4108:6:18",
"nodeType": "YulTypedName",
"src": "4108:6:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4249:4:18",
"nodeType": "YulIdentifier",
"src": "4249:4:18"
},
{
"name": "oldLen",
"nativeSrc": "4255:6:18",
"nodeType": "YulIdentifier",
"src": "4255:6:18"
},
{
"name": "newLen",
"nativeSrc": "4263:6:18",
"nodeType": "YulIdentifier",
"src": "4263:6:18"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "4203:45:18",
"nodeType": "YulIdentifier",
"src": "4203:45:18"
},
"nativeSrc": "4203:67:18",
"nodeType": "YulFunctionCall",
"src": "4203:67:18"
},
"nativeSrc": "4203:67:18",
"nodeType": "YulExpressionStatement",
"src": "4203:67:18"
},
{
"nativeSrc": "4280:18:18",
"nodeType": "YulVariableDeclaration",
"src": "4280:18:18",
"value": {
"kind": "number",
"nativeSrc": "4297:1:18",
"nodeType": "YulLiteral",
"src": "4297:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nativeSrc": "4284:9:18",
"nodeType": "YulTypedName",
"src": "4284:9:18",
"type": ""
}
]
},
{
"nativeSrc": "4308:17:18",
"nodeType": "YulAssignment",
"src": "4308:17:18",
"value": {
"kind": "number",
"nativeSrc": "4321:4:18",
"nodeType": "YulLiteral",
"src": "4321:4:18",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "4308:9:18",
"nodeType": "YulIdentifier",
"src": "4308:9:18"
}
]
},
{
"cases": [
{
"body": {
"nativeSrc": "4372:611:18",
"nodeType": "YulBlock",
"src": "4372:611:18",
"statements": [
{
"nativeSrc": "4386:37:18",
"nodeType": "YulVariableDeclaration",
"src": "4386:37:18",
"value": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4405:6:18",
"nodeType": "YulIdentifier",
"src": "4405:6:18"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "4417:4:18",
"nodeType": "YulLiteral",
"src": "4417:4:18",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nativeSrc": "4413:3:18",
"nodeType": "YulIdentifier",
"src": "4413:3:18"
},
"nativeSrc": "4413:9:18",
"nodeType": "YulFunctionCall",
"src": "4413:9:18"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4401:3:18",
"nodeType": "YulIdentifier",
"src": "4401:3:18"
},
"nativeSrc": "4401:22:18",
"nodeType": "YulFunctionCall",
"src": "4401:22:18"
},
"variables": [
{
"name": "loopEnd",
"nativeSrc": "4390:7:18",
"nodeType": "YulTypedName",
"src": "4390:7:18",
"type": ""
}
]
},
{
"nativeSrc": "4437:51:18",
"nodeType": "YulVariableDeclaration",
"src": "4437:51:18",
"value": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4483:4:18",
"nodeType": "YulIdentifier",
"src": "4483:4:18"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "4451:31:18",
"nodeType": "YulIdentifier",
"src": "4451:31:18"
},
"nativeSrc": "4451:37:18",
"nodeType": "YulFunctionCall",
"src": "4451:37:18"
},
"variables": [
{
"name": "dstPtr",
"nativeSrc": "4441:6:18",
"nodeType": "YulTypedName",
"src": "4441:6:18",
"type": ""
}
]
},
{
"nativeSrc": "4501:10:18",
"nodeType": "YulVariableDeclaration",
"src": "4501:10:18",
"value": {
"kind": "number",
"nativeSrc": "4510:1:18",
"nodeType": "YulLiteral",
"src": "4510:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "4505:1:18",
"nodeType": "YulTypedName",
"src": "4505:1:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4569:163:18",
"nodeType": "YulBlock",
"src": "4569:163:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4594:6:18",
"nodeType": "YulIdentifier",
"src": "4594:6:18"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "4612:3:18",
"nodeType": "YulIdentifier",
"src": "4612:3:18"
},
{
"name": "srcOffset",
"nativeSrc": "4617:9:18",
"nodeType": "YulIdentifier",
"src": "4617:9:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4608:3:18",
"nodeType": "YulIdentifier",
"src": "4608:3:18"
},
"nativeSrc": "4608:19:18",
"nodeType": "YulFunctionCall",
"src": "4608:19:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4602:5:18",
"nodeType": "YulIdentifier",
"src": "4602:5:18"
},
"nativeSrc": "4602:26:18",
"nodeType": "YulFunctionCall",
"src": "4602:26:18"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4587:6:18",
"nodeType": "YulIdentifier",
"src": "4587:6:18"
},
"nativeSrc": "4587:42:18",
"nodeType": "YulFunctionCall",
"src": "4587:42:18"
},
"nativeSrc": "4587:42:18",
"nodeType": "YulExpressionStatement",
"src": "4587:42:18"
},
{
"nativeSrc": "4646:24:18",
"nodeType": "YulAssignment",
"src": "4646:24:18",
"value": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4660:6:18",
"nodeType": "YulIdentifier",
"src": "4660:6:18"
},
{
"kind": "number",
"nativeSrc": "4668:1:18",
"nodeType": "YulLiteral",
"src": "4668:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4656:3:18",
"nodeType": "YulIdentifier",
"src": "4656:3:18"
},
"nativeSrc": "4656:14:18",
"nodeType": "YulFunctionCall",
"src": "4656:14:18"
},
"variableNames": [
{
"name": "dstPtr",
"nativeSrc": "4646:6:18",
"nodeType": "YulIdentifier",
"src": "4646:6:18"
}
]
},
{
"nativeSrc": "4687:31:18",
"nodeType": "YulAssignment",
"src": "4687:31:18",
"value": {
"arguments": [
{
"name": "srcOffset",
"nativeSrc": "4704:9:18",
"nodeType": "YulIdentifier",
"src": "4704:9:18"
},
{
"kind": "number",
"nativeSrc": "4715:2:18",
"nodeType": "YulLiteral",
"src": "4715:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4700:3:18",
"nodeType": "YulIdentifier",
"src": "4700:3:18"
},
"nativeSrc": "4700:18:18",
"nodeType": "YulFunctionCall",
"src": "4700:18:18"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "4687:9:18",
"nodeType": "YulIdentifier",
"src": "4687:9:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "4535:1:18",
"nodeType": "YulIdentifier",
"src": "4535:1:18"
},
{
"name": "loopEnd",
"nativeSrc": "4538:7:18",
"nodeType": "YulIdentifier",
"src": "4538:7:18"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "4532:2:18",
"nodeType": "YulIdentifier",
"src": "4532:2:18"
},
"nativeSrc": "4532:14:18",
"nodeType": "YulFunctionCall",
"src": "4532:14:18"
},
"nativeSrc": "4524:208:18",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "4547:21:18",
"nodeType": "YulBlock",
"src": "4547:21:18",
"statements": [
{
"nativeSrc": "4549:17:18",
"nodeType": "YulAssignment",
"src": "4549:17:18",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "4558:1:18",
"nodeType": "YulIdentifier",
"src": "4558:1:18"
},
{
"kind": "number",
"nativeSrc": "4561:4:18",
"nodeType": "YulLiteral",
"src": "4561:4:18",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4554:3:18",
"nodeType": "YulIdentifier",
"src": "4554:3:18"
},
"nativeSrc": "4554:12:18",
"nodeType": "YulFunctionCall",
"src": "4554:12:18"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "4549:1:18",
"nodeType": "YulIdentifier",
"src": "4549:1:18"
}
]
}
]
},
"pre": {
"nativeSrc": "4528:3:18",
"nodeType": "YulBlock",
"src": "4528:3:18",
"statements": []
},
"src": "4524:208:18"
},
{
"body": {
"nativeSrc": "4768:156:18",
"nodeType": "YulBlock",
"src": "4768:156:18",
"statements": [
{
"nativeSrc": "4786:43:18",
"nodeType": "YulVariableDeclaration",
"src": "4786:43:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "4813:3:18",
"nodeType": "YulIdentifier",
"src": "4813:3:18"
},
{
"name": "srcOffset",
"nativeSrc": "4818:9:18",
"nodeType": "YulIdentifier",
"src": "4818:9:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4809:3:18",
"nodeType": "YulIdentifier",
"src": "4809:3:18"
},
"nativeSrc": "4809:19:18",
"nodeType": "YulFunctionCall",
"src": "4809:19:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4803:5:18",
"nodeType": "YulIdentifier",
"src": "4803:5:18"
},
"nativeSrc": "4803:26:18",
"nodeType": "YulFunctionCall",
"src": "4803:26:18"
},
"variables": [
{
"name": "lastValue",
"nativeSrc": "4790:9:18",
"nodeType": "YulTypedName",
"src": "4790:9:18",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4853:6:18",
"nodeType": "YulIdentifier",
"src": "4853:6:18"
},
{
"arguments": [
{
"name": "lastValue",
"nativeSrc": "4880:9:18",
"nodeType": "YulIdentifier",
"src": "4880:9:18"
},
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "4895:6:18",
"nodeType": "YulIdentifier",
"src": "4895:6:18"
},
{
"kind": "number",
"nativeSrc": "4903:4:18",
"nodeType": "YulLiteral",
"src": "4903:4:18",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4891:3:18",
"nodeType": "YulIdentifier",
"src": "4891:3:18"
},
"nativeSrc": "4891:17:18",
"nodeType": "YulFunctionCall",
"src": "4891:17:18"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "4861:18:18",
"nodeType": "YulIdentifier",
"src": "4861:18:18"
},
"nativeSrc": "4861:48:18",
"nodeType": "YulFunctionCall",
"src": "4861:48:18"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4846:6:18",
"nodeType": "YulIdentifier",
"src": "4846:6:18"
},
"nativeSrc": "4846:64:18",
"nodeType": "YulFunctionCall",
"src": "4846:64:18"
},
"nativeSrc": "4846:64:18",
"nodeType": "YulExpressionStatement",
"src": "4846:64:18"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nativeSrc": "4751:7:18",
"nodeType": "YulIdentifier",
"src": "4751:7:18"
},
{
"name": "newLen",
"nativeSrc": "4760:6:18",
"nodeType": "YulIdentifier",
"src": "4760:6:18"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "4748:2:18",
"nodeType": "YulIdentifier",
"src": "4748:2:18"
},
"nativeSrc": "4748:19:18",
"nodeType": "YulFunctionCall",
"src": "4748:19:18"
},
"nativeSrc": "4745:179:18",
"nodeType": "YulIf",
"src": "4745:179:18"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4944:4:18",
"nodeType": "YulIdentifier",
"src": "4944:4:18"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "4958:6:18",
"nodeType": "YulIdentifier",
"src": "4958:6:18"
},
{
"kind": "number",
"nativeSrc": "4966:1:18",
"nodeType": "YulLiteral",
"src": "4966:1:18",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "4954:3:18",
"nodeType": "YulIdentifier",
"src": "4954:3:18"
},
"nativeSrc": "4954:14:18",
"nodeType": "YulFunctionCall",
"src": "4954:14:18"
},
{
"kind": "number",
"nativeSrc": "4970:1:18",
"nodeType": "YulLiteral",
"src": "4970:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4950:3:18",
"nodeType": "YulIdentifier",
"src": "4950:3:18"
},
"nativeSrc": "4950:22:18",
"nodeType": "YulFunctionCall",
"src": "4950:22:18"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4937:6:18",
"nodeType": "YulIdentifier",
"src": "4937:6:18"
},
"nativeSrc": "4937:36:18",
"nodeType": "YulFunctionCall",
"src": "4937:36:18"
},
"nativeSrc": "4937:36:18",
"nodeType": "YulExpressionStatement",
"src": "4937:36:18"
}
]
},
"nativeSrc": "4365:618:18",
"nodeType": "YulCase",
"src": "4365:618:18",
"value": {
"kind": "number",
"nativeSrc": "4370:1:18",
"nodeType": "YulLiteral",
"src": "4370:1:18",
"type": "",
"value": "1"
}
},
{
"body": {
"nativeSrc": "5000:222:18",
"nodeType": "YulBlock",
"src": "5000:222:18",
"statements": [
{
"nativeSrc": "5014:14:18",
"nodeType": "YulVariableDeclaration",
"src": "5014:14:18",
"value": {
"kind": "number",
"nativeSrc": "5027:1:18",
"nodeType": "YulLiteral",
"src": "5027:1:18",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nativeSrc": "5018:5:18",
"nodeType": "YulTypedName",
"src": "5018:5:18",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "5051:67:18",
"nodeType": "YulBlock",
"src": "5051:67:18",
"statements": [
{
"nativeSrc": "5069:35:18",
"nodeType": "YulAssignment",
"src": "5069:35:18",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "5088:3:18",
"nodeType": "YulIdentifier",
"src": "5088:3:18"
},
{
"name": "srcOffset",
"nativeSrc": "5093:9:18",
"nodeType": "YulIdentifier",
"src": "5093:9:18"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5084:3:18",
"nodeType": "YulIdentifier",
"src": "5084:3:18"
},
"nativeSrc": "5084:19:18",
"nodeType": "YulFunctionCall",
"src": "5084:19:18"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "5078:5:18",
"nodeType": "YulIdentifier",
"src": "5078:5:18"
},
"nativeSrc": "5078:26:18",
"nodeType": "YulFunctionCall",
"src": "5078:26:18"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "5069:5:18",
"nodeType": "YulIdentifier",
"src": "5069:5:18"
}
]
}
]
},
"condition": {
"name": "newLen",
"nativeSrc": "5044:6:18",
"nodeType": "YulIdentifier",
"src": "5044:6:18"
},
"nativeSrc": "5041:77:18",
"nodeType": "YulIf",
"src": "5041:77:18"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "5138:4:18",
"nodeType": "YulIdentifier",
"src": "5138:4:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "5197:5:18",
"nodeType": "YulIdentifier",
"src": "5197:5:18"
},
{
"name": "newLen",
"nativeSrc": "5204:6:18",
"nodeType": "YulIdentifier",
"src": "5204:6:18"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "5144:52:18",
"nodeType": "YulIdentifier",
"src": "5144:52:18"
},
"nativeSrc": "5144:67:18",
"nodeType": "YulFunctionCall",
"src": "5144:67:18"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "5131:6:18",
"nodeType": "YulIdentifier",
"src": "5131:6:18"
},
"nativeSrc": "5131:81:18",
"nodeType": "YulFunctionCall",
"src": "5131:81:18"
},
"nativeSrc": "5131:81:18",
"nodeType": "YulExpressionStatement",
"src": "5131:81:18"
}
]
},
"nativeSrc": "4992:230:18",
"nodeType": "YulCase",
"src": "4992:230:18",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4345:6:18",
"nodeType": "YulIdentifier",
"src": "4345:6:18"
},
{
"kind": "number",
"nativeSrc": "4353:2:18",
"nodeType": "YulLiteral",
"src": "4353:2:18",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4342:2:18",
"nodeType": "YulIdentifier",
"src": "4342:2:18"
},
"nativeSrc": "4342:14:18",
"nodeType": "YulFunctionCall",
"src": "4342:14:18"
},
"nativeSrc": "4335:887:18",
"nodeType": "YulSwitch",
"src": "4335:887:18"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nativeSrc": "3833:1395:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "3914:4:18",
"nodeType": "YulTypedName",
"src": "3914:4:18",
"type": ""
},
{
"name": "src",
"nativeSrc": "3920:3:18",
"nodeType": "YulTypedName",
"src": "3920:3:18",
"type": ""
}
],
"src": "3833:1395:18"
},
{
"body": {
"nativeSrc": "5262:152:18",
"nodeType": "YulBlock",
"src": "5262:152:18",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "5279:1:18",
"nodeType": "YulLiteral",
"src": "5279:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "5282:77:18",
"nodeType": "YulLiteral",
"src": "5282:77:18",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5272:6:18",
"nodeType": "YulIdentifier",
"src": "5272:6:18"
},
"nativeSrc": "5272:88:18",
"nodeType": "YulFunctionCall",
"src": "5272:88:18"
},
"nativeSrc": "5272:88:18",
"nodeType": "YulExpressionStatement",
"src": "5272:88:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "5376:1:18",
"nodeType": "YulLiteral",
"src": "5376:1:18",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "5379:4:18",
"nodeType": "YulLiteral",
"src": "5379:4:18",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5369:6:18",
"nodeType": "YulIdentifier",
"src": "5369:6:18"
},
"nativeSrc": "5369:15:18",
"nodeType": "YulFunctionCall",
"src": "5369:15:18"
},
"nativeSrc": "5369:15:18",
"nodeType": "YulExpressionStatement",
"src": "5369:15:18"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "5400:1:18",
"nodeType": "YulLiteral",
"src": "5400:1:18",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "5403:4:18",
"nodeType": "YulLiteral",
"src": "5403:4:18",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "5393:6:18",
"nodeType": "YulIdentifier",
"src": "5393:6:18"
},
"nativeSrc": "5393:15:18",
"nodeType": "YulFunctionCall",
"src": "5393:15:18"
},
"nativeSrc": "5393:15:18",
"nodeType": "YulExpressionStatement",
"src": "5393:15:18"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "5234:180:18",
"nodeType": "YulFunctionDefinition",
"src": "5234:180:18"
},
{
"body": {
"nativeSrc": "5471:51:18",
"nodeType": "YulBlock",
"src": "5471:51:18",
"statements": [
{
"nativeSrc": "5481:34:18",
"nodeType": "YulAssignment",
"src": "5481:34:18",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "5506:1:18",
"nodeType": "YulLiteral",
"src": "5506:1:18",
"type": "",
"value": "1"
},
{
"name": "value",
"nativeSrc": "5509:5:18",
"nodeType": "YulIdentifier",
"src": "5509:5:18"
}
],
"functionName": {
"name": "shr",
"nativeSrc": "5502:3:18",
"nodeType": "YulIdentifier",
"src": "5502:3:18"
},
"nativeSrc": "5502:13:18",
"nodeType": "YulFunctionCall",
"src": "5502:13:18"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "5481:8:18",
"nodeType": "YulIdentifier",
"src": "5481:8:18"
}
]
}
]
},
"name": "shift_right_1_unsigned",
"nativeSrc": "5420:102:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5452:5:18",
"nodeType": "YulTypedName",
"src": "5452:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "5462:8:18",
"nodeType": "YulTypedName",
"src": "5462:8:18",
"type": ""
}
],
"src": "5420:102:18"
},
{
"body": {
"nativeSrc": "5601:775:18",
"nodeType": "YulBlock",
"src": "5601:775:18",
"statements": [
{
"nativeSrc": "5611:15:18",
"nodeType": "YulAssignment",
"src": "5611:15:18",
"value": {
"name": "_power",
"nativeSrc": "5620:6:18",
"nodeType": "YulIdentifier",
"src": "5620:6:18"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "5611:5:18",
"nodeType": "YulIdentifier",
"src": "5611:5:18"
}
]
},
{
"nativeSrc": "5635:14:18",
"nodeType": "YulAssignment",
"src": "5635:14:18",
"value": {
"name": "_base",
"nativeSrc": "5644:5:18",
"nodeType": "YulIdentifier",
"src": "5644:5:18"
},
"variableNames": [
{
"name": "base",
"nativeSrc": "5635:4:18",
"nodeType": "YulIdentifier",
"src": "5635:4:18"
}
]
},
{
"body": {
"nativeSrc": "5693:677:18",
"nodeType": "YulBlock",
"src": "5693:677:18",
"statements": [
{
"body": {
"nativeSrc": "5781:22:18",
"nodeType": "YulBlock",
"src": "5781:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "5783:16:18",
"nodeType": "YulIdentifier",
"src": "5783:16:18"
},
"nativeSrc": "5783:18:18",
"nodeType": "YulFunctionCall",
"src": "5783:18:18"
},
"nativeSrc": "5783:18:18",
"nodeType": "YulExpressionStatement",
"src": "5783:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nativeSrc": "5759:4:18",
"nodeType": "YulIdentifier",
"src": "5759:4:18"
},
{
"arguments": [
{
"name": "max",
"nativeSrc": "5769:3:18",
"nodeType": "YulIdentifier",
"src": "5769:3:18"
},
{
"name": "base",
"nativeSrc": "5774:4:18",
"nodeType": "YulIdentifier",
"src": "5774:4:18"
}
],
"functionName": {
"name": "div",
"nativeSrc": "5765:3:18",
"nodeType": "YulIdentifier",
"src": "5765:3:18"
},
"nativeSrc": "5765:14:18",
"nodeType": "YulFunctionCall",
"src": "5765:14:18"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "5756:2:18",
"nodeType": "YulIdentifier",
"src": "5756:2:18"
},
"nativeSrc": "5756:24:18",
"nodeType": "YulFunctionCall",
"src": "5756:24:18"
},
"nativeSrc": "5753:50:18",
"nodeType": "YulIf",
"src": "5753:50:18"
},
{
"body": {
"nativeSrc": "5848:419:18",
"nodeType": "YulBlock",
"src": "5848:419:18",
"statements": [
{
"nativeSrc": "6228:25:18",
"nodeType": "YulAssignment",
"src": "6228:25:18",
"value": {
"arguments": [
{
"name": "power",
"nativeSrc": "6241:5:18",
"nodeType": "YulIdentifier",
"src": "6241:5:18"
},
{
"name": "base",
"nativeSrc": "6248:4:18",
"nodeType": "YulIdentifier",
"src": "6248:4:18"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "6237:3:18",
"nodeType": "YulIdentifier",
"src": "6237:3:18"
},
"nativeSrc": "6237:16:18",
"nodeType": "YulFunctionCall",
"src": "6237:16:18"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "6228:5:18",
"nodeType": "YulIdentifier",
"src": "6228:5:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nativeSrc": "5823:8:18",
"nodeType": "YulIdentifier",
"src": "5823:8:18"
},
{
"kind": "number",
"nativeSrc": "5833:1:18",
"nodeType": "YulLiteral",
"src": "5833:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "5819:3:18",
"nodeType": "YulIdentifier",
"src": "5819:3:18"
},
"nativeSrc": "5819:16:18",
"nodeType": "YulFunctionCall",
"src": "5819:16:18"
},
"nativeSrc": "5816:451:18",
"nodeType": "YulIf",
"src": "5816:451:18"
},
{
"nativeSrc": "6280:23:18",
"nodeType": "YulAssignment",
"src": "6280:23:18",
"value": {
"arguments": [
{
"name": "base",
"nativeSrc": "6292:4:18",
"nodeType": "YulIdentifier",
"src": "6292:4:18"
},
{
"name": "base",
"nativeSrc": "6298:4:18",
"nodeType": "YulIdentifier",
"src": "6298:4:18"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "6288:3:18",
"nodeType": "YulIdentifier",
"src": "6288:3:18"
},
"nativeSrc": "6288:15:18",
"nodeType": "YulFunctionCall",
"src": "6288:15:18"
},
"variableNames": [
{
"name": "base",
"nativeSrc": "6280:4:18",
"nodeType": "YulIdentifier",
"src": "6280:4:18"
}
]
},
{
"nativeSrc": "6316:44:18",
"nodeType": "YulAssignment",
"src": "6316:44:18",
"value": {
"arguments": [
{
"name": "exponent",
"nativeSrc": "6351:8:18",
"nodeType": "YulIdentifier",
"src": "6351:8:18"
}
],
"functionName": {
"name": "shift_right_1_unsigned",
"nativeSrc": "6328:22:18",
"nodeType": "YulIdentifier",
"src": "6328:22:18"
},
"nativeSrc": "6328:32:18",
"nodeType": "YulFunctionCall",
"src": "6328:32:18"
},
"variableNames": [
{
"name": "exponent",
"nativeSrc": "6316:8:18",
"nodeType": "YulIdentifier",
"src": "6316:8:18"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nativeSrc": "5669:8:18",
"nodeType": "YulIdentifier",
"src": "5669:8:18"
},
{
"kind": "number",
"nativeSrc": "5679:1:18",
"nodeType": "YulLiteral",
"src": "5679:1:18",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "5666:2:18",
"nodeType": "YulIdentifier",
"src": "5666:2:18"
},
"nativeSrc": "5666:15:18",
"nodeType": "YulFunctionCall",
"src": "5666:15:18"
},
"nativeSrc": "5658:712:18",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "5682:2:18",
"nodeType": "YulBlock",
"src": "5682:2:18",
"statements": []
},
"pre": {
"nativeSrc": "5662:3:18",
"nodeType": "YulBlock",
"src": "5662:3:18",
"statements": []
},
"src": "5658:712:18"
}
]
},
"name": "checked_exp_helper",
"nativeSrc": "5528:848:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "_power",
"nativeSrc": "5556:6:18",
"nodeType": "YulTypedName",
"src": "5556:6:18",
"type": ""
},
{
"name": "_base",
"nativeSrc": "5564:5:18",
"nodeType": "YulTypedName",
"src": "5564:5:18",
"type": ""
},
{
"name": "exponent",
"nativeSrc": "5571:8:18",
"nodeType": "YulTypedName",
"src": "5571:8:18",
"type": ""
},
{
"name": "max",
"nativeSrc": "5581:3:18",
"nodeType": "YulTypedName",
"src": "5581:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nativeSrc": "5589:5:18",
"nodeType": "YulTypedName",
"src": "5589:5:18",
"type": ""
},
{
"name": "base",
"nativeSrc": "5596:4:18",
"nodeType": "YulTypedName",
"src": "5596:4:18",
"type": ""
}
],
"src": "5528:848:18"
},
{
"body": {
"nativeSrc": "6442:1013:18",
"nodeType": "YulBlock",
"src": "6442:1013:18",
"statements": [
{
"body": {
"nativeSrc": "6637:20:18",
"nodeType": "YulBlock",
"src": "6637:20:18",
"statements": [
{
"nativeSrc": "6639:10:18",
"nodeType": "YulAssignment",
"src": "6639:10:18",
"value": {
"kind": "number",
"nativeSrc": "6648:1:18",
"nodeType": "YulLiteral",
"src": "6648:1:18",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "6639:5:18",
"nodeType": "YulIdentifier",
"src": "6639:5:18"
}
]
},
{
"nativeSrc": "6650:5:18",
"nodeType": "YulLeave",
"src": "6650:5:18"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nativeSrc": "6627:8:18",
"nodeType": "YulIdentifier",
"src": "6627:8:18"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "6620:6:18",
"nodeType": "YulIdentifier",
"src": "6620:6:18"
},
"nativeSrc": "6620:16:18",
"nodeType": "YulFunctionCall",
"src": "6620:16:18"
},
"nativeSrc": "6617:40:18",
"nodeType": "YulIf",
"src": "6617:40:18"
},
{
"body": {
"nativeSrc": "6682:20:18",
"nodeType": "YulBlock",
"src": "6682:20:18",
"statements": [
{
"nativeSrc": "6684:10:18",
"nodeType": "YulAssignment",
"src": "6684:10:18",
"value": {
"kind": "number",
"nativeSrc": "6693:1:18",
"nodeType": "YulLiteral",
"src": "6693:1:18",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "6684:5:18",
"nodeType": "YulIdentifier",
"src": "6684:5:18"
}
]
},
{
"nativeSrc": "6695:5:18",
"nodeType": "YulLeave",
"src": "6695:5:18"
}
]
},
"condition": {
"arguments": [
{
"name": "base",
"nativeSrc": "6676:4:18",
"nodeType": "YulIdentifier",
"src": "6676:4:18"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "6669:6:18",
"nodeType": "YulIdentifier",
"src": "6669:6:18"
},
"nativeSrc": "6669:12:18",
"nodeType": "YulFunctionCall",
"src": "6669:12:18"
},
"nativeSrc": "6666:36:18",
"nodeType": "YulIf",
"src": "6666:36:18"
},
{
"cases": [
{
"body": {
"nativeSrc": "6812:20:18",
"nodeType": "YulBlock",
"src": "6812:20:18",
"statements": [
{
"nativeSrc": "6814:10:18",
"nodeType": "YulAssignment",
"src": "6814:10:18",
"value": {
"kind": "number",
"nativeSrc": "6823:1:18",
"nodeType": "YulLiteral",
"src": "6823:1:18",
"type": "",
"value": "1"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "6814:5:18",
"nodeType": "YulIdentifier",
"src": "6814:5:18"
}
]
},
{
"nativeSrc": "6825:5:18",
"nodeType": "YulLeave",
"src": "6825:5:18"
}
]
},
"nativeSrc": "6805:27:18",
"nodeType": "YulCase",
"src": "6805:27:18",
"value": {
"kind": "number",
"nativeSrc": "6810:1:18",
"nodeType": "YulLiteral",
"src": "6810:1:18",
"type": "",
"value": "1"
}
},
{
"body": {
"nativeSrc": "6856:176:18",
"nodeType": "YulBlock",
"src": "6856:176:18",
"statements": [
{
"body": {
"nativeSrc": "6891:22:18",
"nodeType": "YulBlock",
"src": "6891:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "6893:16:18",
"nodeType": "YulIdentifier",
"src": "6893:16:18"
},
"nativeSrc": "6893:18:18",
"nodeType": "YulFunctionCall",
"src": "6893:18:18"
},
"nativeSrc": "6893:18:18",
"nodeType": "YulExpressionStatement",
"src": "6893:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "exponent",
"nativeSrc": "6876:8:18",
"nodeType": "YulIdentifier",
"src": "6876:8:18"
},
{
"kind": "number",
"nativeSrc": "6886:3:18",
"nodeType": "YulLiteral",
"src": "6886:3:18",
"type": "",
"value": "255"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "6873:2:18",
"nodeType": "YulIdentifier",
"src": "6873:2:18"
},
"nativeSrc": "6873:17:18",
"nodeType": "YulFunctionCall",
"src": "6873:17:18"
},
"nativeSrc": "6870:43:18",
"nodeType": "YulIf",
"src": "6870:43:18"
},
{
"nativeSrc": "6926:25:18",
"nodeType": "YulAssignment",
"src": "6926:25:18",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6939:1:18",
"nodeType": "YulLiteral",
"src": "6939:1:18",
"type": "",
"value": "2"
},
{
"name": "exponent",
"nativeSrc": "6942:8:18",
"nodeType": "YulIdentifier",
"src": "6942:8:18"
}
],
"functionName": {
"name": "exp",
"nativeSrc": "6935:3:18",
"nodeType": "YulIdentifier",
"src": "6935:3:18"
},
"nativeSrc": "6935:16:18",
"nodeType": "YulFunctionCall",
"src": "6935:16:18"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "6926:5:18",
"nodeType": "YulIdentifier",
"src": "6926:5:18"
}
]
},
{
"body": {
"nativeSrc": "6982:22:18",
"nodeType": "YulBlock",
"src": "6982:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "6984:16:18",
"nodeType": "YulIdentifier",
"src": "6984:16:18"
},
"nativeSrc": "6984:18:18",
"nodeType": "YulFunctionCall",
"src": "6984:18:18"
},
"nativeSrc": "6984:18:18",
"nodeType": "YulExpressionStatement",
"src": "6984:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nativeSrc": "6970:5:18",
"nodeType": "YulIdentifier",
"src": "6970:5:18"
},
{
"name": "max",
"nativeSrc": "6977:3:18",
"nodeType": "YulIdentifier",
"src": "6977:3:18"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "6967:2:18",
"nodeType": "YulIdentifier",
"src": "6967:2:18"
},
"nativeSrc": "6967:14:18",
"nodeType": "YulFunctionCall",
"src": "6967:14:18"
},
"nativeSrc": "6964:40:18",
"nodeType": "YulIf",
"src": "6964:40:18"
},
{
"nativeSrc": "7017:5:18",
"nodeType": "YulLeave",
"src": "7017:5:18"
}
]
},
"nativeSrc": "6841:191:18",
"nodeType": "YulCase",
"src": "6841:191:18",
"value": {
"kind": "number",
"nativeSrc": "6846:1:18",
"nodeType": "YulLiteral",
"src": "6846:1:18",
"type": "",
"value": "2"
}
}
],
"expression": {
"name": "base",
"nativeSrc": "6762:4:18",
"nodeType": "YulIdentifier",
"src": "6762:4:18"
},
"nativeSrc": "6755:277:18",
"nodeType": "YulSwitch",
"src": "6755:277:18"
},
{
"body": {
"nativeSrc": "7164:123:18",
"nodeType": "YulBlock",
"src": "7164:123:18",
"statements": [
{
"nativeSrc": "7178:28:18",
"nodeType": "YulAssignment",
"src": "7178:28:18",
"value": {
"arguments": [
{
"name": "base",
"nativeSrc": "7191:4:18",
"nodeType": "YulIdentifier",
"src": "7191:4:18"
},
{
"name": "exponent",
"nativeSrc": "7197:8:18",
"nodeType": "YulIdentifier",
"src": "7197:8:18"
}
],
"functionName": {
"name": "exp",
"nativeSrc": "7187:3:18",
"nodeType": "YulIdentifier",
"src": "7187:3:18"
},
"nativeSrc": "7187:19:18",
"nodeType": "YulFunctionCall",
"src": "7187:19:18"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "7178:5:18",
"nodeType": "YulIdentifier",
"src": "7178:5:18"
}
]
},
{
"body": {
"nativeSrc": "7237:22:18",
"nodeType": "YulBlock",
"src": "7237:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "7239:16:18",
"nodeType": "YulIdentifier",
"src": "7239:16:18"
},
"nativeSrc": "7239:18:18",
"nodeType": "YulFunctionCall",
"src": "7239:18:18"
},
"nativeSrc": "7239:18:18",
"nodeType": "YulExpressionStatement",
"src": "7239:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nativeSrc": "7225:5:18",
"nodeType": "YulIdentifier",
"src": "7225:5:18"
},
{
"name": "max",
"nativeSrc": "7232:3:18",
"nodeType": "YulIdentifier",
"src": "7232:3:18"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "7222:2:18",
"nodeType": "YulIdentifier",
"src": "7222:2:18"
},
"nativeSrc": "7222:14:18",
"nodeType": "YulFunctionCall",
"src": "7222:14:18"
},
"nativeSrc": "7219:40:18",
"nodeType": "YulIf",
"src": "7219:40:18"
},
{
"nativeSrc": "7272:5:18",
"nodeType": "YulLeave",
"src": "7272:5:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nativeSrc": "7067:4:18",
"nodeType": "YulIdentifier",
"src": "7067:4:18"
},
{
"kind": "number",
"nativeSrc": "7073:2:18",
"nodeType": "YulLiteral",
"src": "7073:2:18",
"type": "",
"value": "11"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "7064:2:18",
"nodeType": "YulIdentifier",
"src": "7064:2:18"
},
"nativeSrc": "7064:12:18",
"nodeType": "YulFunctionCall",
"src": "7064:12:18"
},
{
"arguments": [
{
"name": "exponent",
"nativeSrc": "7081:8:18",
"nodeType": "YulIdentifier",
"src": "7081:8:18"
},
{
"kind": "number",
"nativeSrc": "7091:2:18",
"nodeType": "YulLiteral",
"src": "7091:2:18",
"type": "",
"value": "78"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "7078:2:18",
"nodeType": "YulIdentifier",
"src": "7078:2:18"
},
"nativeSrc": "7078:16:18",
"nodeType": "YulFunctionCall",
"src": "7078:16:18"
}
],
"functionName": {
"name": "and",
"nativeSrc": "7060:3:18",
"nodeType": "YulIdentifier",
"src": "7060:3:18"
},
"nativeSrc": "7060:35:18",
"nodeType": "YulFunctionCall",
"src": "7060:35:18"
},
{
"arguments": [
{
"arguments": [
{
"name": "base",
"nativeSrc": "7116:4:18",
"nodeType": "YulIdentifier",
"src": "7116:4:18"
},
{
"kind": "number",
"nativeSrc": "7122:3:18",
"nodeType": "YulLiteral",
"src": "7122:3:18",
"type": "",
"value": "307"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "7113:2:18",
"nodeType": "YulIdentifier",
"src": "7113:2:18"
},
"nativeSrc": "7113:13:18",
"nodeType": "YulFunctionCall",
"src": "7113:13:18"
},
{
"arguments": [
{
"name": "exponent",
"nativeSrc": "7131:8:18",
"nodeType": "YulIdentifier",
"src": "7131:8:18"
},
{
"kind": "number",
"nativeSrc": "7141:2:18",
"nodeType": "YulLiteral",
"src": "7141:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "7128:2:18",
"nodeType": "YulIdentifier",
"src": "7128:2:18"
},
"nativeSrc": "7128:16:18",
"nodeType": "YulFunctionCall",
"src": "7128:16:18"
}
],
"functionName": {
"name": "and",
"nativeSrc": "7109:3:18",
"nodeType": "YulIdentifier",
"src": "7109:3:18"
},
"nativeSrc": "7109:36:18",
"nodeType": "YulFunctionCall",
"src": "7109:36:18"
}
],
"functionName": {
"name": "or",
"nativeSrc": "7044:2:18",
"nodeType": "YulIdentifier",
"src": "7044:2:18"
},
"nativeSrc": "7044:111:18",
"nodeType": "YulFunctionCall",
"src": "7044:111:18"
},
"nativeSrc": "7041:246:18",
"nodeType": "YulIf",
"src": "7041:246:18"
},
{
"nativeSrc": "7297:57:18",
"nodeType": "YulAssignment",
"src": "7297:57:18",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "7331:1:18",
"nodeType": "YulLiteral",
"src": "7331:1:18",
"type": "",
"value": "1"
},
{
"name": "base",
"nativeSrc": "7334:4:18",
"nodeType": "YulIdentifier",
"src": "7334:4:18"
},
{
"name": "exponent",
"nativeSrc": "7340:8:18",
"nodeType": "YulIdentifier",
"src": "7340:8:18"
},
{
"name": "max",
"nativeSrc": "7350:3:18",
"nodeType": "YulIdentifier",
"src": "7350:3:18"
}
],
"functionName": {
"name": "checked_exp_helper",
"nativeSrc": "7312:18:18",
"nodeType": "YulIdentifier",
"src": "7312:18:18"
},
"nativeSrc": "7312:42:18",
"nodeType": "YulFunctionCall",
"src": "7312:42:18"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "7297:5:18",
"nodeType": "YulIdentifier",
"src": "7297:5:18"
},
{
"name": "base",
"nativeSrc": "7304:4:18",
"nodeType": "YulIdentifier",
"src": "7304:4:18"
}
]
},
{
"body": {
"nativeSrc": "7393:22:18",
"nodeType": "YulBlock",
"src": "7393:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "7395:16:18",
"nodeType": "YulIdentifier",
"src": "7395:16:18"
},
"nativeSrc": "7395:18:18",
"nodeType": "YulFunctionCall",
"src": "7395:18:18"
},
"nativeSrc": "7395:18:18",
"nodeType": "YulExpressionStatement",
"src": "7395:18:18"
}
]
},
"condition": {
"arguments": [
{
"name": "power",
"nativeSrc": "7370:5:18",
"nodeType": "YulIdentifier",
"src": "7370:5:18"
},
{
"arguments": [
{
"name": "max",
"nativeSrc": "7381:3:18",
"nodeType": "YulIdentifier",
"src": "7381:3:18"
},
{
"name": "base",
"nativeSrc": "7386:4:18",
"nodeType": "YulIdentifier",
"src": "7386:4:18"
}
],
"functionName": {
"name": "div",
"nativeSrc": "7377:3:18",
"nodeType": "YulIdentifier",
"src": "7377:3:18"
},
"nativeSrc": "7377:14:18",
"nodeType": "YulFunctionCall",
"src": "7377:14:18"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "7367:2:18",
"nodeType": "YulIdentifier",
"src": "7367:2:18"
},
"nativeSrc": "7367:25:18",
"nodeType": "YulFunctionCall",
"src": "7367:25:18"
},
"nativeSrc": "7364:51:18",
"nodeType": "YulIf",
"src": "7364:51:18"
},
{
"nativeSrc": "7424:25:18",
"nodeType": "YulAssignment",
"src": "7424:25:18",
"value": {
"arguments": [
{
"name": "power",
"nativeSrc": "7437:5:18",
"nodeType": "YulIdentifier",
"src": "7437:5:18"
},
{
"name": "base",
"nativeSrc": "7444:4:18",
"nodeType": "YulIdentifier",
"src": "7444:4:18"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "7433:3:18",
"nodeType": "YulIdentifier",
"src": "7433:3:18"
},
"nativeSrc": "7433:16:18",
"nodeType": "YulFunctionCall",
"src": "7433:16:18"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "7424:5:18",
"nodeType": "YulIdentifier",
"src": "7424:5:18"
}
]
}
]
},
"name": "checked_exp_unsigned",
"nativeSrc": "6382:1073:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nativeSrc": "6412:4:18",
"nodeType": "YulTypedName",
"src": "6412:4:18",
"type": ""
},
{
"name": "exponent",
"nativeSrc": "6418:8:18",
"nodeType": "YulTypedName",
"src": "6418:8:18",
"type": ""
},
{
"name": "max",
"nativeSrc": "6428:3:18",
"nodeType": "YulTypedName",
"src": "6428:3:18",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nativeSrc": "6436:5:18",
"nodeType": "YulTypedName",
"src": "6436:5:18",
"type": ""
}
],
"src": "6382:1073:18"
},
{
"body": {
"nativeSrc": "7504:43:18",
"nodeType": "YulBlock",
"src": "7504:43:18",
"statements": [
{
"nativeSrc": "7514:27:18",
"nodeType": "YulAssignment",
"src": "7514:27:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7529:5:18",
"nodeType": "YulIdentifier",
"src": "7529:5:18"
},
{
"kind": "number",
"nativeSrc": "7536:4:18",
"nodeType": "YulLiteral",
"src": "7536:4:18",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "7525:3:18",
"nodeType": "YulIdentifier",
"src": "7525:3:18"
},
"nativeSrc": "7525:16:18",
"nodeType": "YulFunctionCall",
"src": "7525:16:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "7514:7:18",
"nodeType": "YulIdentifier",
"src": "7514:7:18"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nativeSrc": "7461:86:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7486:5:18",
"nodeType": "YulTypedName",
"src": "7486:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "7496:7:18",
"nodeType": "YulTypedName",
"src": "7496:7:18",
"type": ""
}
],
"src": "7461:86:18"
},
{
"body": {
"nativeSrc": "7617:217:18",
"nodeType": "YulBlock",
"src": "7617:217:18",
"statements": [
{
"nativeSrc": "7627:31:18",
"nodeType": "YulAssignment",
"src": "7627:31:18",
"value": {
"arguments": [
{
"name": "base",
"nativeSrc": "7653:4:18",
"nodeType": "YulIdentifier",
"src": "7653:4:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "7635:17:18",
"nodeType": "YulIdentifier",
"src": "7635:17:18"
},
"nativeSrc": "7635:23:18",
"nodeType": "YulFunctionCall",
"src": "7635:23:18"
},
"variableNames": [
{
"name": "base",
"nativeSrc": "7627:4:18",
"nodeType": "YulIdentifier",
"src": "7627:4:18"
}
]
},
{
"nativeSrc": "7667:37:18",
"nodeType": "YulAssignment",
"src": "7667:37:18",
"value": {
"arguments": [
{
"name": "exponent",
"nativeSrc": "7695:8:18",
"nodeType": "YulIdentifier",
"src": "7695:8:18"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nativeSrc": "7679:15:18",
"nodeType": "YulIdentifier",
"src": "7679:15:18"
},
"nativeSrc": "7679:25:18",
"nodeType": "YulFunctionCall",
"src": "7679:25:18"
},
"variableNames": [
{
"name": "exponent",
"nativeSrc": "7667:8:18",
"nodeType": "YulIdentifier",
"src": "7667:8:18"
}
]
},
{
"nativeSrc": "7714:113:18",
"nodeType": "YulAssignment",
"src": "7714:113:18",
"value": {
"arguments": [
{
"name": "base",
"nativeSrc": "7744:4:18",
"nodeType": "YulIdentifier",
"src": "7744:4:18"
},
{
"name": "exponent",
"nativeSrc": "7750:8:18",
"nodeType": "YulIdentifier",
"src": "7750:8:18"
},
{
"kind": "number",
"nativeSrc": "7760:66:18",
"nodeType": "YulLiteral",
"src": "7760:66:18",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "checked_exp_unsigned",
"nativeSrc": "7723:20:18",
"nodeType": "YulIdentifier",
"src": "7723:20:18"
},
"nativeSrc": "7723:104:18",
"nodeType": "YulFunctionCall",
"src": "7723:104:18"
},
"variableNames": [
{
"name": "power",
"nativeSrc": "7714:5:18",
"nodeType": "YulIdentifier",
"src": "7714:5:18"
}
]
}
]
},
"name": "checked_exp_t_uint256_t_uint8",
"nativeSrc": "7553:281:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "base",
"nativeSrc": "7592:4:18",
"nodeType": "YulTypedName",
"src": "7592:4:18",
"type": ""
},
{
"name": "exponent",
"nativeSrc": "7598:8:18",
"nodeType": "YulTypedName",
"src": "7598:8:18",
"type": ""
}
],
"returnVariables": [
{
"name": "power",
"nativeSrc": "7611:5:18",
"nodeType": "YulTypedName",
"src": "7611:5:18",
"type": ""
}
],
"src": "7553:281:18"
},
{
"body": {
"nativeSrc": "7888:362:18",
"nodeType": "YulBlock",
"src": "7888:362:18",
"statements": [
{
"nativeSrc": "7898:25:18",
"nodeType": "YulAssignment",
"src": "7898:25:18",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "7921:1:18",
"nodeType": "YulIdentifier",
"src": "7921:1:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "7903:17:18",
"nodeType": "YulIdentifier",
"src": "7903:17:18"
},
"nativeSrc": "7903:20:18",
"nodeType": "YulFunctionCall",
"src": "7903:20:18"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "7898:1:18",
"nodeType": "YulIdentifier",
"src": "7898:1:18"
}
]
},
{
"nativeSrc": "7932:25:18",
"nodeType": "YulAssignment",
"src": "7932:25:18",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "7955:1:18",
"nodeType": "YulIdentifier",
"src": "7955:1:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "7937:17:18",
"nodeType": "YulIdentifier",
"src": "7937:17:18"
},
"nativeSrc": "7937:20:18",
"nodeType": "YulFunctionCall",
"src": "7937:20:18"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "7932:1:18",
"nodeType": "YulIdentifier",
"src": "7932:1:18"
}
]
},
{
"nativeSrc": "7966:28:18",
"nodeType": "YulVariableDeclaration",
"src": "7966:28:18",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "7989:1:18",
"nodeType": "YulIdentifier",
"src": "7989:1:18"
},
{
"name": "y",
"nativeSrc": "7992:1:18",
"nodeType": "YulIdentifier",
"src": "7992:1:18"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "7985:3:18",
"nodeType": "YulIdentifier",
"src": "7985:3:18"
},
"nativeSrc": "7985:9:18",
"nodeType": "YulFunctionCall",
"src": "7985:9:18"
},
"variables": [
{
"name": "product_raw",
"nativeSrc": "7970:11:18",
"nodeType": "YulTypedName",
"src": "7970:11:18",
"type": ""
}
]
},
{
"nativeSrc": "8003:41:18",
"nodeType": "YulAssignment",
"src": "8003:41:18",
"value": {
"arguments": [
{
"name": "product_raw",
"nativeSrc": "8032:11:18",
"nodeType": "YulIdentifier",
"src": "8032:11:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "8014:17:18",
"nodeType": "YulIdentifier",
"src": "8014:17:18"
},
"nativeSrc": "8014:30:18",
"nodeType": "YulFunctionCall",
"src": "8014:30:18"
},
"variableNames": [
{
"name": "product",
"nativeSrc": "8003:7:18",
"nodeType": "YulIdentifier",
"src": "8003:7:18"
}
]
},
{
"body": {
"nativeSrc": "8221:22:18",
"nodeType": "YulBlock",
"src": "8221:22:18",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "8223:16:18",
"nodeType": "YulIdentifier",
"src": "8223:16:18"
},
"nativeSrc": "8223:18:18",
"nodeType": "YulFunctionCall",
"src": "8223:18:18"
},
"nativeSrc": "8223:18:18",
"nodeType": "YulExpressionStatement",
"src": "8223:18:18"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "x",
"nativeSrc": "8154:1:18",
"nodeType": "YulIdentifier",
"src": "8154:1:18"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "8147:6:18",
"nodeType": "YulIdentifier",
"src": "8147:6:18"
},
"nativeSrc": "8147:9:18",
"nodeType": "YulFunctionCall",
"src": "8147:9:18"
},
{
"arguments": [
{
"name": "y",
"nativeSrc": "8177:1:18",
"nodeType": "YulIdentifier",
"src": "8177:1:18"
},
{
"arguments": [
{
"name": "product",
"nativeSrc": "8184:7:18",
"nodeType": "YulIdentifier",
"src": "8184:7:18"
},
{
"name": "x",
"nativeSrc": "8193:1:18",
"nodeType": "YulIdentifier",
"src": "8193:1:18"
}
],
"functionName": {
"name": "div",
"nativeSrc": "8180:3:18",
"nodeType": "YulIdentifier",
"src": "8180:3:18"
},
"nativeSrc": "8180:15:18",
"nodeType": "YulFunctionCall",
"src": "8180:15:18"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "8174:2:18",
"nodeType": "YulIdentifier",
"src": "8174:2:18"
},
"nativeSrc": "8174:22:18",
"nodeType": "YulFunctionCall",
"src": "8174:22:18"
}
],
"functionName": {
"name": "or",
"nativeSrc": "8127:2:18",
"nodeType": "YulIdentifier",
"src": "8127:2:18"
},
"nativeSrc": "8127:83:18",
"nodeType": "YulFunctionCall",
"src": "8127:83:18"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "8107:6:18",
"nodeType": "YulIdentifier",
"src": "8107:6:18"
},
"nativeSrc": "8107:113:18",
"nodeType": "YulFunctionCall",
"src": "8107:113:18"
},
"nativeSrc": "8104:139:18",
"nodeType": "YulIf",
"src": "8104:139:18"
}
]
},
"name": "checked_mul_t_uint256",
"nativeSrc": "7840:410:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "7871:1:18",
"nodeType": "YulTypedName",
"src": "7871:1:18",
"type": ""
},
{
"name": "y",
"nativeSrc": "7874:1:18",
"nodeType": "YulTypedName",
"src": "7874:1:18",
"type": ""
}
],
"returnVariables": [
{
"name": "product",
"nativeSrc": "7880:7:18",
"nodeType": "YulTypedName",
"src": "7880:7:18",
"type": ""
}
],
"src": "7840:410:18"
},
{
"body": {
"nativeSrc": "8301:32:18",
"nodeType": "YulBlock",
"src": "8301:32:18",
"statements": [
{
"nativeSrc": "8311:16:18",
"nodeType": "YulAssignment",
"src": "8311:16:18",
"value": {
"name": "value",
"nativeSrc": "8322:5:18",
"nodeType": "YulIdentifier",
"src": "8322:5:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "8311:7:18",
"nodeType": "YulIdentifier",
"src": "8311:7:18"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nativeSrc": "8256:77:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8283:5:18",
"nodeType": "YulTypedName",
"src": "8283:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "8293:7:18",
"nodeType": "YulTypedName",
"src": "8293:7:18",
"type": ""
}
],
"src": "8256:77:18"
},
{
"body": {
"nativeSrc": "8404:53:18",
"nodeType": "YulBlock",
"src": "8404:53:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8421:3:18",
"nodeType": "YulIdentifier",
"src": "8421:3:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "8444:5:18",
"nodeType": "YulIdentifier",
"src": "8444:5:18"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nativeSrc": "8426:17:18",
"nodeType": "YulIdentifier",
"src": "8426:17:18"
},
"nativeSrc": "8426:24:18",
"nodeType": "YulFunctionCall",
"src": "8426:24:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8414:6:18",
"nodeType": "YulIdentifier",
"src": "8414:6:18"
},
"nativeSrc": "8414:37:18",
"nodeType": "YulFunctionCall",
"src": "8414:37:18"
},
"nativeSrc": "8414:37:18",
"nodeType": "YulExpressionStatement",
"src": "8414:37:18"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "8339:118:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8392:5:18",
"nodeType": "YulTypedName",
"src": "8392:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "8399:3:18",
"nodeType": "YulTypedName",
"src": "8399:3:18",
"type": ""
}
],
"src": "8339:118:18"
},
{
"body": {
"nativeSrc": "8528:53:18",
"nodeType": "YulBlock",
"src": "8528:53:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8545:3:18",
"nodeType": "YulIdentifier",
"src": "8545:3:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "8568:5:18",
"nodeType": "YulIdentifier",
"src": "8568:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "8550:17:18",
"nodeType": "YulIdentifier",
"src": "8550:17:18"
},
"nativeSrc": "8550:24:18",
"nodeType": "YulFunctionCall",
"src": "8550:24:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8538:6:18",
"nodeType": "YulIdentifier",
"src": "8538:6:18"
},
"nativeSrc": "8538:37:18",
"nodeType": "YulFunctionCall",
"src": "8538:37:18"
},
"nativeSrc": "8538:37:18",
"nodeType": "YulExpressionStatement",
"src": "8538:37:18"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "8463:118:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8516:5:18",
"nodeType": "YulTypedName",
"src": "8516:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "8523:3:18",
"nodeType": "YulTypedName",
"src": "8523:3:18",
"type": ""
}
],
"src": "8463:118:18"
},
{
"body": {
"nativeSrc": "8632:81:18",
"nodeType": "YulBlock",
"src": "8632:81:18",
"statements": [
{
"nativeSrc": "8642:65:18",
"nodeType": "YulAssignment",
"src": "8642:65:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "8657:5:18",
"nodeType": "YulIdentifier",
"src": "8657:5:18"
},
{
"kind": "number",
"nativeSrc": "8664:42:18",
"nodeType": "YulLiteral",
"src": "8664:42:18",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "8653:3:18",
"nodeType": "YulIdentifier",
"src": "8653:3:18"
},
"nativeSrc": "8653:54:18",
"nodeType": "YulFunctionCall",
"src": "8653:54:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "8642:7:18",
"nodeType": "YulIdentifier",
"src": "8642:7:18"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "8587:126:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8614:5:18",
"nodeType": "YulTypedName",
"src": "8614:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "8624:7:18",
"nodeType": "YulTypedName",
"src": "8624:7:18",
"type": ""
}
],
"src": "8587:126:18"
},
{
"body": {
"nativeSrc": "8764:51:18",
"nodeType": "YulBlock",
"src": "8764:51:18",
"statements": [
{
"nativeSrc": "8774:35:18",
"nodeType": "YulAssignment",
"src": "8774:35:18",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "8803:5:18",
"nodeType": "YulIdentifier",
"src": "8803:5:18"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "8785:17:18",
"nodeType": "YulIdentifier",
"src": "8785:17:18"
},
"nativeSrc": "8785:24:18",
"nodeType": "YulFunctionCall",
"src": "8785:24:18"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "8774:7:18",
"nodeType": "YulIdentifier",
"src": "8774:7:18"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "8719:96:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8746:5:18",
"nodeType": "YulTypedName",
"src": "8746:5:18",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "8756:7:18",
"nodeType": "YulTypedName",
"src": "8756:7:18",
"type": ""
}
],
"src": "8719:96:18"
},
{
"body": {
"nativeSrc": "8886:53:18",
"nodeType": "YulBlock",
"src": "8886:53:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8903:3:18",
"nodeType": "YulIdentifier",
"src": "8903:3:18"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "8926:5:18",
"nodeType": "YulIdentifier",
"src": "8926:5:18"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "8908:17:18",
"nodeType": "YulIdentifier",
"src": "8908:17:18"
},
"nativeSrc": "8908:24:18",
"nodeType": "YulFunctionCall",
"src": "8908:24:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8896:6:18",
"nodeType": "YulIdentifier",
"src": "8896:6:18"
},
"nativeSrc": "8896:37:18",
"nodeType": "YulFunctionCall",
"src": "8896:37:18"
},
"nativeSrc": "8896:37:18",
"nodeType": "YulExpressionStatement",
"src": "8896:37:18"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "8821:118:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8874:5:18",
"nodeType": "YulTypedName",
"src": "8874:5:18",
"type": ""
},
{
"name": "pos",
"nativeSrc": "8881:3:18",
"nodeType": "YulTypedName",
"src": "8881:3:18",
"type": ""
}
],
"src": "8821:118:18"
},
{
"body": {
"nativeSrc": "9155:454:18",
"nodeType": "YulBlock",
"src": "9155:454:18",
"statements": [
{
"nativeSrc": "9165:27:18",
"nodeType": "YulAssignment",
"src": "9165:27:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "9177:9:18",
"nodeType": "YulIdentifier",
"src": "9177:9:18"
},
{
"kind": "number",
"nativeSrc": "9188:3:18",
"nodeType": "YulLiteral",
"src": "9188:3:18",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9173:3:18",
"nodeType": "YulIdentifier",
"src": "9173:3:18"
},
"nativeSrc": "9173:19:18",
"nodeType": "YulFunctionCall",
"src": "9173:19:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9165:4:18",
"nodeType": "YulIdentifier",
"src": "9165:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "9246:6:18",
"nodeType": "YulIdentifier",
"src": "9246:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9259:9:18",
"nodeType": "YulIdentifier",
"src": "9259:9:18"
},
{
"kind": "number",
"nativeSrc": "9270:1:18",
"nodeType": "YulLiteral",
"src": "9270:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9255:3:18",
"nodeType": "YulIdentifier",
"src": "9255:3:18"
},
"nativeSrc": "9255:17:18",
"nodeType": "YulFunctionCall",
"src": "9255:17:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "9202:43:18",
"nodeType": "YulIdentifier",
"src": "9202:43:18"
},
"nativeSrc": "9202:71:18",
"nodeType": "YulFunctionCall",
"src": "9202:71:18"
},
"nativeSrc": "9202:71:18",
"nodeType": "YulExpressionStatement",
"src": "9202:71:18"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "9327:6:18",
"nodeType": "YulIdentifier",
"src": "9327:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9340:9:18",
"nodeType": "YulIdentifier",
"src": "9340:9:18"
},
{
"kind": "number",
"nativeSrc": "9351:2:18",
"nodeType": "YulLiteral",
"src": "9351:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9336:3:18",
"nodeType": "YulIdentifier",
"src": "9336:3:18"
},
"nativeSrc": "9336:18:18",
"nodeType": "YulFunctionCall",
"src": "9336:18:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "9283:43:18",
"nodeType": "YulIdentifier",
"src": "9283:43:18"
},
"nativeSrc": "9283:72:18",
"nodeType": "YulFunctionCall",
"src": "9283:72:18"
},
"nativeSrc": "9283:72:18",
"nodeType": "YulExpressionStatement",
"src": "9283:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nativeSrc": "9409:6:18",
"nodeType": "YulIdentifier",
"src": "9409:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9422:9:18",
"nodeType": "YulIdentifier",
"src": "9422:9:18"
},
{
"kind": "number",
"nativeSrc": "9433:2:18",
"nodeType": "YulLiteral",
"src": "9433:2:18",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9418:3:18",
"nodeType": "YulIdentifier",
"src": "9418:3:18"
},
"nativeSrc": "9418:18:18",
"nodeType": "YulFunctionCall",
"src": "9418:18:18"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "9365:43:18",
"nodeType": "YulIdentifier",
"src": "9365:43:18"
},
"nativeSrc": "9365:72:18",
"nodeType": "YulFunctionCall",
"src": "9365:72:18"
},
"nativeSrc": "9365:72:18",
"nodeType": "YulExpressionStatement",
"src": "9365:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nativeSrc": "9491:6:18",
"nodeType": "YulIdentifier",
"src": "9491:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9504:9:18",
"nodeType": "YulIdentifier",
"src": "9504:9:18"
},
{
"kind": "number",
"nativeSrc": "9515:2:18",
"nodeType": "YulLiteral",
"src": "9515:2:18",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9500:3:18",
"nodeType": "YulIdentifier",
"src": "9500:3:18"
},
"nativeSrc": "9500:18:18",
"nodeType": "YulFunctionCall",
"src": "9500:18:18"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "9447:43:18",
"nodeType": "YulIdentifier",
"src": "9447:43:18"
},
"nativeSrc": "9447:72:18",
"nodeType": "YulFunctionCall",
"src": "9447:72:18"
},
"nativeSrc": "9447:72:18",
"nodeType": "YulExpressionStatement",
"src": "9447:72:18"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nativeSrc": "9573:6:18",
"nodeType": "YulIdentifier",
"src": "9573:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9586:9:18",
"nodeType": "YulIdentifier",
"src": "9586:9:18"
},
{
"kind": "number",
"nativeSrc": "9597:3:18",
"nodeType": "YulLiteral",
"src": "9597:3:18",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9582:3:18",
"nodeType": "YulIdentifier",
"src": "9582:3:18"
},
"nativeSrc": "9582:19:18",
"nodeType": "YulFunctionCall",
"src": "9582:19:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "9529:43:18",
"nodeType": "YulIdentifier",
"src": "9529:43:18"
},
"nativeSrc": "9529:73:18",
"nodeType": "YulFunctionCall",
"src": "9529:73:18"
},
"nativeSrc": "9529:73:18",
"nodeType": "YulExpressionStatement",
"src": "9529:73:18"
}
]
},
"name": "abi_encode_tuple_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__to_t_bytes32_t_bytes32_t_bytes32_t_uint256_t_address__fromStack_reversed",
"nativeSrc": "8945:664:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "9095:9:18",
"nodeType": "YulTypedName",
"src": "9095:9:18",
"type": ""
},
{
"name": "value4",
"nativeSrc": "9107:6:18",
"nodeType": "YulTypedName",
"src": "9107:6:18",
"type": ""
},
{
"name": "value3",
"nativeSrc": "9115:6:18",
"nodeType": "YulTypedName",
"src": "9115:6:18",
"type": ""
},
{
"name": "value2",
"nativeSrc": "9123:6:18",
"nodeType": "YulTypedName",
"src": "9123:6:18",
"type": ""
},
{
"name": "value1",
"nativeSrc": "9131:6:18",
"nodeType": "YulTypedName",
"src": "9131:6:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "9139:6:18",
"nodeType": "YulTypedName",
"src": "9139:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "9150:4:18",
"nodeType": "YulTypedName",
"src": "9150:4:18",
"type": ""
}
],
"src": "8945:664:18"
},
{
"body": {
"nativeSrc": "9713:124:18",
"nodeType": "YulBlock",
"src": "9713:124:18",
"statements": [
{
"nativeSrc": "9723:26:18",
"nodeType": "YulAssignment",
"src": "9723:26:18",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "9735:9:18",
"nodeType": "YulIdentifier",
"src": "9735:9:18"
},
{
"kind": "number",
"nativeSrc": "9746:2:18",
"nodeType": "YulLiteral",
"src": "9746:2:18",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9731:3:18",
"nodeType": "YulIdentifier",
"src": "9731:3:18"
},
"nativeSrc": "9731:18:18",
"nodeType": "YulFunctionCall",
"src": "9731:18:18"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9723:4:18",
"nodeType": "YulIdentifier",
"src": "9723:4:18"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "9803:6:18",
"nodeType": "YulIdentifier",
"src": "9803:6:18"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9816:9:18",
"nodeType": "YulIdentifier",
"src": "9816:9:18"
},
{
"kind": "number",
"nativeSrc": "9827:1:18",
"nodeType": "YulLiteral",
"src": "9827:1:18",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9812:3:18",
"nodeType": "YulIdentifier",
"src": "9812:3:18"
},
"nativeSrc": "9812:17:18",
"nodeType": "YulFunctionCall",
"src": "9812:17:18"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "9759:43:18",
"nodeType": "YulIdentifier",
"src": "9759:43:18"
},
"nativeSrc": "9759:71:18",
"nodeType": "YulFunctionCall",
"src": "9759:71:18"
},
"nativeSrc": "9759:71:18",
"nodeType": "YulExpressionStatement",
"src": "9759:71:18"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nativeSrc": "9615:222:18",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "9685:9:18",
"nodeType": "YulTypedName",
"src": "9685:9:18",
"type": ""
},
{
"name": "value0",
"nativeSrc": "9697:6:18",
"nodeType": "YulTypedName",
"src": "9697:6:18",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "9708:4:18",
"nodeType": "YulTypedName",
"src": "9708:4:18",
"type": ""
}
],
"src": "9615:222:18"
},
{
"body": {
"nativeSrc": "9939:73:18",
"nodeType": "YulBlock",
"src": "9939:73:18",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9956:3:18",
"nodeType": "YulIdentifier",
"src": "9956:3:18"
},
{
"name": "length",
"nativeSrc": "9961:6:18",
"nodeType": "YulIdentifier",
"src": "9961:6:18"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9949:6:18",
"nodeType": "YulIdentifier",
"src": "9949:6:18"
},
"nativeSrc": "9949:19:18",
"nodeType": "YulFunctionCall",
"src": "9949:19:18"
},
"nativeSrc": "9949:19:18",
"nodeType": "YulExpressionStatement",
"src": "9949:19:18"
},
{
"nativeSrc": "9977:29:18",
"nodeType": "YulAssignment",
"src": "9977:29:18",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9996:3:18",
"nodeType": "YulIdentifier",
"src": "9996:3:18"
},
{
"kind": "number",
"nativeSrc": "10001:4:18",
"nodeType": "YulLiteral",
"src": "10001:4:18",
"type": "",
"value": "0x20"
}
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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