Skip to content

Instantly share code, notes, and snippets.

@jranil
Created July 12, 2024 19:43
Show Gist options
  • Save jranil/5443c481e649388a078682da4178a5cf to your computer and use it in GitHub Desktop.
Save jranil/5443c481e649388a078682da4178a5cf 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.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
import {Context} from "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. This can
* later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated 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 v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
}
// 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/ERC20Burnable.sol)
pragma solidity ^0.8.20;
import {ERC20} from "../ERC20.sol";
import {Context} from "../../../utils/Context.sol";
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys a `value` amount of tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 value) public virtual {
_burn(_msgSender(), value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, deducting from
* the caller's allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `value`.
*/
function burnFrom(address account, uint256 value) public virtual {
_spendAllowance(account, _msgSender(), value);
_burn(account, value);
}
}
// 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 v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
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.
*
* _Available since v3.4._
*/
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.
*
* _Available since v3.4._
*/
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.
*
* _Available since v3.4._
*/
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.
*
* _Available since v3.4._
*/
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 addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// 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));
}
}
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
ref: refs/heads/main
DIRCf���)|f���)|$�����o#q{K���Sc��X�W�n.prettierrc.jsonf���'���f���'�����+��NF��� �� n[.P��contracts/MyToken.solf���(,l�f���(,l� ���cS?���5?,���7��'�|scripts/deploy_with_ethers.tsf���(iu�f���(iu�!������.��E�r���NH-��Wscripts/deploy_with_web3.tsf���(�~�f���(�~�"��ՎJߕ�Q虥E؅.�u�`scripts/ethers-lib.tsf���) ��f���) ��#�� ��􄉵���C�� av�ascripts/web3-lib.tsf����f����f�����暯��T�Y<����=�tests/MyToken_test.solm7�k�p�Gӈ�^�@�-�O�
x�M�A
�0D]����FQWB��;w"4i�ZL�K)���b��j`x��:�جw��j�G�(�q�a��s�D�Z�ۥ+m"�4��sH��^�wc9�!�Sx���5e�\29v'~P�,p��Ύ���LQx
a�y���7= 71�C��;��IW��ш�AI��B�
x���=
1@a�bzA&?�I[�1LF�$ �� � �^��՚�w����k`�cH ��;�[�i�s��EҊ^��:<:���q��V)��z� z?�9��EſՐ����yd*������!�Yh��t6��ď=�
x�4��tree 44100644 MyToken_test.sol���暯��T�Y<����=��ao
x�+)JMU047c040031QHI-�ɯ�/�,ɈO-�H-*�+)fH���u����N��^��w�`�P��d R.�j�t���]o�<���C�m�x8T9�Lݜ�$��>��S�2�����F���R� lP� �`�N_��ҹ��w�s2�S�*p$�]M�H�
x�M��
�0���7I@�88� ��Dh���Ŵ)IDB黋������w�uv���i{�#��[�0��] �6k�am��3&tH���Ȏ}�0� ���Fd�O���&�)�ݝ:���*�����D���S,��@�͘��FGSC��;��I���hB�(�|��C�
x�]S�n�@�9_1Hv��,���B!�D��]���}g�m�FQ��l'./�λ3;3��7>ǫ�o޾�m�Eqk�p�V|�d8&�Evu���p���fT��
�T�о��#�Ǡb]u:�6�2\����
P�22��"txO�psI�ؠ=��.��
�� 6���9v�ks��(���7W��t���h�W�O�\N�H#�;q8~�F}\Νf�+:([���+��}_cHc�\�bn�L�k��}y�;� �~�LZn���q�@�6����a�u^�O���e�xehM]�Bl�p�e�?n?}þ�E P�c!��S���6��;���R�f`�Aa'��a���� � �hB/�;�k�����%�Cvn��3h�w����5��7i�^P�햅��#��i-+���5����1I���d­}25M�lm�?�QŒ��T�_m�����p���͝�G[�$}4��j|N I,� ��\�EO��c������L72�gƛ·,��b���|���^��~-g��.}����ܮ����ʅ/� �W��و�1d8�4�N�Ƙ~�#"��~�(���/����{F� �H�sj���Z�f3�� ��71���;=� ���
x���Ak�@���W {2�ِS�A=������iLf��)Ԋ��������{��[�C9?9o��v�&��p�< +����� ���H�ҁ��"��bb uA���J@���%v^Xc�59�#�[��ʢ�y��Nr��ȉ�Sl0v��G��@u�P�����p6^8i��*q����^������ݭ��|1�k�c�
x�+)JMU041c040031Q�+(J-)�L-*J��*��cش4_���{v?���#����31000PH��+)JL.)fxpCԧC ;M��;�}�l������)N.�,()f��q�eC��p���;�JO�����(I-.)fp�Q���aqḐ��g�����|�v?�
x����
�0 �=�)B�2ă��[����n٬�f�� c�.+l0cB{J�� ��ɪ�����e)\}�{�Py���l���X<N�r�t���|X��E���RH��/����D\[<s�� �,NV�R�&�3�0<{�;U<������6^p��k���xH�����%�pυ._ݢ6��̢�
x���MK�@`��+��Zh7�UA�X��"�d������� K��$m��C��;<���9\N&gi
����xN�xV`ZV7𴘏/t�TY�o��������L_� n3=��T�/c%�T���]��5G��S�T�
�/�*~b8����C�B U
`]+�~�� �j\�<BY�,l��v���_�q�`<�#Hn2�D�m��7b7�p�?ϣ�3��#��OD
���9��3��DE�����5-���e��X�r��b������
x�mS]k�@�~�<$GN�"�iK!�|@�P
^Ik�R��ܭ�[���$�j�@¾�ݙ��M+������;U�����
Kkj�N� ?���b)����u��R�|���(��Q�9Ky���0fgg��W��BJF��X�i��Vd��ΉU�h��#� �~�ҧ��W��YK�k�ۛd �J9iS3���u&Ɔ�`���7BYf�Z�v��T�u��Œv�����z]�l��[�Zu�,��j��N5�j���g����:{� ���q7tB��`��婗~{�nt�& ������^� �7�z���0�损����l͛��Nz��8�L-:�Jx��k-t6ã��$�k.�j%�̹�w��)UVB9�ْp�����z�*j����%ew��7í�h��8�|�p ����!�LRb�Ej�Ʊ�*����g0~uF/�m�Y('!�����1^�uц��r���UU.U���`N,�T���_1�ɱr?���_������ ��>�:�aU����AuL�:Q�]����c>@�n�]m�d�E�?�V839�&}�L�H�X׬�%~~��k�H������v{�vf�nr���i?/~u��į�~�ˏ�ӑ�j� �M�#A����
x�+)JMU0�d040031Q� ��N��+��a�=C��m�.9�弓o��E�L�
[I"
18bdcfbbbe0a466844c0eb5c1b7990bcb3cb596e
{
"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": {
"@_1536": {
"entryPoint": null,
"id": 1536,
"parameterSlots": 0,
"returnSlots": 0
},
"@_311": {
"entryPoint": null,
"id": 311,
"parameterSlots": 0,
"returnSlots": 0
},
"@_411": {
"entryPoint": null,
"id": 411,
"parameterSlots": 0,
"returnSlots": 0
},
"@_50": {
"entryPoint": null,
"id": 50,
"parameterSlots": 1,
"returnSlots": 0
},
"@_509": {
"entryPoint": null,
"id": 509,
"parameterSlots": 2,
"returnSlots": 0
},
"@_mint_812": {
"entryPoint": 550,
"id": 812,
"parameterSlots": 2,
"returnSlots": 0
},
"@_transferOwnership_146": {
"entryPoint": 353,
"id": 146,
"parameterSlots": 1,
"returnSlots": 0
},
"@_update_779": {
"entryPoint": 683,
"id": 779,
"parameterSlots": 3,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 2045,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 2181,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 2060,
"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": 2196,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 2249,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 1368,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 1220,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 2130,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 1653,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 2028,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1997,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1494,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 1619,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 1512,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 1790,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 1386,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 1320,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 1763,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"identity": {
"entryPoint": 1503,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 1735,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 2085,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 1275,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 1230,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 1545,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 1401,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 1723,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 1595,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 1413,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 1554,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 1591,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:7000:11",
"nodeType": "YulBlock",
"src": "0:7000:11",
"statements": [
{
"body": {
"nativeSrc": "66:40:11",
"nodeType": "YulBlock",
"src": "66:40:11",
"statements": [
{
"nativeSrc": "77:22:11",
"nodeType": "YulAssignment",
"src": "77:22:11",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "93:5:11",
"nodeType": "YulIdentifier",
"src": "93:5:11"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "87:5:11",
"nodeType": "YulIdentifier",
"src": "87:5:11"
},
"nativeSrc": "87:12:11",
"nodeType": "YulFunctionCall",
"src": "87:12:11"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "77:6:11",
"nodeType": "YulIdentifier",
"src": "77:6:11"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7:99:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "49:5:11",
"nodeType": "YulTypedName",
"src": "49:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "59:6:11",
"nodeType": "YulTypedName",
"src": "59:6:11",
"type": ""
}
],
"src": "7:99:11"
},
{
"body": {
"nativeSrc": "140:152:11",
"nodeType": "YulBlock",
"src": "140:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "157:1:11",
"nodeType": "YulLiteral",
"src": "157:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "160:77:11",
"nodeType": "YulLiteral",
"src": "160:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "150:6:11",
"nodeType": "YulIdentifier",
"src": "150:6:11"
},
"nativeSrc": "150:88:11",
"nodeType": "YulFunctionCall",
"src": "150:88:11"
},
"nativeSrc": "150:88:11",
"nodeType": "YulExpressionStatement",
"src": "150:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "254:1:11",
"nodeType": "YulLiteral",
"src": "254:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "257:4:11",
"nodeType": "YulLiteral",
"src": "257:4:11",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "247:6:11",
"nodeType": "YulIdentifier",
"src": "247:6:11"
},
"nativeSrc": "247:15:11",
"nodeType": "YulFunctionCall",
"src": "247:15:11"
},
"nativeSrc": "247:15:11",
"nodeType": "YulExpressionStatement",
"src": "247:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "278:1:11",
"nodeType": "YulLiteral",
"src": "278:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "281:4:11",
"nodeType": "YulLiteral",
"src": "281:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "271:6:11",
"nodeType": "YulIdentifier",
"src": "271:6:11"
},
"nativeSrc": "271:15:11",
"nodeType": "YulFunctionCall",
"src": "271:15:11"
},
"nativeSrc": "271:15:11",
"nodeType": "YulExpressionStatement",
"src": "271:15:11"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "112:180:11",
"nodeType": "YulFunctionDefinition",
"src": "112:180:11"
},
{
"body": {
"nativeSrc": "326:152:11",
"nodeType": "YulBlock",
"src": "326:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "343:1:11",
"nodeType": "YulLiteral",
"src": "343:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "346:77:11",
"nodeType": "YulLiteral",
"src": "346:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "336:6:11",
"nodeType": "YulIdentifier",
"src": "336:6:11"
},
"nativeSrc": "336:88:11",
"nodeType": "YulFunctionCall",
"src": "336:88:11"
},
"nativeSrc": "336:88:11",
"nodeType": "YulExpressionStatement",
"src": "336:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "440:1:11",
"nodeType": "YulLiteral",
"src": "440:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "443:4:11",
"nodeType": "YulLiteral",
"src": "443:4:11",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "433:6:11",
"nodeType": "YulIdentifier",
"src": "433:6:11"
},
"nativeSrc": "433:15:11",
"nodeType": "YulFunctionCall",
"src": "433:15:11"
},
"nativeSrc": "433:15:11",
"nodeType": "YulExpressionStatement",
"src": "433:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "464:1:11",
"nodeType": "YulLiteral",
"src": "464:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "467:4:11",
"nodeType": "YulLiteral",
"src": "467:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "457:6:11",
"nodeType": "YulIdentifier",
"src": "457:6:11"
},
"nativeSrc": "457:15:11",
"nodeType": "YulFunctionCall",
"src": "457:15:11"
},
"nativeSrc": "457:15:11",
"nodeType": "YulExpressionStatement",
"src": "457:15:11"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "298:180:11",
"nodeType": "YulFunctionDefinition",
"src": "298:180:11"
},
{
"body": {
"nativeSrc": "535:269:11",
"nodeType": "YulBlock",
"src": "535:269:11",
"statements": [
{
"nativeSrc": "545:22:11",
"nodeType": "YulAssignment",
"src": "545:22:11",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "559:4:11",
"nodeType": "YulIdentifier",
"src": "559:4:11"
},
{
"kind": "number",
"nativeSrc": "565:1:11",
"nodeType": "YulLiteral",
"src": "565:1:11",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "555:3:11",
"nodeType": "YulIdentifier",
"src": "555:3:11"
},
"nativeSrc": "555:12:11",
"nodeType": "YulFunctionCall",
"src": "555:12:11"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "545:6:11",
"nodeType": "YulIdentifier",
"src": "545:6:11"
}
]
},
{
"nativeSrc": "576:38:11",
"nodeType": "YulVariableDeclaration",
"src": "576:38:11",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "606:4:11",
"nodeType": "YulIdentifier",
"src": "606:4:11"
},
{
"kind": "number",
"nativeSrc": "612:1:11",
"nodeType": "YulLiteral",
"src": "612:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "602:3:11",
"nodeType": "YulIdentifier",
"src": "602:3:11"
},
"nativeSrc": "602:12:11",
"nodeType": "YulFunctionCall",
"src": "602:12:11"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "580:18:11",
"nodeType": "YulTypedName",
"src": "580:18:11",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "653:51:11",
"nodeType": "YulBlock",
"src": "653:51:11",
"statements": [
{
"nativeSrc": "667:27:11",
"nodeType": "YulAssignment",
"src": "667:27:11",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "681:6:11",
"nodeType": "YulIdentifier",
"src": "681:6:11"
},
{
"kind": "number",
"nativeSrc": "689:4:11",
"nodeType": "YulLiteral",
"src": "689:4:11",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "677:3:11",
"nodeType": "YulIdentifier",
"src": "677:3:11"
},
"nativeSrc": "677:17:11",
"nodeType": "YulFunctionCall",
"src": "677:17:11"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "667:6:11",
"nodeType": "YulIdentifier",
"src": "667:6:11"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "633:18:11",
"nodeType": "YulIdentifier",
"src": "633:18:11"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "626:6:11",
"nodeType": "YulIdentifier",
"src": "626:6:11"
},
"nativeSrc": "626:26:11",
"nodeType": "YulFunctionCall",
"src": "626:26:11"
},
"nativeSrc": "623:81:11",
"nodeType": "YulIf",
"src": "623:81:11"
},
{
"body": {
"nativeSrc": "756:42:11",
"nodeType": "YulBlock",
"src": "756:42:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "770:16:11",
"nodeType": "YulIdentifier",
"src": "770:16:11"
},
"nativeSrc": "770:18:11",
"nodeType": "YulFunctionCall",
"src": "770:18:11"
},
"nativeSrc": "770:18:11",
"nodeType": "YulExpressionStatement",
"src": "770:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "720:18:11",
"nodeType": "YulIdentifier",
"src": "720:18:11"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "743:6:11",
"nodeType": "YulIdentifier",
"src": "743:6:11"
},
{
"kind": "number",
"nativeSrc": "751:2:11",
"nodeType": "YulLiteral",
"src": "751:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "740:2:11",
"nodeType": "YulIdentifier",
"src": "740:2:11"
},
"nativeSrc": "740:14:11",
"nodeType": "YulFunctionCall",
"src": "740:14:11"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "717:2:11",
"nodeType": "YulIdentifier",
"src": "717:2:11"
},
"nativeSrc": "717:38:11",
"nodeType": "YulFunctionCall",
"src": "717:38:11"
},
"nativeSrc": "714:84:11",
"nodeType": "YulIf",
"src": "714:84:11"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "484:320:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "519:4:11",
"nodeType": "YulTypedName",
"src": "519:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "528:6:11",
"nodeType": "YulTypedName",
"src": "528:6:11",
"type": ""
}
],
"src": "484:320:11"
},
{
"body": {
"nativeSrc": "864:87:11",
"nodeType": "YulBlock",
"src": "864:87:11",
"statements": [
{
"nativeSrc": "874:11:11",
"nodeType": "YulAssignment",
"src": "874:11:11",
"value": {
"name": "ptr",
"nativeSrc": "882:3:11",
"nodeType": "YulIdentifier",
"src": "882:3:11"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "874:4:11",
"nodeType": "YulIdentifier",
"src": "874:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "902:1:11",
"nodeType": "YulLiteral",
"src": "902:1:11",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nativeSrc": "905:3:11",
"nodeType": "YulIdentifier",
"src": "905:3:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "895:6:11",
"nodeType": "YulIdentifier",
"src": "895:6:11"
},
"nativeSrc": "895:14:11",
"nodeType": "YulFunctionCall",
"src": "895:14:11"
},
"nativeSrc": "895:14:11",
"nodeType": "YulExpressionStatement",
"src": "895:14:11"
},
{
"nativeSrc": "918:26:11",
"nodeType": "YulAssignment",
"src": "918:26:11",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "936:1:11",
"nodeType": "YulLiteral",
"src": "936:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "939:4:11",
"nodeType": "YulLiteral",
"src": "939:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nativeSrc": "926:9:11",
"nodeType": "YulIdentifier",
"src": "926:9:11"
},
"nativeSrc": "926:18:11",
"nodeType": "YulFunctionCall",
"src": "926:18:11"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "918:4:11",
"nodeType": "YulIdentifier",
"src": "918:4:11"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nativeSrc": "810:141:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "851:3:11",
"nodeType": "YulTypedName",
"src": "851:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "859:4:11",
"nodeType": "YulTypedName",
"src": "859:4:11",
"type": ""
}
],
"src": "810:141:11"
},
{
"body": {
"nativeSrc": "1001:49:11",
"nodeType": "YulBlock",
"src": "1001:49:11",
"statements": [
{
"nativeSrc": "1011:33:11",
"nodeType": "YulAssignment",
"src": "1011:33:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1029:5:11",
"nodeType": "YulIdentifier",
"src": "1029:5:11"
},
{
"kind": "number",
"nativeSrc": "1036:2:11",
"nodeType": "YulLiteral",
"src": "1036:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1025:3:11",
"nodeType": "YulIdentifier",
"src": "1025:3:11"
},
"nativeSrc": "1025:14:11",
"nodeType": "YulFunctionCall",
"src": "1025:14:11"
},
{
"kind": "number",
"nativeSrc": "1041:2:11",
"nodeType": "YulLiteral",
"src": "1041:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nativeSrc": "1021:3:11",
"nodeType": "YulIdentifier",
"src": "1021:3:11"
},
"nativeSrc": "1021:23:11",
"nodeType": "YulFunctionCall",
"src": "1021:23:11"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1011:6:11",
"nodeType": "YulIdentifier",
"src": "1011:6:11"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nativeSrc": "957:93:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "984:5:11",
"nodeType": "YulTypedName",
"src": "984:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "994:6:11",
"nodeType": "YulTypedName",
"src": "994:6:11",
"type": ""
}
],
"src": "957:93:11"
},
{
"body": {
"nativeSrc": "1109:54:11",
"nodeType": "YulBlock",
"src": "1109:54:11",
"statements": [
{
"nativeSrc": "1119:37:11",
"nodeType": "YulAssignment",
"src": "1119:37:11",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "1144:4:11",
"nodeType": "YulIdentifier",
"src": "1144:4:11"
},
{
"name": "value",
"nativeSrc": "1150:5:11",
"nodeType": "YulIdentifier",
"src": "1150:5:11"
}
],
"functionName": {
"name": "shl",
"nativeSrc": "1140:3:11",
"nodeType": "YulIdentifier",
"src": "1140:3:11"
},
"nativeSrc": "1140:16:11",
"nodeType": "YulFunctionCall",
"src": "1140:16:11"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "1119:8:11",
"nodeType": "YulIdentifier",
"src": "1119:8:11"
}
]
}
]
},
"name": "shift_left_dynamic",
"nativeSrc": "1056:107:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "1084:4:11",
"nodeType": "YulTypedName",
"src": "1084:4:11",
"type": ""
},
{
"name": "value",
"nativeSrc": "1090:5:11",
"nodeType": "YulTypedName",
"src": "1090:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "1100:8:11",
"nodeType": "YulTypedName",
"src": "1100:8:11",
"type": ""
}
],
"src": "1056:107:11"
},
{
"body": {
"nativeSrc": "1245:317:11",
"nodeType": "YulBlock",
"src": "1245:317:11",
"statements": [
{
"nativeSrc": "1255:35:11",
"nodeType": "YulVariableDeclaration",
"src": "1255:35:11",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nativeSrc": "1276:10:11",
"nodeType": "YulIdentifier",
"src": "1276:10:11"
},
{
"kind": "number",
"nativeSrc": "1288:1:11",
"nodeType": "YulLiteral",
"src": "1288:1:11",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "1272:3:11",
"nodeType": "YulIdentifier",
"src": "1272:3:11"
},
"nativeSrc": "1272:18:11",
"nodeType": "YulFunctionCall",
"src": "1272:18:11"
},
"variables": [
{
"name": "shiftBits",
"nativeSrc": "1259:9:11",
"nodeType": "YulTypedName",
"src": "1259:9:11",
"type": ""
}
]
},
{
"nativeSrc": "1299:109:11",
"nodeType": "YulVariableDeclaration",
"src": "1299:109:11",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "1330:9:11",
"nodeType": "YulIdentifier",
"src": "1330:9:11"
},
{
"kind": "number",
"nativeSrc": "1341:66:11",
"nodeType": "YulLiteral",
"src": "1341:66:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "1311:18:11",
"nodeType": "YulIdentifier",
"src": "1311:18:11"
},
"nativeSrc": "1311:97:11",
"nodeType": "YulFunctionCall",
"src": "1311:97:11"
},
"variables": [
{
"name": "mask",
"nativeSrc": "1303:4:11",
"nodeType": "YulTypedName",
"src": "1303:4:11",
"type": ""
}
]
},
{
"nativeSrc": "1417:51:11",
"nodeType": "YulAssignment",
"src": "1417:51:11",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "1448:9:11",
"nodeType": "YulIdentifier",
"src": "1448:9:11"
},
{
"name": "toInsert",
"nativeSrc": "1459:8:11",
"nodeType": "YulIdentifier",
"src": "1459:8:11"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "1429:18:11",
"nodeType": "YulIdentifier",
"src": "1429:18:11"
},
"nativeSrc": "1429:39:11",
"nodeType": "YulFunctionCall",
"src": "1429:39:11"
},
"variableNames": [
{
"name": "toInsert",
"nativeSrc": "1417:8:11",
"nodeType": "YulIdentifier",
"src": "1417:8:11"
}
]
},
{
"nativeSrc": "1477:30:11",
"nodeType": "YulAssignment",
"src": "1477:30:11",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1490:5:11",
"nodeType": "YulIdentifier",
"src": "1490:5:11"
},
{
"arguments": [
{
"name": "mask",
"nativeSrc": "1501:4:11",
"nodeType": "YulIdentifier",
"src": "1501:4:11"
}
],
"functionName": {
"name": "not",
"nativeSrc": "1497:3:11",
"nodeType": "YulIdentifier",
"src": "1497:3:11"
},
"nativeSrc": "1497:9:11",
"nodeType": "YulFunctionCall",
"src": "1497:9:11"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1486:3:11",
"nodeType": "YulIdentifier",
"src": "1486:3:11"
},
"nativeSrc": "1486:21:11",
"nodeType": "YulFunctionCall",
"src": "1486:21:11"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "1477:5:11",
"nodeType": "YulIdentifier",
"src": "1477:5:11"
}
]
},
{
"nativeSrc": "1516:40:11",
"nodeType": "YulAssignment",
"src": "1516:40:11",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1529:5:11",
"nodeType": "YulIdentifier",
"src": "1529:5:11"
},
{
"arguments": [
{
"name": "toInsert",
"nativeSrc": "1540:8:11",
"nodeType": "YulIdentifier",
"src": "1540:8:11"
},
{
"name": "mask",
"nativeSrc": "1550:4:11",
"nodeType": "YulIdentifier",
"src": "1550:4:11"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1536:3:11",
"nodeType": "YulIdentifier",
"src": "1536:3:11"
},
"nativeSrc": "1536:19:11",
"nodeType": "YulFunctionCall",
"src": "1536:19:11"
}
],
"functionName": {
"name": "or",
"nativeSrc": "1526:2:11",
"nodeType": "YulIdentifier",
"src": "1526:2:11"
},
"nativeSrc": "1526:30:11",
"nodeType": "YulFunctionCall",
"src": "1526:30:11"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1516:6:11",
"nodeType": "YulIdentifier",
"src": "1516:6:11"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nativeSrc": "1169:393:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1206:5:11",
"nodeType": "YulTypedName",
"src": "1206:5:11",
"type": ""
},
{
"name": "shiftBytes",
"nativeSrc": "1213:10:11",
"nodeType": "YulTypedName",
"src": "1213:10:11",
"type": ""
},
{
"name": "toInsert",
"nativeSrc": "1225:8:11",
"nodeType": "YulTypedName",
"src": "1225:8:11",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "1238:6:11",
"nodeType": "YulTypedName",
"src": "1238:6:11",
"type": ""
}
],
"src": "1169:393:11"
},
{
"body": {
"nativeSrc": "1613:32:11",
"nodeType": "YulBlock",
"src": "1613:32:11",
"statements": [
{
"nativeSrc": "1623:16:11",
"nodeType": "YulAssignment",
"src": "1623:16:11",
"value": {
"name": "value",
"nativeSrc": "1634:5:11",
"nodeType": "YulIdentifier",
"src": "1634:5:11"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1623:7:11",
"nodeType": "YulIdentifier",
"src": "1623:7:11"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "1568:77:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1595:5:11",
"nodeType": "YulTypedName",
"src": "1595:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1605:7:11",
"nodeType": "YulTypedName",
"src": "1605:7:11",
"type": ""
}
],
"src": "1568:77:11"
},
{
"body": {
"nativeSrc": "1683:28:11",
"nodeType": "YulBlock",
"src": "1683:28:11",
"statements": [
{
"nativeSrc": "1693:12:11",
"nodeType": "YulAssignment",
"src": "1693:12:11",
"value": {
"name": "value",
"nativeSrc": "1700:5:11",
"nodeType": "YulIdentifier",
"src": "1700:5:11"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "1693:3:11",
"nodeType": "YulIdentifier",
"src": "1693:3:11"
}
]
}
]
},
"name": "identity",
"nativeSrc": "1651:60:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1669:5:11",
"nodeType": "YulTypedName",
"src": "1669:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "1679:3:11",
"nodeType": "YulTypedName",
"src": "1679:3:11",
"type": ""
}
],
"src": "1651:60:11"
},
{
"body": {
"nativeSrc": "1777:82:11",
"nodeType": "YulBlock",
"src": "1777:82:11",
"statements": [
{
"nativeSrc": "1787:66:11",
"nodeType": "YulAssignment",
"src": "1787:66:11",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1845:5:11",
"nodeType": "YulIdentifier",
"src": "1845:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1827:17:11",
"nodeType": "YulIdentifier",
"src": "1827:17:11"
},
"nativeSrc": "1827:24:11",
"nodeType": "YulFunctionCall",
"src": "1827:24:11"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "1818:8:11",
"nodeType": "YulIdentifier",
"src": "1818:8:11"
},
"nativeSrc": "1818:34:11",
"nodeType": "YulFunctionCall",
"src": "1818:34:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1800:17:11",
"nodeType": "YulIdentifier",
"src": "1800:17:11"
},
"nativeSrc": "1800:53:11",
"nodeType": "YulFunctionCall",
"src": "1800:53:11"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "1787:9:11",
"nodeType": "YulIdentifier",
"src": "1787:9:11"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "1717:142:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1757:5:11",
"nodeType": "YulTypedName",
"src": "1757:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "1767:9:11",
"nodeType": "YulTypedName",
"src": "1767:9:11",
"type": ""
}
],
"src": "1717:142:11"
},
{
"body": {
"nativeSrc": "1912:28:11",
"nodeType": "YulBlock",
"src": "1912:28:11",
"statements": [
{
"nativeSrc": "1922:12:11",
"nodeType": "YulAssignment",
"src": "1922:12:11",
"value": {
"name": "value",
"nativeSrc": "1929:5:11",
"nodeType": "YulIdentifier",
"src": "1929:5:11"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "1922:3:11",
"nodeType": "YulIdentifier",
"src": "1922:3:11"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nativeSrc": "1865:75:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1898:5:11",
"nodeType": "YulTypedName",
"src": "1898:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "1908:3:11",
"nodeType": "YulTypedName",
"src": "1908:3:11",
"type": ""
}
],
"src": "1865:75:11"
},
{
"body": {
"nativeSrc": "2022:193:11",
"nodeType": "YulBlock",
"src": "2022:193:11",
"statements": [
{
"nativeSrc": "2032:63:11",
"nodeType": "YulVariableDeclaration",
"src": "2032:63:11",
"value": {
"arguments": [
{
"name": "value_0",
"nativeSrc": "2087:7:11",
"nodeType": "YulIdentifier",
"src": "2087:7:11"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "2056:30:11",
"nodeType": "YulIdentifier",
"src": "2056:30:11"
},
"nativeSrc": "2056:39:11",
"nodeType": "YulFunctionCall",
"src": "2056:39:11"
},
"variables": [
{
"name": "convertedValue_0",
"nativeSrc": "2036:16:11",
"nodeType": "YulTypedName",
"src": "2036:16:11",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "2111:4:11",
"nodeType": "YulIdentifier",
"src": "2111:4:11"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "2151:4:11",
"nodeType": "YulIdentifier",
"src": "2151:4:11"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "2145:5:11",
"nodeType": "YulIdentifier",
"src": "2145:5:11"
},
"nativeSrc": "2145:11:11",
"nodeType": "YulFunctionCall",
"src": "2145:11:11"
},
{
"name": "offset",
"nativeSrc": "2158:6:11",
"nodeType": "YulIdentifier",
"src": "2158:6:11"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nativeSrc": "2190:16:11",
"nodeType": "YulIdentifier",
"src": "2190:16:11"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nativeSrc": "2166:23:11",
"nodeType": "YulIdentifier",
"src": "2166:23:11"
},
"nativeSrc": "2166:41:11",
"nodeType": "YulFunctionCall",
"src": "2166:41:11"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nativeSrc": "2117:27:11",
"nodeType": "YulIdentifier",
"src": "2117:27:11"
},
"nativeSrc": "2117:91:11",
"nodeType": "YulFunctionCall",
"src": "2117:91:11"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "2104:6:11",
"nodeType": "YulIdentifier",
"src": "2104:6:11"
},
"nativeSrc": "2104:105:11",
"nodeType": "YulFunctionCall",
"src": "2104:105:11"
},
"nativeSrc": "2104:105:11",
"nodeType": "YulExpressionStatement",
"src": "2104:105:11"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "1946:269:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "1999:4:11",
"nodeType": "YulTypedName",
"src": "1999:4:11",
"type": ""
},
{
"name": "offset",
"nativeSrc": "2005:6:11",
"nodeType": "YulTypedName",
"src": "2005:6:11",
"type": ""
},
{
"name": "value_0",
"nativeSrc": "2013:7:11",
"nodeType": "YulTypedName",
"src": "2013:7:11",
"type": ""
}
],
"src": "1946:269:11"
},
{
"body": {
"nativeSrc": "2270:24:11",
"nodeType": "YulBlock",
"src": "2270:24:11",
"statements": [
{
"nativeSrc": "2280:8:11",
"nodeType": "YulAssignment",
"src": "2280:8:11",
"value": {
"kind": "number",
"nativeSrc": "2287:1:11",
"nodeType": "YulLiteral",
"src": "2287:1:11",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "2280:3:11",
"nodeType": "YulIdentifier",
"src": "2280:3:11"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "2221:73:11",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nativeSrc": "2266:3:11",
"nodeType": "YulTypedName",
"src": "2266:3:11",
"type": ""
}
],
"src": "2221:73:11"
},
{
"body": {
"nativeSrc": "2353:136:11",
"nodeType": "YulBlock",
"src": "2353:136:11",
"statements": [
{
"nativeSrc": "2363:46:11",
"nodeType": "YulVariableDeclaration",
"src": "2363:46:11",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "2377:30:11",
"nodeType": "YulIdentifier",
"src": "2377:30:11"
},
"nativeSrc": "2377:32:11",
"nodeType": "YulFunctionCall",
"src": "2377:32:11"
},
"variables": [
{
"name": "zero_0",
"nativeSrc": "2367:6:11",
"nodeType": "YulTypedName",
"src": "2367:6:11",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "2462:4:11",
"nodeType": "YulIdentifier",
"src": "2462:4:11"
},
{
"name": "offset",
"nativeSrc": "2468:6:11",
"nodeType": "YulIdentifier",
"src": "2468:6:11"
},
{
"name": "zero_0",
"nativeSrc": "2476:6:11",
"nodeType": "YulIdentifier",
"src": "2476:6:11"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "2418:43:11",
"nodeType": "YulIdentifier",
"src": "2418:43:11"
},
"nativeSrc": "2418:65:11",
"nodeType": "YulFunctionCall",
"src": "2418:65:11"
},
"nativeSrc": "2418:65:11",
"nodeType": "YulExpressionStatement",
"src": "2418:65:11"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "2300:189:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "2339:4:11",
"nodeType": "YulTypedName",
"src": "2339:4:11",
"type": ""
},
{
"name": "offset",
"nativeSrc": "2345:6:11",
"nodeType": "YulTypedName",
"src": "2345:6:11",
"type": ""
}
],
"src": "2300:189:11"
},
{
"body": {
"nativeSrc": "2545:136:11",
"nodeType": "YulBlock",
"src": "2545:136:11",
"statements": [
{
"body": {
"nativeSrc": "2612:63:11",
"nodeType": "YulBlock",
"src": "2612:63:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nativeSrc": "2656:5:11",
"nodeType": "YulIdentifier",
"src": "2656:5:11"
},
{
"kind": "number",
"nativeSrc": "2663:1:11",
"nodeType": "YulLiteral",
"src": "2663:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "2626:29:11",
"nodeType": "YulIdentifier",
"src": "2626:29:11"
},
"nativeSrc": "2626:39:11",
"nodeType": "YulFunctionCall",
"src": "2626:39:11"
},
"nativeSrc": "2626:39:11",
"nodeType": "YulExpressionStatement",
"src": "2626:39:11"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nativeSrc": "2565:5:11",
"nodeType": "YulIdentifier",
"src": "2565:5:11"
},
{
"name": "end",
"nativeSrc": "2572:3:11",
"nodeType": "YulIdentifier",
"src": "2572:3:11"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "2562:2:11",
"nodeType": "YulIdentifier",
"src": "2562:2:11"
},
"nativeSrc": "2562:14:11",
"nodeType": "YulFunctionCall",
"src": "2562:14:11"
},
"nativeSrc": "2555:120:11",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "2577:26:11",
"nodeType": "YulBlock",
"src": "2577:26:11",
"statements": [
{
"nativeSrc": "2579:22:11",
"nodeType": "YulAssignment",
"src": "2579:22:11",
"value": {
"arguments": [
{
"name": "start",
"nativeSrc": "2592:5:11",
"nodeType": "YulIdentifier",
"src": "2592:5:11"
},
{
"kind": "number",
"nativeSrc": "2599:1:11",
"nodeType": "YulLiteral",
"src": "2599:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2588:3:11",
"nodeType": "YulIdentifier",
"src": "2588:3:11"
},
"nativeSrc": "2588:13:11",
"nodeType": "YulFunctionCall",
"src": "2588:13:11"
},
"variableNames": [
{
"name": "start",
"nativeSrc": "2579:5:11",
"nodeType": "YulIdentifier",
"src": "2579:5:11"
}
]
}
]
},
"pre": {
"nativeSrc": "2559:2:11",
"nodeType": "YulBlock",
"src": "2559:2:11",
"statements": []
},
"src": "2555:120:11"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "2495:186:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nativeSrc": "2533:5:11",
"nodeType": "YulTypedName",
"src": "2533:5:11",
"type": ""
},
{
"name": "end",
"nativeSrc": "2540:3:11",
"nodeType": "YulTypedName",
"src": "2540:3:11",
"type": ""
}
],
"src": "2495:186:11"
},
{
"body": {
"nativeSrc": "2766:464:11",
"nodeType": "YulBlock",
"src": "2766:464:11",
"statements": [
{
"body": {
"nativeSrc": "2792:431:11",
"nodeType": "YulBlock",
"src": "2792:431:11",
"statements": [
{
"nativeSrc": "2806:54:11",
"nodeType": "YulVariableDeclaration",
"src": "2806:54:11",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "2854:5:11",
"nodeType": "YulIdentifier",
"src": "2854:5:11"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "2822:31:11",
"nodeType": "YulIdentifier",
"src": "2822:31:11"
},
"nativeSrc": "2822:38:11",
"nodeType": "YulFunctionCall",
"src": "2822:38:11"
},
"variables": [
{
"name": "dataArea",
"nativeSrc": "2810:8:11",
"nodeType": "YulTypedName",
"src": "2810:8:11",
"type": ""
}
]
},
{
"nativeSrc": "2873:63:11",
"nodeType": "YulVariableDeclaration",
"src": "2873:63:11",
"value": {
"arguments": [
{
"name": "dataArea",
"nativeSrc": "2896:8:11",
"nodeType": "YulIdentifier",
"src": "2896:8:11"
},
{
"arguments": [
{
"name": "startIndex",
"nativeSrc": "2924:10:11",
"nodeType": "YulIdentifier",
"src": "2924:10:11"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "2906:17:11",
"nodeType": "YulIdentifier",
"src": "2906:17:11"
},
"nativeSrc": "2906:29:11",
"nodeType": "YulFunctionCall",
"src": "2906:29:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2892:3:11",
"nodeType": "YulIdentifier",
"src": "2892:3:11"
},
"nativeSrc": "2892:44:11",
"nodeType": "YulFunctionCall",
"src": "2892:44:11"
},
"variables": [
{
"name": "deleteStart",
"nativeSrc": "2877:11:11",
"nodeType": "YulTypedName",
"src": "2877:11:11",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3093:27:11",
"nodeType": "YulBlock",
"src": "3093:27:11",
"statements": [
{
"nativeSrc": "3095:23:11",
"nodeType": "YulAssignment",
"src": "3095:23:11",
"value": {
"name": "dataArea",
"nativeSrc": "3110:8:11",
"nodeType": "YulIdentifier",
"src": "3110:8:11"
},
"variableNames": [
{
"name": "deleteStart",
"nativeSrc": "3095:11:11",
"nodeType": "YulIdentifier",
"src": "3095:11:11"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nativeSrc": "3077:10:11",
"nodeType": "YulIdentifier",
"src": "3077:10:11"
},
{
"kind": "number",
"nativeSrc": "3089:2:11",
"nodeType": "YulLiteral",
"src": "3089:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "3074:2:11",
"nodeType": "YulIdentifier",
"src": "3074:2:11"
},
"nativeSrc": "3074:18:11",
"nodeType": "YulFunctionCall",
"src": "3074:18:11"
},
"nativeSrc": "3071:49:11",
"nodeType": "YulIf",
"src": "3071:49:11"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nativeSrc": "3162:11:11",
"nodeType": "YulIdentifier",
"src": "3162:11:11"
},
{
"arguments": [
{
"name": "dataArea",
"nativeSrc": "3179:8:11",
"nodeType": "YulIdentifier",
"src": "3179:8:11"
},
{
"arguments": [
{
"name": "len",
"nativeSrc": "3207:3:11",
"nodeType": "YulIdentifier",
"src": "3207:3:11"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "3189:17:11",
"nodeType": "YulIdentifier",
"src": "3189:17:11"
},
"nativeSrc": "3189:22:11",
"nodeType": "YulFunctionCall",
"src": "3189:22:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3175:3:11",
"nodeType": "YulIdentifier",
"src": "3175:3:11"
},
"nativeSrc": "3175:37:11",
"nodeType": "YulFunctionCall",
"src": "3175:37:11"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "3133:28:11",
"nodeType": "YulIdentifier",
"src": "3133:28:11"
},
"nativeSrc": "3133:80:11",
"nodeType": "YulFunctionCall",
"src": "3133:80:11"
},
"nativeSrc": "3133:80:11",
"nodeType": "YulExpressionStatement",
"src": "3133:80:11"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nativeSrc": "2783:3:11",
"nodeType": "YulIdentifier",
"src": "2783:3:11"
},
{
"kind": "number",
"nativeSrc": "2788:2:11",
"nodeType": "YulLiteral",
"src": "2788:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2780:2:11",
"nodeType": "YulIdentifier",
"src": "2780:2:11"
},
"nativeSrc": "2780:11:11",
"nodeType": "YulFunctionCall",
"src": "2780:11:11"
},
"nativeSrc": "2777:446:11",
"nodeType": "YulIf",
"src": "2777:446:11"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "2687:543:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nativeSrc": "2742:5:11",
"nodeType": "YulTypedName",
"src": "2742:5:11",
"type": ""
},
{
"name": "len",
"nativeSrc": "2749:3:11",
"nodeType": "YulTypedName",
"src": "2749:3:11",
"type": ""
},
{
"name": "startIndex",
"nativeSrc": "2754:10:11",
"nodeType": "YulTypedName",
"src": "2754:10:11",
"type": ""
}
],
"src": "2687:543:11"
},
{
"body": {
"nativeSrc": "3299:54:11",
"nodeType": "YulBlock",
"src": "3299:54:11",
"statements": [
{
"nativeSrc": "3309:37:11",
"nodeType": "YulAssignment",
"src": "3309:37:11",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "3334:4:11",
"nodeType": "YulIdentifier",
"src": "3334:4:11"
},
{
"name": "value",
"nativeSrc": "3340:5:11",
"nodeType": "YulIdentifier",
"src": "3340:5:11"
}
],
"functionName": {
"name": "shr",
"nativeSrc": "3330:3:11",
"nodeType": "YulIdentifier",
"src": "3330:3:11"
},
"nativeSrc": "3330:16:11",
"nodeType": "YulFunctionCall",
"src": "3330:16:11"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "3309:8:11",
"nodeType": "YulIdentifier",
"src": "3309:8:11"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "3236:117:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "3274:4:11",
"nodeType": "YulTypedName",
"src": "3274:4:11",
"type": ""
},
{
"name": "value",
"nativeSrc": "3280:5:11",
"nodeType": "YulTypedName",
"src": "3280:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "3290:8:11",
"nodeType": "YulTypedName",
"src": "3290:8:11",
"type": ""
}
],
"src": "3236:117:11"
},
{
"body": {
"nativeSrc": "3410:118:11",
"nodeType": "YulBlock",
"src": "3410:118:11",
"statements": [
{
"nativeSrc": "3420:68:11",
"nodeType": "YulVariableDeclaration",
"src": "3420:68:11",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3469:1:11",
"nodeType": "YulLiteral",
"src": "3469:1:11",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nativeSrc": "3472:5:11",
"nodeType": "YulIdentifier",
"src": "3472:5:11"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "3465:3:11",
"nodeType": "YulIdentifier",
"src": "3465:3:11"
},
"nativeSrc": "3465:13:11",
"nodeType": "YulFunctionCall",
"src": "3465:13:11"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3484:1:11",
"nodeType": "YulLiteral",
"src": "3484:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nativeSrc": "3480:3:11",
"nodeType": "YulIdentifier",
"src": "3480:3:11"
},
"nativeSrc": "3480:6:11",
"nodeType": "YulFunctionCall",
"src": "3480:6:11"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "3436:28:11",
"nodeType": "YulIdentifier",
"src": "3436:28:11"
},
"nativeSrc": "3436:51:11",
"nodeType": "YulFunctionCall",
"src": "3436:51:11"
}
],
"functionName": {
"name": "not",
"nativeSrc": "3432:3:11",
"nodeType": "YulIdentifier",
"src": "3432:3:11"
},
"nativeSrc": "3432:56:11",
"nodeType": "YulFunctionCall",
"src": "3432:56:11"
},
"variables": [
{
"name": "mask",
"nativeSrc": "3424:4:11",
"nodeType": "YulTypedName",
"src": "3424:4:11",
"type": ""
}
]
},
{
"nativeSrc": "3497:25:11",
"nodeType": "YulAssignment",
"src": "3497:25:11",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3511:4:11",
"nodeType": "YulIdentifier",
"src": "3511:4:11"
},
{
"name": "mask",
"nativeSrc": "3517:4:11",
"nodeType": "YulIdentifier",
"src": "3517:4:11"
}
],
"functionName": {
"name": "and",
"nativeSrc": "3507:3:11",
"nodeType": "YulIdentifier",
"src": "3507:3:11"
},
"nativeSrc": "3507:15:11",
"nodeType": "YulFunctionCall",
"src": "3507:15:11"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "3497:6:11",
"nodeType": "YulIdentifier",
"src": "3497:6:11"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nativeSrc": "3359:169:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "3387:4:11",
"nodeType": "YulTypedName",
"src": "3387:4:11",
"type": ""
},
{
"name": "bytes",
"nativeSrc": "3393:5:11",
"nodeType": "YulTypedName",
"src": "3393:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "3403:6:11",
"nodeType": "YulTypedName",
"src": "3403:6:11",
"type": ""
}
],
"src": "3359:169:11"
},
{
"body": {
"nativeSrc": "3614:214:11",
"nodeType": "YulBlock",
"src": "3614:214:11",
"statements": [
{
"nativeSrc": "3747:37:11",
"nodeType": "YulAssignment",
"src": "3747:37:11",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3774:4:11",
"nodeType": "YulIdentifier",
"src": "3774:4:11"
},
{
"name": "len",
"nativeSrc": "3780:3:11",
"nodeType": "YulIdentifier",
"src": "3780:3:11"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "3755:18:11",
"nodeType": "YulIdentifier",
"src": "3755:18:11"
},
"nativeSrc": "3755:29:11",
"nodeType": "YulFunctionCall",
"src": "3755:29:11"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "3747:4:11",
"nodeType": "YulIdentifier",
"src": "3747:4:11"
}
]
},
{
"nativeSrc": "3793:29:11",
"nodeType": "YulAssignment",
"src": "3793:29:11",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "3804:4:11",
"nodeType": "YulIdentifier",
"src": "3804:4:11"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "3814:1:11",
"nodeType": "YulLiteral",
"src": "3814:1:11",
"type": "",
"value": "2"
},
{
"name": "len",
"nativeSrc": "3817:3:11",
"nodeType": "YulIdentifier",
"src": "3817:3:11"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "3810:3:11",
"nodeType": "YulIdentifier",
"src": "3810:3:11"
},
"nativeSrc": "3810:11:11",
"nodeType": "YulFunctionCall",
"src": "3810:11:11"
}
],
"functionName": {
"name": "or",
"nativeSrc": "3801:2:11",
"nodeType": "YulIdentifier",
"src": "3801:2:11"
},
"nativeSrc": "3801:21:11",
"nodeType": "YulFunctionCall",
"src": "3801:21:11"
},
"variableNames": [
{
"name": "used",
"nativeSrc": "3793:4:11",
"nodeType": "YulIdentifier",
"src": "3793:4:11"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "3533:295:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "3595:4:11",
"nodeType": "YulTypedName",
"src": "3595:4:11",
"type": ""
},
{
"name": "len",
"nativeSrc": "3601:3:11",
"nodeType": "YulTypedName",
"src": "3601:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nativeSrc": "3609:4:11",
"nodeType": "YulTypedName",
"src": "3609:4:11",
"type": ""
}
],
"src": "3533:295:11"
},
{
"body": {
"nativeSrc": "3925:1303:11",
"nodeType": "YulBlock",
"src": "3925:1303:11",
"statements": [
{
"nativeSrc": "3936:51:11",
"nodeType": "YulVariableDeclaration",
"src": "3936:51:11",
"value": {
"arguments": [
{
"name": "src",
"nativeSrc": "3983:3:11",
"nodeType": "YulIdentifier",
"src": "3983:3:11"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "3950:32:11",
"nodeType": "YulIdentifier",
"src": "3950:32:11"
},
"nativeSrc": "3950:37:11",
"nodeType": "YulFunctionCall",
"src": "3950:37:11"
},
"variables": [
{
"name": "newLen",
"nativeSrc": "3940:6:11",
"nodeType": "YulTypedName",
"src": "3940:6:11",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4072:22:11",
"nodeType": "YulBlock",
"src": "4072:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "4074:16:11",
"nodeType": "YulIdentifier",
"src": "4074:16:11"
},
"nativeSrc": "4074:18:11",
"nodeType": "YulFunctionCall",
"src": "4074:18:11"
},
"nativeSrc": "4074:18:11",
"nodeType": "YulExpressionStatement",
"src": "4074:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4044:6:11",
"nodeType": "YulIdentifier",
"src": "4044:6:11"
},
{
"kind": "number",
"nativeSrc": "4052:18:11",
"nodeType": "YulLiteral",
"src": "4052:18:11",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4041:2:11",
"nodeType": "YulIdentifier",
"src": "4041:2:11"
},
"nativeSrc": "4041:30:11",
"nodeType": "YulFunctionCall",
"src": "4041:30:11"
},
"nativeSrc": "4038:56:11",
"nodeType": "YulIf",
"src": "4038:56:11"
},
{
"nativeSrc": "4104:52:11",
"nodeType": "YulVariableDeclaration",
"src": "4104:52:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "4150:4:11",
"nodeType": "YulIdentifier",
"src": "4150:4:11"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "4144:5:11",
"nodeType": "YulIdentifier",
"src": "4144:5:11"
},
"nativeSrc": "4144:11:11",
"nodeType": "YulFunctionCall",
"src": "4144:11:11"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nativeSrc": "4118:25:11",
"nodeType": "YulIdentifier",
"src": "4118:25:11"
},
"nativeSrc": "4118:38:11",
"nodeType": "YulFunctionCall",
"src": "4118:38:11"
},
"variables": [
{
"name": "oldLen",
"nativeSrc": "4108:6:11",
"nodeType": "YulTypedName",
"src": "4108:6:11",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4249:4:11",
"nodeType": "YulIdentifier",
"src": "4249:4:11"
},
{
"name": "oldLen",
"nativeSrc": "4255:6:11",
"nodeType": "YulIdentifier",
"src": "4255:6:11"
},
{
"name": "newLen",
"nativeSrc": "4263:6:11",
"nodeType": "YulIdentifier",
"src": "4263:6:11"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "4203:45:11",
"nodeType": "YulIdentifier",
"src": "4203:45:11"
},
"nativeSrc": "4203:67:11",
"nodeType": "YulFunctionCall",
"src": "4203:67:11"
},
"nativeSrc": "4203:67:11",
"nodeType": "YulExpressionStatement",
"src": "4203:67:11"
},
{
"nativeSrc": "4280:18:11",
"nodeType": "YulVariableDeclaration",
"src": "4280:18:11",
"value": {
"kind": "number",
"nativeSrc": "4297:1:11",
"nodeType": "YulLiteral",
"src": "4297:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nativeSrc": "4284:9:11",
"nodeType": "YulTypedName",
"src": "4284:9:11",
"type": ""
}
]
},
{
"nativeSrc": "4308:17:11",
"nodeType": "YulAssignment",
"src": "4308:17:11",
"value": {
"kind": "number",
"nativeSrc": "4321:4:11",
"nodeType": "YulLiteral",
"src": "4321:4:11",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "4308:9:11",
"nodeType": "YulIdentifier",
"src": "4308:9:11"
}
]
},
{
"cases": [
{
"body": {
"nativeSrc": "4372:611:11",
"nodeType": "YulBlock",
"src": "4372:611:11",
"statements": [
{
"nativeSrc": "4386:37:11",
"nodeType": "YulVariableDeclaration",
"src": "4386:37:11",
"value": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4405:6:11",
"nodeType": "YulIdentifier",
"src": "4405:6:11"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "4417:4:11",
"nodeType": "YulLiteral",
"src": "4417:4:11",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nativeSrc": "4413:3:11",
"nodeType": "YulIdentifier",
"src": "4413:3:11"
},
"nativeSrc": "4413:9:11",
"nodeType": "YulFunctionCall",
"src": "4413:9:11"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4401:3:11",
"nodeType": "YulIdentifier",
"src": "4401:3:11"
},
"nativeSrc": "4401:22:11",
"nodeType": "YulFunctionCall",
"src": "4401:22:11"
},
"variables": [
{
"name": "loopEnd",
"nativeSrc": "4390:7:11",
"nodeType": "YulTypedName",
"src": "4390:7:11",
"type": ""
}
]
},
{
"nativeSrc": "4437:51:11",
"nodeType": "YulVariableDeclaration",
"src": "4437:51:11",
"value": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4483:4:11",
"nodeType": "YulIdentifier",
"src": "4483:4:11"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "4451:31:11",
"nodeType": "YulIdentifier",
"src": "4451:31:11"
},
"nativeSrc": "4451:37:11",
"nodeType": "YulFunctionCall",
"src": "4451:37:11"
},
"variables": [
{
"name": "dstPtr",
"nativeSrc": "4441:6:11",
"nodeType": "YulTypedName",
"src": "4441:6:11",
"type": ""
}
]
},
{
"nativeSrc": "4501:10:11",
"nodeType": "YulVariableDeclaration",
"src": "4501:10:11",
"value": {
"kind": "number",
"nativeSrc": "4510:1:11",
"nodeType": "YulLiteral",
"src": "4510:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "4505:1:11",
"nodeType": "YulTypedName",
"src": "4505:1:11",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4569:163:11",
"nodeType": "YulBlock",
"src": "4569:163:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4594:6:11",
"nodeType": "YulIdentifier",
"src": "4594:6:11"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "4612:3:11",
"nodeType": "YulIdentifier",
"src": "4612:3:11"
},
{
"name": "srcOffset",
"nativeSrc": "4617:9:11",
"nodeType": "YulIdentifier",
"src": "4617:9:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4608:3:11",
"nodeType": "YulIdentifier",
"src": "4608:3:11"
},
"nativeSrc": "4608:19:11",
"nodeType": "YulFunctionCall",
"src": "4608:19:11"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4602:5:11",
"nodeType": "YulIdentifier",
"src": "4602:5:11"
},
"nativeSrc": "4602:26:11",
"nodeType": "YulFunctionCall",
"src": "4602:26:11"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4587:6:11",
"nodeType": "YulIdentifier",
"src": "4587:6:11"
},
"nativeSrc": "4587:42:11",
"nodeType": "YulFunctionCall",
"src": "4587:42:11"
},
"nativeSrc": "4587:42:11",
"nodeType": "YulExpressionStatement",
"src": "4587:42:11"
},
{
"nativeSrc": "4646:24:11",
"nodeType": "YulAssignment",
"src": "4646:24:11",
"value": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4660:6:11",
"nodeType": "YulIdentifier",
"src": "4660:6:11"
},
{
"kind": "number",
"nativeSrc": "4668:1:11",
"nodeType": "YulLiteral",
"src": "4668:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4656:3:11",
"nodeType": "YulIdentifier",
"src": "4656:3:11"
},
"nativeSrc": "4656:14:11",
"nodeType": "YulFunctionCall",
"src": "4656:14:11"
},
"variableNames": [
{
"name": "dstPtr",
"nativeSrc": "4646:6:11",
"nodeType": "YulIdentifier",
"src": "4646:6:11"
}
]
},
{
"nativeSrc": "4687:31:11",
"nodeType": "YulAssignment",
"src": "4687:31:11",
"value": {
"arguments": [
{
"name": "srcOffset",
"nativeSrc": "4704:9:11",
"nodeType": "YulIdentifier",
"src": "4704:9:11"
},
{
"kind": "number",
"nativeSrc": "4715:2:11",
"nodeType": "YulLiteral",
"src": "4715:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4700:3:11",
"nodeType": "YulIdentifier",
"src": "4700:3:11"
},
"nativeSrc": "4700:18:11",
"nodeType": "YulFunctionCall",
"src": "4700:18:11"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "4687:9:11",
"nodeType": "YulIdentifier",
"src": "4687:9:11"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "4535:1:11",
"nodeType": "YulIdentifier",
"src": "4535:1:11"
},
{
"name": "loopEnd",
"nativeSrc": "4538:7:11",
"nodeType": "YulIdentifier",
"src": "4538:7:11"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "4532:2:11",
"nodeType": "YulIdentifier",
"src": "4532:2:11"
},
"nativeSrc": "4532:14:11",
"nodeType": "YulFunctionCall",
"src": "4532:14:11"
},
"nativeSrc": "4524:208:11",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "4547:21:11",
"nodeType": "YulBlock",
"src": "4547:21:11",
"statements": [
{
"nativeSrc": "4549:17:11",
"nodeType": "YulAssignment",
"src": "4549:17:11",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "4558:1:11",
"nodeType": "YulIdentifier",
"src": "4558:1:11"
},
{
"kind": "number",
"nativeSrc": "4561:4:11",
"nodeType": "YulLiteral",
"src": "4561:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4554:3:11",
"nodeType": "YulIdentifier",
"src": "4554:3:11"
},
"nativeSrc": "4554:12:11",
"nodeType": "YulFunctionCall",
"src": "4554:12:11"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "4549:1:11",
"nodeType": "YulIdentifier",
"src": "4549:1:11"
}
]
}
]
},
"pre": {
"nativeSrc": "4528:3:11",
"nodeType": "YulBlock",
"src": "4528:3:11",
"statements": []
},
"src": "4524:208:11"
},
{
"body": {
"nativeSrc": "4768:156:11",
"nodeType": "YulBlock",
"src": "4768:156:11",
"statements": [
{
"nativeSrc": "4786:43:11",
"nodeType": "YulVariableDeclaration",
"src": "4786:43:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "4813:3:11",
"nodeType": "YulIdentifier",
"src": "4813:3:11"
},
{
"name": "srcOffset",
"nativeSrc": "4818:9:11",
"nodeType": "YulIdentifier",
"src": "4818:9:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4809:3:11",
"nodeType": "YulIdentifier",
"src": "4809:3:11"
},
"nativeSrc": "4809:19:11",
"nodeType": "YulFunctionCall",
"src": "4809:19:11"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4803:5:11",
"nodeType": "YulIdentifier",
"src": "4803:5:11"
},
"nativeSrc": "4803:26:11",
"nodeType": "YulFunctionCall",
"src": "4803:26:11"
},
"variables": [
{
"name": "lastValue",
"nativeSrc": "4790:9:11",
"nodeType": "YulTypedName",
"src": "4790:9:11",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "4853:6:11",
"nodeType": "YulIdentifier",
"src": "4853:6:11"
},
{
"arguments": [
{
"name": "lastValue",
"nativeSrc": "4880:9:11",
"nodeType": "YulIdentifier",
"src": "4880:9:11"
},
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "4895:6:11",
"nodeType": "YulIdentifier",
"src": "4895:6:11"
},
{
"kind": "number",
"nativeSrc": "4903:4:11",
"nodeType": "YulLiteral",
"src": "4903:4:11",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4891:3:11",
"nodeType": "YulIdentifier",
"src": "4891:3:11"
},
"nativeSrc": "4891:17:11",
"nodeType": "YulFunctionCall",
"src": "4891:17:11"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "4861:18:11",
"nodeType": "YulIdentifier",
"src": "4861:18:11"
},
"nativeSrc": "4861:48:11",
"nodeType": "YulFunctionCall",
"src": "4861:48:11"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4846:6:11",
"nodeType": "YulIdentifier",
"src": "4846:6:11"
},
"nativeSrc": "4846:64:11",
"nodeType": "YulFunctionCall",
"src": "4846:64:11"
},
"nativeSrc": "4846:64:11",
"nodeType": "YulExpressionStatement",
"src": "4846:64:11"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nativeSrc": "4751:7:11",
"nodeType": "YulIdentifier",
"src": "4751:7:11"
},
{
"name": "newLen",
"nativeSrc": "4760:6:11",
"nodeType": "YulIdentifier",
"src": "4760:6:11"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "4748:2:11",
"nodeType": "YulIdentifier",
"src": "4748:2:11"
},
"nativeSrc": "4748:19:11",
"nodeType": "YulFunctionCall",
"src": "4748:19:11"
},
"nativeSrc": "4745:179:11",
"nodeType": "YulIf",
"src": "4745:179:11"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "4944:4:11",
"nodeType": "YulIdentifier",
"src": "4944:4:11"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "4958:6:11",
"nodeType": "YulIdentifier",
"src": "4958:6:11"
},
{
"kind": "number",
"nativeSrc": "4966:1:11",
"nodeType": "YulLiteral",
"src": "4966:1:11",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "4954:3:11",
"nodeType": "YulIdentifier",
"src": "4954:3:11"
},
"nativeSrc": "4954:14:11",
"nodeType": "YulFunctionCall",
"src": "4954:14:11"
},
{
"kind": "number",
"nativeSrc": "4970:1:11",
"nodeType": "YulLiteral",
"src": "4970:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4950:3:11",
"nodeType": "YulIdentifier",
"src": "4950:3:11"
},
"nativeSrc": "4950:22:11",
"nodeType": "YulFunctionCall",
"src": "4950:22:11"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "4937:6:11",
"nodeType": "YulIdentifier",
"src": "4937:6:11"
},
"nativeSrc": "4937:36:11",
"nodeType": "YulFunctionCall",
"src": "4937:36:11"
},
"nativeSrc": "4937:36:11",
"nodeType": "YulExpressionStatement",
"src": "4937:36:11"
}
]
},
"nativeSrc": "4365:618:11",
"nodeType": "YulCase",
"src": "4365:618:11",
"value": {
"kind": "number",
"nativeSrc": "4370:1:11",
"nodeType": "YulLiteral",
"src": "4370:1:11",
"type": "",
"value": "1"
}
},
{
"body": {
"nativeSrc": "5000:222:11",
"nodeType": "YulBlock",
"src": "5000:222:11",
"statements": [
{
"nativeSrc": "5014:14:11",
"nodeType": "YulVariableDeclaration",
"src": "5014:14:11",
"value": {
"kind": "number",
"nativeSrc": "5027:1:11",
"nodeType": "YulLiteral",
"src": "5027:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nativeSrc": "5018:5:11",
"nodeType": "YulTypedName",
"src": "5018:5:11",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "5051:67:11",
"nodeType": "YulBlock",
"src": "5051:67:11",
"statements": [
{
"nativeSrc": "5069:35:11",
"nodeType": "YulAssignment",
"src": "5069:35:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "5088:3:11",
"nodeType": "YulIdentifier",
"src": "5088:3:11"
},
{
"name": "srcOffset",
"nativeSrc": "5093:9:11",
"nodeType": "YulIdentifier",
"src": "5093:9:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5084:3:11",
"nodeType": "YulIdentifier",
"src": "5084:3:11"
},
"nativeSrc": "5084:19:11",
"nodeType": "YulFunctionCall",
"src": "5084:19:11"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "5078:5:11",
"nodeType": "YulIdentifier",
"src": "5078:5:11"
},
"nativeSrc": "5078:26:11",
"nodeType": "YulFunctionCall",
"src": "5078:26:11"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "5069:5:11",
"nodeType": "YulIdentifier",
"src": "5069:5:11"
}
]
}
]
},
"condition": {
"name": "newLen",
"nativeSrc": "5044:6:11",
"nodeType": "YulIdentifier",
"src": "5044:6:11"
},
"nativeSrc": "5041:77:11",
"nodeType": "YulIf",
"src": "5041:77:11"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "5138:4:11",
"nodeType": "YulIdentifier",
"src": "5138:4:11"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "5197:5:11",
"nodeType": "YulIdentifier",
"src": "5197:5:11"
},
{
"name": "newLen",
"nativeSrc": "5204:6:11",
"nodeType": "YulIdentifier",
"src": "5204:6:11"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "5144:52:11",
"nodeType": "YulIdentifier",
"src": "5144:52:11"
},
"nativeSrc": "5144:67:11",
"nodeType": "YulFunctionCall",
"src": "5144:67:11"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "5131:6:11",
"nodeType": "YulIdentifier",
"src": "5131:6:11"
},
"nativeSrc": "5131:81:11",
"nodeType": "YulFunctionCall",
"src": "5131:81:11"
},
"nativeSrc": "5131:81:11",
"nodeType": "YulExpressionStatement",
"src": "5131:81:11"
}
]
},
"nativeSrc": "4992:230:11",
"nodeType": "YulCase",
"src": "4992:230:11",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "4345:6:11",
"nodeType": "YulIdentifier",
"src": "4345:6:11"
},
{
"kind": "number",
"nativeSrc": "4353:2:11",
"nodeType": "YulLiteral",
"src": "4353:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4342:2:11",
"nodeType": "YulIdentifier",
"src": "4342:2:11"
},
"nativeSrc": "4342:14:11",
"nodeType": "YulFunctionCall",
"src": "4342:14:11"
},
"nativeSrc": "4335:887:11",
"nodeType": "YulSwitch",
"src": "4335:887:11"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nativeSrc": "3833:1395:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "3914:4:11",
"nodeType": "YulTypedName",
"src": "3914:4:11",
"type": ""
},
{
"name": "src",
"nativeSrc": "3920:3:11",
"nodeType": "YulTypedName",
"src": "3920:3:11",
"type": ""
}
],
"src": "3833:1395:11"
},
{
"body": {
"nativeSrc": "5279:81:11",
"nodeType": "YulBlock",
"src": "5279:81:11",
"statements": [
{
"nativeSrc": "5289:65:11",
"nodeType": "YulAssignment",
"src": "5289:65:11",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "5304:5:11",
"nodeType": "YulIdentifier",
"src": "5304:5:11"
},
{
"kind": "number",
"nativeSrc": "5311:42:11",
"nodeType": "YulLiteral",
"src": "5311:42:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "5300:3:11",
"nodeType": "YulIdentifier",
"src": "5300:3:11"
},
"nativeSrc": "5300:54:11",
"nodeType": "YulFunctionCall",
"src": "5300:54:11"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "5289:7:11",
"nodeType": "YulIdentifier",
"src": "5289:7:11"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "5234:126:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5261:5:11",
"nodeType": "YulTypedName",
"src": "5261:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "5271:7:11",
"nodeType": "YulTypedName",
"src": "5271:7:11",
"type": ""
}
],
"src": "5234:126:11"
},
{
"body": {
"nativeSrc": "5411:51:11",
"nodeType": "YulBlock",
"src": "5411:51:11",
"statements": [
{
"nativeSrc": "5421:35:11",
"nodeType": "YulAssignment",
"src": "5421:35:11",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "5450:5:11",
"nodeType": "YulIdentifier",
"src": "5450:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "5432:17:11",
"nodeType": "YulIdentifier",
"src": "5432:17:11"
},
"nativeSrc": "5432:24:11",
"nodeType": "YulFunctionCall",
"src": "5432:24:11"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "5421:7:11",
"nodeType": "YulIdentifier",
"src": "5421:7:11"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "5366:96:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5393:5:11",
"nodeType": "YulTypedName",
"src": "5393:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "5403:7:11",
"nodeType": "YulTypedName",
"src": "5403:7:11",
"type": ""
}
],
"src": "5366:96:11"
},
{
"body": {
"nativeSrc": "5533:53:11",
"nodeType": "YulBlock",
"src": "5533:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5550:3:11",
"nodeType": "YulIdentifier",
"src": "5550:3:11"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "5573:5:11",
"nodeType": "YulIdentifier",
"src": "5573:5:11"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "5555:17:11",
"nodeType": "YulIdentifier",
"src": "5555:17:11"
},
"nativeSrc": "5555:24:11",
"nodeType": "YulFunctionCall",
"src": "5555:24:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5543:6:11",
"nodeType": "YulIdentifier",
"src": "5543:6:11"
},
"nativeSrc": "5543:37:11",
"nodeType": "YulFunctionCall",
"src": "5543:37:11"
},
"nativeSrc": "5543:37:11",
"nodeType": "YulExpressionStatement",
"src": "5543:37:11"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "5468:118:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5521:5:11",
"nodeType": "YulTypedName",
"src": "5521:5:11",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5528:3:11",
"nodeType": "YulTypedName",
"src": "5528:3:11",
"type": ""
}
],
"src": "5468:118:11"
},
{
"body": {
"nativeSrc": "5690:124:11",
"nodeType": "YulBlock",
"src": "5690:124:11",
"statements": [
{
"nativeSrc": "5700:26:11",
"nodeType": "YulAssignment",
"src": "5700:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "5712:9:11",
"nodeType": "YulIdentifier",
"src": "5712:9:11"
},
{
"kind": "number",
"nativeSrc": "5723:2:11",
"nodeType": "YulLiteral",
"src": "5723:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5708:3:11",
"nodeType": "YulIdentifier",
"src": "5708:3:11"
},
"nativeSrc": "5708:18:11",
"nodeType": "YulFunctionCall",
"src": "5708:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5700:4:11",
"nodeType": "YulIdentifier",
"src": "5700:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "5780:6:11",
"nodeType": "YulIdentifier",
"src": "5780:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5793:9:11",
"nodeType": "YulIdentifier",
"src": "5793:9:11"
},
{
"kind": "number",
"nativeSrc": "5804:1:11",
"nodeType": "YulLiteral",
"src": "5804:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5789:3:11",
"nodeType": "YulIdentifier",
"src": "5789:3:11"
},
"nativeSrc": "5789:17:11",
"nodeType": "YulFunctionCall",
"src": "5789:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "5736:43:11",
"nodeType": "YulIdentifier",
"src": "5736:43:11"
},
"nativeSrc": "5736:71:11",
"nodeType": "YulFunctionCall",
"src": "5736:71:11"
},
"nativeSrc": "5736:71:11",
"nodeType": "YulExpressionStatement",
"src": "5736:71:11"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nativeSrc": "5592:222:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5662:9:11",
"nodeType": "YulTypedName",
"src": "5662:9:11",
"type": ""
},
{
"name": "value0",
"nativeSrc": "5674:6:11",
"nodeType": "YulTypedName",
"src": "5674:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "5685:4:11",
"nodeType": "YulTypedName",
"src": "5685:4:11",
"type": ""
}
],
"src": "5592:222:11"
},
{
"body": {
"nativeSrc": "5848:152:11",
"nodeType": "YulBlock",
"src": "5848:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "5865:1:11",
"nodeType": "YulLiteral",
"src": "5865:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "5868:77:11",
"nodeType": "YulLiteral",
"src": "5868:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5858:6:11",
"nodeType": "YulIdentifier",
"src": "5858:6:11"
},
"nativeSrc": "5858:88:11",
"nodeType": "YulFunctionCall",
"src": "5858:88:11"
},
"nativeSrc": "5858:88:11",
"nodeType": "YulExpressionStatement",
"src": "5858:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "5962:1:11",
"nodeType": "YulLiteral",
"src": "5962:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "5965:4:11",
"nodeType": "YulLiteral",
"src": "5965:4:11",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5955:6:11",
"nodeType": "YulIdentifier",
"src": "5955:6:11"
},
"nativeSrc": "5955:15:11",
"nodeType": "YulFunctionCall",
"src": "5955:15:11"
},
"nativeSrc": "5955:15:11",
"nodeType": "YulExpressionStatement",
"src": "5955:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "5986:1:11",
"nodeType": "YulLiteral",
"src": "5986:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "5989:4:11",
"nodeType": "YulLiteral",
"src": "5989:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "5979:6:11",
"nodeType": "YulIdentifier",
"src": "5979:6:11"
},
"nativeSrc": "5979:15:11",
"nodeType": "YulFunctionCall",
"src": "5979:15:11"
},
"nativeSrc": "5979:15:11",
"nodeType": "YulExpressionStatement",
"src": "5979:15:11"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "5820:180:11",
"nodeType": "YulFunctionDefinition",
"src": "5820:180:11"
},
{
"body": {
"nativeSrc": "6050:147:11",
"nodeType": "YulBlock",
"src": "6050:147:11",
"statements": [
{
"nativeSrc": "6060:25:11",
"nodeType": "YulAssignment",
"src": "6060:25:11",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "6083:1:11",
"nodeType": "YulIdentifier",
"src": "6083:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6065:17:11",
"nodeType": "YulIdentifier",
"src": "6065:17:11"
},
"nativeSrc": "6065:20:11",
"nodeType": "YulFunctionCall",
"src": "6065:20:11"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "6060:1:11",
"nodeType": "YulIdentifier",
"src": "6060:1:11"
}
]
},
{
"nativeSrc": "6094:25:11",
"nodeType": "YulAssignment",
"src": "6094:25:11",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "6117:1:11",
"nodeType": "YulIdentifier",
"src": "6117:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6099:17:11",
"nodeType": "YulIdentifier",
"src": "6099:17:11"
},
"nativeSrc": "6099:20:11",
"nodeType": "YulFunctionCall",
"src": "6099:20:11"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "6094:1:11",
"nodeType": "YulIdentifier",
"src": "6094:1:11"
}
]
},
{
"nativeSrc": "6128:16:11",
"nodeType": "YulAssignment",
"src": "6128:16:11",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "6139:1:11",
"nodeType": "YulIdentifier",
"src": "6139:1:11"
},
{
"name": "y",
"nativeSrc": "6142:1:11",
"nodeType": "YulIdentifier",
"src": "6142:1:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6135:3:11",
"nodeType": "YulIdentifier",
"src": "6135:3:11"
},
"nativeSrc": "6135:9:11",
"nodeType": "YulFunctionCall",
"src": "6135:9:11"
},
"variableNames": [
{
"name": "sum",
"nativeSrc": "6128:3:11",
"nodeType": "YulIdentifier",
"src": "6128:3:11"
}
]
},
{
"body": {
"nativeSrc": "6168:22:11",
"nodeType": "YulBlock",
"src": "6168:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "6170:16:11",
"nodeType": "YulIdentifier",
"src": "6170:16:11"
},
"nativeSrc": "6170:18:11",
"nodeType": "YulFunctionCall",
"src": "6170:18:11"
},
"nativeSrc": "6170:18:11",
"nodeType": "YulExpressionStatement",
"src": "6170:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nativeSrc": "6160:1:11",
"nodeType": "YulIdentifier",
"src": "6160:1:11"
},
{
"name": "sum",
"nativeSrc": "6163:3:11",
"nodeType": "YulIdentifier",
"src": "6163:3:11"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "6157:2:11",
"nodeType": "YulIdentifier",
"src": "6157:2:11"
},
"nativeSrc": "6157:10:11",
"nodeType": "YulFunctionCall",
"src": "6157:10:11"
},
"nativeSrc": "6154:36:11",
"nodeType": "YulIf",
"src": "6154:36:11"
}
]
},
"name": "checked_add_t_uint256",
"nativeSrc": "6006:191:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "6037:1:11",
"nodeType": "YulTypedName",
"src": "6037:1:11",
"type": ""
},
{
"name": "y",
"nativeSrc": "6040:1:11",
"nodeType": "YulTypedName",
"src": "6040:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nativeSrc": "6046:3:11",
"nodeType": "YulTypedName",
"src": "6046:3:11",
"type": ""
}
],
"src": "6006:191:11"
},
{
"body": {
"nativeSrc": "6268:53:11",
"nodeType": "YulBlock",
"src": "6268:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6285:3:11",
"nodeType": "YulIdentifier",
"src": "6285:3:11"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "6308:5:11",
"nodeType": "YulIdentifier",
"src": "6308:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "6290:17:11",
"nodeType": "YulIdentifier",
"src": "6290:17:11"
},
"nativeSrc": "6290:24:11",
"nodeType": "YulFunctionCall",
"src": "6290:24:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6278:6:11",
"nodeType": "YulIdentifier",
"src": "6278:6:11"
},
"nativeSrc": "6278:37:11",
"nodeType": "YulFunctionCall",
"src": "6278:37:11"
},
"nativeSrc": "6278:37:11",
"nodeType": "YulExpressionStatement",
"src": "6278:37:11"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "6203:118:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6256:5:11",
"nodeType": "YulTypedName",
"src": "6256:5:11",
"type": ""
},
{
"name": "pos",
"nativeSrc": "6263:3:11",
"nodeType": "YulTypedName",
"src": "6263:3:11",
"type": ""
}
],
"src": "6203:118:11"
},
{
"body": {
"nativeSrc": "6481:288:11",
"nodeType": "YulBlock",
"src": "6481:288:11",
"statements": [
{
"nativeSrc": "6491:26:11",
"nodeType": "YulAssignment",
"src": "6491:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "6503:9:11",
"nodeType": "YulIdentifier",
"src": "6503:9:11"
},
{
"kind": "number",
"nativeSrc": "6514:2:11",
"nodeType": "YulLiteral",
"src": "6514:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6499:3:11",
"nodeType": "YulIdentifier",
"src": "6499:3:11"
},
"nativeSrc": "6499:18:11",
"nodeType": "YulFunctionCall",
"src": "6499:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "6491:4:11",
"nodeType": "YulIdentifier",
"src": "6491:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "6571:6:11",
"nodeType": "YulIdentifier",
"src": "6571:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6584:9:11",
"nodeType": "YulIdentifier",
"src": "6584:9:11"
},
{
"kind": "number",
"nativeSrc": "6595:1:11",
"nodeType": "YulLiteral",
"src": "6595:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6580:3:11",
"nodeType": "YulIdentifier",
"src": "6580:3:11"
},
"nativeSrc": "6580:17:11",
"nodeType": "YulFunctionCall",
"src": "6580:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "6527:43:11",
"nodeType": "YulIdentifier",
"src": "6527:43:11"
},
"nativeSrc": "6527:71:11",
"nodeType": "YulFunctionCall",
"src": "6527:71:11"
},
"nativeSrc": "6527:71:11",
"nodeType": "YulExpressionStatement",
"src": "6527:71:11"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "6652:6:11",
"nodeType": "YulIdentifier",
"src": "6652:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6665:9:11",
"nodeType": "YulIdentifier",
"src": "6665:9:11"
},
{
"kind": "number",
"nativeSrc": "6676:2:11",
"nodeType": "YulLiteral",
"src": "6676:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6661:3:11",
"nodeType": "YulIdentifier",
"src": "6661:3:11"
},
"nativeSrc": "6661:18:11",
"nodeType": "YulFunctionCall",
"src": "6661:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "6608:43:11",
"nodeType": "YulIdentifier",
"src": "6608:43:11"
},
"nativeSrc": "6608:72:11",
"nodeType": "YulFunctionCall",
"src": "6608:72:11"
},
"nativeSrc": "6608:72:11",
"nodeType": "YulExpressionStatement",
"src": "6608:72:11"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nativeSrc": "6734:6:11",
"nodeType": "YulIdentifier",
"src": "6734:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6747:9:11",
"nodeType": "YulIdentifier",
"src": "6747:9:11"
},
{
"kind": "number",
"nativeSrc": "6758:2:11",
"nodeType": "YulLiteral",
"src": "6758:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6743:3:11",
"nodeType": "YulIdentifier",
"src": "6743:3:11"
},
"nativeSrc": "6743:18:11",
"nodeType": "YulFunctionCall",
"src": "6743:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "6690:43:11",
"nodeType": "YulIdentifier",
"src": "6690:43:11"
},
"nativeSrc": "6690:72:11",
"nodeType": "YulFunctionCall",
"src": "6690:72:11"
},
"nativeSrc": "6690:72:11",
"nodeType": "YulExpressionStatement",
"src": "6690:72:11"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed",
"nativeSrc": "6327:442:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "6437:9:11",
"nodeType": "YulTypedName",
"src": "6437:9:11",
"type": ""
},
{
"name": "value2",
"nativeSrc": "6449:6:11",
"nodeType": "YulTypedName",
"src": "6449:6:11",
"type": ""
},
{
"name": "value1",
"nativeSrc": "6457:6:11",
"nodeType": "YulTypedName",
"src": "6457:6:11",
"type": ""
},
{
"name": "value0",
"nativeSrc": "6465:6:11",
"nodeType": "YulTypedName",
"src": "6465:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "6476:4:11",
"nodeType": "YulTypedName",
"src": "6476:4:11",
"type": ""
}
],
"src": "6327:442:11"
},
{
"body": {
"nativeSrc": "6873:124:11",
"nodeType": "YulBlock",
"src": "6873:124:11",
"statements": [
{
"nativeSrc": "6883:26:11",
"nodeType": "YulAssignment",
"src": "6883:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "6895:9:11",
"nodeType": "YulIdentifier",
"src": "6895:9:11"
},
{
"kind": "number",
"nativeSrc": "6906:2:11",
"nodeType": "YulLiteral",
"src": "6906:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6891:3:11",
"nodeType": "YulIdentifier",
"src": "6891:3:11"
},
"nativeSrc": "6891:18:11",
"nodeType": "YulFunctionCall",
"src": "6891:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "6883:4:11",
"nodeType": "YulIdentifier",
"src": "6883:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "6963:6:11",
"nodeType": "YulIdentifier",
"src": "6963:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6976:9:11",
"nodeType": "YulIdentifier",
"src": "6976:9:11"
},
{
"kind": "number",
"nativeSrc": "6987:1:11",
"nodeType": "YulLiteral",
"src": "6987:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6972:3:11",
"nodeType": "YulIdentifier",
"src": "6972:3:11"
},
"nativeSrc": "6972:17:11",
"nodeType": "YulFunctionCall",
"src": "6972:17:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "6919:43:11",
"nodeType": "YulIdentifier",
"src": "6919:43:11"
},
"nativeSrc": "6919:71:11",
"nodeType": "YulFunctionCall",
"src": "6919:71:11"
},
"nativeSrc": "6919:71:11",
"nodeType": "YulExpressionStatement",
"src": "6919:71:11"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "6775:222:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "6845:9:11",
"nodeType": "YulTypedName",
"src": "6845:9:11",
"type": ""
},
{
"name": "value0",
"nativeSrc": "6857:6:11",
"nodeType": "YulTypedName",
"src": "6857:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "6868:4:11",
"nodeType": "YulTypedName",
"src": "6868:4:11",
"type": ""
}
],
"src": "6775:222:11"
}
]
},
"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_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function 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_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_address_t_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_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}\n",
"id": 11,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b50336040518060400160405280600881526020017f50657065566f74650000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f50564f0000000000000000000000000000000000000000000000000000000000815250816003908161008c91906106fe565b50806004908161009c91906106fe565b5050505f60055f6101000a81548160ff0219169083151502179055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610128575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161011f919061080c565b60405180910390fd5b6101378161016160201b60201c565b50600160068190555061015c336b024306c4097859c43c00000061022660201b60201c565b6108e2565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610296575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161028d919061080c565b60405180910390fd5b6102a75f83836102ab60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036102fb578060025f8282546102ef9190610852565b925050819055506103c9565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610384578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161037b93929190610894565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610410578060025f828254039250508190555061045a565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104b791906108c9565b60405180910390a3505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061053f57607f821691505b602082108103610552576105516104fb565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026105b47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610579565b6105be8683610579565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6106026105fd6105f8846105d6565b6105df565b6105d6565b9050919050565b5f819050919050565b61061b836105e8565b61062f61062782610609565b848454610585565b825550505050565b5f90565b610643610637565b61064e818484610612565b505050565b5b81811015610671576106665f8261063b565b600181019050610654565b5050565b601f8211156106b65761068781610558565b6106908461056a565b8101602085101561069f578190505b6106b36106ab8561056a565b830182610653565b50505b505050565b5f82821c905092915050565b5f6106d65f19846008026106bb565b1980831691505092915050565b5f6106ee83836106c7565b9150826002028217905092915050565b610707826104c4565b67ffffffffffffffff8111156107205761071f6104ce565b5b61072a8254610528565b610735828285610675565b5f60209050601f831160018114610766575f8415610754578287015190505b61075e85826106e3565b8655506107c5565b601f19841661077486610558565b5f5b8281101561079b57848901518255600182019150602085019450602081019050610776565b868310156107b857848901516107b4601f8916826106c7565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6107f6826107cd565b9050919050565b610806816107ec565b82525050565b5f60208201905061081f5f8301846107fd565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61085c826105d6565b9150610867836105d6565b925082820190508082111561087f5761087e610825565b5b92915050565b61088e816105d6565b82525050565b5f6060820190506108a75f8301866107fd565b6108b46020830185610885565b6108c16040830184610885565b949350505050565b5f6020820190506108dc5f830184610885565b92915050565b611f14806108ef5f395ff3fe608060405234801561000f575f80fd5b5060043610610171575f3560e01c8063715018a6116100dc5780638da5cb5b11610095578063a9059cbb1161006f578063a9059cbb14610401578063dd62ed3e14610431578063f26c159f14610461578063f2fde38b1461047d57610171565b80638da5cb5b1461039557806391fc1f2c146103b357806395d89b41146103e357610171565b8063715018a6146102fb578063788649ea1461030557806379cc6790146103215780637a4a34121461033d5780638456cb591461035b578063860838a51461036557610171565b806332cb6b0c1161012e57806332cb6b0c1461024d5780633f4ba83a1461026b57806340c10f191461027557806342966c68146102915780635c975abb146102ad57806370a08231146102cb57610171565b806306fdde0314610175578063095ea7b31461019357806318160ddd146101c357806323b872dd146101e15780632ff2e9dc14610211578063313ce5671461022f575b5f80fd5b61017d610499565b60405161018a919061188a565b60405180910390f35b6101ad60048036038101906101a8919061193b565b610529565b6040516101ba9190611993565b60405180910390f35b6101cb61054b565b6040516101d891906119bb565b60405180910390f35b6101fb60048036038101906101f691906119d4565b610554565b6040516102089190611993565b60405180910390f35b61021961076a565b60405161022691906119bb565b60405180910390f35b61023761077a565b6040516102449190611a3f565b60405180910390f35b610255610782565b60405161026291906119bb565b60405180910390f35b610273610792565b005b61028f600480360381019061028a919061193b565b6107a4565b005b6102ab60048036038101906102a69190611a58565b610822565b005b6102b5610836565b6040516102c29190611993565b60405180910390f35b6102e560048036038101906102e09190611a83565b61084b565b6040516102f291906119bb565b60405180910390f35b610303610890565b005b61031f600480360381019061031a9190611a83565b6108a3565b005b61033b6004803603810190610336919061193b565b610945565b005b610345610965565b60405161035291906119bb565b60405180910390f35b61036361096a565b005b61037f600480360381019061037a9190611a83565b61097c565b60405161038c9190611993565b60405180910390f35b61039d610999565b6040516103aa9190611abd565b60405180910390f35b6103cd60048036038101906103c89190611a83565b6109c2565b6040516103da91906119bb565b60405180910390f35b6103eb6109d7565b6040516103f8919061188a565b60405180910390f35b61041b6004803603810190610416919061193b565b610a67565b6040516104289190611993565b60405180910390f35b61044b60048036038101906104469190611ad6565b610c90565b60405161045891906119bb565b60405180910390f35b61047b60048036038101906104769190611a83565b610d12565b005b61049760048036038101906104929190611a83565b610db5565b005b6060600380546104a890611b41565b80601f01602080910402602001604051908101604052809291908181526020018280546104d490611b41565b801561051f5780601f106104f65761010080835404028352916020019161051f565b820191905f5260205f20905b81548152906001019060200180831161050257829003601f168201915b5050505050905090565b5f80610533610e39565b9050610540818585610e40565b600191505092915050565b5f600254905090565b5f61055d610e52565b610565610e9c565b60075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156105ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e690611bbb565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067090611c23565b60405180910390fd5b6106ca603c60085f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610eeb90919063ffffffff16565b42101561070c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070390611c8b565b60405180910390fd5b4260085f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610759848484610f00565b9050610763610f2e565b9392505050565b6b024306c4097859c43c00000081565b5f6012905090565b6b169e43a85eb381aa5800000081565b61079a610f38565b6107a2610fbf565b565b6107ac610f38565b6b169e43a85eb381aa580000006107d3826107c561054b565b610eeb90919063ffffffff16565b1115610814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080b90611cf3565b60405180910390fd5b61081e8282611020565b5050565b61083361082d610e39565b8261109f565b50565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610898610f38565b6108a15f61111e565b565b6108ab610f38565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167ff915cd9fe234de6e8d3afe7bf2388d35b2b6d48e8c629a24602019bde79c213a60405160405180910390a250565b61095782610951610e39565b836111e3565b610961828261109f565b5050565b603c81565b610972610f38565b61097a611275565b565b6007602052805f5260405f205f915054906101000a900460ff1681565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052805f5260405f205f915090505481565b6060600480546109e690611b41565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1290611b41565b8015610a5d5780601f10610a3457610100808354040283529160200191610a5d565b820191905f5260205f20905b815481529060010190602001808311610a4057829003601f168201915b5050505050905090565b5f610a70610e52565b610a78610e9c565b60075f610a83610e39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090611bbb565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90611c23565b60405180910390fd5b610beb603c60085f610ba3610e39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610eeb90919063ffffffff16565b421015610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490611c8b565b60405180910390fd5b4260085f610c39610e39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610c8083836112d7565b9050610c8a610f2e565b92915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d1a610f38565b600160075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f4f2a367e694e71282f29ab5eaa04c4c0be45ac5bf2ca74fb67068b98bdc2887d60405160405180910390a250565b610dbd610f38565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e2d575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e249190611abd565b60405180910390fd5b610e368161111e565b50565b5f33905090565b610e4d83838360016112f9565b505050565b610e5a610836565b15610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190611d5b565b60405180910390fd5b565b600260065403610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890611dc3565b60405180910390fd5b6002600681905550565b5f8183610ef89190611e0e565b905092915050565b5f80610f0a610e39565b9050610f178582856111e3565b610f228585856114c8565b60019150509392505050565b6001600681905550565b610f40610e39565b73ffffffffffffffffffffffffffffffffffffffff16610f5e610999565b73ffffffffffffffffffffffffffffffffffffffff1614610fbd57610f81610e39565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610fb49190611abd565b60405180910390fd5b565b610fc76115b8565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611009610e39565b6040516110169190611abd565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611090575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110879190611abd565b60405180910390fd5b61109b5f8383611601565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110f575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111069190611abd565b60405180910390fd5b61111a825f83611601565b5050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6111ee8484610c90565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461126f5781811015611260578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161125793929190611e41565b60405180910390fd5b61126e84848484035f6112f9565b5b50505050565b61127d610e52565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586112c0610e39565b6040516112cd9190611abd565b60405180910390a1565b5f806112e1610e39565b90506112ee8185856114c8565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611369575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016113609190611abd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113d9575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113d09190611abd565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156114c2578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114b991906119bb565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611538575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161152f9190611abd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a8575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161159f9190611abd565b60405180910390fd5b6115b3838383611601565b505050565b6115c0610836565b6115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690611ec0565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611651578060025f8282546116459190611e0e565b9250508190555061171f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156116da578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016116d193929190611e41565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611766578060025f82825403925050819055506117b0565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161180d91906119bb565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61185c8261181a565b6118668185611824565b9350611876818560208601611834565b61187f81611842565b840191505092915050565b5f6020820190508181035f8301526118a28184611852565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6118d7826118ae565b9050919050565b6118e7816118cd565b81146118f1575f80fd5b50565b5f81359050611902816118de565b92915050565b5f819050919050565b61191a81611908565b8114611924575f80fd5b50565b5f8135905061193581611911565b92915050565b5f8060408385031215611951576119506118aa565b5b5f61195e858286016118f4565b925050602061196f85828601611927565b9150509250929050565b5f8115159050919050565b61198d81611979565b82525050565b5f6020820190506119a65f830184611984565b92915050565b6119b581611908565b82525050565b5f6020820190506119ce5f8301846119ac565b92915050565b5f805f606084860312156119eb576119ea6118aa565b5b5f6119f8868287016118f4565b9350506020611a09868287016118f4565b9250506040611a1a86828701611927565b9150509250925092565b5f60ff82169050919050565b611a3981611a24565b82525050565b5f602082019050611a525f830184611a30565b92915050565b5f60208284031215611a6d57611a6c6118aa565b5b5f611a7a84828501611927565b91505092915050565b5f60208284031215611a9857611a976118aa565b5b5f611aa5848285016118f4565b91505092915050565b611ab7816118cd565b82525050565b5f602082019050611ad05f830184611aae565b92915050565b5f8060408385031215611aec57611aeb6118aa565b5b5f611af9858286016118f4565b9250506020611b0a858286016118f4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611b5857607f821691505b602082108103611b6b57611b6a611b14565b5b50919050565b7f53656e646572206163636f756e742069732066726f7a656e00000000000000005f82015250565b5f611ba5601883611824565b9150611bb082611b71565b602082019050919050565b5f6020820190508181035f830152611bd281611b99565b9050919050565b7f526563697069656e74206163636f756e742069732066726f7a656e00000000005f82015250565b5f611c0d601b83611824565b9150611c1882611bd9565b602082019050919050565b5f6020820190508181035f830152611c3a81611c01565b9050919050565b7f5472616e7366657220636f6f6c646f776e2061637469766500000000000000005f82015250565b5f611c75601883611824565b9150611c8082611c41565b602082019050919050565b5f6020820190508181035f830152611ca281611c69565b9050919050565b7f4d617820737570706c79206578636565646564000000000000000000000000005f82015250565b5f611cdd601383611824565b9150611ce882611ca9565b602082019050919050565b5f6020820190508181035f830152611d0a81611cd1565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f611d45601083611824565b9150611d5082611d11565b602082019050919050565b5f6020820190508181035f830152611d7281611d39565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f611dad601f83611824565b9150611db882611d79565b602082019050919050565b5f6020820190508181035f830152611dda81611da1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611e1882611908565b9150611e2383611908565b9250828201905080821115611e3b57611e3a611de1565b5b92915050565b5f606082019050611e545f830186611aae565b611e6160208301856119ac565b611e6e60408301846119ac565b949350505050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f611eaa601483611824565b9150611eb582611e76565b602082019050919050565b5f6020820190508181035f830152611ed781611e9e565b905091905056fea264697066735822122097353d100da307f51e0c0c85b289a00d8daa9f892344e40dec15e4478d73f83264736f6c634300081a0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP CALLER PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x8 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x50657065566F7465000000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x3 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x50564F0000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x3 SWAP1 DUP2 PUSH2 0x8C SWAP2 SWAP1 PUSH2 0x6FE JUMP JUMPDEST POP DUP1 PUSH1 0x4 SWAP1 DUP2 PUSH2 0x9C SWAP2 SWAP1 PUSH2 0x6FE JUMP JUMPDEST POP POP POP PUSH0 PUSH1 0x5 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x128 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x11F SWAP2 SWAP1 PUSH2 0x80C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x137 DUP2 PUSH2 0x161 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x6 DUP2 SWAP1 SSTORE POP PUSH2 0x15C CALLER PUSH12 0x24306C4097859C43C000000 PUSH2 0x226 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x8E2 JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x296 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xEC442F0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x28D SWAP2 SWAP1 PUSH2 0x80C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2A7 PUSH0 DUP4 DUP4 PUSH2 0x2AB PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x2FB JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x2EF SWAP2 SWAP1 PUSH2 0x852 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x3C9 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 0x384 JUMPI DUP4 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH32 0xE450D38C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x37B SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x894 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 0x410 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x45A 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 0x4B7 SWAP2 SWAP1 PUSH2 0x8C9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP 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 PUSH2 0x53F JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x552 JUMPI PUSH2 0x551 PUSH2 0x4FB 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 PUSH2 0x5B4 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0x579 JUMP JUMPDEST PUSH2 0x5BE DUP7 DUP4 PUSH2 0x579 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 PUSH2 0x602 PUSH2 0x5FD PUSH2 0x5F8 DUP5 PUSH2 0x5D6 JUMP JUMPDEST PUSH2 0x5DF JUMP JUMPDEST PUSH2 0x5D6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x61B DUP4 PUSH2 0x5E8 JUMP JUMPDEST PUSH2 0x62F PUSH2 0x627 DUP3 PUSH2 0x609 JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0x585 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x643 PUSH2 0x637 JUMP JUMPDEST PUSH2 0x64E DUP2 DUP5 DUP5 PUSH2 0x612 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x671 JUMPI PUSH2 0x666 PUSH0 DUP3 PUSH2 0x63B JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x654 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x6B6 JUMPI PUSH2 0x687 DUP2 PUSH2 0x558 JUMP JUMPDEST PUSH2 0x690 DUP5 PUSH2 0x56A JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x69F JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x6B3 PUSH2 0x6AB DUP6 PUSH2 0x56A JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x653 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x6D6 PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x6BB JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x6EE DUP4 DUP4 PUSH2 0x6C7 JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x707 DUP3 PUSH2 0x4C4 JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x720 JUMPI PUSH2 0x71F PUSH2 0x4CE JUMP JUMPDEST JUMPDEST PUSH2 0x72A DUP3 SLOAD PUSH2 0x528 JUMP JUMPDEST PUSH2 0x735 DUP3 DUP3 DUP6 PUSH2 0x675 JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x766 JUMPI PUSH0 DUP5 ISZERO PUSH2 0x754 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x75E DUP6 DUP3 PUSH2 0x6E3 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x7C5 JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x774 DUP7 PUSH2 0x558 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x79B JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x776 JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x7B8 JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x7B4 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x6C7 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x7F6 DUP3 PUSH2 0x7CD JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x806 DUP2 PUSH2 0x7EC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x81F PUSH0 DUP4 ADD DUP5 PUSH2 0x7FD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x85C DUP3 PUSH2 0x5D6 JUMP JUMPDEST SWAP2 POP PUSH2 0x867 DUP4 PUSH2 0x5D6 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x87F JUMPI PUSH2 0x87E PUSH2 0x825 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x88E DUP2 PUSH2 0x5D6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x8A7 PUSH0 DUP4 ADD DUP7 PUSH2 0x7FD JUMP JUMPDEST PUSH2 0x8B4 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x885 JUMP JUMPDEST PUSH2 0x8C1 PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x885 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x8DC PUSH0 DUP4 ADD DUP5 PUSH2 0x885 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1F14 DUP1 PUSH2 0x8EF PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x171 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0xDC JUMPI DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x95 JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x401 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x431 JUMPI DUP1 PUSH4 0xF26C159F EQ PUSH2 0x461 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x47D JUMPI PUSH2 0x171 JUMP JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x395 JUMPI DUP1 PUSH4 0x91FC1F2C EQ PUSH2 0x3B3 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x3E3 JUMPI PUSH2 0x171 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x2FB JUMPI DUP1 PUSH4 0x788649EA EQ PUSH2 0x305 JUMPI DUP1 PUSH4 0x79CC6790 EQ PUSH2 0x321 JUMPI DUP1 PUSH4 0x7A4A3412 EQ PUSH2 0x33D JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x35B JUMPI DUP1 PUSH4 0x860838A5 EQ PUSH2 0x365 JUMPI PUSH2 0x171 JUMP JUMPDEST DUP1 PUSH4 0x32CB6B0C GT PUSH2 0x12E JUMPI DUP1 PUSH4 0x32CB6B0C EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x26B JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x275 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x291 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x2AD JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2CB JUMPI PUSH2 0x171 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x175 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x193 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1E1 JUMPI DUP1 PUSH4 0x2FF2E9DC EQ PUSH2 0x211 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x22F JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x17D PUSH2 0x499 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18A SWAP2 SWAP1 PUSH2 0x188A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A8 SWAP2 SWAP1 PUSH2 0x193B JUMP JUMPDEST PUSH2 0x529 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BA SWAP2 SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CB PUSH2 0x54B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F6 SWAP2 SWAP1 PUSH2 0x19D4 JUMP JUMPDEST PUSH2 0x554 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x208 SWAP2 SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x219 PUSH2 0x76A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x226 SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x237 PUSH2 0x77A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x244 SWAP2 SWAP1 PUSH2 0x1A3F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x255 PUSH2 0x782 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x262 SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x273 PUSH2 0x792 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x28F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28A SWAP2 SWAP1 PUSH2 0x193B JUMP JUMPDEST PUSH2 0x7A4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2AB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A6 SWAP2 SWAP1 PUSH2 0x1A58 JUMP JUMPDEST PUSH2 0x822 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B5 PUSH2 0x836 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C2 SWAP2 SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E0 SWAP2 SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH2 0x84B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F2 SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x303 PUSH2 0x890 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x31F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x31A SWAP2 SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH2 0x8A3 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x33B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x336 SWAP2 SWAP1 PUSH2 0x193B JUMP JUMPDEST PUSH2 0x945 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x345 PUSH2 0x965 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x352 SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x363 PUSH2 0x96A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x37F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x37A SWAP2 SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH2 0x97C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x38C SWAP2 SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x39D PUSH2 0x999 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3AA SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3CD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C8 SWAP2 SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH2 0x9C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3DA SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3EB PUSH2 0x9D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3F8 SWAP2 SWAP1 PUSH2 0x188A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x41B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x416 SWAP2 SWAP1 PUSH2 0x193B JUMP JUMPDEST PUSH2 0xA67 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x44B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x446 SWAP2 SWAP1 PUSH2 0x1AD6 JUMP JUMPDEST PUSH2 0xC90 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x458 SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x47B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x476 SWAP2 SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH2 0xD12 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x497 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x492 SWAP2 SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH2 0xDB5 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x4A8 SWAP1 PUSH2 0x1B41 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 0x4D4 SWAP1 PUSH2 0x1B41 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x51F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4F6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x51F 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 0x502 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x533 PUSH2 0xE39 JUMP JUMPDEST SWAP1 POP PUSH2 0x540 DUP2 DUP6 DUP6 PUSH2 0xE40 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x55D PUSH2 0xE52 JUMP JUMPDEST PUSH2 0x565 PUSH2 0xE9C JUMP JUMPDEST PUSH1 0x7 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x5EF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5E6 SWAP1 PUSH2 0x1BBB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x7 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x679 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x670 SWAP1 PUSH2 0x1C23 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6CA PUSH1 0x3C PUSH1 0x8 PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD PUSH2 0xEEB SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0x70C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x703 SWAP1 PUSH2 0x1C8B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST TIMESTAMP PUSH1 0x8 PUSH0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0x759 DUP5 DUP5 DUP5 PUSH2 0xF00 JUMP JUMPDEST SWAP1 POP PUSH2 0x763 PUSH2 0xF2E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH12 0x24306C4097859C43C000000 DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH12 0x169E43A85EB381AA58000000 DUP2 JUMP JUMPDEST PUSH2 0x79A PUSH2 0xF38 JUMP JUMPDEST PUSH2 0x7A2 PUSH2 0xFBF JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x7AC PUSH2 0xF38 JUMP JUMPDEST PUSH12 0x169E43A85EB381AA58000000 PUSH2 0x7D3 DUP3 PUSH2 0x7C5 PUSH2 0x54B JUMP JUMPDEST PUSH2 0xEEB SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST GT ISZERO PUSH2 0x814 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x80B SWAP1 PUSH2 0x1CF3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x81E DUP3 DUP3 PUSH2 0x1020 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x833 PUSH2 0x82D PUSH2 0xE39 JUMP JUMPDEST DUP3 PUSH2 0x109F JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND 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 PUSH2 0x898 PUSH2 0xF38 JUMP JUMPDEST PUSH2 0x8A1 PUSH0 PUSH2 0x111E JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x8AB PUSH2 0xF38 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 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xF915CD9FE234DE6E8D3AFE7BF2388D35B2B6D48E8C629A24602019BDE79C213A PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST PUSH2 0x957 DUP3 PUSH2 0x951 PUSH2 0xE39 JUMP JUMPDEST DUP4 PUSH2 0x11E3 JUMP JUMPDEST PUSH2 0x961 DUP3 DUP3 PUSH2 0x109F JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x3C DUP2 JUMP JUMPDEST PUSH2 0x972 PUSH2 0xF38 JUMP JUMPDEST PUSH2 0x97A PUSH2 0x1275 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE DUP1 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x8 PUSH1 0x20 MSTORE DUP1 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x9E6 SWAP1 PUSH2 0x1B41 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 0xA12 SWAP1 PUSH2 0x1B41 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xA5D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xA34 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xA5D 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 0xA40 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xA70 PUSH2 0xE52 JUMP JUMPDEST PUSH2 0xA78 PUSH2 0xE9C JUMP JUMPDEST PUSH1 0x7 PUSH0 PUSH2 0xA83 PUSH2 0xE39 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xB09 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB00 SWAP1 PUSH2 0x1BBB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x7 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xB93 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB8A SWAP1 PUSH2 0x1C23 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xBEB PUSH1 0x3C PUSH1 0x8 PUSH0 PUSH2 0xBA3 PUSH2 0xE39 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD PUSH2 0xEEB SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0xC2D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC24 SWAP1 PUSH2 0x1C8B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST TIMESTAMP PUSH1 0x8 PUSH0 PUSH2 0xC39 PUSH2 0xE39 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0xC80 DUP4 DUP4 PUSH2 0x12D7 JUMP JUMPDEST SWAP1 POP PUSH2 0xC8A PUSH2 0xF2E JUMP JUMPDEST SWAP3 SWAP2 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 PUSH2 0xD1A PUSH2 0xF38 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x7 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x4F2A367E694E71282F29AB5EAA04C4C0BE45AC5BF2CA74FB67068B98BDC2887D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST PUSH2 0xDBD PUSH2 0xF38 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xE2D JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE24 SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE36 DUP2 PUSH2 0x111E JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xE4D DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x12F9 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xE5A PUSH2 0x836 JUMP JUMPDEST ISZERO PUSH2 0xE9A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE91 SWAP1 PUSH2 0x1D5B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x2 PUSH1 0x6 SLOAD SUB PUSH2 0xEE1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xED8 SWAP1 PUSH2 0x1DC3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x6 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 DUP2 DUP4 PUSH2 0xEF8 SWAP2 SWAP1 PUSH2 0x1E0E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0xF0A PUSH2 0xE39 JUMP JUMPDEST SWAP1 POP PUSH2 0xF17 DUP6 DUP3 DUP6 PUSH2 0x11E3 JUMP JUMPDEST PUSH2 0xF22 DUP6 DUP6 DUP6 PUSH2 0x14C8 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x6 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0xF40 PUSH2 0xE39 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xF5E PUSH2 0x999 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xFBD JUMPI PUSH2 0xF81 PUSH2 0xE39 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x118CDAA700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFB4 SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xFC7 PUSH2 0x15B8 JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x1009 PUSH2 0xE39 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1016 SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1090 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xEC442F0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1087 SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x109B PUSH0 DUP4 DUP4 PUSH2 0x1601 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x110F JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x96C6FD1E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1106 SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x111A DUP3 PUSH0 DUP4 PUSH2 0x1601 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x11EE DUP5 DUP5 PUSH2 0xC90 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x126F JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x1260 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH32 0xFB8F41B200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1257 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1E41 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x126E DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x12F9 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x127D PUSH2 0xE52 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x5 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x12C0 PUSH2 0xE39 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12CD SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x12E1 PUSH2 0xE39 JUMP JUMPDEST SWAP1 POP PUSH2 0x12EE DUP2 DUP6 DUP6 PUSH2 0x14C8 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1369 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xE602DF0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1360 SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x13D9 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x94280D6200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13D0 SWAP2 SWAP1 PUSH2 0x1ABD 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 0x14C2 JUMPI DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x14B9 SWAP2 SWAP1 PUSH2 0x19BB 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 0x1538 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x96C6FD1E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x152F SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x15A8 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xEC442F0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x159F SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x15B3 DUP4 DUP4 DUP4 PUSH2 0x1601 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x15C0 PUSH2 0x836 JUMP JUMPDEST PUSH2 0x15FF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15F6 SWAP1 PUSH2 0x1EC0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1651 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1645 SWAP2 SWAP1 PUSH2 0x1E0E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x171F 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 0x16DA JUMPI DUP4 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH32 0xE450D38C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16D1 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1E41 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 0x1766 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x17B0 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 0x180D SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP 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 DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x185C DUP3 PUSH2 0x181A JUMP JUMPDEST PUSH2 0x1866 DUP2 DUP6 PUSH2 0x1824 JUMP JUMPDEST SWAP4 POP PUSH2 0x1876 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1834 JUMP JUMPDEST PUSH2 0x187F DUP2 PUSH2 0x1842 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 0x18A2 DUP2 DUP5 PUSH2 0x1852 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 0x18D7 DUP3 PUSH2 0x18AE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18E7 DUP2 PUSH2 0x18CD JUMP JUMPDEST DUP2 EQ PUSH2 0x18F1 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1902 DUP2 PUSH2 0x18DE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x191A DUP2 PUSH2 0x1908 JUMP JUMPDEST DUP2 EQ PUSH2 0x1924 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1935 DUP2 PUSH2 0x1911 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1951 JUMPI PUSH2 0x1950 PUSH2 0x18AA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x195E DUP6 DUP3 DUP7 ADD PUSH2 0x18F4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x196F DUP6 DUP3 DUP7 ADD PUSH2 0x1927 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x198D DUP2 PUSH2 0x1979 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x19A6 PUSH0 DUP4 ADD DUP5 PUSH2 0x1984 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x19B5 DUP2 PUSH2 0x1908 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x19CE PUSH0 DUP4 ADD DUP5 PUSH2 0x19AC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x19EB JUMPI PUSH2 0x19EA PUSH2 0x18AA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x19F8 DUP7 DUP3 DUP8 ADD PUSH2 0x18F4 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1A09 DUP7 DUP3 DUP8 ADD PUSH2 0x18F4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1A1A DUP7 DUP3 DUP8 ADD PUSH2 0x1927 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 0x1A39 DUP2 PUSH2 0x1A24 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A52 PUSH0 DUP4 ADD DUP5 PUSH2 0x1A30 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A6D JUMPI PUSH2 0x1A6C PUSH2 0x18AA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1A7A DUP5 DUP3 DUP6 ADD PUSH2 0x1927 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A98 JUMPI PUSH2 0x1A97 PUSH2 0x18AA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1AA5 DUP5 DUP3 DUP6 ADD PUSH2 0x18F4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1AB7 DUP2 PUSH2 0x18CD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1AD0 PUSH0 DUP4 ADD DUP5 PUSH2 0x1AAE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1AEC JUMPI PUSH2 0x1AEB PUSH2 0x18AA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1AF9 DUP6 DUP3 DUP7 ADD PUSH2 0x18F4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1B0A DUP6 DUP3 DUP7 ADD PUSH2 0x18F4 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 0x1B58 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1B6B JUMPI PUSH2 0x1B6A PUSH2 0x1B14 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x53656E646572206163636F756E742069732066726F7A656E0000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1BA5 PUSH1 0x18 DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1BB0 DUP3 PUSH2 0x1B71 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1BD2 DUP2 PUSH2 0x1B99 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x526563697069656E74206163636F756E742069732066726F7A656E0000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1C0D PUSH1 0x1B DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1C18 DUP3 PUSH2 0x1BD9 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1C3A DUP2 PUSH2 0x1C01 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5472616E7366657220636F6F6C646F776E206163746976650000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1C75 PUSH1 0x18 DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1C80 DUP3 PUSH2 0x1C41 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1CA2 DUP2 PUSH2 0x1C69 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4D617820737570706C7920657863656564656400000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1CDD PUSH1 0x13 DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CE8 DUP3 PUSH2 0x1CA9 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1D0A DUP2 PUSH2 0x1CD1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1D45 PUSH1 0x10 DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D50 DUP3 PUSH2 0x1D11 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1D72 DUP2 PUSH2 0x1D39 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1DAD PUSH1 0x1F DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1DB8 DUP3 PUSH2 0x1D79 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1DDA DUP2 PUSH2 0x1DA1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x1E18 DUP3 PUSH2 0x1908 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E23 DUP4 PUSH2 0x1908 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x1E3B JUMPI PUSH2 0x1E3A PUSH2 0x1DE1 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x1E54 PUSH0 DUP4 ADD DUP7 PUSH2 0x1AAE JUMP JUMPDEST PUSH2 0x1E61 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x19AC JUMP JUMPDEST PUSH2 0x1E6E PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x19AC JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1EAA PUSH1 0x14 DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1EB5 DUP3 PUSH2 0x1E76 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1ED7 DUP2 PUSH2 0x1E9E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP8 CALLDATALOAD RETURNDATASIZE LT 0xD LOG3 SMOD CREATE2 0x1E 0xC 0xC DUP6 0xB2 DUP10 LOG0 0xD DUP14 0xAA SWAP16 DUP10 0x23 PREVRANDAO 0xE4 0xD 0xEC ISZERO 0xE4 SELFBALANCE DUP14 PUSH20 0xF83264736F6C634300081A003300000000000000 ",
"sourceMap": "420:2352:10:-:0;;;990:109;;;;;;;;;;1037:10;1896:113:4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1970:5;1962;:13;;;;;;:::i;:::-;;1995:7;1985;:17;;;;;;:::i;:::-;;1896:113;;1006:5:2;996:7;;:15;;;;;;;;;;;;;;;;;;1297:1:0;1273:26;;:12;:26;;;1269:95;;1350:1;1322:31;;;;;;;;;;;:::i;:::-;;;;;;;;1269:95;1373:32;1392:12;1373:18;;;:32;;:::i;:::-;1225:187;1716:1:3;1821:7;:22;;;;1059:33:10::2;1065:10;663:20;1059:5;;;:33;;:::i;:::-;420:2352:::0;;2912:187:0;2985:16;3004:6;;;;;;;;;;;2985:25;;3029:8;3020:6;;:17;;;;;;;;;;;;;;;;;;3083:8;3052:40;;3073:8;3052:40;;;;;;;;;;;;2975:124;2912:187;:::o;7721:208:4:-;7810:1;7791:21;;:7;:21;;;7787:91;;7864:1;7835:32;;;;;;;;;;;:::i;:::-;;;;;;;;7787:91;7887:35;7903:1;7907:7;7916:5;7887:7;;;:35;;:::i;:::-;7721:208;;:::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;7:99:11:-;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:126::-;5271:7;5311:42;5304:5;5300:54;5289:65;;5234:126;;;:::o;5366:96::-;5403:7;5432:24;5450:5;5432:24;:::i;:::-;5421:35;;5366:96;;;:::o;5468:118::-;5555:24;5573:5;5555:24;:::i;:::-;5550:3;5543:37;5468:118;;:::o;5592:222::-;5685:4;5723:2;5712:9;5708:18;5700:26;;5736:71;5804:1;5793:9;5789:17;5780:6;5736:71;:::i;:::-;5592:222;;;;:::o;5820:180::-;5868:77;5865:1;5858:88;5965:4;5962:1;5955:15;5989:4;5986:1;5979:15;6006:191;6046:3;6065:20;6083:1;6065:20;:::i;:::-;6060:25;;6099:20;6117:1;6099:20;:::i;:::-;6094:25;;6142:1;6139;6135:9;6128:16;;6163:3;6160:1;6157:10;6154:36;;;6170:18;;:::i;:::-;6154:36;6006:191;;;;:::o;6203:118::-;6290:24;6308:5;6290:24;:::i;:::-;6285:3;6278:37;6203:118;;:::o;6327:442::-;6476:4;6514:2;6503:9;6499:18;6491:26;;6527:71;6595:1;6584:9;6580:17;6571:6;6527:71;:::i;:::-;6608:72;6676:2;6665:9;6661:18;6652:6;6608:72;:::i;:::-;6690;6758:2;6747:9;6743:18;6734:6;6690:72;:::i;:::-;6327:442;;;;;;:::o;6775:222::-;6868:4;6906:2;6895:9;6891:18;6883:26;;6919:71;6987:1;6976:9;6972:17;6963:6;6919:71;:::i;:::-;6775:222;;;;:::o;420:2352:10:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@INITIAL_SUPPLY_1499": {
"entryPoint": 1898,
"id": 1499,
"parameterSlots": 0,
"returnSlots": 0
},
"@MAX_SUPPLY_1492": {
"entryPoint": 1922,
"id": 1492,
"parameterSlots": 0,
"returnSlots": 0
},
"@TRANSFER_COOLDOWN_1510": {
"entryPoint": 2405,
"id": 1510,
"parameterSlots": 0,
"returnSlots": 0
},
"@_approve_863": {
"entryPoint": 3648,
"id": 863,
"parameterSlots": 3,
"returnSlots": 0
},
"@_approve_923": {
"entryPoint": 4857,
"id": 923,
"parameterSlots": 4,
"returnSlots": 0
},
"@_burn_845": {
"entryPoint": 4255,
"id": 845,
"parameterSlots": 2,
"returnSlots": 0
},
"@_checkOwner_84": {
"entryPoint": 3896,
"id": 84,
"parameterSlots": 0,
"returnSlots": 0
},
"@_mint_812": {
"entryPoint": 4128,
"id": 812,
"parameterSlots": 2,
"returnSlots": 0
},
"@_msgSender_1134": {
"entryPoint": 3641,
"id": 1134,
"parameterSlots": 0,
"returnSlots": 1
},
"@_nonReentrantAfter_445": {
"entryPoint": 3886,
"id": 445,
"parameterSlots": 0,
"returnSlots": 0
},
"@_nonReentrantBefore_437": {
"entryPoint": 3740,
"id": 437,
"parameterSlots": 0,
"returnSlots": 0
},
"@_pause_375": {
"entryPoint": 4725,
"id": 375,
"parameterSlots": 0,
"returnSlots": 0
},
"@_requireNotPaused_348": {
"entryPoint": 3666,
"id": 348,
"parameterSlots": 0,
"returnSlots": 0
},
"@_requirePaused_359": {
"entryPoint": 5560,
"id": 359,
"parameterSlots": 0,
"returnSlots": 0
},
"@_spendAllowance_971": {
"entryPoint": 4579,
"id": 971,
"parameterSlots": 3,
"returnSlots": 0
},
"@_transferOwnership_146": {
"entryPoint": 4382,
"id": 146,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transfer_702": {
"entryPoint": 5320,
"id": 702,
"parameterSlots": 3,
"returnSlots": 0
},
"@_unpause_391": {
"entryPoint": 4031,
"id": 391,
"parameterSlots": 0,
"returnSlots": 0
},
"@_update_779": {
"entryPoint": 5633,
"id": 779,
"parameterSlots": 3,
"returnSlots": 0
},
"@add_1328": {
"entryPoint": 3819,
"id": 1328,
"parameterSlots": 2,
"returnSlots": 1
},
"@allowance_599": {
"entryPoint": 3216,
"id": 599,
"parameterSlots": 2,
"returnSlots": 1
},
"@approve_623": {
"entryPoint": 1321,
"id": 623,
"parameterSlots": 2,
"returnSlots": 1
},
"@balanceOf_558": {
"entryPoint": 2123,
"id": 558,
"parameterSlots": 1,
"returnSlots": 1
},
"@burnFrom_1095": {
"entryPoint": 2373,
"id": 1095,
"parameterSlots": 2,
"returnSlots": 0
},
"@burn_1074": {
"entryPoint": 2082,
"id": 1074,
"parameterSlots": 1,
"returnSlots": 0
},
"@decimals_536": {
"entryPoint": 1914,
"id": 536,
"parameterSlots": 0,
"returnSlots": 1
},
"@freezeAccount_1580": {
"entryPoint": 3346,
"id": 1580,
"parameterSlots": 1,
"returnSlots": 0
},
"@frozenAccounts_1503": {
"entryPoint": 2428,
"id": 1503,
"parameterSlots": 0,
"returnSlots": 0
},
"@lastTransferTimestamp_1507": {
"entryPoint": 2498,
"id": 1507,
"parameterSlots": 0,
"returnSlots": 0
},
"@mint_1562": {
"entryPoint": 1956,
"id": 1562,
"parameterSlots": 2,
"returnSlots": 0
},
"@name_518": {
"entryPoint": 1177,
"id": 518,
"parameterSlots": 0,
"returnSlots": 1
},
"@owner_67": {
"entryPoint": 2457,
"id": 67,
"parameterSlots": 0,
"returnSlots": 1
},
"@pause_1727": {
"entryPoint": 2410,
"id": 1727,
"parameterSlots": 0,
"returnSlots": 0
},
"@paused_336": {
"entryPoint": 2102,
"id": 336,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_98": {
"entryPoint": 2192,
"id": 98,
"parameterSlots": 0,
"returnSlots": 0
},
"@symbol_527": {
"entryPoint": 2519,
"id": 527,
"parameterSlots": 0,
"returnSlots": 1
},
"@totalSupply_545": {
"entryPoint": 1355,
"id": 545,
"parameterSlots": 0,
"returnSlots": 1
},
"@transferFrom_1718": {
"entryPoint": 1364,
"id": 1718,
"parameterSlots": 3,
"returnSlots": 1
},
"@transferFrom_655": {
"entryPoint": 3840,
"id": 655,
"parameterSlots": 3,
"returnSlots": 1
},
"@transferOwnership_126": {
"entryPoint": 3509,
"id": 126,
"parameterSlots": 1,
"returnSlots": 0
},
"@transfer_1658": {
"entryPoint": 2663,
"id": 1658,
"parameterSlots": 2,
"returnSlots": 1
},
"@transfer_582": {
"entryPoint": 4823,
"id": 582,
"parameterSlots": 2,
"returnSlots": 1
},
"@unfreezeAccount_1598": {
"entryPoint": 2211,
"id": 1598,
"parameterSlots": 1,
"returnSlots": 0
},
"@unpause_1736": {
"entryPoint": 1938,
"id": 1736,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 6388,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 6439,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 6787,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_address": {
"entryPoint": 6870,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_addresst_uint256": {
"entryPoint": 6612,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 6459,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 6744,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 6830,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bool_to_t_bool_fromStack": {
"entryPoint": 6532,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 6226,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0b608f755d10a61bd7bfbe50c676755794b42b2dd9daf91b7deb384eabaa476f_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7377,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7838,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_1f88e1d78bc08390278df38e619625a8f7c253c4825a21c199a828881dbe0cd6_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7065,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_35632bfb1f76bb2d87c011edebf502401cf80df0336353247f28176a3ecf89cc_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7169,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_3ffaf2354e772b1a13a7404154f6aedc1451784b635e03bee4407a9278c4d819_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7273,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7481,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack": {
"entryPoint": 7585,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 6572,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint8_to_t_uint8_fromStack": {
"entryPoint": 6704,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 6845,
"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": 7745,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": {
"entryPoint": 6547,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 6282,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0b608f755d10a61bd7bfbe50c676755794b42b2dd9daf91b7deb384eabaa476f__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7411,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7872,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_1f88e1d78bc08390278df38e619625a8f7c253c4825a21c199a828881dbe0cd6__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7099,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_35632bfb1f76bb2d87c011edebf502401cf80df0336353247f28176a3ecf89cc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7203,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_3ffaf2354e772b1a13a7404154f6aedc1451784b635e03bee4407a9278c4d819__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7307,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7515,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 7619,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 6587,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed": {
"entryPoint": 6719,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 6170,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 6180,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 7694,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 6349,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 6521,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 6318,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 6408,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint8": {
"entryPoint": 6692,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 6196,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"extract_byte_array_length": {
"entryPoint": 6977,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 7649,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 6932,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 6314,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 6210,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"store_literal_in_memory_0b608f755d10a61bd7bfbe50c676755794b42b2dd9daf91b7deb384eabaa476f": {
"entryPoint": 7337,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a": {
"entryPoint": 7798,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_1f88e1d78bc08390278df38e619625a8f7c253c4825a21c199a828881dbe0cd6": {
"entryPoint": 7025,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_35632bfb1f76bb2d87c011edebf502401cf80df0336353247f28176a3ecf89cc": {
"entryPoint": 7129,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_3ffaf2354e772b1a13a7404154f6aedc1451784b635e03bee4407a9278c4d819": {
"entryPoint": 7233,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a": {
"entryPoint": 7441,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619": {
"entryPoint": 7545,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 6366,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 6417,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:14420:11",
"nodeType": "YulBlock",
"src": "0:14420:11",
"statements": [
{
"body": {
"nativeSrc": "66:40:11",
"nodeType": "YulBlock",
"src": "66:40:11",
"statements": [
{
"nativeSrc": "77:22:11",
"nodeType": "YulAssignment",
"src": "77:22:11",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "93:5:11",
"nodeType": "YulIdentifier",
"src": "93:5:11"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "87:5:11",
"nodeType": "YulIdentifier",
"src": "87:5:11"
},
"nativeSrc": "87:12:11",
"nodeType": "YulFunctionCall",
"src": "87:12:11"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "77:6:11",
"nodeType": "YulIdentifier",
"src": "77:6:11"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7:99:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "49:5:11",
"nodeType": "YulTypedName",
"src": "49:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "59:6:11",
"nodeType": "YulTypedName",
"src": "59:6:11",
"type": ""
}
],
"src": "7:99:11"
},
{
"body": {
"nativeSrc": "208:73:11",
"nodeType": "YulBlock",
"src": "208:73:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "225:3:11",
"nodeType": "YulIdentifier",
"src": "225:3:11"
},
{
"name": "length",
"nativeSrc": "230:6:11",
"nodeType": "YulIdentifier",
"src": "230:6:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "218:6:11",
"nodeType": "YulIdentifier",
"src": "218:6:11"
},
"nativeSrc": "218:19:11",
"nodeType": "YulFunctionCall",
"src": "218:19:11"
},
"nativeSrc": "218:19:11",
"nodeType": "YulExpressionStatement",
"src": "218:19:11"
},
{
"nativeSrc": "246:29:11",
"nodeType": "YulAssignment",
"src": "246:29:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "265:3:11",
"nodeType": "YulIdentifier",
"src": "265:3:11"
},
{
"kind": "number",
"nativeSrc": "270:4:11",
"nodeType": "YulLiteral",
"src": "270:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "261:3:11",
"nodeType": "YulIdentifier",
"src": "261:3:11"
},
"nativeSrc": "261:14:11",
"nodeType": "YulFunctionCall",
"src": "261:14:11"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "246:11:11",
"nodeType": "YulIdentifier",
"src": "246:11:11"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "112:169:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "180:3:11",
"nodeType": "YulTypedName",
"src": "180:3:11",
"type": ""
},
{
"name": "length",
"nativeSrc": "185:6:11",
"nodeType": "YulTypedName",
"src": "185:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "196:11:11",
"nodeType": "YulTypedName",
"src": "196:11:11",
"type": ""
}
],
"src": "112:169:11"
},
{
"body": {
"nativeSrc": "349:77:11",
"nodeType": "YulBlock",
"src": "349:77:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "366:3:11",
"nodeType": "YulIdentifier",
"src": "366:3:11"
},
{
"name": "src",
"nativeSrc": "371:3:11",
"nodeType": "YulIdentifier",
"src": "371:3:11"
},
{
"name": "length",
"nativeSrc": "376:6:11",
"nodeType": "YulIdentifier",
"src": "376:6:11"
}
],
"functionName": {
"name": "mcopy",
"nativeSrc": "360:5:11",
"nodeType": "YulIdentifier",
"src": "360:5:11"
},
"nativeSrc": "360:23:11",
"nodeType": "YulFunctionCall",
"src": "360:23:11"
},
"nativeSrc": "360:23:11",
"nodeType": "YulExpressionStatement",
"src": "360:23:11"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "403:3:11",
"nodeType": "YulIdentifier",
"src": "403:3:11"
},
{
"name": "length",
"nativeSrc": "408:6:11",
"nodeType": "YulIdentifier",
"src": "408:6:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "399:3:11",
"nodeType": "YulIdentifier",
"src": "399:3:11"
},
"nativeSrc": "399:16:11",
"nodeType": "YulFunctionCall",
"src": "399:16:11"
},
{
"kind": "number",
"nativeSrc": "417:1:11",
"nodeType": "YulLiteral",
"src": "417:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "392:6:11",
"nodeType": "YulIdentifier",
"src": "392:6:11"
},
"nativeSrc": "392:27:11",
"nodeType": "YulFunctionCall",
"src": "392:27:11"
},
"nativeSrc": "392:27:11",
"nodeType": "YulExpressionStatement",
"src": "392:27:11"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "287:139:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "331:3:11",
"nodeType": "YulTypedName",
"src": "331:3:11",
"type": ""
},
{
"name": "dst",
"nativeSrc": "336:3:11",
"nodeType": "YulTypedName",
"src": "336:3:11",
"type": ""
},
{
"name": "length",
"nativeSrc": "341:6:11",
"nodeType": "YulTypedName",
"src": "341:6:11",
"type": ""
}
],
"src": "287:139:11"
},
{
"body": {
"nativeSrc": "480:54:11",
"nodeType": "YulBlock",
"src": "480:54:11",
"statements": [
{
"nativeSrc": "490:38:11",
"nodeType": "YulAssignment",
"src": "490:38:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "508:5:11",
"nodeType": "YulIdentifier",
"src": "508:5:11"
},
{
"kind": "number",
"nativeSrc": "515:2:11",
"nodeType": "YulLiteral",
"src": "515:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "504:3:11",
"nodeType": "YulIdentifier",
"src": "504:3:11"
},
"nativeSrc": "504:14:11",
"nodeType": "YulFunctionCall",
"src": "504:14:11"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "524:2:11",
"nodeType": "YulLiteral",
"src": "524:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "520:3:11",
"nodeType": "YulIdentifier",
"src": "520:3:11"
},
"nativeSrc": "520:7:11",
"nodeType": "YulFunctionCall",
"src": "520:7:11"
}
],
"functionName": {
"name": "and",
"nativeSrc": "500:3:11",
"nodeType": "YulIdentifier",
"src": "500:3:11"
},
"nativeSrc": "500:28:11",
"nodeType": "YulFunctionCall",
"src": "500:28:11"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "490:6:11",
"nodeType": "YulIdentifier",
"src": "490:6:11"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "432:102:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "463:5:11",
"nodeType": "YulTypedName",
"src": "463:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "473:6:11",
"nodeType": "YulTypedName",
"src": "473:6:11",
"type": ""
}
],
"src": "432:102:11"
},
{
"body": {
"nativeSrc": "632:285:11",
"nodeType": "YulBlock",
"src": "632:285:11",
"statements": [
{
"nativeSrc": "642:53:11",
"nodeType": "YulVariableDeclaration",
"src": "642:53:11",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "689:5:11",
"nodeType": "YulIdentifier",
"src": "689:5:11"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "656:32:11",
"nodeType": "YulIdentifier",
"src": "656:32:11"
},
"nativeSrc": "656:39:11",
"nodeType": "YulFunctionCall",
"src": "656:39:11"
},
"variables": [
{
"name": "length",
"nativeSrc": "646:6:11",
"nodeType": "YulTypedName",
"src": "646:6:11",
"type": ""
}
]
},
{
"nativeSrc": "704:78:11",
"nodeType": "YulAssignment",
"src": "704:78:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "770:3:11",
"nodeType": "YulIdentifier",
"src": "770:3:11"
},
{
"name": "length",
"nativeSrc": "775:6:11",
"nodeType": "YulIdentifier",
"src": "775:6:11"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "711:58:11",
"nodeType": "YulIdentifier",
"src": "711:58:11"
},
"nativeSrc": "711:71:11",
"nodeType": "YulFunctionCall",
"src": "711:71:11"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "704:3:11",
"nodeType": "YulIdentifier",
"src": "704:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "830:5:11",
"nodeType": "YulIdentifier",
"src": "830:5:11"
},
{
"kind": "number",
"nativeSrc": "837:4:11",
"nodeType": "YulLiteral",
"src": "837:4:11",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "826:3:11",
"nodeType": "YulIdentifier",
"src": "826:3:11"
},
"nativeSrc": "826:16:11",
"nodeType": "YulFunctionCall",
"src": "826:16:11"
},
{
"name": "pos",
"nativeSrc": "844:3:11",
"nodeType": "YulIdentifier",
"src": "844:3:11"
},
{
"name": "length",
"nativeSrc": "849:6:11",
"nodeType": "YulIdentifier",
"src": "849:6:11"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "791:34:11",
"nodeType": "YulIdentifier",
"src": "791:34:11"
},
"nativeSrc": "791:65:11",
"nodeType": "YulFunctionCall",
"src": "791:65:11"
},
"nativeSrc": "791:65:11",
"nodeType": "YulExpressionStatement",
"src": "791:65:11"
},
{
"nativeSrc": "865:46:11",
"nodeType": "YulAssignment",
"src": "865:46:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "876:3:11",
"nodeType": "YulIdentifier",
"src": "876:3:11"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "903:6:11",
"nodeType": "YulIdentifier",
"src": "903:6:11"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "881:21:11",
"nodeType": "YulIdentifier",
"src": "881:21:11"
},
"nativeSrc": "881:29:11",
"nodeType": "YulFunctionCall",
"src": "881:29:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "872:3:11",
"nodeType": "YulIdentifier",
"src": "872:3:11"
},
"nativeSrc": "872:39:11",
"nodeType": "YulFunctionCall",
"src": "872:39:11"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "865:3:11",
"nodeType": "YulIdentifier",
"src": "865:3:11"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "540:377:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "613:5:11",
"nodeType": "YulTypedName",
"src": "613:5:11",
"type": ""
},
{
"name": "pos",
"nativeSrc": "620:3:11",
"nodeType": "YulTypedName",
"src": "620:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "628:3:11",
"nodeType": "YulTypedName",
"src": "628:3:11",
"type": ""
}
],
"src": "540:377:11"
},
{
"body": {
"nativeSrc": "1041:195:11",
"nodeType": "YulBlock",
"src": "1041:195:11",
"statements": [
{
"nativeSrc": "1051:26:11",
"nodeType": "YulAssignment",
"src": "1051:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "1063:9:11",
"nodeType": "YulIdentifier",
"src": "1063:9:11"
},
{
"kind": "number",
"nativeSrc": "1074:2:11",
"nodeType": "YulLiteral",
"src": "1074:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1059:3:11",
"nodeType": "YulIdentifier",
"src": "1059:3:11"
},
"nativeSrc": "1059:18:11",
"nodeType": "YulFunctionCall",
"src": "1059:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1051:4:11",
"nodeType": "YulIdentifier",
"src": "1051:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1098:9:11",
"nodeType": "YulIdentifier",
"src": "1098:9:11"
},
{
"kind": "number",
"nativeSrc": "1109:1:11",
"nodeType": "YulLiteral",
"src": "1109:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1094:3:11",
"nodeType": "YulIdentifier",
"src": "1094:3:11"
},
"nativeSrc": "1094:17:11",
"nodeType": "YulFunctionCall",
"src": "1094:17:11"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "1117:4:11",
"nodeType": "YulIdentifier",
"src": "1117:4:11"
},
{
"name": "headStart",
"nativeSrc": "1123:9:11",
"nodeType": "YulIdentifier",
"src": "1123:9:11"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "1113:3:11",
"nodeType": "YulIdentifier",
"src": "1113:3:11"
},
"nativeSrc": "1113:20:11",
"nodeType": "YulFunctionCall",
"src": "1113:20:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1087:6:11",
"nodeType": "YulIdentifier",
"src": "1087:6:11"
},
"nativeSrc": "1087:47:11",
"nodeType": "YulFunctionCall",
"src": "1087:47:11"
},
"nativeSrc": "1087:47:11",
"nodeType": "YulExpressionStatement",
"src": "1087:47:11"
},
{
"nativeSrc": "1143:86:11",
"nodeType": "YulAssignment",
"src": "1143:86:11",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "1215:6:11",
"nodeType": "YulIdentifier",
"src": "1215:6:11"
},
{
"name": "tail",
"nativeSrc": "1224:4:11",
"nodeType": "YulIdentifier",
"src": "1224:4:11"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "1151:63:11",
"nodeType": "YulIdentifier",
"src": "1151:63:11"
},
"nativeSrc": "1151:78:11",
"nodeType": "YulFunctionCall",
"src": "1151:78:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1143:4:11",
"nodeType": "YulIdentifier",
"src": "1143:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "923:313:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1013:9:11",
"nodeType": "YulTypedName",
"src": "1013:9:11",
"type": ""
},
{
"name": "value0",
"nativeSrc": "1025:6:11",
"nodeType": "YulTypedName",
"src": "1025:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "1036:4:11",
"nodeType": "YulTypedName",
"src": "1036:4:11",
"type": ""
}
],
"src": "923:313:11"
},
{
"body": {
"nativeSrc": "1282:35:11",
"nodeType": "YulBlock",
"src": "1282:35:11",
"statements": [
{
"nativeSrc": "1292:19:11",
"nodeType": "YulAssignment",
"src": "1292:19:11",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1308:2:11",
"nodeType": "YulLiteral",
"src": "1308:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "1302:5:11",
"nodeType": "YulIdentifier",
"src": "1302:5:11"
},
"nativeSrc": "1302:9:11",
"nodeType": "YulFunctionCall",
"src": "1302:9:11"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "1292:6:11",
"nodeType": "YulIdentifier",
"src": "1292:6:11"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "1242:75:11",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "1275:6:11",
"nodeType": "YulTypedName",
"src": "1275:6:11",
"type": ""
}
],
"src": "1242:75:11"
},
{
"body": {
"nativeSrc": "1412:28:11",
"nodeType": "YulBlock",
"src": "1412:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1429:1:11",
"nodeType": "YulLiteral",
"src": "1429:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1432:1:11",
"nodeType": "YulLiteral",
"src": "1432:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1422:6:11",
"nodeType": "YulIdentifier",
"src": "1422:6:11"
},
"nativeSrc": "1422:12:11",
"nodeType": "YulFunctionCall",
"src": "1422:12:11"
},
"nativeSrc": "1422:12:11",
"nodeType": "YulExpressionStatement",
"src": "1422:12:11"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "1323:117:11",
"nodeType": "YulFunctionDefinition",
"src": "1323:117:11"
},
{
"body": {
"nativeSrc": "1535:28:11",
"nodeType": "YulBlock",
"src": "1535:28:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1552:1:11",
"nodeType": "YulLiteral",
"src": "1552:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1555:1:11",
"nodeType": "YulLiteral",
"src": "1555:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1545:6:11",
"nodeType": "YulIdentifier",
"src": "1545:6:11"
},
"nativeSrc": "1545:12:11",
"nodeType": "YulFunctionCall",
"src": "1545:12:11"
},
"nativeSrc": "1545:12:11",
"nodeType": "YulExpressionStatement",
"src": "1545:12:11"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "1446:117:11",
"nodeType": "YulFunctionDefinition",
"src": "1446:117:11"
},
{
"body": {
"nativeSrc": "1614:81:11",
"nodeType": "YulBlock",
"src": "1614:81:11",
"statements": [
{
"nativeSrc": "1624:65:11",
"nodeType": "YulAssignment",
"src": "1624:65:11",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1639:5:11",
"nodeType": "YulIdentifier",
"src": "1639:5:11"
},
{
"kind": "number",
"nativeSrc": "1646:42:11",
"nodeType": "YulLiteral",
"src": "1646:42:11",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1635:3:11",
"nodeType": "YulIdentifier",
"src": "1635:3:11"
},
"nativeSrc": "1635:54:11",
"nodeType": "YulFunctionCall",
"src": "1635:54:11"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1624:7:11",
"nodeType": "YulIdentifier",
"src": "1624:7:11"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "1569:126:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1596:5:11",
"nodeType": "YulTypedName",
"src": "1596:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1606:7:11",
"nodeType": "YulTypedName",
"src": "1606:7:11",
"type": ""
}
],
"src": "1569:126:11"
},
{
"body": {
"nativeSrc": "1746:51:11",
"nodeType": "YulBlock",
"src": "1746:51:11",
"statements": [
{
"nativeSrc": "1756:35:11",
"nodeType": "YulAssignment",
"src": "1756:35:11",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "1785:5:11",
"nodeType": "YulIdentifier",
"src": "1785:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "1767:17:11",
"nodeType": "YulIdentifier",
"src": "1767:17:11"
},
"nativeSrc": "1767:24:11",
"nodeType": "YulFunctionCall",
"src": "1767:24:11"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "1756:7:11",
"nodeType": "YulIdentifier",
"src": "1756:7:11"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "1701:96:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1728:5:11",
"nodeType": "YulTypedName",
"src": "1728:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "1738:7:11",
"nodeType": "YulTypedName",
"src": "1738:7:11",
"type": ""
}
],
"src": "1701:96:11"
},
{
"body": {
"nativeSrc": "1846:79:11",
"nodeType": "YulBlock",
"src": "1846:79:11",
"statements": [
{
"body": {
"nativeSrc": "1903:16:11",
"nodeType": "YulBlock",
"src": "1903:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1912:1:11",
"nodeType": "YulLiteral",
"src": "1912:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1915:1:11",
"nodeType": "YulLiteral",
"src": "1915:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1905:6:11",
"nodeType": "YulIdentifier",
"src": "1905:6:11"
},
"nativeSrc": "1905:12:11",
"nodeType": "YulFunctionCall",
"src": "1905:12:11"
},
"nativeSrc": "1905:12:11",
"nodeType": "YulExpressionStatement",
"src": "1905:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1869:5:11",
"nodeType": "YulIdentifier",
"src": "1869:5:11"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1894:5:11",
"nodeType": "YulIdentifier",
"src": "1894:5:11"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "1876:17:11",
"nodeType": "YulIdentifier",
"src": "1876:17:11"
},
"nativeSrc": "1876:24:11",
"nodeType": "YulFunctionCall",
"src": "1876:24:11"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "1866:2:11",
"nodeType": "YulIdentifier",
"src": "1866:2:11"
},
"nativeSrc": "1866:35:11",
"nodeType": "YulFunctionCall",
"src": "1866:35:11"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "1859:6:11",
"nodeType": "YulIdentifier",
"src": "1859:6:11"
},
"nativeSrc": "1859:43:11",
"nodeType": "YulFunctionCall",
"src": "1859:43:11"
},
"nativeSrc": "1856:63:11",
"nodeType": "YulIf",
"src": "1856:63:11"
}
]
},
"name": "validator_revert_t_address",
"nativeSrc": "1803:122:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1839:5:11",
"nodeType": "YulTypedName",
"src": "1839:5:11",
"type": ""
}
],
"src": "1803:122:11"
},
{
"body": {
"nativeSrc": "1983:87:11",
"nodeType": "YulBlock",
"src": "1983:87:11",
"statements": [
{
"nativeSrc": "1993:29:11",
"nodeType": "YulAssignment",
"src": "1993:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "2015:6:11",
"nodeType": "YulIdentifier",
"src": "2015:6:11"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "2002:12:11",
"nodeType": "YulIdentifier",
"src": "2002:12:11"
},
"nativeSrc": "2002:20:11",
"nodeType": "YulFunctionCall",
"src": "2002:20:11"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "1993:5:11",
"nodeType": "YulIdentifier",
"src": "1993:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "2058:5:11",
"nodeType": "YulIdentifier",
"src": "2058:5:11"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nativeSrc": "2031:26:11",
"nodeType": "YulIdentifier",
"src": "2031:26:11"
},
"nativeSrc": "2031:33:11",
"nodeType": "YulFunctionCall",
"src": "2031:33:11"
},
"nativeSrc": "2031:33:11",
"nodeType": "YulExpressionStatement",
"src": "2031:33:11"
}
]
},
"name": "abi_decode_t_address",
"nativeSrc": "1931:139:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "1961:6:11",
"nodeType": "YulTypedName",
"src": "1961:6:11",
"type": ""
},
{
"name": "end",
"nativeSrc": "1969:3:11",
"nodeType": "YulTypedName",
"src": "1969:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "1977:5:11",
"nodeType": "YulTypedName",
"src": "1977:5:11",
"type": ""
}
],
"src": "1931:139:11"
},
{
"body": {
"nativeSrc": "2121:32:11",
"nodeType": "YulBlock",
"src": "2121:32:11",
"statements": [
{
"nativeSrc": "2131:16:11",
"nodeType": "YulAssignment",
"src": "2131:16:11",
"value": {
"name": "value",
"nativeSrc": "2142:5:11",
"nodeType": "YulIdentifier",
"src": "2142:5:11"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "2131:7:11",
"nodeType": "YulIdentifier",
"src": "2131:7:11"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "2076:77:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2103:5:11",
"nodeType": "YulTypedName",
"src": "2103:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "2113:7:11",
"nodeType": "YulTypedName",
"src": "2113:7:11",
"type": ""
}
],
"src": "2076:77:11"
},
{
"body": {
"nativeSrc": "2202:79:11",
"nodeType": "YulBlock",
"src": "2202:79:11",
"statements": [
{
"body": {
"nativeSrc": "2259:16:11",
"nodeType": "YulBlock",
"src": "2259:16:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "2268:1:11",
"nodeType": "YulLiteral",
"src": "2268:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "2271:1:11",
"nodeType": "YulLiteral",
"src": "2271:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "2261:6:11",
"nodeType": "YulIdentifier",
"src": "2261:6:11"
},
"nativeSrc": "2261:12:11",
"nodeType": "YulFunctionCall",
"src": "2261:12:11"
},
"nativeSrc": "2261:12:11",
"nodeType": "YulExpressionStatement",
"src": "2261:12:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "2225:5:11",
"nodeType": "YulIdentifier",
"src": "2225:5:11"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "2250:5:11",
"nodeType": "YulIdentifier",
"src": "2250:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "2232:17:11",
"nodeType": "YulIdentifier",
"src": "2232:17:11"
},
"nativeSrc": "2232:24:11",
"nodeType": "YulFunctionCall",
"src": "2232:24:11"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "2222:2:11",
"nodeType": "YulIdentifier",
"src": "2222:2:11"
},
"nativeSrc": "2222:35:11",
"nodeType": "YulFunctionCall",
"src": "2222:35:11"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2215:6:11",
"nodeType": "YulIdentifier",
"src": "2215:6:11"
},
"nativeSrc": "2215:43:11",
"nodeType": "YulFunctionCall",
"src": "2215:43:11"
},
"nativeSrc": "2212:63:11",
"nodeType": "YulIf",
"src": "2212:63:11"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "2159:122:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2195:5:11",
"nodeType": "YulTypedName",
"src": "2195:5:11",
"type": ""
}
],
"src": "2159:122:11"
},
{
"body": {
"nativeSrc": "2339:87:11",
"nodeType": "YulBlock",
"src": "2339:87:11",
"statements": [
{
"nativeSrc": "2349:29:11",
"nodeType": "YulAssignment",
"src": "2349:29:11",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "2371:6:11",
"nodeType": "YulIdentifier",
"src": "2371:6:11"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "2358:12:11",
"nodeType": "YulIdentifier",
"src": "2358:12:11"
},
"nativeSrc": "2358:20:11",
"nodeType": "YulFunctionCall",
"src": "2358:20:11"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "2349:5:11",
"nodeType": "YulIdentifier",
"src": "2349:5:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "2414:5:11",
"nodeType": "YulIdentifier",
"src": "2414:5:11"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "2387:26:11",
"nodeType": "YulIdentifier",
"src": "2387:26:11"
},
"nativeSrc": "2387:33:11",
"nodeType": "YulFunctionCall",
"src": "2387:33:11"
},
"nativeSrc": "2387:33:11",
"nodeType": "YulExpressionStatement",
"src": "2387:33:11"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "2287:139:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "2317:6:11",
"nodeType": "YulTypedName",
"src": "2317:6:11",
"type": ""
},
{
"name": "end",
"nativeSrc": "2325:3:11",
"nodeType": "YulTypedName",
"src": "2325:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "2333:5:11",
"nodeType": "YulTypedName",
"src": "2333:5:11",
"type": ""
}
],
"src": "2287:139:11"
},
{
"body": {
"nativeSrc": "2515:391:11",
"nodeType": "YulBlock",
"src": "2515:391:11",
"statements": [
{
"body": {
"nativeSrc": "2561:83:11",
"nodeType": "YulBlock",
"src": "2561:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "2563:77:11",
"nodeType": "YulIdentifier",
"src": "2563:77:11"
},
"nativeSrc": "2563:79:11",
"nodeType": "YulFunctionCall",
"src": "2563:79:11"
},
"nativeSrc": "2563:79:11",
"nodeType": "YulExpressionStatement",
"src": "2563:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "2536:7:11",
"nodeType": "YulIdentifier",
"src": "2536:7:11"
},
{
"name": "headStart",
"nativeSrc": "2545:9:11",
"nodeType": "YulIdentifier",
"src": "2545:9:11"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "2532:3:11",
"nodeType": "YulIdentifier",
"src": "2532:3:11"
},
"nativeSrc": "2532:23:11",
"nodeType": "YulFunctionCall",
"src": "2532:23:11"
},
{
"kind": "number",
"nativeSrc": "2557:2:11",
"nodeType": "YulLiteral",
"src": "2557:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "2528:3:11",
"nodeType": "YulIdentifier",
"src": "2528:3:11"
},
"nativeSrc": "2528:32:11",
"nodeType": "YulFunctionCall",
"src": "2528:32:11"
},
"nativeSrc": "2525:119:11",
"nodeType": "YulIf",
"src": "2525:119:11"
},
{
"nativeSrc": "2654:117:11",
"nodeType": "YulBlock",
"src": "2654:117:11",
"statements": [
{
"nativeSrc": "2669:15:11",
"nodeType": "YulVariableDeclaration",
"src": "2669:15:11",
"value": {
"kind": "number",
"nativeSrc": "2683:1:11",
"nodeType": "YulLiteral",
"src": "2683:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "2673:6:11",
"nodeType": "YulTypedName",
"src": "2673:6:11",
"type": ""
}
]
},
{
"nativeSrc": "2698:63:11",
"nodeType": "YulAssignment",
"src": "2698:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2733:9:11",
"nodeType": "YulIdentifier",
"src": "2733:9:11"
},
{
"name": "offset",
"nativeSrc": "2744:6:11",
"nodeType": "YulIdentifier",
"src": "2744:6:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2729:3:11",
"nodeType": "YulIdentifier",
"src": "2729:3:11"
},
"nativeSrc": "2729:22:11",
"nodeType": "YulFunctionCall",
"src": "2729:22:11"
},
{
"name": "dataEnd",
"nativeSrc": "2753:7:11",
"nodeType": "YulIdentifier",
"src": "2753:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "2708:20:11",
"nodeType": "YulIdentifier",
"src": "2708:20:11"
},
"nativeSrc": "2708:53:11",
"nodeType": "YulFunctionCall",
"src": "2708:53:11"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "2698:6:11",
"nodeType": "YulIdentifier",
"src": "2698:6:11"
}
]
}
]
},
{
"nativeSrc": "2781:118:11",
"nodeType": "YulBlock",
"src": "2781:118:11",
"statements": [
{
"nativeSrc": "2796:16:11",
"nodeType": "YulVariableDeclaration",
"src": "2796:16:11",
"value": {
"kind": "number",
"nativeSrc": "2810:2:11",
"nodeType": "YulLiteral",
"src": "2810:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "2800:6:11",
"nodeType": "YulTypedName",
"src": "2800:6:11",
"type": ""
}
]
},
{
"nativeSrc": "2826:63:11",
"nodeType": "YulAssignment",
"src": "2826:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "2861:9:11",
"nodeType": "YulIdentifier",
"src": "2861:9:11"
},
{
"name": "offset",
"nativeSrc": "2872:6:11",
"nodeType": "YulIdentifier",
"src": "2872:6:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2857:3:11",
"nodeType": "YulIdentifier",
"src": "2857:3:11"
},
"nativeSrc": "2857:22:11",
"nodeType": "YulFunctionCall",
"src": "2857:22:11"
},
{
"name": "dataEnd",
"nativeSrc": "2881:7:11",
"nodeType": "YulIdentifier",
"src": "2881:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "2836:20:11",
"nodeType": "YulIdentifier",
"src": "2836:20:11"
},
"nativeSrc": "2836:53:11",
"nodeType": "YulFunctionCall",
"src": "2836:53:11"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "2826:6:11",
"nodeType": "YulIdentifier",
"src": "2826:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nativeSrc": "2432:474:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "2477:9:11",
"nodeType": "YulTypedName",
"src": "2477:9:11",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "2488:7:11",
"nodeType": "YulTypedName",
"src": "2488:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "2500:6:11",
"nodeType": "YulTypedName",
"src": "2500:6:11",
"type": ""
},
{
"name": "value1",
"nativeSrc": "2508:6:11",
"nodeType": "YulTypedName",
"src": "2508:6:11",
"type": ""
}
],
"src": "2432:474:11"
},
{
"body": {
"nativeSrc": "2954:48:11",
"nodeType": "YulBlock",
"src": "2954:48:11",
"statements": [
{
"nativeSrc": "2964:32:11",
"nodeType": "YulAssignment",
"src": "2964:32:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "2989:5:11",
"nodeType": "YulIdentifier",
"src": "2989:5:11"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2982:6:11",
"nodeType": "YulIdentifier",
"src": "2982:6:11"
},
"nativeSrc": "2982:13:11",
"nodeType": "YulFunctionCall",
"src": "2982:13:11"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2975:6:11",
"nodeType": "YulIdentifier",
"src": "2975:6:11"
},
"nativeSrc": "2975:21:11",
"nodeType": "YulFunctionCall",
"src": "2975:21:11"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "2964:7:11",
"nodeType": "YulIdentifier",
"src": "2964:7:11"
}
]
}
]
},
"name": "cleanup_t_bool",
"nativeSrc": "2912:90:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "2936:5:11",
"nodeType": "YulTypedName",
"src": "2936:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "2946:7:11",
"nodeType": "YulTypedName",
"src": "2946:7:11",
"type": ""
}
],
"src": "2912:90:11"
},
{
"body": {
"nativeSrc": "3067:50:11",
"nodeType": "YulBlock",
"src": "3067:50:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3084:3:11",
"nodeType": "YulIdentifier",
"src": "3084:3:11"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "3104:5:11",
"nodeType": "YulIdentifier",
"src": "3104:5:11"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nativeSrc": "3089:14:11",
"nodeType": "YulIdentifier",
"src": "3089:14:11"
},
"nativeSrc": "3089:21:11",
"nodeType": "YulFunctionCall",
"src": "3089:21:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3077:6:11",
"nodeType": "YulIdentifier",
"src": "3077:6:11"
},
"nativeSrc": "3077:34:11",
"nodeType": "YulFunctionCall",
"src": "3077:34:11"
},
"nativeSrc": "3077:34:11",
"nodeType": "YulExpressionStatement",
"src": "3077:34:11"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nativeSrc": "3008:109:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3055:5:11",
"nodeType": "YulTypedName",
"src": "3055:5:11",
"type": ""
},
{
"name": "pos",
"nativeSrc": "3062:3:11",
"nodeType": "YulTypedName",
"src": "3062:3:11",
"type": ""
}
],
"src": "3008:109:11"
},
{
"body": {
"nativeSrc": "3215:118:11",
"nodeType": "YulBlock",
"src": "3215:118:11",
"statements": [
{
"nativeSrc": "3225:26:11",
"nodeType": "YulAssignment",
"src": "3225:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "3237:9:11",
"nodeType": "YulIdentifier",
"src": "3237:9:11"
},
{
"kind": "number",
"nativeSrc": "3248:2:11",
"nodeType": "YulLiteral",
"src": "3248:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3233:3:11",
"nodeType": "YulIdentifier",
"src": "3233:3:11"
},
"nativeSrc": "3233:18:11",
"nodeType": "YulFunctionCall",
"src": "3233:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3225:4:11",
"nodeType": "YulIdentifier",
"src": "3225:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "3299:6:11",
"nodeType": "YulIdentifier",
"src": "3299:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3312:9:11",
"nodeType": "YulIdentifier",
"src": "3312:9:11"
},
{
"kind": "number",
"nativeSrc": "3323:1:11",
"nodeType": "YulLiteral",
"src": "3323:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3308:3:11",
"nodeType": "YulIdentifier",
"src": "3308:3:11"
},
"nativeSrc": "3308:17:11",
"nodeType": "YulFunctionCall",
"src": "3308:17:11"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nativeSrc": "3261:37:11",
"nodeType": "YulIdentifier",
"src": "3261:37:11"
},
"nativeSrc": "3261:65:11",
"nodeType": "YulFunctionCall",
"src": "3261:65:11"
},
"nativeSrc": "3261:65:11",
"nodeType": "YulExpressionStatement",
"src": "3261:65:11"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nativeSrc": "3123:210:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3187:9:11",
"nodeType": "YulTypedName",
"src": "3187:9:11",
"type": ""
},
{
"name": "value0",
"nativeSrc": "3199:6:11",
"nodeType": "YulTypedName",
"src": "3199:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "3210:4:11",
"nodeType": "YulTypedName",
"src": "3210:4:11",
"type": ""
}
],
"src": "3123:210:11"
},
{
"body": {
"nativeSrc": "3404:53:11",
"nodeType": "YulBlock",
"src": "3404:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3421:3:11",
"nodeType": "YulIdentifier",
"src": "3421:3:11"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "3444:5:11",
"nodeType": "YulIdentifier",
"src": "3444:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "3426:17:11",
"nodeType": "YulIdentifier",
"src": "3426:17:11"
},
"nativeSrc": "3426:24:11",
"nodeType": "YulFunctionCall",
"src": "3426:24:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3414:6:11",
"nodeType": "YulIdentifier",
"src": "3414:6:11"
},
"nativeSrc": "3414:37:11",
"nodeType": "YulFunctionCall",
"src": "3414:37:11"
},
"nativeSrc": "3414:37:11",
"nodeType": "YulExpressionStatement",
"src": "3414:37:11"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "3339:118:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3392:5:11",
"nodeType": "YulTypedName",
"src": "3392:5:11",
"type": ""
},
{
"name": "pos",
"nativeSrc": "3399:3:11",
"nodeType": "YulTypedName",
"src": "3399:3:11",
"type": ""
}
],
"src": "3339:118:11"
},
{
"body": {
"nativeSrc": "3561:124:11",
"nodeType": "YulBlock",
"src": "3561:124:11",
"statements": [
{
"nativeSrc": "3571:26:11",
"nodeType": "YulAssignment",
"src": "3571:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "3583:9:11",
"nodeType": "YulIdentifier",
"src": "3583:9:11"
},
{
"kind": "number",
"nativeSrc": "3594:2:11",
"nodeType": "YulLiteral",
"src": "3594:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3579:3:11",
"nodeType": "YulIdentifier",
"src": "3579:3:11"
},
"nativeSrc": "3579:18:11",
"nodeType": "YulFunctionCall",
"src": "3579:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "3571:4:11",
"nodeType": "YulIdentifier",
"src": "3571:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "3651:6:11",
"nodeType": "YulIdentifier",
"src": "3651:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3664:9:11",
"nodeType": "YulIdentifier",
"src": "3664:9:11"
},
{
"kind": "number",
"nativeSrc": "3675:1:11",
"nodeType": "YulLiteral",
"src": "3675:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3660:3:11",
"nodeType": "YulIdentifier",
"src": "3660:3:11"
},
"nativeSrc": "3660:17:11",
"nodeType": "YulFunctionCall",
"src": "3660:17:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "3607:43:11",
"nodeType": "YulIdentifier",
"src": "3607:43:11"
},
"nativeSrc": "3607:71:11",
"nodeType": "YulFunctionCall",
"src": "3607:71:11"
},
"nativeSrc": "3607:71:11",
"nodeType": "YulExpressionStatement",
"src": "3607:71:11"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "3463:222:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3533:9:11",
"nodeType": "YulTypedName",
"src": "3533:9:11",
"type": ""
},
{
"name": "value0",
"nativeSrc": "3545:6:11",
"nodeType": "YulTypedName",
"src": "3545:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "3556:4:11",
"nodeType": "YulTypedName",
"src": "3556:4:11",
"type": ""
}
],
"src": "3463:222:11"
},
{
"body": {
"nativeSrc": "3791:519:11",
"nodeType": "YulBlock",
"src": "3791:519:11",
"statements": [
{
"body": {
"nativeSrc": "3837:83:11",
"nodeType": "YulBlock",
"src": "3837:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "3839:77:11",
"nodeType": "YulIdentifier",
"src": "3839:77:11"
},
"nativeSrc": "3839:79:11",
"nodeType": "YulFunctionCall",
"src": "3839:79:11"
},
"nativeSrc": "3839:79:11",
"nodeType": "YulExpressionStatement",
"src": "3839:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "3812:7:11",
"nodeType": "YulIdentifier",
"src": "3812:7:11"
},
{
"name": "headStart",
"nativeSrc": "3821:9:11",
"nodeType": "YulIdentifier",
"src": "3821:9:11"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3808:3:11",
"nodeType": "YulIdentifier",
"src": "3808:3:11"
},
"nativeSrc": "3808:23:11",
"nodeType": "YulFunctionCall",
"src": "3808:23:11"
},
{
"kind": "number",
"nativeSrc": "3833:2:11",
"nodeType": "YulLiteral",
"src": "3833:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3804:3:11",
"nodeType": "YulIdentifier",
"src": "3804:3:11"
},
"nativeSrc": "3804:32:11",
"nodeType": "YulFunctionCall",
"src": "3804:32:11"
},
"nativeSrc": "3801:119:11",
"nodeType": "YulIf",
"src": "3801:119:11"
},
{
"nativeSrc": "3930:117:11",
"nodeType": "YulBlock",
"src": "3930:117:11",
"statements": [
{
"nativeSrc": "3945:15:11",
"nodeType": "YulVariableDeclaration",
"src": "3945:15:11",
"value": {
"kind": "number",
"nativeSrc": "3959:1:11",
"nodeType": "YulLiteral",
"src": "3959:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "3949:6:11",
"nodeType": "YulTypedName",
"src": "3949:6:11",
"type": ""
}
]
},
{
"nativeSrc": "3974:63:11",
"nodeType": "YulAssignment",
"src": "3974:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4009:9:11",
"nodeType": "YulIdentifier",
"src": "4009:9:11"
},
{
"name": "offset",
"nativeSrc": "4020:6:11",
"nodeType": "YulIdentifier",
"src": "4020:6:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4005:3:11",
"nodeType": "YulIdentifier",
"src": "4005:3:11"
},
"nativeSrc": "4005:22:11",
"nodeType": "YulFunctionCall",
"src": "4005:22:11"
},
{
"name": "dataEnd",
"nativeSrc": "4029:7:11",
"nodeType": "YulIdentifier",
"src": "4029:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "3984:20:11",
"nodeType": "YulIdentifier",
"src": "3984:20:11"
},
"nativeSrc": "3984:53:11",
"nodeType": "YulFunctionCall",
"src": "3984:53:11"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "3974:6:11",
"nodeType": "YulIdentifier",
"src": "3974:6:11"
}
]
}
]
},
{
"nativeSrc": "4057:118:11",
"nodeType": "YulBlock",
"src": "4057:118:11",
"statements": [
{
"nativeSrc": "4072:16:11",
"nodeType": "YulVariableDeclaration",
"src": "4072:16:11",
"value": {
"kind": "number",
"nativeSrc": "4086:2:11",
"nodeType": "YulLiteral",
"src": "4086:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4076:6:11",
"nodeType": "YulTypedName",
"src": "4076:6:11",
"type": ""
}
]
},
{
"nativeSrc": "4102:63:11",
"nodeType": "YulAssignment",
"src": "4102:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4137:9:11",
"nodeType": "YulIdentifier",
"src": "4137:9:11"
},
{
"name": "offset",
"nativeSrc": "4148:6:11",
"nodeType": "YulIdentifier",
"src": "4148:6:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4133:3:11",
"nodeType": "YulIdentifier",
"src": "4133:3:11"
},
"nativeSrc": "4133:22:11",
"nodeType": "YulFunctionCall",
"src": "4133:22:11"
},
{
"name": "dataEnd",
"nativeSrc": "4157:7:11",
"nodeType": "YulIdentifier",
"src": "4157:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "4112:20:11",
"nodeType": "YulIdentifier",
"src": "4112:20:11"
},
"nativeSrc": "4112:53:11",
"nodeType": "YulFunctionCall",
"src": "4112:53:11"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "4102:6:11",
"nodeType": "YulIdentifier",
"src": "4102:6:11"
}
]
}
]
},
{
"nativeSrc": "4185:118:11",
"nodeType": "YulBlock",
"src": "4185:118:11",
"statements": [
{
"nativeSrc": "4200:16:11",
"nodeType": "YulVariableDeclaration",
"src": "4200:16:11",
"value": {
"kind": "number",
"nativeSrc": "4214:2:11",
"nodeType": "YulLiteral",
"src": "4214:2:11",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4204:6:11",
"nodeType": "YulTypedName",
"src": "4204:6:11",
"type": ""
}
]
},
{
"nativeSrc": "4230:63:11",
"nodeType": "YulAssignment",
"src": "4230:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4265:9:11",
"nodeType": "YulIdentifier",
"src": "4265:9:11"
},
{
"name": "offset",
"nativeSrc": "4276:6:11",
"nodeType": "YulIdentifier",
"src": "4276:6:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4261:3:11",
"nodeType": "YulIdentifier",
"src": "4261:3:11"
},
"nativeSrc": "4261:22:11",
"nodeType": "YulFunctionCall",
"src": "4261:22:11"
},
{
"name": "dataEnd",
"nativeSrc": "4285:7:11",
"nodeType": "YulIdentifier",
"src": "4285:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "4240:20:11",
"nodeType": "YulIdentifier",
"src": "4240:20:11"
},
"nativeSrc": "4240:53:11",
"nodeType": "YulFunctionCall",
"src": "4240:53:11"
},
"variableNames": [
{
"name": "value2",
"nativeSrc": "4230:6:11",
"nodeType": "YulIdentifier",
"src": "4230:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nativeSrc": "3691:619:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3745:9:11",
"nodeType": "YulTypedName",
"src": "3745:9:11",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "3756:7:11",
"nodeType": "YulTypedName",
"src": "3756:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "3768:6:11",
"nodeType": "YulTypedName",
"src": "3768:6:11",
"type": ""
},
{
"name": "value1",
"nativeSrc": "3776:6:11",
"nodeType": "YulTypedName",
"src": "3776:6:11",
"type": ""
},
{
"name": "value2",
"nativeSrc": "3784:6:11",
"nodeType": "YulTypedName",
"src": "3784:6:11",
"type": ""
}
],
"src": "3691:619:11"
},
{
"body": {
"nativeSrc": "4359:43:11",
"nodeType": "YulBlock",
"src": "4359:43:11",
"statements": [
{
"nativeSrc": "4369:27:11",
"nodeType": "YulAssignment",
"src": "4369:27:11",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "4384:5:11",
"nodeType": "YulIdentifier",
"src": "4384:5:11"
},
{
"kind": "number",
"nativeSrc": "4391:4:11",
"nodeType": "YulLiteral",
"src": "4391:4:11",
"type": "",
"value": "0xff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "4380:3:11",
"nodeType": "YulIdentifier",
"src": "4380:3:11"
},
"nativeSrc": "4380:16:11",
"nodeType": "YulFunctionCall",
"src": "4380:16:11"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "4369:7:11",
"nodeType": "YulIdentifier",
"src": "4369:7:11"
}
]
}
]
},
"name": "cleanup_t_uint8",
"nativeSrc": "4316:86:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4341:5:11",
"nodeType": "YulTypedName",
"src": "4341:5:11",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "4351:7:11",
"nodeType": "YulTypedName",
"src": "4351:7:11",
"type": ""
}
],
"src": "4316:86:11"
},
{
"body": {
"nativeSrc": "4469:51:11",
"nodeType": "YulBlock",
"src": "4469:51:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4486:3:11",
"nodeType": "YulIdentifier",
"src": "4486:3:11"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "4507:5:11",
"nodeType": "YulIdentifier",
"src": "4507:5:11"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nativeSrc": "4491:15:11",
"nodeType": "YulIdentifier",
"src": "4491:15:11"
},
"nativeSrc": "4491:22:11",
"nodeType": "YulFunctionCall",
"src": "4491:22:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4479:6:11",
"nodeType": "YulIdentifier",
"src": "4479:6:11"
},
"nativeSrc": "4479:35:11",
"nodeType": "YulFunctionCall",
"src": "4479:35:11"
},
"nativeSrc": "4479:35:11",
"nodeType": "YulExpressionStatement",
"src": "4479:35:11"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nativeSrc": "4408:112:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4457:5:11",
"nodeType": "YulTypedName",
"src": "4457:5:11",
"type": ""
},
{
"name": "pos",
"nativeSrc": "4464:3:11",
"nodeType": "YulTypedName",
"src": "4464:3:11",
"type": ""
}
],
"src": "4408:112:11"
},
{
"body": {
"nativeSrc": "4620:120:11",
"nodeType": "YulBlock",
"src": "4620:120:11",
"statements": [
{
"nativeSrc": "4630:26:11",
"nodeType": "YulAssignment",
"src": "4630:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "4642:9:11",
"nodeType": "YulIdentifier",
"src": "4642:9:11"
},
{
"kind": "number",
"nativeSrc": "4653:2:11",
"nodeType": "YulLiteral",
"src": "4653:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4638:3:11",
"nodeType": "YulIdentifier",
"src": "4638:3:11"
},
"nativeSrc": "4638:18:11",
"nodeType": "YulFunctionCall",
"src": "4638:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "4630:4:11",
"nodeType": "YulIdentifier",
"src": "4630:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "4706:6:11",
"nodeType": "YulIdentifier",
"src": "4706:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4719:9:11",
"nodeType": "YulIdentifier",
"src": "4719:9:11"
},
{
"kind": "number",
"nativeSrc": "4730:1:11",
"nodeType": "YulLiteral",
"src": "4730:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4715:3:11",
"nodeType": "YulIdentifier",
"src": "4715:3:11"
},
"nativeSrc": "4715:17:11",
"nodeType": "YulFunctionCall",
"src": "4715:17:11"
}
],
"functionName": {
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nativeSrc": "4666:39:11",
"nodeType": "YulIdentifier",
"src": "4666:39:11"
},
"nativeSrc": "4666:67:11",
"nodeType": "YulFunctionCall",
"src": "4666:67:11"
},
"nativeSrc": "4666:67:11",
"nodeType": "YulExpressionStatement",
"src": "4666:67:11"
}
]
},
"name": "abi_encode_tuple_t_uint8__to_t_uint8__fromStack_reversed",
"nativeSrc": "4526:214:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "4592:9:11",
"nodeType": "YulTypedName",
"src": "4592:9:11",
"type": ""
},
{
"name": "value0",
"nativeSrc": "4604:6:11",
"nodeType": "YulTypedName",
"src": "4604:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "4615:4:11",
"nodeType": "YulTypedName",
"src": "4615:4:11",
"type": ""
}
],
"src": "4526:214:11"
},
{
"body": {
"nativeSrc": "4812:263:11",
"nodeType": "YulBlock",
"src": "4812:263:11",
"statements": [
{
"body": {
"nativeSrc": "4858:83:11",
"nodeType": "YulBlock",
"src": "4858:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "4860:77:11",
"nodeType": "YulIdentifier",
"src": "4860:77:11"
},
"nativeSrc": "4860:79:11",
"nodeType": "YulFunctionCall",
"src": "4860:79:11"
},
"nativeSrc": "4860:79:11",
"nodeType": "YulExpressionStatement",
"src": "4860:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "4833:7:11",
"nodeType": "YulIdentifier",
"src": "4833:7:11"
},
{
"name": "headStart",
"nativeSrc": "4842:9:11",
"nodeType": "YulIdentifier",
"src": "4842:9:11"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "4829:3:11",
"nodeType": "YulIdentifier",
"src": "4829:3:11"
},
"nativeSrc": "4829:23:11",
"nodeType": "YulFunctionCall",
"src": "4829:23:11"
},
{
"kind": "number",
"nativeSrc": "4854:2:11",
"nodeType": "YulLiteral",
"src": "4854:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "4825:3:11",
"nodeType": "YulIdentifier",
"src": "4825:3:11"
},
"nativeSrc": "4825:32:11",
"nodeType": "YulFunctionCall",
"src": "4825:32:11"
},
"nativeSrc": "4822:119:11",
"nodeType": "YulIf",
"src": "4822:119:11"
},
{
"nativeSrc": "4951:117:11",
"nodeType": "YulBlock",
"src": "4951:117:11",
"statements": [
{
"nativeSrc": "4966:15:11",
"nodeType": "YulVariableDeclaration",
"src": "4966:15:11",
"value": {
"kind": "number",
"nativeSrc": "4980:1:11",
"nodeType": "YulLiteral",
"src": "4980:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4970:6:11",
"nodeType": "YulTypedName",
"src": "4970:6:11",
"type": ""
}
]
},
{
"nativeSrc": "4995:63:11",
"nodeType": "YulAssignment",
"src": "4995:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5030:9:11",
"nodeType": "YulIdentifier",
"src": "5030:9:11"
},
{
"name": "offset",
"nativeSrc": "5041:6:11",
"nodeType": "YulIdentifier",
"src": "5041:6:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5026:3:11",
"nodeType": "YulIdentifier",
"src": "5026:3:11"
},
"nativeSrc": "5026:22:11",
"nodeType": "YulFunctionCall",
"src": "5026:22:11"
},
{
"name": "dataEnd",
"nativeSrc": "5050:7:11",
"nodeType": "YulIdentifier",
"src": "5050:7:11"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "5005:20:11",
"nodeType": "YulIdentifier",
"src": "5005:20:11"
},
"nativeSrc": "5005:53:11",
"nodeType": "YulFunctionCall",
"src": "5005:53:11"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "4995:6:11",
"nodeType": "YulIdentifier",
"src": "4995:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nativeSrc": "4746:329:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "4782:9:11",
"nodeType": "YulTypedName",
"src": "4782:9:11",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "4793:7:11",
"nodeType": "YulTypedName",
"src": "4793:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "4805:6:11",
"nodeType": "YulTypedName",
"src": "4805:6:11",
"type": ""
}
],
"src": "4746:329:11"
},
{
"body": {
"nativeSrc": "5147:263:11",
"nodeType": "YulBlock",
"src": "5147:263:11",
"statements": [
{
"body": {
"nativeSrc": "5193:83:11",
"nodeType": "YulBlock",
"src": "5193:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "5195:77:11",
"nodeType": "YulIdentifier",
"src": "5195:77:11"
},
"nativeSrc": "5195:79:11",
"nodeType": "YulFunctionCall",
"src": "5195:79:11"
},
"nativeSrc": "5195:79:11",
"nodeType": "YulExpressionStatement",
"src": "5195:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "5168:7:11",
"nodeType": "YulIdentifier",
"src": "5168:7:11"
},
{
"name": "headStart",
"nativeSrc": "5177:9:11",
"nodeType": "YulIdentifier",
"src": "5177:9:11"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "5164:3:11",
"nodeType": "YulIdentifier",
"src": "5164:3:11"
},
"nativeSrc": "5164:23:11",
"nodeType": "YulFunctionCall",
"src": "5164:23:11"
},
{
"kind": "number",
"nativeSrc": "5189:2:11",
"nodeType": "YulLiteral",
"src": "5189:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "5160:3:11",
"nodeType": "YulIdentifier",
"src": "5160:3:11"
},
"nativeSrc": "5160:32:11",
"nodeType": "YulFunctionCall",
"src": "5160:32:11"
},
"nativeSrc": "5157:119:11",
"nodeType": "YulIf",
"src": "5157:119:11"
},
{
"nativeSrc": "5286:117:11",
"nodeType": "YulBlock",
"src": "5286:117:11",
"statements": [
{
"nativeSrc": "5301:15:11",
"nodeType": "YulVariableDeclaration",
"src": "5301:15:11",
"value": {
"kind": "number",
"nativeSrc": "5315:1:11",
"nodeType": "YulLiteral",
"src": "5315:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5305:6:11",
"nodeType": "YulTypedName",
"src": "5305:6:11",
"type": ""
}
]
},
{
"nativeSrc": "5330:63:11",
"nodeType": "YulAssignment",
"src": "5330:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5365:9:11",
"nodeType": "YulIdentifier",
"src": "5365:9:11"
},
{
"name": "offset",
"nativeSrc": "5376:6:11",
"nodeType": "YulIdentifier",
"src": "5376:6:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5361:3:11",
"nodeType": "YulIdentifier",
"src": "5361:3:11"
},
"nativeSrc": "5361:22:11",
"nodeType": "YulFunctionCall",
"src": "5361:22:11"
},
{
"name": "dataEnd",
"nativeSrc": "5385:7:11",
"nodeType": "YulIdentifier",
"src": "5385:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "5340:20:11",
"nodeType": "YulIdentifier",
"src": "5340:20:11"
},
"nativeSrc": "5340:53:11",
"nodeType": "YulFunctionCall",
"src": "5340:53:11"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "5330:6:11",
"nodeType": "YulIdentifier",
"src": "5330:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nativeSrc": "5081:329:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5117:9:11",
"nodeType": "YulTypedName",
"src": "5117:9:11",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "5128:7:11",
"nodeType": "YulTypedName",
"src": "5128:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "5140:6:11",
"nodeType": "YulTypedName",
"src": "5140:6:11",
"type": ""
}
],
"src": "5081:329:11"
},
{
"body": {
"nativeSrc": "5481:53:11",
"nodeType": "YulBlock",
"src": "5481:53:11",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5498:3:11",
"nodeType": "YulIdentifier",
"src": "5498:3:11"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "5521:5:11",
"nodeType": "YulIdentifier",
"src": "5521:5:11"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "5503:17:11",
"nodeType": "YulIdentifier",
"src": "5503:17:11"
},
"nativeSrc": "5503:24:11",
"nodeType": "YulFunctionCall",
"src": "5503:24:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5491:6:11",
"nodeType": "YulIdentifier",
"src": "5491:6:11"
},
"nativeSrc": "5491:37:11",
"nodeType": "YulFunctionCall",
"src": "5491:37:11"
},
"nativeSrc": "5491:37:11",
"nodeType": "YulExpressionStatement",
"src": "5491:37:11"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "5416:118:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5469:5:11",
"nodeType": "YulTypedName",
"src": "5469:5:11",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5476:3:11",
"nodeType": "YulTypedName",
"src": "5476:3:11",
"type": ""
}
],
"src": "5416:118:11"
},
{
"body": {
"nativeSrc": "5638:124:11",
"nodeType": "YulBlock",
"src": "5638:124:11",
"statements": [
{
"nativeSrc": "5648:26:11",
"nodeType": "YulAssignment",
"src": "5648:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "5660:9:11",
"nodeType": "YulIdentifier",
"src": "5660:9:11"
},
{
"kind": "number",
"nativeSrc": "5671:2:11",
"nodeType": "YulLiteral",
"src": "5671:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5656:3:11",
"nodeType": "YulIdentifier",
"src": "5656:3:11"
},
"nativeSrc": "5656:18:11",
"nodeType": "YulFunctionCall",
"src": "5656:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5648:4:11",
"nodeType": "YulIdentifier",
"src": "5648:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "5728:6:11",
"nodeType": "YulIdentifier",
"src": "5728:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5741:9:11",
"nodeType": "YulIdentifier",
"src": "5741:9:11"
},
{
"kind": "number",
"nativeSrc": "5752:1:11",
"nodeType": "YulLiteral",
"src": "5752:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5737:3:11",
"nodeType": "YulIdentifier",
"src": "5737:3:11"
},
"nativeSrc": "5737:17:11",
"nodeType": "YulFunctionCall",
"src": "5737:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "5684:43:11",
"nodeType": "YulIdentifier",
"src": "5684:43:11"
},
"nativeSrc": "5684:71:11",
"nodeType": "YulFunctionCall",
"src": "5684:71:11"
},
"nativeSrc": "5684:71:11",
"nodeType": "YulExpressionStatement",
"src": "5684:71:11"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nativeSrc": "5540:222:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5610:9:11",
"nodeType": "YulTypedName",
"src": "5610:9:11",
"type": ""
},
{
"name": "value0",
"nativeSrc": "5622:6:11",
"nodeType": "YulTypedName",
"src": "5622:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "5633:4:11",
"nodeType": "YulTypedName",
"src": "5633:4:11",
"type": ""
}
],
"src": "5540:222:11"
},
{
"body": {
"nativeSrc": "5851:391:11",
"nodeType": "YulBlock",
"src": "5851:391:11",
"statements": [
{
"body": {
"nativeSrc": "5897:83:11",
"nodeType": "YulBlock",
"src": "5897:83:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "5899:77:11",
"nodeType": "YulIdentifier",
"src": "5899:77:11"
},
"nativeSrc": "5899:79:11",
"nodeType": "YulFunctionCall",
"src": "5899:79:11"
},
"nativeSrc": "5899:79:11",
"nodeType": "YulExpressionStatement",
"src": "5899:79:11"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "5872:7:11",
"nodeType": "YulIdentifier",
"src": "5872:7:11"
},
{
"name": "headStart",
"nativeSrc": "5881:9:11",
"nodeType": "YulIdentifier",
"src": "5881:9:11"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "5868:3:11",
"nodeType": "YulIdentifier",
"src": "5868:3:11"
},
"nativeSrc": "5868:23:11",
"nodeType": "YulFunctionCall",
"src": "5868:23:11"
},
{
"kind": "number",
"nativeSrc": "5893:2:11",
"nodeType": "YulLiteral",
"src": "5893:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "5864:3:11",
"nodeType": "YulIdentifier",
"src": "5864:3:11"
},
"nativeSrc": "5864:32:11",
"nodeType": "YulFunctionCall",
"src": "5864:32:11"
},
"nativeSrc": "5861:119:11",
"nodeType": "YulIf",
"src": "5861:119:11"
},
{
"nativeSrc": "5990:117:11",
"nodeType": "YulBlock",
"src": "5990:117:11",
"statements": [
{
"nativeSrc": "6005:15:11",
"nodeType": "YulVariableDeclaration",
"src": "6005:15:11",
"value": {
"kind": "number",
"nativeSrc": "6019:1:11",
"nodeType": "YulLiteral",
"src": "6019:1:11",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "6009:6:11",
"nodeType": "YulTypedName",
"src": "6009:6:11",
"type": ""
}
]
},
{
"nativeSrc": "6034:63:11",
"nodeType": "YulAssignment",
"src": "6034:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6069:9:11",
"nodeType": "YulIdentifier",
"src": "6069:9:11"
},
{
"name": "offset",
"nativeSrc": "6080:6:11",
"nodeType": "YulIdentifier",
"src": "6080:6:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6065:3:11",
"nodeType": "YulIdentifier",
"src": "6065:3:11"
},
"nativeSrc": "6065:22:11",
"nodeType": "YulFunctionCall",
"src": "6065:22:11"
},
{
"name": "dataEnd",
"nativeSrc": "6089:7:11",
"nodeType": "YulIdentifier",
"src": "6089:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "6044:20:11",
"nodeType": "YulIdentifier",
"src": "6044:20:11"
},
"nativeSrc": "6044:53:11",
"nodeType": "YulFunctionCall",
"src": "6044:53:11"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "6034:6:11",
"nodeType": "YulIdentifier",
"src": "6034:6:11"
}
]
}
]
},
{
"nativeSrc": "6117:118:11",
"nodeType": "YulBlock",
"src": "6117:118:11",
"statements": [
{
"nativeSrc": "6132:16:11",
"nodeType": "YulVariableDeclaration",
"src": "6132:16:11",
"value": {
"kind": "number",
"nativeSrc": "6146:2:11",
"nodeType": "YulLiteral",
"src": "6146:2:11",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "6136:6:11",
"nodeType": "YulTypedName",
"src": "6136:6:11",
"type": ""
}
]
},
{
"nativeSrc": "6162:63:11",
"nodeType": "YulAssignment",
"src": "6162:63:11",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6197:9:11",
"nodeType": "YulIdentifier",
"src": "6197:9:11"
},
{
"name": "offset",
"nativeSrc": "6208:6:11",
"nodeType": "YulIdentifier",
"src": "6208:6:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6193:3:11",
"nodeType": "YulIdentifier",
"src": "6193:3:11"
},
"nativeSrc": "6193:22:11",
"nodeType": "YulFunctionCall",
"src": "6193:22:11"
},
{
"name": "dataEnd",
"nativeSrc": "6217:7:11",
"nodeType": "YulIdentifier",
"src": "6217:7:11"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "6172:20:11",
"nodeType": "YulIdentifier",
"src": "6172:20:11"
},
"nativeSrc": "6172:53:11",
"nodeType": "YulFunctionCall",
"src": "6172:53:11"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "6162:6:11",
"nodeType": "YulIdentifier",
"src": "6162:6:11"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nativeSrc": "5768:474:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5813:9:11",
"nodeType": "YulTypedName",
"src": "5813:9:11",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "5824:7:11",
"nodeType": "YulTypedName",
"src": "5824:7:11",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "5836:6:11",
"nodeType": "YulTypedName",
"src": "5836:6:11",
"type": ""
},
{
"name": "value1",
"nativeSrc": "5844:6:11",
"nodeType": "YulTypedName",
"src": "5844:6:11",
"type": ""
}
],
"src": "5768:474:11"
},
{
"body": {
"nativeSrc": "6276:152:11",
"nodeType": "YulBlock",
"src": "6276:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6293:1:11",
"nodeType": "YulLiteral",
"src": "6293:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6296:77:11",
"nodeType": "YulLiteral",
"src": "6296:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6286:6:11",
"nodeType": "YulIdentifier",
"src": "6286:6:11"
},
"nativeSrc": "6286:88:11",
"nodeType": "YulFunctionCall",
"src": "6286:88:11"
},
"nativeSrc": "6286:88:11",
"nodeType": "YulExpressionStatement",
"src": "6286:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6390:1:11",
"nodeType": "YulLiteral",
"src": "6390:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "6393:4:11",
"nodeType": "YulLiteral",
"src": "6393:4:11",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6383:6:11",
"nodeType": "YulIdentifier",
"src": "6383:6:11"
},
"nativeSrc": "6383:15:11",
"nodeType": "YulFunctionCall",
"src": "6383:15:11"
},
"nativeSrc": "6383:15:11",
"nodeType": "YulExpressionStatement",
"src": "6383:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6414:1:11",
"nodeType": "YulLiteral",
"src": "6414:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6417:4:11",
"nodeType": "YulLiteral",
"src": "6417:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6407:6:11",
"nodeType": "YulIdentifier",
"src": "6407:6:11"
},
"nativeSrc": "6407:15:11",
"nodeType": "YulFunctionCall",
"src": "6407:15:11"
},
"nativeSrc": "6407:15:11",
"nodeType": "YulExpressionStatement",
"src": "6407:15:11"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "6248:180:11",
"nodeType": "YulFunctionDefinition",
"src": "6248:180:11"
},
{
"body": {
"nativeSrc": "6485:269:11",
"nodeType": "YulBlock",
"src": "6485:269:11",
"statements": [
{
"nativeSrc": "6495:22:11",
"nodeType": "YulAssignment",
"src": "6495:22:11",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "6509:4:11",
"nodeType": "YulIdentifier",
"src": "6509:4:11"
},
{
"kind": "number",
"nativeSrc": "6515:1:11",
"nodeType": "YulLiteral",
"src": "6515:1:11",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "6505:3:11",
"nodeType": "YulIdentifier",
"src": "6505:3:11"
},
"nativeSrc": "6505:12:11",
"nodeType": "YulFunctionCall",
"src": "6505:12:11"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "6495:6:11",
"nodeType": "YulIdentifier",
"src": "6495:6:11"
}
]
},
{
"nativeSrc": "6526:38:11",
"nodeType": "YulVariableDeclaration",
"src": "6526:38:11",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "6556:4:11",
"nodeType": "YulIdentifier",
"src": "6556:4:11"
},
{
"kind": "number",
"nativeSrc": "6562:1:11",
"nodeType": "YulLiteral",
"src": "6562:1:11",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "6552:3:11",
"nodeType": "YulIdentifier",
"src": "6552:3:11"
},
"nativeSrc": "6552:12:11",
"nodeType": "YulFunctionCall",
"src": "6552:12:11"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "6530:18:11",
"nodeType": "YulTypedName",
"src": "6530:18:11",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "6603:51:11",
"nodeType": "YulBlock",
"src": "6603:51:11",
"statements": [
{
"nativeSrc": "6617:27:11",
"nodeType": "YulAssignment",
"src": "6617:27:11",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "6631:6:11",
"nodeType": "YulIdentifier",
"src": "6631:6:11"
},
{
"kind": "number",
"nativeSrc": "6639:4:11",
"nodeType": "YulLiteral",
"src": "6639:4:11",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "6627:3:11",
"nodeType": "YulIdentifier",
"src": "6627:3:11"
},
"nativeSrc": "6627:17:11",
"nodeType": "YulFunctionCall",
"src": "6627:17:11"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "6617:6:11",
"nodeType": "YulIdentifier",
"src": "6617:6:11"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "6583:18:11",
"nodeType": "YulIdentifier",
"src": "6583:18:11"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "6576:6:11",
"nodeType": "YulIdentifier",
"src": "6576:6:11"
},
"nativeSrc": "6576:26:11",
"nodeType": "YulFunctionCall",
"src": "6576:26:11"
},
"nativeSrc": "6573:81:11",
"nodeType": "YulIf",
"src": "6573:81:11"
},
{
"body": {
"nativeSrc": "6706:42:11",
"nodeType": "YulBlock",
"src": "6706:42:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "6720:16:11",
"nodeType": "YulIdentifier",
"src": "6720:16:11"
},
"nativeSrc": "6720:18:11",
"nodeType": "YulFunctionCall",
"src": "6720:18:11"
},
"nativeSrc": "6720:18:11",
"nodeType": "YulExpressionStatement",
"src": "6720:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "6670:18:11",
"nodeType": "YulIdentifier",
"src": "6670:18:11"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "6693:6:11",
"nodeType": "YulIdentifier",
"src": "6693:6:11"
},
{
"kind": "number",
"nativeSrc": "6701:2:11",
"nodeType": "YulLiteral",
"src": "6701:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "6690:2:11",
"nodeType": "YulIdentifier",
"src": "6690:2:11"
},
"nativeSrc": "6690:14:11",
"nodeType": "YulFunctionCall",
"src": "6690:14:11"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "6667:2:11",
"nodeType": "YulIdentifier",
"src": "6667:2:11"
},
"nativeSrc": "6667:38:11",
"nodeType": "YulFunctionCall",
"src": "6667:38:11"
},
"nativeSrc": "6664:84:11",
"nodeType": "YulIf",
"src": "6664:84:11"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "6434:320:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "6469:4:11",
"nodeType": "YulTypedName",
"src": "6469:4:11",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "6478:6:11",
"nodeType": "YulTypedName",
"src": "6478:6:11",
"type": ""
}
],
"src": "6434:320:11"
},
{
"body": {
"nativeSrc": "6866:68:11",
"nodeType": "YulBlock",
"src": "6866:68:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "6888:6:11",
"nodeType": "YulIdentifier",
"src": "6888:6:11"
},
{
"kind": "number",
"nativeSrc": "6896:1:11",
"nodeType": "YulLiteral",
"src": "6896:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6884:3:11",
"nodeType": "YulIdentifier",
"src": "6884:3:11"
},
"nativeSrc": "6884:14:11",
"nodeType": "YulFunctionCall",
"src": "6884:14:11"
},
{
"hexValue": "53656e646572206163636f756e742069732066726f7a656e",
"kind": "string",
"nativeSrc": "6900:26:11",
"nodeType": "YulLiteral",
"src": "6900:26:11",
"type": "",
"value": "Sender account is frozen"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6877:6:11",
"nodeType": "YulIdentifier",
"src": "6877:6:11"
},
"nativeSrc": "6877:50:11",
"nodeType": "YulFunctionCall",
"src": "6877:50:11"
},
"nativeSrc": "6877:50:11",
"nodeType": "YulExpressionStatement",
"src": "6877:50:11"
}
]
},
"name": "store_literal_in_memory_1f88e1d78bc08390278df38e619625a8f7c253c4825a21c199a828881dbe0cd6",
"nativeSrc": "6760:174:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "6858:6:11",
"nodeType": "YulTypedName",
"src": "6858:6:11",
"type": ""
}
],
"src": "6760:174:11"
},
{
"body": {
"nativeSrc": "7086:220:11",
"nodeType": "YulBlock",
"src": "7086:220:11",
"statements": [
{
"nativeSrc": "7096:74:11",
"nodeType": "YulAssignment",
"src": "7096:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7162:3:11",
"nodeType": "YulIdentifier",
"src": "7162:3:11"
},
{
"kind": "number",
"nativeSrc": "7167:2:11",
"nodeType": "YulLiteral",
"src": "7167:2:11",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "7103:58:11",
"nodeType": "YulIdentifier",
"src": "7103:58:11"
},
"nativeSrc": "7103:67:11",
"nodeType": "YulFunctionCall",
"src": "7103:67:11"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "7096:3:11",
"nodeType": "YulIdentifier",
"src": "7096:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7268:3:11",
"nodeType": "YulIdentifier",
"src": "7268:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_1f88e1d78bc08390278df38e619625a8f7c253c4825a21c199a828881dbe0cd6",
"nativeSrc": "7179:88:11",
"nodeType": "YulIdentifier",
"src": "7179:88:11"
},
"nativeSrc": "7179:93:11",
"nodeType": "YulFunctionCall",
"src": "7179:93:11"
},
"nativeSrc": "7179:93:11",
"nodeType": "YulExpressionStatement",
"src": "7179:93:11"
},
{
"nativeSrc": "7281:19:11",
"nodeType": "YulAssignment",
"src": "7281:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7292:3:11",
"nodeType": "YulIdentifier",
"src": "7292:3:11"
},
{
"kind": "number",
"nativeSrc": "7297:2:11",
"nodeType": "YulLiteral",
"src": "7297:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7288:3:11",
"nodeType": "YulIdentifier",
"src": "7288:3:11"
},
"nativeSrc": "7288:12:11",
"nodeType": "YulFunctionCall",
"src": "7288:12:11"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "7281:3:11",
"nodeType": "YulIdentifier",
"src": "7281:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1f88e1d78bc08390278df38e619625a8f7c253c4825a21c199a828881dbe0cd6_to_t_string_memory_ptr_fromStack",
"nativeSrc": "6940:366:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "7074:3:11",
"nodeType": "YulTypedName",
"src": "7074:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "7082:3:11",
"nodeType": "YulTypedName",
"src": "7082:3:11",
"type": ""
}
],
"src": "6940:366:11"
},
{
"body": {
"nativeSrc": "7483:248:11",
"nodeType": "YulBlock",
"src": "7483:248:11",
"statements": [
{
"nativeSrc": "7493:26:11",
"nodeType": "YulAssignment",
"src": "7493:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "7505:9:11",
"nodeType": "YulIdentifier",
"src": "7505:9:11"
},
{
"kind": "number",
"nativeSrc": "7516:2:11",
"nodeType": "YulLiteral",
"src": "7516:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7501:3:11",
"nodeType": "YulIdentifier",
"src": "7501:3:11"
},
"nativeSrc": "7501:18:11",
"nodeType": "YulFunctionCall",
"src": "7501:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7493:4:11",
"nodeType": "YulIdentifier",
"src": "7493:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7540:9:11",
"nodeType": "YulIdentifier",
"src": "7540:9:11"
},
{
"kind": "number",
"nativeSrc": "7551:1:11",
"nodeType": "YulLiteral",
"src": "7551:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7536:3:11",
"nodeType": "YulIdentifier",
"src": "7536:3:11"
},
"nativeSrc": "7536:17:11",
"nodeType": "YulFunctionCall",
"src": "7536:17:11"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "7559:4:11",
"nodeType": "YulIdentifier",
"src": "7559:4:11"
},
{
"name": "headStart",
"nativeSrc": "7565:9:11",
"nodeType": "YulIdentifier",
"src": "7565:9:11"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "7555:3:11",
"nodeType": "YulIdentifier",
"src": "7555:3:11"
},
"nativeSrc": "7555:20:11",
"nodeType": "YulFunctionCall",
"src": "7555:20:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7529:6:11",
"nodeType": "YulIdentifier",
"src": "7529:6:11"
},
"nativeSrc": "7529:47:11",
"nodeType": "YulFunctionCall",
"src": "7529:47:11"
},
"nativeSrc": "7529:47:11",
"nodeType": "YulExpressionStatement",
"src": "7529:47:11"
},
{
"nativeSrc": "7585:139:11",
"nodeType": "YulAssignment",
"src": "7585:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "7719:4:11",
"nodeType": "YulIdentifier",
"src": "7719:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1f88e1d78bc08390278df38e619625a8f7c253c4825a21c199a828881dbe0cd6_to_t_string_memory_ptr_fromStack",
"nativeSrc": "7593:124:11",
"nodeType": "YulIdentifier",
"src": "7593:124:11"
},
"nativeSrc": "7593:131:11",
"nodeType": "YulFunctionCall",
"src": "7593:131:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7585:4:11",
"nodeType": "YulIdentifier",
"src": "7585:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1f88e1d78bc08390278df38e619625a8f7c253c4825a21c199a828881dbe0cd6__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "7312:419:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7463:9:11",
"nodeType": "YulTypedName",
"src": "7463:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "7478:4:11",
"nodeType": "YulTypedName",
"src": "7478:4:11",
"type": ""
}
],
"src": "7312:419:11"
},
{
"body": {
"nativeSrc": "7843:71:11",
"nodeType": "YulBlock",
"src": "7843:71:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "7865:6:11",
"nodeType": "YulIdentifier",
"src": "7865:6:11"
},
{
"kind": "number",
"nativeSrc": "7873:1:11",
"nodeType": "YulLiteral",
"src": "7873:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7861:3:11",
"nodeType": "YulIdentifier",
"src": "7861:3:11"
},
"nativeSrc": "7861:14:11",
"nodeType": "YulFunctionCall",
"src": "7861:14:11"
},
{
"hexValue": "526563697069656e74206163636f756e742069732066726f7a656e",
"kind": "string",
"nativeSrc": "7877:29:11",
"nodeType": "YulLiteral",
"src": "7877:29:11",
"type": "",
"value": "Recipient account is frozen"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7854:6:11",
"nodeType": "YulIdentifier",
"src": "7854:6:11"
},
"nativeSrc": "7854:53:11",
"nodeType": "YulFunctionCall",
"src": "7854:53:11"
},
"nativeSrc": "7854:53:11",
"nodeType": "YulExpressionStatement",
"src": "7854:53:11"
}
]
},
"name": "store_literal_in_memory_35632bfb1f76bb2d87c011edebf502401cf80df0336353247f28176a3ecf89cc",
"nativeSrc": "7737:177:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "7835:6:11",
"nodeType": "YulTypedName",
"src": "7835:6:11",
"type": ""
}
],
"src": "7737:177:11"
},
{
"body": {
"nativeSrc": "8066:220:11",
"nodeType": "YulBlock",
"src": "8066:220:11",
"statements": [
{
"nativeSrc": "8076:74:11",
"nodeType": "YulAssignment",
"src": "8076:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8142:3:11",
"nodeType": "YulIdentifier",
"src": "8142:3:11"
},
{
"kind": "number",
"nativeSrc": "8147:2:11",
"nodeType": "YulLiteral",
"src": "8147:2:11",
"type": "",
"value": "27"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "8083:58:11",
"nodeType": "YulIdentifier",
"src": "8083:58:11"
},
"nativeSrc": "8083:67:11",
"nodeType": "YulFunctionCall",
"src": "8083:67:11"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "8076:3:11",
"nodeType": "YulIdentifier",
"src": "8076:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8248:3:11",
"nodeType": "YulIdentifier",
"src": "8248:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_35632bfb1f76bb2d87c011edebf502401cf80df0336353247f28176a3ecf89cc",
"nativeSrc": "8159:88:11",
"nodeType": "YulIdentifier",
"src": "8159:88:11"
},
"nativeSrc": "8159:93:11",
"nodeType": "YulFunctionCall",
"src": "8159:93:11"
},
"nativeSrc": "8159:93:11",
"nodeType": "YulExpressionStatement",
"src": "8159:93:11"
},
{
"nativeSrc": "8261:19:11",
"nodeType": "YulAssignment",
"src": "8261:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8272:3:11",
"nodeType": "YulIdentifier",
"src": "8272:3:11"
},
{
"kind": "number",
"nativeSrc": "8277:2:11",
"nodeType": "YulLiteral",
"src": "8277:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8268:3:11",
"nodeType": "YulIdentifier",
"src": "8268:3:11"
},
"nativeSrc": "8268:12:11",
"nodeType": "YulFunctionCall",
"src": "8268:12:11"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "8261:3:11",
"nodeType": "YulIdentifier",
"src": "8261:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_35632bfb1f76bb2d87c011edebf502401cf80df0336353247f28176a3ecf89cc_to_t_string_memory_ptr_fromStack",
"nativeSrc": "7920:366:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "8054:3:11",
"nodeType": "YulTypedName",
"src": "8054:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "8062:3:11",
"nodeType": "YulTypedName",
"src": "8062:3:11",
"type": ""
}
],
"src": "7920:366:11"
},
{
"body": {
"nativeSrc": "8463:248:11",
"nodeType": "YulBlock",
"src": "8463:248:11",
"statements": [
{
"nativeSrc": "8473:26:11",
"nodeType": "YulAssignment",
"src": "8473:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "8485:9:11",
"nodeType": "YulIdentifier",
"src": "8485:9:11"
},
{
"kind": "number",
"nativeSrc": "8496:2:11",
"nodeType": "YulLiteral",
"src": "8496:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8481:3:11",
"nodeType": "YulIdentifier",
"src": "8481:3:11"
},
"nativeSrc": "8481:18:11",
"nodeType": "YulFunctionCall",
"src": "8481:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8473:4:11",
"nodeType": "YulIdentifier",
"src": "8473:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "8520:9:11",
"nodeType": "YulIdentifier",
"src": "8520:9:11"
},
{
"kind": "number",
"nativeSrc": "8531:1:11",
"nodeType": "YulLiteral",
"src": "8531:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8516:3:11",
"nodeType": "YulIdentifier",
"src": "8516:3:11"
},
"nativeSrc": "8516:17:11",
"nodeType": "YulFunctionCall",
"src": "8516:17:11"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "8539:4:11",
"nodeType": "YulIdentifier",
"src": "8539:4:11"
},
{
"name": "headStart",
"nativeSrc": "8545:9:11",
"nodeType": "YulIdentifier",
"src": "8545:9:11"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "8535:3:11",
"nodeType": "YulIdentifier",
"src": "8535:3:11"
},
"nativeSrc": "8535:20:11",
"nodeType": "YulFunctionCall",
"src": "8535:20:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8509:6:11",
"nodeType": "YulIdentifier",
"src": "8509:6:11"
},
"nativeSrc": "8509:47:11",
"nodeType": "YulFunctionCall",
"src": "8509:47:11"
},
"nativeSrc": "8509:47:11",
"nodeType": "YulExpressionStatement",
"src": "8509:47:11"
},
{
"nativeSrc": "8565:139:11",
"nodeType": "YulAssignment",
"src": "8565:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "8699:4:11",
"nodeType": "YulIdentifier",
"src": "8699:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_35632bfb1f76bb2d87c011edebf502401cf80df0336353247f28176a3ecf89cc_to_t_string_memory_ptr_fromStack",
"nativeSrc": "8573:124:11",
"nodeType": "YulIdentifier",
"src": "8573:124:11"
},
"nativeSrc": "8573:131:11",
"nodeType": "YulFunctionCall",
"src": "8573:131:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8565:4:11",
"nodeType": "YulIdentifier",
"src": "8565:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_35632bfb1f76bb2d87c011edebf502401cf80df0336353247f28176a3ecf89cc__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "8292:419:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "8443:9:11",
"nodeType": "YulTypedName",
"src": "8443:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "8458:4:11",
"nodeType": "YulTypedName",
"src": "8458:4:11",
"type": ""
}
],
"src": "8292:419:11"
},
{
"body": {
"nativeSrc": "8823:68:11",
"nodeType": "YulBlock",
"src": "8823:68:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "8845:6:11",
"nodeType": "YulIdentifier",
"src": "8845:6:11"
},
{
"kind": "number",
"nativeSrc": "8853:1:11",
"nodeType": "YulLiteral",
"src": "8853:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8841:3:11",
"nodeType": "YulIdentifier",
"src": "8841:3:11"
},
"nativeSrc": "8841:14:11",
"nodeType": "YulFunctionCall",
"src": "8841:14:11"
},
{
"hexValue": "5472616e7366657220636f6f6c646f776e20616374697665",
"kind": "string",
"nativeSrc": "8857:26:11",
"nodeType": "YulLiteral",
"src": "8857:26:11",
"type": "",
"value": "Transfer cooldown active"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8834:6:11",
"nodeType": "YulIdentifier",
"src": "8834:6:11"
},
"nativeSrc": "8834:50:11",
"nodeType": "YulFunctionCall",
"src": "8834:50:11"
},
"nativeSrc": "8834:50:11",
"nodeType": "YulExpressionStatement",
"src": "8834:50:11"
}
]
},
"name": "store_literal_in_memory_3ffaf2354e772b1a13a7404154f6aedc1451784b635e03bee4407a9278c4d819",
"nativeSrc": "8717:174:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "8815:6:11",
"nodeType": "YulTypedName",
"src": "8815:6:11",
"type": ""
}
],
"src": "8717:174:11"
},
{
"body": {
"nativeSrc": "9043:220:11",
"nodeType": "YulBlock",
"src": "9043:220:11",
"statements": [
{
"nativeSrc": "9053:74:11",
"nodeType": "YulAssignment",
"src": "9053:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9119:3:11",
"nodeType": "YulIdentifier",
"src": "9119:3:11"
},
{
"kind": "number",
"nativeSrc": "9124:2:11",
"nodeType": "YulLiteral",
"src": "9124:2:11",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "9060:58:11",
"nodeType": "YulIdentifier",
"src": "9060:58:11"
},
"nativeSrc": "9060:67:11",
"nodeType": "YulFunctionCall",
"src": "9060:67:11"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "9053:3:11",
"nodeType": "YulIdentifier",
"src": "9053:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9225:3:11",
"nodeType": "YulIdentifier",
"src": "9225:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_3ffaf2354e772b1a13a7404154f6aedc1451784b635e03bee4407a9278c4d819",
"nativeSrc": "9136:88:11",
"nodeType": "YulIdentifier",
"src": "9136:88:11"
},
"nativeSrc": "9136:93:11",
"nodeType": "YulFunctionCall",
"src": "9136:93:11"
},
"nativeSrc": "9136:93:11",
"nodeType": "YulExpressionStatement",
"src": "9136:93:11"
},
{
"nativeSrc": "9238:19:11",
"nodeType": "YulAssignment",
"src": "9238:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "9249:3:11",
"nodeType": "YulIdentifier",
"src": "9249:3:11"
},
{
"kind": "number",
"nativeSrc": "9254:2:11",
"nodeType": "YulLiteral",
"src": "9254:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9245:3:11",
"nodeType": "YulIdentifier",
"src": "9245:3:11"
},
"nativeSrc": "9245:12:11",
"nodeType": "YulFunctionCall",
"src": "9245:12:11"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "9238:3:11",
"nodeType": "YulIdentifier",
"src": "9238:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_3ffaf2354e772b1a13a7404154f6aedc1451784b635e03bee4407a9278c4d819_to_t_string_memory_ptr_fromStack",
"nativeSrc": "8897:366:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "9031:3:11",
"nodeType": "YulTypedName",
"src": "9031:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "9039:3:11",
"nodeType": "YulTypedName",
"src": "9039:3:11",
"type": ""
}
],
"src": "8897:366:11"
},
{
"body": {
"nativeSrc": "9440:248:11",
"nodeType": "YulBlock",
"src": "9440:248:11",
"statements": [
{
"nativeSrc": "9450:26:11",
"nodeType": "YulAssignment",
"src": "9450:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "9462:9:11",
"nodeType": "YulIdentifier",
"src": "9462:9:11"
},
{
"kind": "number",
"nativeSrc": "9473:2:11",
"nodeType": "YulLiteral",
"src": "9473:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9458:3:11",
"nodeType": "YulIdentifier",
"src": "9458:3:11"
},
"nativeSrc": "9458:18:11",
"nodeType": "YulFunctionCall",
"src": "9458:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9450:4:11",
"nodeType": "YulIdentifier",
"src": "9450:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9497:9:11",
"nodeType": "YulIdentifier",
"src": "9497:9:11"
},
{
"kind": "number",
"nativeSrc": "9508:1:11",
"nodeType": "YulLiteral",
"src": "9508:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9493:3:11",
"nodeType": "YulIdentifier",
"src": "9493:3:11"
},
"nativeSrc": "9493:17:11",
"nodeType": "YulFunctionCall",
"src": "9493:17:11"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "9516:4:11",
"nodeType": "YulIdentifier",
"src": "9516:4:11"
},
{
"name": "headStart",
"nativeSrc": "9522:9:11",
"nodeType": "YulIdentifier",
"src": "9522:9:11"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "9512:3:11",
"nodeType": "YulIdentifier",
"src": "9512:3:11"
},
"nativeSrc": "9512:20:11",
"nodeType": "YulFunctionCall",
"src": "9512:20:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9486:6:11",
"nodeType": "YulIdentifier",
"src": "9486:6:11"
},
"nativeSrc": "9486:47:11",
"nodeType": "YulFunctionCall",
"src": "9486:47:11"
},
"nativeSrc": "9486:47:11",
"nodeType": "YulExpressionStatement",
"src": "9486:47:11"
},
{
"nativeSrc": "9542:139:11",
"nodeType": "YulAssignment",
"src": "9542:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "9676:4:11",
"nodeType": "YulIdentifier",
"src": "9676:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_3ffaf2354e772b1a13a7404154f6aedc1451784b635e03bee4407a9278c4d819_to_t_string_memory_ptr_fromStack",
"nativeSrc": "9550:124:11",
"nodeType": "YulIdentifier",
"src": "9550:124:11"
},
"nativeSrc": "9550:131:11",
"nodeType": "YulFunctionCall",
"src": "9550:131:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9542:4:11",
"nodeType": "YulIdentifier",
"src": "9542:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3ffaf2354e772b1a13a7404154f6aedc1451784b635e03bee4407a9278c4d819__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "9269:419:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "9420:9:11",
"nodeType": "YulTypedName",
"src": "9420:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "9435:4:11",
"nodeType": "YulTypedName",
"src": "9435:4:11",
"type": ""
}
],
"src": "9269:419:11"
},
{
"body": {
"nativeSrc": "9800:63:11",
"nodeType": "YulBlock",
"src": "9800:63:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "9822:6:11",
"nodeType": "YulIdentifier",
"src": "9822:6:11"
},
{
"kind": "number",
"nativeSrc": "9830:1:11",
"nodeType": "YulLiteral",
"src": "9830:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9818:3:11",
"nodeType": "YulIdentifier",
"src": "9818:3:11"
},
"nativeSrc": "9818:14:11",
"nodeType": "YulFunctionCall",
"src": "9818:14:11"
},
{
"hexValue": "4d617820737570706c79206578636565646564",
"kind": "string",
"nativeSrc": "9834:21:11",
"nodeType": "YulLiteral",
"src": "9834:21:11",
"type": "",
"value": "Max supply exceeded"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9811:6:11",
"nodeType": "YulIdentifier",
"src": "9811:6:11"
},
"nativeSrc": "9811:45:11",
"nodeType": "YulFunctionCall",
"src": "9811:45:11"
},
"nativeSrc": "9811:45:11",
"nodeType": "YulExpressionStatement",
"src": "9811:45:11"
}
]
},
"name": "store_literal_in_memory_0b608f755d10a61bd7bfbe50c676755794b42b2dd9daf91b7deb384eabaa476f",
"nativeSrc": "9694:169:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "9792:6:11",
"nodeType": "YulTypedName",
"src": "9792:6:11",
"type": ""
}
],
"src": "9694:169:11"
},
{
"body": {
"nativeSrc": "10015:220:11",
"nodeType": "YulBlock",
"src": "10015:220:11",
"statements": [
{
"nativeSrc": "10025:74:11",
"nodeType": "YulAssignment",
"src": "10025:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10091:3:11",
"nodeType": "YulIdentifier",
"src": "10091:3:11"
},
{
"kind": "number",
"nativeSrc": "10096:2:11",
"nodeType": "YulLiteral",
"src": "10096:2:11",
"type": "",
"value": "19"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "10032:58:11",
"nodeType": "YulIdentifier",
"src": "10032:58:11"
},
"nativeSrc": "10032:67:11",
"nodeType": "YulFunctionCall",
"src": "10032:67:11"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "10025:3:11",
"nodeType": "YulIdentifier",
"src": "10025:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10197:3:11",
"nodeType": "YulIdentifier",
"src": "10197:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_0b608f755d10a61bd7bfbe50c676755794b42b2dd9daf91b7deb384eabaa476f",
"nativeSrc": "10108:88:11",
"nodeType": "YulIdentifier",
"src": "10108:88:11"
},
"nativeSrc": "10108:93:11",
"nodeType": "YulFunctionCall",
"src": "10108:93:11"
},
"nativeSrc": "10108:93:11",
"nodeType": "YulExpressionStatement",
"src": "10108:93:11"
},
{
"nativeSrc": "10210:19:11",
"nodeType": "YulAssignment",
"src": "10210:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10221:3:11",
"nodeType": "YulIdentifier",
"src": "10221:3:11"
},
{
"kind": "number",
"nativeSrc": "10226:2:11",
"nodeType": "YulLiteral",
"src": "10226:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10217:3:11",
"nodeType": "YulIdentifier",
"src": "10217:3:11"
},
"nativeSrc": "10217:12:11",
"nodeType": "YulFunctionCall",
"src": "10217:12:11"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "10210:3:11",
"nodeType": "YulIdentifier",
"src": "10210:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0b608f755d10a61bd7bfbe50c676755794b42b2dd9daf91b7deb384eabaa476f_to_t_string_memory_ptr_fromStack",
"nativeSrc": "9869:366:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "10003:3:11",
"nodeType": "YulTypedName",
"src": "10003:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "10011:3:11",
"nodeType": "YulTypedName",
"src": "10011:3:11",
"type": ""
}
],
"src": "9869:366:11"
},
{
"body": {
"nativeSrc": "10412:248:11",
"nodeType": "YulBlock",
"src": "10412:248:11",
"statements": [
{
"nativeSrc": "10422:26:11",
"nodeType": "YulAssignment",
"src": "10422:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "10434:9:11",
"nodeType": "YulIdentifier",
"src": "10434:9:11"
},
{
"kind": "number",
"nativeSrc": "10445:2:11",
"nodeType": "YulLiteral",
"src": "10445:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10430:3:11",
"nodeType": "YulIdentifier",
"src": "10430:3:11"
},
"nativeSrc": "10430:18:11",
"nodeType": "YulFunctionCall",
"src": "10430:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10422:4:11",
"nodeType": "YulIdentifier",
"src": "10422:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10469:9:11",
"nodeType": "YulIdentifier",
"src": "10469:9:11"
},
{
"kind": "number",
"nativeSrc": "10480:1:11",
"nodeType": "YulLiteral",
"src": "10480:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10465:3:11",
"nodeType": "YulIdentifier",
"src": "10465:3:11"
},
"nativeSrc": "10465:17:11",
"nodeType": "YulFunctionCall",
"src": "10465:17:11"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "10488:4:11",
"nodeType": "YulIdentifier",
"src": "10488:4:11"
},
{
"name": "headStart",
"nativeSrc": "10494:9:11",
"nodeType": "YulIdentifier",
"src": "10494:9:11"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "10484:3:11",
"nodeType": "YulIdentifier",
"src": "10484:3:11"
},
"nativeSrc": "10484:20:11",
"nodeType": "YulFunctionCall",
"src": "10484:20:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10458:6:11",
"nodeType": "YulIdentifier",
"src": "10458:6:11"
},
"nativeSrc": "10458:47:11",
"nodeType": "YulFunctionCall",
"src": "10458:47:11"
},
"nativeSrc": "10458:47:11",
"nodeType": "YulExpressionStatement",
"src": "10458:47:11"
},
{
"nativeSrc": "10514:139:11",
"nodeType": "YulAssignment",
"src": "10514:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "10648:4:11",
"nodeType": "YulIdentifier",
"src": "10648:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0b608f755d10a61bd7bfbe50c676755794b42b2dd9daf91b7deb384eabaa476f_to_t_string_memory_ptr_fromStack",
"nativeSrc": "10522:124:11",
"nodeType": "YulIdentifier",
"src": "10522:124:11"
},
"nativeSrc": "10522:131:11",
"nodeType": "YulFunctionCall",
"src": "10522:131:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10514:4:11",
"nodeType": "YulIdentifier",
"src": "10514:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0b608f755d10a61bd7bfbe50c676755794b42b2dd9daf91b7deb384eabaa476f__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "10241:419:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "10392:9:11",
"nodeType": "YulTypedName",
"src": "10392:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "10407:4:11",
"nodeType": "YulTypedName",
"src": "10407:4:11",
"type": ""
}
],
"src": "10241:419:11"
},
{
"body": {
"nativeSrc": "10772:60:11",
"nodeType": "YulBlock",
"src": "10772:60:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "10794:6:11",
"nodeType": "YulIdentifier",
"src": "10794:6:11"
},
{
"kind": "number",
"nativeSrc": "10802:1:11",
"nodeType": "YulLiteral",
"src": "10802:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10790:3:11",
"nodeType": "YulIdentifier",
"src": "10790:3:11"
},
"nativeSrc": "10790:14:11",
"nodeType": "YulFunctionCall",
"src": "10790:14:11"
},
{
"hexValue": "5061757361626c653a20706175736564",
"kind": "string",
"nativeSrc": "10806:18:11",
"nodeType": "YulLiteral",
"src": "10806:18:11",
"type": "",
"value": "Pausable: paused"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10783:6:11",
"nodeType": "YulIdentifier",
"src": "10783:6:11"
},
"nativeSrc": "10783:42:11",
"nodeType": "YulFunctionCall",
"src": "10783:42:11"
},
"nativeSrc": "10783:42:11",
"nodeType": "YulExpressionStatement",
"src": "10783:42:11"
}
]
},
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nativeSrc": "10666:166:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "10764:6:11",
"nodeType": "YulTypedName",
"src": "10764:6:11",
"type": ""
}
],
"src": "10666:166:11"
},
{
"body": {
"nativeSrc": "10984:220:11",
"nodeType": "YulBlock",
"src": "10984:220:11",
"statements": [
{
"nativeSrc": "10994:74:11",
"nodeType": "YulAssignment",
"src": "10994:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11060:3:11",
"nodeType": "YulIdentifier",
"src": "11060:3:11"
},
{
"kind": "number",
"nativeSrc": "11065:2:11",
"nodeType": "YulLiteral",
"src": "11065:2:11",
"type": "",
"value": "16"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "11001:58:11",
"nodeType": "YulIdentifier",
"src": "11001:58:11"
},
"nativeSrc": "11001:67:11",
"nodeType": "YulFunctionCall",
"src": "11001:67:11"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "10994:3:11",
"nodeType": "YulIdentifier",
"src": "10994:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11166:3:11",
"nodeType": "YulIdentifier",
"src": "11166:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a",
"nativeSrc": "11077:88:11",
"nodeType": "YulIdentifier",
"src": "11077:88:11"
},
"nativeSrc": "11077:93:11",
"nodeType": "YulFunctionCall",
"src": "11077:93:11"
},
"nativeSrc": "11077:93:11",
"nodeType": "YulExpressionStatement",
"src": "11077:93:11"
},
{
"nativeSrc": "11179:19:11",
"nodeType": "YulAssignment",
"src": "11179:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11190:3:11",
"nodeType": "YulIdentifier",
"src": "11190:3:11"
},
{
"kind": "number",
"nativeSrc": "11195:2:11",
"nodeType": "YulLiteral",
"src": "11195:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11186:3:11",
"nodeType": "YulIdentifier",
"src": "11186:3:11"
},
"nativeSrc": "11186:12:11",
"nodeType": "YulFunctionCall",
"src": "11186:12:11"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "11179:3:11",
"nodeType": "YulIdentifier",
"src": "11179:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nativeSrc": "10838:366:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "10972:3:11",
"nodeType": "YulTypedName",
"src": "10972:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "10980:3:11",
"nodeType": "YulTypedName",
"src": "10980:3:11",
"type": ""
}
],
"src": "10838:366:11"
},
{
"body": {
"nativeSrc": "11381:248:11",
"nodeType": "YulBlock",
"src": "11381:248:11",
"statements": [
{
"nativeSrc": "11391:26:11",
"nodeType": "YulAssignment",
"src": "11391:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "11403:9:11",
"nodeType": "YulIdentifier",
"src": "11403:9:11"
},
{
"kind": "number",
"nativeSrc": "11414:2:11",
"nodeType": "YulLiteral",
"src": "11414:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11399:3:11",
"nodeType": "YulIdentifier",
"src": "11399:3:11"
},
"nativeSrc": "11399:18:11",
"nodeType": "YulFunctionCall",
"src": "11399:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "11391:4:11",
"nodeType": "YulIdentifier",
"src": "11391:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "11438:9:11",
"nodeType": "YulIdentifier",
"src": "11438:9:11"
},
{
"kind": "number",
"nativeSrc": "11449:1:11",
"nodeType": "YulLiteral",
"src": "11449:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11434:3:11",
"nodeType": "YulIdentifier",
"src": "11434:3:11"
},
"nativeSrc": "11434:17:11",
"nodeType": "YulFunctionCall",
"src": "11434:17:11"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "11457:4:11",
"nodeType": "YulIdentifier",
"src": "11457:4:11"
},
{
"name": "headStart",
"nativeSrc": "11463:9:11",
"nodeType": "YulIdentifier",
"src": "11463:9:11"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "11453:3:11",
"nodeType": "YulIdentifier",
"src": "11453:3:11"
},
"nativeSrc": "11453:20:11",
"nodeType": "YulFunctionCall",
"src": "11453:20:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11427:6:11",
"nodeType": "YulIdentifier",
"src": "11427:6:11"
},
"nativeSrc": "11427:47:11",
"nodeType": "YulFunctionCall",
"src": "11427:47:11"
},
"nativeSrc": "11427:47:11",
"nodeType": "YulExpressionStatement",
"src": "11427:47:11"
},
{
"nativeSrc": "11483:139:11",
"nodeType": "YulAssignment",
"src": "11483:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "11617:4:11",
"nodeType": "YulIdentifier",
"src": "11617:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack",
"nativeSrc": "11491:124:11",
"nodeType": "YulIdentifier",
"src": "11491:124:11"
},
"nativeSrc": "11491:131:11",
"nodeType": "YulFunctionCall",
"src": "11491:131:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "11483:4:11",
"nodeType": "YulIdentifier",
"src": "11483:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "11210:419:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "11361:9:11",
"nodeType": "YulTypedName",
"src": "11361:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "11376:4:11",
"nodeType": "YulTypedName",
"src": "11376:4:11",
"type": ""
}
],
"src": "11210:419:11"
},
{
"body": {
"nativeSrc": "11741:75:11",
"nodeType": "YulBlock",
"src": "11741:75:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "11763:6:11",
"nodeType": "YulIdentifier",
"src": "11763:6:11"
},
{
"kind": "number",
"nativeSrc": "11771:1:11",
"nodeType": "YulLiteral",
"src": "11771:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11759:3:11",
"nodeType": "YulIdentifier",
"src": "11759:3:11"
},
"nativeSrc": "11759:14:11",
"nodeType": "YulFunctionCall",
"src": "11759:14:11"
},
{
"hexValue": "5265656e7472616e637947756172643a207265656e7472616e742063616c6c",
"kind": "string",
"nativeSrc": "11775:33:11",
"nodeType": "YulLiteral",
"src": "11775:33:11",
"type": "",
"value": "ReentrancyGuard: reentrant call"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11752:6:11",
"nodeType": "YulIdentifier",
"src": "11752:6:11"
},
"nativeSrc": "11752:57:11",
"nodeType": "YulFunctionCall",
"src": "11752:57:11"
},
"nativeSrc": "11752:57:11",
"nodeType": "YulExpressionStatement",
"src": "11752:57:11"
}
]
},
"name": "store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619",
"nativeSrc": "11635:181:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "11733:6:11",
"nodeType": "YulTypedName",
"src": "11733:6:11",
"type": ""
}
],
"src": "11635:181:11"
},
{
"body": {
"nativeSrc": "11968:220:11",
"nodeType": "YulBlock",
"src": "11968:220:11",
"statements": [
{
"nativeSrc": "11978:74:11",
"nodeType": "YulAssignment",
"src": "11978:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12044:3:11",
"nodeType": "YulIdentifier",
"src": "12044:3:11"
},
{
"kind": "number",
"nativeSrc": "12049:2:11",
"nodeType": "YulLiteral",
"src": "12049:2:11",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "11985:58:11",
"nodeType": "YulIdentifier",
"src": "11985:58:11"
},
"nativeSrc": "11985:67:11",
"nodeType": "YulFunctionCall",
"src": "11985:67:11"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "11978:3:11",
"nodeType": "YulIdentifier",
"src": "11978:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12150:3:11",
"nodeType": "YulIdentifier",
"src": "12150:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619",
"nativeSrc": "12061:88:11",
"nodeType": "YulIdentifier",
"src": "12061:88:11"
},
"nativeSrc": "12061:93:11",
"nodeType": "YulFunctionCall",
"src": "12061:93:11"
},
"nativeSrc": "12061:93:11",
"nodeType": "YulExpressionStatement",
"src": "12061:93:11"
},
{
"nativeSrc": "12163:19:11",
"nodeType": "YulAssignment",
"src": "12163:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12174:3:11",
"nodeType": "YulIdentifier",
"src": "12174:3:11"
},
{
"kind": "number",
"nativeSrc": "12179:2:11",
"nodeType": "YulLiteral",
"src": "12179:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12170:3:11",
"nodeType": "YulIdentifier",
"src": "12170:3:11"
},
"nativeSrc": "12170:12:11",
"nodeType": "YulFunctionCall",
"src": "12170:12:11"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "12163:3:11",
"nodeType": "YulIdentifier",
"src": "12163:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack",
"nativeSrc": "11822:366:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "11956:3:11",
"nodeType": "YulTypedName",
"src": "11956:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "11964:3:11",
"nodeType": "YulTypedName",
"src": "11964:3:11",
"type": ""
}
],
"src": "11822:366:11"
},
{
"body": {
"nativeSrc": "12365:248:11",
"nodeType": "YulBlock",
"src": "12365:248:11",
"statements": [
{
"nativeSrc": "12375:26:11",
"nodeType": "YulAssignment",
"src": "12375:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "12387:9:11",
"nodeType": "YulIdentifier",
"src": "12387:9:11"
},
{
"kind": "number",
"nativeSrc": "12398:2:11",
"nodeType": "YulLiteral",
"src": "12398:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12383:3:11",
"nodeType": "YulIdentifier",
"src": "12383:3:11"
},
"nativeSrc": "12383:18:11",
"nodeType": "YulFunctionCall",
"src": "12383:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12375:4:11",
"nodeType": "YulIdentifier",
"src": "12375:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "12422:9:11",
"nodeType": "YulIdentifier",
"src": "12422:9:11"
},
{
"kind": "number",
"nativeSrc": "12433:1:11",
"nodeType": "YulLiteral",
"src": "12433:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12418:3:11",
"nodeType": "YulIdentifier",
"src": "12418:3:11"
},
"nativeSrc": "12418:17:11",
"nodeType": "YulFunctionCall",
"src": "12418:17:11"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "12441:4:11",
"nodeType": "YulIdentifier",
"src": "12441:4:11"
},
{
"name": "headStart",
"nativeSrc": "12447:9:11",
"nodeType": "YulIdentifier",
"src": "12447:9:11"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "12437:3:11",
"nodeType": "YulIdentifier",
"src": "12437:3:11"
},
"nativeSrc": "12437:20:11",
"nodeType": "YulFunctionCall",
"src": "12437:20:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12411:6:11",
"nodeType": "YulIdentifier",
"src": "12411:6:11"
},
"nativeSrc": "12411:47:11",
"nodeType": "YulFunctionCall",
"src": "12411:47:11"
},
"nativeSrc": "12411:47:11",
"nodeType": "YulExpressionStatement",
"src": "12411:47:11"
},
{
"nativeSrc": "12467:139:11",
"nodeType": "YulAssignment",
"src": "12467:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "12601:4:11",
"nodeType": "YulIdentifier",
"src": "12601:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack",
"nativeSrc": "12475:124:11",
"nodeType": "YulIdentifier",
"src": "12475:124:11"
},
"nativeSrc": "12475:131:11",
"nodeType": "YulFunctionCall",
"src": "12475:131:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12467:4:11",
"nodeType": "YulIdentifier",
"src": "12467:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "12194:419:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "12345:9:11",
"nodeType": "YulTypedName",
"src": "12345:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "12360:4:11",
"nodeType": "YulTypedName",
"src": "12360:4:11",
"type": ""
}
],
"src": "12194:419:11"
},
{
"body": {
"nativeSrc": "12647:152:11",
"nodeType": "YulBlock",
"src": "12647:152:11",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "12664:1:11",
"nodeType": "YulLiteral",
"src": "12664:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "12667:77:11",
"nodeType": "YulLiteral",
"src": "12667:77:11",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12657:6:11",
"nodeType": "YulIdentifier",
"src": "12657:6:11"
},
"nativeSrc": "12657:88:11",
"nodeType": "YulFunctionCall",
"src": "12657:88:11"
},
"nativeSrc": "12657:88:11",
"nodeType": "YulExpressionStatement",
"src": "12657:88:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "12761:1:11",
"nodeType": "YulLiteral",
"src": "12761:1:11",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "12764:4:11",
"nodeType": "YulLiteral",
"src": "12764:4:11",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12754:6:11",
"nodeType": "YulIdentifier",
"src": "12754:6:11"
},
"nativeSrc": "12754:15:11",
"nodeType": "YulFunctionCall",
"src": "12754:15:11"
},
"nativeSrc": "12754:15:11",
"nodeType": "YulExpressionStatement",
"src": "12754:15:11"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "12785:1:11",
"nodeType": "YulLiteral",
"src": "12785:1:11",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "12788:4:11",
"nodeType": "YulLiteral",
"src": "12788:4:11",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "12778:6:11",
"nodeType": "YulIdentifier",
"src": "12778:6:11"
},
"nativeSrc": "12778:15:11",
"nodeType": "YulFunctionCall",
"src": "12778:15:11"
},
"nativeSrc": "12778:15:11",
"nodeType": "YulExpressionStatement",
"src": "12778:15:11"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "12619:180:11",
"nodeType": "YulFunctionDefinition",
"src": "12619:180:11"
},
{
"body": {
"nativeSrc": "12849:147:11",
"nodeType": "YulBlock",
"src": "12849:147:11",
"statements": [
{
"nativeSrc": "12859:25:11",
"nodeType": "YulAssignment",
"src": "12859:25:11",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "12882:1:11",
"nodeType": "YulIdentifier",
"src": "12882:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "12864:17:11",
"nodeType": "YulIdentifier",
"src": "12864:17:11"
},
"nativeSrc": "12864:20:11",
"nodeType": "YulFunctionCall",
"src": "12864:20:11"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "12859:1:11",
"nodeType": "YulIdentifier",
"src": "12859:1:11"
}
]
},
{
"nativeSrc": "12893:25:11",
"nodeType": "YulAssignment",
"src": "12893:25:11",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "12916:1:11",
"nodeType": "YulIdentifier",
"src": "12916:1:11"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "12898:17:11",
"nodeType": "YulIdentifier",
"src": "12898:17:11"
},
"nativeSrc": "12898:20:11",
"nodeType": "YulFunctionCall",
"src": "12898:20:11"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "12893:1:11",
"nodeType": "YulIdentifier",
"src": "12893:1:11"
}
]
},
{
"nativeSrc": "12927:16:11",
"nodeType": "YulAssignment",
"src": "12927:16:11",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "12938:1:11",
"nodeType": "YulIdentifier",
"src": "12938:1:11"
},
{
"name": "y",
"nativeSrc": "12941:1:11",
"nodeType": "YulIdentifier",
"src": "12941:1:11"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12934:3:11",
"nodeType": "YulIdentifier",
"src": "12934:3:11"
},
"nativeSrc": "12934:9:11",
"nodeType": "YulFunctionCall",
"src": "12934:9:11"
},
"variableNames": [
{
"name": "sum",
"nativeSrc": "12927:3:11",
"nodeType": "YulIdentifier",
"src": "12927:3:11"
}
]
},
{
"body": {
"nativeSrc": "12967:22:11",
"nodeType": "YulBlock",
"src": "12967:22:11",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "12969:16:11",
"nodeType": "YulIdentifier",
"src": "12969:16:11"
},
"nativeSrc": "12969:18:11",
"nodeType": "YulFunctionCall",
"src": "12969:18:11"
},
"nativeSrc": "12969:18:11",
"nodeType": "YulExpressionStatement",
"src": "12969:18:11"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nativeSrc": "12959:1:11",
"nodeType": "YulIdentifier",
"src": "12959:1:11"
},
{
"name": "sum",
"nativeSrc": "12962:3:11",
"nodeType": "YulIdentifier",
"src": "12962:3:11"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "12956:2:11",
"nodeType": "YulIdentifier",
"src": "12956:2:11"
},
"nativeSrc": "12956:10:11",
"nodeType": "YulFunctionCall",
"src": "12956:10:11"
},
"nativeSrc": "12953:36:11",
"nodeType": "YulIf",
"src": "12953:36:11"
}
]
},
"name": "checked_add_t_uint256",
"nativeSrc": "12805:191:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "12836:1:11",
"nodeType": "YulTypedName",
"src": "12836:1:11",
"type": ""
},
{
"name": "y",
"nativeSrc": "12839:1:11",
"nodeType": "YulTypedName",
"src": "12839:1:11",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nativeSrc": "12845:3:11",
"nodeType": "YulTypedName",
"src": "12845:3:11",
"type": ""
}
],
"src": "12805:191:11"
},
{
"body": {
"nativeSrc": "13156:288:11",
"nodeType": "YulBlock",
"src": "13156:288:11",
"statements": [
{
"nativeSrc": "13166:26:11",
"nodeType": "YulAssignment",
"src": "13166:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "13178:9:11",
"nodeType": "YulIdentifier",
"src": "13178:9:11"
},
{
"kind": "number",
"nativeSrc": "13189:2:11",
"nodeType": "YulLiteral",
"src": "13189:2:11",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13174:3:11",
"nodeType": "YulIdentifier",
"src": "13174:3:11"
},
"nativeSrc": "13174:18:11",
"nodeType": "YulFunctionCall",
"src": "13174:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "13166:4:11",
"nodeType": "YulIdentifier",
"src": "13166:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "13246:6:11",
"nodeType": "YulIdentifier",
"src": "13246:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "13259:9:11",
"nodeType": "YulIdentifier",
"src": "13259:9:11"
},
{
"kind": "number",
"nativeSrc": "13270:1:11",
"nodeType": "YulLiteral",
"src": "13270:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13255:3:11",
"nodeType": "YulIdentifier",
"src": "13255:3:11"
},
"nativeSrc": "13255:17:11",
"nodeType": "YulFunctionCall",
"src": "13255:17:11"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "13202:43:11",
"nodeType": "YulIdentifier",
"src": "13202:43:11"
},
"nativeSrc": "13202:71:11",
"nodeType": "YulFunctionCall",
"src": "13202:71:11"
},
"nativeSrc": "13202:71:11",
"nodeType": "YulExpressionStatement",
"src": "13202:71:11"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "13327:6:11",
"nodeType": "YulIdentifier",
"src": "13327:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "13340:9:11",
"nodeType": "YulIdentifier",
"src": "13340:9:11"
},
{
"kind": "number",
"nativeSrc": "13351:2:11",
"nodeType": "YulLiteral",
"src": "13351:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13336:3:11",
"nodeType": "YulIdentifier",
"src": "13336:3:11"
},
"nativeSrc": "13336:18:11",
"nodeType": "YulFunctionCall",
"src": "13336:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "13283:43:11",
"nodeType": "YulIdentifier",
"src": "13283:43:11"
},
"nativeSrc": "13283:72:11",
"nodeType": "YulFunctionCall",
"src": "13283:72:11"
},
"nativeSrc": "13283:72:11",
"nodeType": "YulExpressionStatement",
"src": "13283:72:11"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nativeSrc": "13409:6:11",
"nodeType": "YulIdentifier",
"src": "13409:6:11"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "13422:9:11",
"nodeType": "YulIdentifier",
"src": "13422:9:11"
},
{
"kind": "number",
"nativeSrc": "13433:2:11",
"nodeType": "YulLiteral",
"src": "13433:2:11",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13418:3:11",
"nodeType": "YulIdentifier",
"src": "13418:3:11"
},
"nativeSrc": "13418:18:11",
"nodeType": "YulFunctionCall",
"src": "13418:18:11"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "13365:43:11",
"nodeType": "YulIdentifier",
"src": "13365:43:11"
},
"nativeSrc": "13365:72:11",
"nodeType": "YulFunctionCall",
"src": "13365:72:11"
},
"nativeSrc": "13365:72:11",
"nodeType": "YulExpressionStatement",
"src": "13365:72:11"
}
]
},
"name": "abi_encode_tuple_t_address_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed",
"nativeSrc": "13002:442:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "13112:9:11",
"nodeType": "YulTypedName",
"src": "13112:9:11",
"type": ""
},
{
"name": "value2",
"nativeSrc": "13124:6:11",
"nodeType": "YulTypedName",
"src": "13124:6:11",
"type": ""
},
{
"name": "value1",
"nativeSrc": "13132:6:11",
"nodeType": "YulTypedName",
"src": "13132:6:11",
"type": ""
},
{
"name": "value0",
"nativeSrc": "13140:6:11",
"nodeType": "YulTypedName",
"src": "13140:6:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "13151:4:11",
"nodeType": "YulTypedName",
"src": "13151:4:11",
"type": ""
}
],
"src": "13002:442:11"
},
{
"body": {
"nativeSrc": "13556:64:11",
"nodeType": "YulBlock",
"src": "13556:64:11",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "13578:6:11",
"nodeType": "YulIdentifier",
"src": "13578:6:11"
},
{
"kind": "number",
"nativeSrc": "13586:1:11",
"nodeType": "YulLiteral",
"src": "13586:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13574:3:11",
"nodeType": "YulIdentifier",
"src": "13574:3:11"
},
"nativeSrc": "13574:14:11",
"nodeType": "YulFunctionCall",
"src": "13574:14:11"
},
{
"hexValue": "5061757361626c653a206e6f7420706175736564",
"kind": "string",
"nativeSrc": "13590:22:11",
"nodeType": "YulLiteral",
"src": "13590:22:11",
"type": "",
"value": "Pausable: not paused"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13567:6:11",
"nodeType": "YulIdentifier",
"src": "13567:6:11"
},
"nativeSrc": "13567:46:11",
"nodeType": "YulFunctionCall",
"src": "13567:46:11"
},
"nativeSrc": "13567:46:11",
"nodeType": "YulExpressionStatement",
"src": "13567:46:11"
}
]
},
"name": "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a",
"nativeSrc": "13450:170:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "13548:6:11",
"nodeType": "YulTypedName",
"src": "13548:6:11",
"type": ""
}
],
"src": "13450:170:11"
},
{
"body": {
"nativeSrc": "13772:220:11",
"nodeType": "YulBlock",
"src": "13772:220:11",
"statements": [
{
"nativeSrc": "13782:74:11",
"nodeType": "YulAssignment",
"src": "13782:74:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13848:3:11",
"nodeType": "YulIdentifier",
"src": "13848:3:11"
},
{
"kind": "number",
"nativeSrc": "13853:2:11",
"nodeType": "YulLiteral",
"src": "13853:2:11",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "13789:58:11",
"nodeType": "YulIdentifier",
"src": "13789:58:11"
},
"nativeSrc": "13789:67:11",
"nodeType": "YulFunctionCall",
"src": "13789:67:11"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "13782:3:11",
"nodeType": "YulIdentifier",
"src": "13782:3:11"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13954:3:11",
"nodeType": "YulIdentifier",
"src": "13954:3:11"
}
],
"functionName": {
"name": "store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a",
"nativeSrc": "13865:88:11",
"nodeType": "YulIdentifier",
"src": "13865:88:11"
},
"nativeSrc": "13865:93:11",
"nodeType": "YulFunctionCall",
"src": "13865:93:11"
},
"nativeSrc": "13865:93:11",
"nodeType": "YulExpressionStatement",
"src": "13865:93:11"
},
{
"nativeSrc": "13967:19:11",
"nodeType": "YulAssignment",
"src": "13967:19:11",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13978:3:11",
"nodeType": "YulIdentifier",
"src": "13978:3:11"
},
{
"kind": "number",
"nativeSrc": "13983:2:11",
"nodeType": "YulLiteral",
"src": "13983:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13974:3:11",
"nodeType": "YulIdentifier",
"src": "13974:3:11"
},
"nativeSrc": "13974:12:11",
"nodeType": "YulFunctionCall",
"src": "13974:12:11"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "13967:3:11",
"nodeType": "YulIdentifier",
"src": "13967:3:11"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nativeSrc": "13626:366:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "13760:3:11",
"nodeType": "YulTypedName",
"src": "13760:3:11",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "13768:3:11",
"nodeType": "YulTypedName",
"src": "13768:3:11",
"type": ""
}
],
"src": "13626:366:11"
},
{
"body": {
"nativeSrc": "14169:248:11",
"nodeType": "YulBlock",
"src": "14169:248:11",
"statements": [
{
"nativeSrc": "14179:26:11",
"nodeType": "YulAssignment",
"src": "14179:26:11",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "14191:9:11",
"nodeType": "YulIdentifier",
"src": "14191:9:11"
},
{
"kind": "number",
"nativeSrc": "14202:2:11",
"nodeType": "YulLiteral",
"src": "14202:2:11",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14187:3:11",
"nodeType": "YulIdentifier",
"src": "14187:3:11"
},
"nativeSrc": "14187:18:11",
"nodeType": "YulFunctionCall",
"src": "14187:18:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "14179:4:11",
"nodeType": "YulIdentifier",
"src": "14179:4:11"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "14226:9:11",
"nodeType": "YulIdentifier",
"src": "14226:9:11"
},
{
"kind": "number",
"nativeSrc": "14237:1:11",
"nodeType": "YulLiteral",
"src": "14237:1:11",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14222:3:11",
"nodeType": "YulIdentifier",
"src": "14222:3:11"
},
"nativeSrc": "14222:17:11",
"nodeType": "YulFunctionCall",
"src": "14222:17:11"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "14245:4:11",
"nodeType": "YulIdentifier",
"src": "14245:4:11"
},
{
"name": "headStart",
"nativeSrc": "14251:9:11",
"nodeType": "YulIdentifier",
"src": "14251:9:11"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "14241:3:11",
"nodeType": "YulIdentifier",
"src": "14241:3:11"
},
"nativeSrc": "14241:20:11",
"nodeType": "YulFunctionCall",
"src": "14241:20:11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "14215:6:11",
"nodeType": "YulIdentifier",
"src": "14215:6:11"
},
"nativeSrc": "14215:47:11",
"nodeType": "YulFunctionCall",
"src": "14215:47:11"
},
"nativeSrc": "14215:47:11",
"nodeType": "YulExpressionStatement",
"src": "14215:47:11"
},
{
"nativeSrc": "14271:139:11",
"nodeType": "YulAssignment",
"src": "14271:139:11",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "14405:4:11",
"nodeType": "YulIdentifier",
"src": "14405:4:11"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack",
"nativeSrc": "14279:124:11",
"nodeType": "YulIdentifier",
"src": "14279:124:11"
},
"nativeSrc": "14279:131:11",
"nodeType": "YulFunctionCall",
"src": "14279:131:11"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "14271:4:11",
"nodeType": "YulIdentifier",
"src": "14271:4:11"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "13998:419:11",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "14149:9:11",
"nodeType": "YulTypedName",
"src": "14149:9:11",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "14164:4:11",
"nodeType": "YulTypedName",
"src": "14164:4:11",
"type": ""
}
],
"src": "13998:419:11"
}
]
},
"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\n mcopy(dst, src, length)\n mstore(add(dst, length), 0)\n\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 abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function store_literal_in_memory_1f88e1d78bc08390278df38e619625a8f7c253c4825a21c199a828881dbe0cd6(memPtr) {\n\n mstore(add(memPtr, 0), \"Sender account is frozen\")\n\n }\n\n function abi_encode_t_stringliteral_1f88e1d78bc08390278df38e619625a8f7c253c4825a21c199a828881dbe0cd6_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n store_literal_in_memory_1f88e1d78bc08390278df38e619625a8f7c253c4825a21c199a828881dbe0cd6(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_1f88e1d78bc08390278df38e619625a8f7c253c4825a21c199a828881dbe0cd6__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_1f88e1d78bc08390278df38e619625a8f7c253c4825a21c199a828881dbe0cd6_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_35632bfb1f76bb2d87c011edebf502401cf80df0336353247f28176a3ecf89cc(memPtr) {\n\n mstore(add(memPtr, 0), \"Recipient account is frozen\")\n\n }\n\n function abi_encode_t_stringliteral_35632bfb1f76bb2d87c011edebf502401cf80df0336353247f28176a3ecf89cc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 27)\n store_literal_in_memory_35632bfb1f76bb2d87c011edebf502401cf80df0336353247f28176a3ecf89cc(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_35632bfb1f76bb2d87c011edebf502401cf80df0336353247f28176a3ecf89cc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_35632bfb1f76bb2d87c011edebf502401cf80df0336353247f28176a3ecf89cc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_3ffaf2354e772b1a13a7404154f6aedc1451784b635e03bee4407a9278c4d819(memPtr) {\n\n mstore(add(memPtr, 0), \"Transfer cooldown active\")\n\n }\n\n function abi_encode_t_stringliteral_3ffaf2354e772b1a13a7404154f6aedc1451784b635e03bee4407a9278c4d819_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n store_literal_in_memory_3ffaf2354e772b1a13a7404154f6aedc1451784b635e03bee4407a9278c4d819(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_3ffaf2354e772b1a13a7404154f6aedc1451784b635e03bee4407a9278c4d819__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_3ffaf2354e772b1a13a7404154f6aedc1451784b635e03bee4407a9278c4d819_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0b608f755d10a61bd7bfbe50c676755794b42b2dd9daf91b7deb384eabaa476f(memPtr) {\n\n mstore(add(memPtr, 0), \"Max supply exceeded\")\n\n }\n\n function abi_encode_t_stringliteral_0b608f755d10a61bd7bfbe50c676755794b42b2dd9daf91b7deb384eabaa476f_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_0b608f755d10a61bd7bfbe50c676755794b42b2dd9daf91b7deb384eabaa476f(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_0b608f755d10a61bd7bfbe50c676755794b42b2dd9daf91b7deb384eabaa476f__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0b608f755d10a61bd7bfbe50c676755794b42b2dd9daf91b7deb384eabaa476f_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: paused\")\n\n }\n\n function abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 16)\n store_literal_in_memory_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_68571e1369f7a6dcdcd736cb0343b35a58ed0f64d245c2ed839c98d412744f8a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619(memPtr) {\n\n mstore(add(memPtr, 0), \"ReentrancyGuard: reentrant call\")\n\n }\n\n function abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 31)\n store_literal_in_memory_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_ebf73bba305590e4764d5cb53b69bffd6d4d092d1a67551cb346f8cfcdab8619_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_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_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 store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(memPtr) {\n\n mstore(add(memPtr, 0), \"Pausable: not paused\")\n\n }\n\n function abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0d1d997348c4b502650619e51f7d09f80514d98b6993be5051d07f703984619a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 11,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b5060043610610171575f3560e01c8063715018a6116100dc5780638da5cb5b11610095578063a9059cbb1161006f578063a9059cbb14610401578063dd62ed3e14610431578063f26c159f14610461578063f2fde38b1461047d57610171565b80638da5cb5b1461039557806391fc1f2c146103b357806395d89b41146103e357610171565b8063715018a6146102fb578063788649ea1461030557806379cc6790146103215780637a4a34121461033d5780638456cb591461035b578063860838a51461036557610171565b806332cb6b0c1161012e57806332cb6b0c1461024d5780633f4ba83a1461026b57806340c10f191461027557806342966c68146102915780635c975abb146102ad57806370a08231146102cb57610171565b806306fdde0314610175578063095ea7b31461019357806318160ddd146101c357806323b872dd146101e15780632ff2e9dc14610211578063313ce5671461022f575b5f80fd5b61017d610499565b60405161018a919061188a565b60405180910390f35b6101ad60048036038101906101a8919061193b565b610529565b6040516101ba9190611993565b60405180910390f35b6101cb61054b565b6040516101d891906119bb565b60405180910390f35b6101fb60048036038101906101f691906119d4565b610554565b6040516102089190611993565b60405180910390f35b61021961076a565b60405161022691906119bb565b60405180910390f35b61023761077a565b6040516102449190611a3f565b60405180910390f35b610255610782565b60405161026291906119bb565b60405180910390f35b610273610792565b005b61028f600480360381019061028a919061193b565b6107a4565b005b6102ab60048036038101906102a69190611a58565b610822565b005b6102b5610836565b6040516102c29190611993565b60405180910390f35b6102e560048036038101906102e09190611a83565b61084b565b6040516102f291906119bb565b60405180910390f35b610303610890565b005b61031f600480360381019061031a9190611a83565b6108a3565b005b61033b6004803603810190610336919061193b565b610945565b005b610345610965565b60405161035291906119bb565b60405180910390f35b61036361096a565b005b61037f600480360381019061037a9190611a83565b61097c565b60405161038c9190611993565b60405180910390f35b61039d610999565b6040516103aa9190611abd565b60405180910390f35b6103cd60048036038101906103c89190611a83565b6109c2565b6040516103da91906119bb565b60405180910390f35b6103eb6109d7565b6040516103f8919061188a565b60405180910390f35b61041b6004803603810190610416919061193b565b610a67565b6040516104289190611993565b60405180910390f35b61044b60048036038101906104469190611ad6565b610c90565b60405161045891906119bb565b60405180910390f35b61047b60048036038101906104769190611a83565b610d12565b005b61049760048036038101906104929190611a83565b610db5565b005b6060600380546104a890611b41565b80601f01602080910402602001604051908101604052809291908181526020018280546104d490611b41565b801561051f5780601f106104f65761010080835404028352916020019161051f565b820191905f5260205f20905b81548152906001019060200180831161050257829003601f168201915b5050505050905090565b5f80610533610e39565b9050610540818585610e40565b600191505092915050565b5f600254905090565b5f61055d610e52565b610565610e9c565b60075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156105ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e690611bbb565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067090611c23565b60405180910390fd5b6106ca603c60085f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610eeb90919063ffffffff16565b42101561070c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070390611c8b565b60405180910390fd5b4260085f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610759848484610f00565b9050610763610f2e565b9392505050565b6b024306c4097859c43c00000081565b5f6012905090565b6b169e43a85eb381aa5800000081565b61079a610f38565b6107a2610fbf565b565b6107ac610f38565b6b169e43a85eb381aa580000006107d3826107c561054b565b610eeb90919063ffffffff16565b1115610814576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080b90611cf3565b60405180910390fd5b61081e8282611020565b5050565b61083361082d610e39565b8261109f565b50565b5f60055f9054906101000a900460ff16905090565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610898610f38565b6108a15f61111e565b565b6108ab610f38565b5f60075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167ff915cd9fe234de6e8d3afe7bf2388d35b2b6d48e8c629a24602019bde79c213a60405160405180910390a250565b61095782610951610e39565b836111e3565b610961828261109f565b5050565b603c81565b610972610f38565b61097a611275565b565b6007602052805f5260405f205f915054906101000a900460ff1681565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6008602052805f5260405f205f915090505481565b6060600480546109e690611b41565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1290611b41565b8015610a5d5780601f10610a3457610100808354040283529160200191610a5d565b820191905f5260205f20905b815481529060010190602001808311610a4057829003601f168201915b5050505050905090565b5f610a70610e52565b610a78610e9c565b60075f610a83610e39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090611bbb565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90611c23565b60405180910390fd5b610beb603c60085f610ba3610e39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610eeb90919063ffffffff16565b421015610c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2490611c8b565b60405180910390fd5b4260085f610c39610e39565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610c8083836112d7565b9050610c8a610f2e565b92915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d1a610f38565b600160075f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f4f2a367e694e71282f29ab5eaa04c4c0be45ac5bf2ca74fb67068b98bdc2887d60405160405180910390a250565b610dbd610f38565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e2d575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610e249190611abd565b60405180910390fd5b610e368161111e565b50565b5f33905090565b610e4d83838360016112f9565b505050565b610e5a610836565b15610e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9190611d5b565b60405180910390fd5b565b600260065403610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed890611dc3565b60405180910390fd5b6002600681905550565b5f8183610ef89190611e0e565b905092915050565b5f80610f0a610e39565b9050610f178582856111e3565b610f228585856114c8565b60019150509392505050565b6001600681905550565b610f40610e39565b73ffffffffffffffffffffffffffffffffffffffff16610f5e610999565b73ffffffffffffffffffffffffffffffffffffffff1614610fbd57610f81610e39565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610fb49190611abd565b60405180910390fd5b565b610fc76115b8565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611009610e39565b6040516110169190611abd565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611090575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016110879190611abd565b60405180910390fd5b61109b5f8383611601565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361110f575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016111069190611abd565b60405180910390fd5b61111a825f83611601565b5050565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6111ee8484610c90565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461126f5781811015611260578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161125793929190611e41565b60405180910390fd5b61126e84848484035f6112f9565b5b50505050565b61127d610e52565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586112c0610e39565b6040516112cd9190611abd565b60405180910390a1565b5f806112e1610e39565b90506112ee8185856114c8565b600191505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611369575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016113609190611abd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113d9575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113d09190611abd565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156114c2578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114b991906119bb565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611538575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161152f9190611abd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115a8575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161159f9190611abd565b60405180910390fd5b6115b3838383611601565b505050565b6115c0610836565b6115ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f690611ec0565b60405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611651578060025f8282546116459190611e0e565b9250508190555061171f565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156116da578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016116d193929190611e41565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611766578060025f82825403925050819055506117b0565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161180d91906119bb565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61185c8261181a565b6118668185611824565b9350611876818560208601611834565b61187f81611842565b840191505092915050565b5f6020820190508181035f8301526118a28184611852565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6118d7826118ae565b9050919050565b6118e7816118cd565b81146118f1575f80fd5b50565b5f81359050611902816118de565b92915050565b5f819050919050565b61191a81611908565b8114611924575f80fd5b50565b5f8135905061193581611911565b92915050565b5f8060408385031215611951576119506118aa565b5b5f61195e858286016118f4565b925050602061196f85828601611927565b9150509250929050565b5f8115159050919050565b61198d81611979565b82525050565b5f6020820190506119a65f830184611984565b92915050565b6119b581611908565b82525050565b5f6020820190506119ce5f8301846119ac565b92915050565b5f805f606084860312156119eb576119ea6118aa565b5b5f6119f8868287016118f4565b9350506020611a09868287016118f4565b9250506040611a1a86828701611927565b9150509250925092565b5f60ff82169050919050565b611a3981611a24565b82525050565b5f602082019050611a525f830184611a30565b92915050565b5f60208284031215611a6d57611a6c6118aa565b5b5f611a7a84828501611927565b91505092915050565b5f60208284031215611a9857611a976118aa565b5b5f611aa5848285016118f4565b91505092915050565b611ab7816118cd565b82525050565b5f602082019050611ad05f830184611aae565b92915050565b5f8060408385031215611aec57611aeb6118aa565b5b5f611af9858286016118f4565b9250506020611b0a858286016118f4565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611b5857607f821691505b602082108103611b6b57611b6a611b14565b5b50919050565b7f53656e646572206163636f756e742069732066726f7a656e00000000000000005f82015250565b5f611ba5601883611824565b9150611bb082611b71565b602082019050919050565b5f6020820190508181035f830152611bd281611b99565b9050919050565b7f526563697069656e74206163636f756e742069732066726f7a656e00000000005f82015250565b5f611c0d601b83611824565b9150611c1882611bd9565b602082019050919050565b5f6020820190508181035f830152611c3a81611c01565b9050919050565b7f5472616e7366657220636f6f6c646f776e2061637469766500000000000000005f82015250565b5f611c75601883611824565b9150611c8082611c41565b602082019050919050565b5f6020820190508181035f830152611ca281611c69565b9050919050565b7f4d617820737570706c79206578636565646564000000000000000000000000005f82015250565b5f611cdd601383611824565b9150611ce882611ca9565b602082019050919050565b5f6020820190508181035f830152611d0a81611cd1565b9050919050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f611d45601083611824565b9150611d5082611d11565b602082019050919050565b5f6020820190508181035f830152611d7281611d39565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c005f82015250565b5f611dad601f83611824565b9150611db882611d79565b602082019050919050565b5f6020820190508181035f830152611dda81611da1565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611e1882611908565b9150611e2383611908565b9250828201905080821115611e3b57611e3a611de1565b5b92915050565b5f606082019050611e545f830186611aae565b611e6160208301856119ac565b611e6e60408301846119ac565b949350505050565b7f5061757361626c653a206e6f74207061757365640000000000000000000000005f82015250565b5f611eaa601483611824565b9150611eb582611e76565b602082019050919050565b5f6020820190508181035f830152611ed781611e9e565b905091905056fea264697066735822122097353d100da307f51e0c0c85b289a00d8daa9f892344e40dec15e4478d73f83264736f6c634300081a0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x171 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0xDC JUMPI DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x95 JUMPI DUP1 PUSH4 0xA9059CBB GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xA9059CBB EQ PUSH2 0x401 JUMPI DUP1 PUSH4 0xDD62ED3E EQ PUSH2 0x431 JUMPI DUP1 PUSH4 0xF26C159F EQ PUSH2 0x461 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x47D JUMPI PUSH2 0x171 JUMP JUMPDEST DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x395 JUMPI DUP1 PUSH4 0x91FC1F2C EQ PUSH2 0x3B3 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x3E3 JUMPI PUSH2 0x171 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x2FB JUMPI DUP1 PUSH4 0x788649EA EQ PUSH2 0x305 JUMPI DUP1 PUSH4 0x79CC6790 EQ PUSH2 0x321 JUMPI DUP1 PUSH4 0x7A4A3412 EQ PUSH2 0x33D JUMPI DUP1 PUSH4 0x8456CB59 EQ PUSH2 0x35B JUMPI DUP1 PUSH4 0x860838A5 EQ PUSH2 0x365 JUMPI PUSH2 0x171 JUMP JUMPDEST DUP1 PUSH4 0x32CB6B0C GT PUSH2 0x12E JUMPI DUP1 PUSH4 0x32CB6B0C EQ PUSH2 0x24D JUMPI DUP1 PUSH4 0x3F4BA83A EQ PUSH2 0x26B JUMPI DUP1 PUSH4 0x40C10F19 EQ PUSH2 0x275 JUMPI DUP1 PUSH4 0x42966C68 EQ PUSH2 0x291 JUMPI DUP1 PUSH4 0x5C975ABB EQ PUSH2 0x2AD JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x2CB JUMPI PUSH2 0x171 JUMP JUMPDEST DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x175 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x193 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x1C3 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x1E1 JUMPI DUP1 PUSH4 0x2FF2E9DC EQ PUSH2 0x211 JUMPI DUP1 PUSH4 0x313CE567 EQ PUSH2 0x22F JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x17D PUSH2 0x499 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x18A SWAP2 SWAP1 PUSH2 0x188A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1AD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1A8 SWAP2 SWAP1 PUSH2 0x193B JUMP JUMPDEST PUSH2 0x529 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1BA SWAP2 SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1CB PUSH2 0x54B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x1FB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x1F6 SWAP2 SWAP1 PUSH2 0x19D4 JUMP JUMPDEST PUSH2 0x554 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x208 SWAP2 SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x219 PUSH2 0x76A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x226 SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x237 PUSH2 0x77A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x244 SWAP2 SWAP1 PUSH2 0x1A3F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x255 PUSH2 0x782 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x262 SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x273 PUSH2 0x792 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x28F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x28A SWAP2 SWAP1 PUSH2 0x193B JUMP JUMPDEST PUSH2 0x7A4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2AB PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2A6 SWAP2 SWAP1 PUSH2 0x1A58 JUMP JUMPDEST PUSH2 0x822 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x2B5 PUSH2 0x836 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2C2 SWAP2 SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x2E5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2E0 SWAP2 SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH2 0x84B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F2 SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x303 PUSH2 0x890 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x31F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x31A SWAP2 SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH2 0x8A3 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x33B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x336 SWAP2 SWAP1 PUSH2 0x193B JUMP JUMPDEST PUSH2 0x945 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x345 PUSH2 0x965 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x352 SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x363 PUSH2 0x96A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x37F PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x37A SWAP2 SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH2 0x97C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x38C SWAP2 SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x39D PUSH2 0x999 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3AA SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3CD PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3C8 SWAP2 SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH2 0x9C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3DA SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x3EB PUSH2 0x9D7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3F8 SWAP2 SWAP1 PUSH2 0x188A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x41B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x416 SWAP2 SWAP1 PUSH2 0x193B JUMP JUMPDEST PUSH2 0xA67 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x428 SWAP2 SWAP1 PUSH2 0x1993 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x44B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x446 SWAP2 SWAP1 PUSH2 0x1AD6 JUMP JUMPDEST PUSH2 0xC90 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x458 SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x47B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x476 SWAP2 SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH2 0xD12 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x497 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x492 SWAP2 SWAP1 PUSH2 0x1A83 JUMP JUMPDEST PUSH2 0xDB5 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x60 PUSH1 0x3 DUP1 SLOAD PUSH2 0x4A8 SWAP1 PUSH2 0x1B41 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 0x4D4 SWAP1 PUSH2 0x1B41 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x51F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4F6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x51F 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 0x502 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x533 PUSH2 0xE39 JUMP JUMPDEST SWAP1 POP PUSH2 0x540 DUP2 DUP6 DUP6 PUSH2 0xE40 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x2 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0x55D PUSH2 0xE52 JUMP JUMPDEST PUSH2 0x565 PUSH2 0xE9C JUMP JUMPDEST PUSH1 0x7 PUSH0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x5EF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5E6 SWAP1 PUSH2 0x1BBB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x7 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x679 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x670 SWAP1 PUSH2 0x1C23 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x6CA PUSH1 0x3C PUSH1 0x8 PUSH0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD PUSH2 0xEEB SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0x70C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x703 SWAP1 PUSH2 0x1C8B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST TIMESTAMP PUSH1 0x8 PUSH0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0x759 DUP5 DUP5 DUP5 PUSH2 0xF00 JUMP JUMPDEST SWAP1 POP PUSH2 0x763 PUSH2 0xF2E JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH12 0x24306C4097859C43C000000 DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x12 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH12 0x169E43A85EB381AA58000000 DUP2 JUMP JUMPDEST PUSH2 0x79A PUSH2 0xF38 JUMP JUMPDEST PUSH2 0x7A2 PUSH2 0xFBF JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x7AC PUSH2 0xF38 JUMP JUMPDEST PUSH12 0x169E43A85EB381AA58000000 PUSH2 0x7D3 DUP3 PUSH2 0x7C5 PUSH2 0x54B JUMP JUMPDEST PUSH2 0xEEB SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST GT ISZERO PUSH2 0x814 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x80B SWAP1 PUSH2 0x1CF3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x81E DUP3 DUP3 PUSH2 0x1020 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x833 PUSH2 0x82D PUSH2 0xE39 JUMP JUMPDEST DUP3 PUSH2 0x109F JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND 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 PUSH2 0x898 PUSH2 0xF38 JUMP JUMPDEST PUSH2 0x8A1 PUSH0 PUSH2 0x111E JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x8AB PUSH2 0xF38 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 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xF915CD9FE234DE6E8D3AFE7BF2388D35B2B6D48E8C629A24602019BDE79C213A PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST PUSH2 0x957 DUP3 PUSH2 0x951 PUSH2 0xE39 JUMP JUMPDEST DUP4 PUSH2 0x11E3 JUMP JUMPDEST PUSH2 0x961 DUP3 DUP3 PUSH2 0x109F JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x3C DUP2 JUMP JUMPDEST PUSH2 0x972 PUSH2 0xF38 JUMP JUMPDEST PUSH2 0x97A PUSH2 0x1275 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x7 PUSH1 0x20 MSTORE DUP1 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x8 PUSH1 0x20 MSTORE DUP1 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x4 DUP1 SLOAD PUSH2 0x9E6 SWAP1 PUSH2 0x1B41 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 0xA12 SWAP1 PUSH2 0x1B41 JUMP JUMPDEST DUP1 ISZERO PUSH2 0xA5D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xA34 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xA5D 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 0xA40 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH2 0xA70 PUSH2 0xE52 JUMP JUMPDEST PUSH2 0xA78 PUSH2 0xE9C JUMP JUMPDEST PUSH1 0x7 PUSH0 PUSH2 0xA83 PUSH2 0xE39 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xB09 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB00 SWAP1 PUSH2 0x1BBB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x7 PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xB93 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB8A SWAP1 PUSH2 0x1C23 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xBEB PUSH1 0x3C PUSH1 0x8 PUSH0 PUSH2 0xBA3 PUSH2 0xE39 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 SLOAD PUSH2 0xEEB SWAP1 SWAP2 SWAP1 PUSH4 0xFFFFFFFF AND JUMP JUMPDEST TIMESTAMP LT ISZERO PUSH2 0xC2D JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC24 SWAP1 PUSH2 0x1C8B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST TIMESTAMP PUSH1 0x8 PUSH0 PUSH2 0xC39 PUSH2 0xE39 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH2 0xC80 DUP4 DUP4 PUSH2 0x12D7 JUMP JUMPDEST SWAP1 POP PUSH2 0xC8A PUSH2 0xF2E JUMP JUMPDEST SWAP3 SWAP2 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 PUSH2 0xD1A PUSH2 0xF38 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x7 PUSH0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x4F2A367E694E71282F29AB5EAA04C4C0BE45AC5BF2CA74FB67068B98BDC2887D PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 POP JUMP JUMPDEST PUSH2 0xDBD PUSH2 0xF38 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xE2D JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE24 SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xE36 DUP2 PUSH2 0x111E JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xE4D DUP4 DUP4 DUP4 PUSH1 0x1 PUSH2 0x12F9 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0xE5A PUSH2 0x836 JUMP JUMPDEST ISZERO PUSH2 0xE9A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE91 SWAP1 PUSH2 0x1D5B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH1 0x2 PUSH1 0x6 SLOAD SUB PUSH2 0xEE1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xED8 SWAP1 PUSH2 0x1DC3 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x2 PUSH1 0x6 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH0 DUP2 DUP4 PUSH2 0xEF8 SWAP2 SWAP1 PUSH2 0x1E0E JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH2 0xF0A PUSH2 0xE39 JUMP JUMPDEST SWAP1 POP PUSH2 0xF17 DUP6 DUP3 DUP6 PUSH2 0x11E3 JUMP JUMPDEST PUSH2 0xF22 DUP6 DUP6 DUP6 PUSH2 0x14C8 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x6 DUP2 SWAP1 SSTORE POP JUMP JUMPDEST PUSH2 0xF40 PUSH2 0xE39 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xF5E PUSH2 0x999 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xFBD JUMPI PUSH2 0xF81 PUSH2 0xE39 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x118CDAA700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFB4 SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0xFC7 PUSH2 0x15B8 JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x5DB9EE0A495BF2E6FF9C91A7834C1BA4FDD244A5E8AA4E537BD38AEAE4B073AA PUSH2 0x1009 PUSH2 0xE39 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x1016 SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1090 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xEC442F0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1087 SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x109B PUSH0 DUP4 DUP4 PUSH2 0x1601 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x110F JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x96C6FD1E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1106 SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x111A DUP3 PUSH0 DUP4 PUSH2 0x1601 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH1 0x5 PUSH1 0x1 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x5 PUSH1 0x1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x11EE DUP5 DUP5 PUSH2 0xC90 JUMP JUMPDEST SWAP1 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP2 EQ PUSH2 0x126F JUMPI DUP2 DUP2 LT ISZERO PUSH2 0x1260 JUMPI DUP3 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH32 0xFB8F41B200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1257 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1E41 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x126E DUP5 DUP5 DUP5 DUP5 SUB PUSH0 PUSH2 0x12F9 JUMP JUMPDEST JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x127D PUSH2 0xE52 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x5 PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0x62E78CEA01BEE320CD4E420270B5EA74000D11B0C9F74754EBDBFC544B05A258 PUSH2 0x12C0 PUSH2 0xE39 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x12CD SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x12E1 PUSH2 0xE39 JUMP JUMPDEST SWAP1 POP PUSH2 0x12EE DUP2 DUP6 DUP6 PUSH2 0x14C8 JUMP JUMPDEST PUSH1 0x1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1369 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xE602DF0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1360 SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x13D9 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x94280D6200000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13D0 SWAP2 SWAP1 PUSH2 0x1ABD 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 0x14C2 JUMPI DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 DUP5 PUSH1 0x40 MLOAD PUSH2 0x14B9 SWAP2 SWAP1 PUSH2 0x19BB 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 0x1538 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x96C6FD1E00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x152F SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x15A8 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0xEC442F0500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x159F SWAP2 SWAP1 PUSH2 0x1ABD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x15B3 DUP4 DUP4 DUP4 PUSH2 0x1601 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x15C0 PUSH2 0x836 JUMP JUMPDEST PUSH2 0x15FF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x15F6 SWAP1 PUSH2 0x1EC0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x1651 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD PUSH2 0x1645 SWAP2 SWAP1 PUSH2 0x1E0E JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x171F 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 0x16DA JUMPI DUP4 DUP2 DUP4 PUSH1 0x40 MLOAD PUSH32 0xE450D38C00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16D1 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x1E41 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 0x1766 JUMPI DUP1 PUSH1 0x2 PUSH0 DUP3 DUP3 SLOAD SUB SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH2 0x17B0 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 0x180D SWAP2 SWAP1 PUSH2 0x19BB JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP 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 DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x185C DUP3 PUSH2 0x181A JUMP JUMPDEST PUSH2 0x1866 DUP2 DUP6 PUSH2 0x1824 JUMP JUMPDEST SWAP4 POP PUSH2 0x1876 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x1834 JUMP JUMPDEST PUSH2 0x187F DUP2 PUSH2 0x1842 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 0x18A2 DUP2 DUP5 PUSH2 0x1852 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 0x18D7 DUP3 PUSH2 0x18AE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18E7 DUP2 PUSH2 0x18CD JUMP JUMPDEST DUP2 EQ PUSH2 0x18F1 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1902 DUP2 PUSH2 0x18DE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x191A DUP2 PUSH2 0x1908 JUMP JUMPDEST DUP2 EQ PUSH2 0x1924 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x1935 DUP2 PUSH2 0x1911 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1951 JUMPI PUSH2 0x1950 PUSH2 0x18AA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x195E DUP6 DUP3 DUP7 ADD PUSH2 0x18F4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x196F DUP6 DUP3 DUP7 ADD PUSH2 0x1927 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x198D DUP2 PUSH2 0x1979 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x19A6 PUSH0 DUP4 ADD DUP5 PUSH2 0x1984 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x19B5 DUP2 PUSH2 0x1908 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x19CE PUSH0 DUP4 ADD DUP5 PUSH2 0x19AC JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x19EB JUMPI PUSH2 0x19EA PUSH2 0x18AA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x19F8 DUP7 DUP3 DUP8 ADD PUSH2 0x18F4 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x1A09 DUP7 DUP3 DUP8 ADD PUSH2 0x18F4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x1A1A DUP7 DUP3 DUP8 ADD PUSH2 0x1927 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 0x1A39 DUP2 PUSH2 0x1A24 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1A52 PUSH0 DUP4 ADD DUP5 PUSH2 0x1A30 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A6D JUMPI PUSH2 0x1A6C PUSH2 0x18AA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1A7A DUP5 DUP3 DUP6 ADD PUSH2 0x1927 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1A98 JUMPI PUSH2 0x1A97 PUSH2 0x18AA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1AA5 DUP5 DUP3 DUP6 ADD PUSH2 0x18F4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1AB7 DUP2 PUSH2 0x18CD JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1AD0 PUSH0 DUP4 ADD DUP5 PUSH2 0x1AAE JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x1AEC JUMPI PUSH2 0x1AEB PUSH2 0x18AA JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1AF9 DUP6 DUP3 DUP7 ADD PUSH2 0x18F4 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x1B0A DUP6 DUP3 DUP7 ADD PUSH2 0x18F4 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 0x1B58 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0x1B6B JUMPI PUSH2 0x1B6A PUSH2 0x1B14 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x53656E646572206163636F756E742069732066726F7A656E0000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1BA5 PUSH1 0x18 DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1BB0 DUP3 PUSH2 0x1B71 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1BD2 DUP2 PUSH2 0x1B99 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x526563697069656E74206163636F756E742069732066726F7A656E0000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1C0D PUSH1 0x1B DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1C18 DUP3 PUSH2 0x1BD9 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1C3A DUP2 PUSH2 0x1C01 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5472616E7366657220636F6F6C646F776E206163746976650000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1C75 PUSH1 0x18 DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1C80 DUP3 PUSH2 0x1C41 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1CA2 DUP2 PUSH2 0x1C69 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4D617820737570706C7920657863656564656400000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1CDD PUSH1 0x13 DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1CE8 DUP3 PUSH2 0x1CA9 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1D0A DUP2 PUSH2 0x1CD1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5061757361626C653A2070617573656400000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1D45 PUSH1 0x10 DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1D50 DUP3 PUSH2 0x1D11 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1D72 DUP2 PUSH2 0x1D39 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x5265656E7472616E637947756172643A207265656E7472616E742063616C6C00 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1DAD PUSH1 0x1F DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1DB8 DUP3 PUSH2 0x1D79 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1DDA DUP2 PUSH2 0x1DA1 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0x1E18 DUP3 PUSH2 0x1908 JUMP JUMPDEST SWAP2 POP PUSH2 0x1E23 DUP4 PUSH2 0x1908 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x1E3B JUMPI PUSH2 0x1E3A PUSH2 0x1DE1 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x1E54 PUSH0 DUP4 ADD DUP7 PUSH2 0x1AAE JUMP JUMPDEST PUSH2 0x1E61 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x19AC JUMP JUMPDEST PUSH2 0x1E6E PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x19AC JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH32 0x5061757361626C653A206E6F7420706175736564000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0x1EAA PUSH1 0x14 DUP4 PUSH2 0x1824 JUMP JUMPDEST SWAP2 POP PUSH2 0x1EB5 DUP3 PUSH2 0x1E76 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0x1ED7 DUP2 PUSH2 0x1E9E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP8 CALLDATALOAD RETURNDATASIZE LT 0xD LOG3 SMOD CREATE2 0x1E 0xC 0xC DUP6 0xB2 DUP10 LOG0 0xD DUP14 0xAA SWAP16 DUP10 0x23 PREVRANDAO 0xE4 0xD 0xEC ISZERO 0xE4 SELFBALANCE DUP14 PUSH20 0xF83264736F6C634300081A003300000000000000 ",
"sourceMap": "420:2352:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2074:89:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4293:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3144:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2106:530:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;622:61;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3002:82:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;537:59:10;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:63;;;:::i;:::-;;1105:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;618:87:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1615:84:2;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3299:116:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2293:101:0;;;:::i;:::-;;1432:146:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1021:158:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;827:53:10;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2642:59;;;:::i;:::-;;712:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1638:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;764:56:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2276:93:4;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1584:516:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3846:140:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1285:141:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2543:215:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2074:89:4;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;2106:530:10:-;2239:4;1239:19:2;:17;:19::i;:::-;2261:21:3::1;:19;:21::i;:::-;2264:14:10::2;:22;2279:6;2264:22;;;;;;;;;;;;;;;;;;;;;;;;;2263:23;2255:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;2334:14;:25;2349:9;2334:25;;;;;;;;;;;;;;;;;;;;;;;;;2333:26;2325:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;2428:52;871:9;2428:21;:29;2450:6;2428:29;;;;;;;;;;;;;;;;:33;;:52;;;;:::i;:::-;2409:15;:71;;2401:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;2552:15;2520:21;:29;2542:6;2520:29;;;;;;;;;;;;;;;:47;;;;2584:45;2603:6;2611:9;2622:6;2584:18;:45::i;:::-;2577:52;;2303:20:3::1;:18;:20::i;:::-;2106:530:10::0;;;;;:::o;622:61::-;663:20;622:61;:::o;3002:82:4:-;3051:5;3075:2;3068:9;;3002:82;:::o;537:59:10:-;574:22;537:59;:::o;2707:63::-;1531:13:0;:11;:13::i;:::-;2753:10:10::1;:8;:10::i;:::-;2707:63::o:0;1105:174::-;1531:13:0;:11;:13::i;:::-;574:22:10::1;1182:25;1200:6;1182:13;:11;:13::i;:::-;:17;;:25;;;;:::i;:::-;:39;;1174:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1255:17;1261:2;1265:6;1255:5;:17::i;:::-;1105:174:::0;;:::o;618:87:6:-;672:26;678:12;:10;:12::i;:::-;692:5;672;:26::i;:::-;618:87;:::o;1615:84:2:-;1662:4;1685:7;;;;;;;;;;;1678:14;;1615:84;:::o;3299:116:4:-;3364:7;3390:9;:18;3400:7;3390:18;;;;;;;;;;;;;;;;3383:25;;3299:116;;;:::o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;1432:146:10:-;1531:13:0;:11;:13::i;:::-;1527:5:10::1;1501:14;:23;1516:7;1501:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;1563:7;1547:24;;;;;;;;;;;;1432:146:::0;:::o;1021:158:6:-;1096:45;1112:7;1121:12;:10;:12::i;:::-;1135:5;1096:15;:45::i;:::-;1151:21;1157:7;1166:5;1151;:21::i;:::-;1021:158;;:::o;827:53:10:-;871:9;827:53;:::o;2642:59::-;1531:13:0;:11;:13::i;:::-;2686:8:10::1;:6;:8::i;:::-;2642:59::o:0;712:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;1638:85:0:-;1684:7;1710:6;;;;;;;;;;;1703:13;;1638:85;:::o;764:56:10:-;;;;;;;;;;;;;;;;;:::o;2276:93:4:-;2323:13;2355:7;2348:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2276:93;:::o;1584:516:10:-;1697:4;1239:19:2;:17;:19::i;:::-;2261:21:3::1;:19;:21::i;:::-;1722:14:10::2;:28;1737:12;:10;:12::i;:::-;1722:28;;;;;;;;;;;;;;;;;;;;;;;;;1721:29;1713:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1798:14;:25;1813:9;1798:25;;;;;;;;;;;;;;;;;;;;;;;;;1797:26;1789:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;1892:58;871:9;1892:21;:35;1914:12;:10;:12::i;:::-;1892:35;;;;;;;;;;;;;;;;:39;;:58;;;;:::i;:::-;1873:15;:77;;1865:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;2028:15;1990:21;:35;2012:12;:10;:12::i;:::-;1990:35;;;;;;;;;;;;;;;:53;;;;2060:33;2075:9;2086:6;2060:14;:33::i;:::-;2053:40;;2303:20:3::1;:18;:20::i;:::-;1584:516:10::0;;;;:::o;3846:140:4:-;3926:7;3952:11;:18;3964:5;3952:18;;;;;;;;;;;;;;;:27;3971:7;3952:27;;;;;;;;;;;;;;;;3945:34;;3846:140;;;;:::o;1285:141:10:-;1531:13:0;:11;:13::i;:::-;1378:4:10::1;1352:14;:23;1367:7;1352:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;1411:7;1397:22;;;;;;;;;;;;1285:141:::0;:::o;2543:215:0:-;1531:13;:11;:13::i;:::-;2647:1:::1;2627:22;;:8;:22;;::::0;2623:91:::1;;2700:1;2672:31;;;;;;;;;;;:::i;:::-;;;;;;;;2623:91;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;656:96:8:-;709:7;735:10;728:17;;656:96;:::o;8989:128:4:-;9073:37;9082:5;9089:7;9098:5;9105:4;9073:8;:37::i;:::-;8989:128;;;:::o;1767:106:2:-;1837:8;:6;:8::i;:::-;1836:9;1828:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1767:106::o;2336:287:3:-;1759:1;2468:7;;:19;2460:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1759:1;2598:7;:18;;;;2336:287::o;2755:96:9:-;2813:7;2843:1;2839;:5;;;;:::i;:::-;2832:12;;2755:96;;;;:::o;5039:244:4:-;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;2629:209:3:-;1716:1;2809:7;:22;;;;2629:209::o;1796:162:0:-;1866:12;:10;:12::i;:::-;1855:23;;:7;:5;:7::i;:::-;:23;;;1851:101;;1928:12;:10;:12::i;:::-;1901:40;;;;;;;;;;;:::i;:::-;;;;;;;;1851:101;1796:162::o;2433:117:2:-;1486:16;:14;:16::i;:::-;2501:5:::1;2491:7;;:15;;;;;;;;;;;;;;;;;;2521:22;2530:12;:10;:12::i;:::-;2521:22;;;;;;:::i;:::-;;;;;;;;2433:117::o:0;7721:208:4:-;7810:1;7791:21;;:7;:21;;;7787:91;;7864:1;7835:32;;;;;;;;;;;:::i;:::-;;;;;;;;7787:91;7887:35;7903:1;7907:7;7916:5;7887:7;:35::i;:::-;7721:208;;:::o;8247:206::-;8336:1;8317:21;;:7;:21;;;8313:89;;8388:1;8361:30;;;;;;;;;;;:::i;:::-;;;;;;;;8313:89;8411:35;8419:7;8436:1;8440:5;8411:7;:35::i;:::-;8247:206;;:::o;2912:187:0:-;2985:16;3004:6;;;;;;;;;;;2985:25;;3029:8;3020:6;;:17;;;;;;;;;;;;;;;;;;3083:8;3052:40;;3073:8;3052:40;;;;;;;;;;;;2975:124;2912:187;:::o;10663:477:4:-;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;2186:115:2:-;1239:19;:17;:19::i;:::-;2255:4:::1;2245:7;;:14;;;;;;;;;;;;;;;;;;2274:20;2281:12;:10;:12::i;:::-;2274:20;;;;;;:::i;:::-;;;;;;;;2186:115::o:0;3610:178:4:-;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;9949:432::-;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;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;1945:106:2:-;2011:8;:6;:8::i;:::-;2003:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;1945:106::o;6271:1107:4:-;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;7:99:11:-;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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1323:117::-;1432:1;1429;1422:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:329::-;4805:6;4854:2;4842:9;4833:7;4829:23;4825:32;4822:119;;;4860:79;;:::i;:::-;4822:119;4980:1;5005:53;5050:7;5041:6;5030:9;5026:22;5005:53;:::i;:::-;4995:63;;4951:117;4746:329;;;;:::o;5081:::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:174::-;6900:26;6896:1;6888:6;6884:14;6877:50;6760:174;:::o;6940:366::-;7082:3;7103:67;7167:2;7162:3;7103:67;:::i;:::-;7096:74;;7179:93;7268:3;7179:93;:::i;:::-;7297:2;7292:3;7288:12;7281:19;;6940:366;;;:::o;7312:419::-;7478:4;7516:2;7505:9;7501:18;7493:26;;7565:9;7559:4;7555:20;7551:1;7540:9;7536:17;7529:47;7593:131;7719:4;7593:131;:::i;:::-;7585:139;;7312:419;;;:::o;7737:177::-;7877:29;7873:1;7865:6;7861:14;7854:53;7737:177;:::o;7920:366::-;8062:3;8083:67;8147:2;8142:3;8083:67;:::i;:::-;8076:74;;8159:93;8248:3;8159:93;:::i;:::-;8277:2;8272:3;8268:12;8261:19;;7920:366;;;:::o;8292:419::-;8458:4;8496:2;8485:9;8481:18;8473:26;;8545:9;8539:4;8535:20;8531:1;8520:9;8516:17;8509:47;8573:131;8699:4;8573:131;:::i;:::-;8565:139;;8292:419;;;:::o;8717:174::-;8857:26;8853:1;8845:6;8841:14;8834:50;8717:174;:::o;8897:366::-;9039:3;9060:67;9124:2;9119:3;9060:67;:::i;:::-;9053:74;;9136:93;9225:3;9136:93;:::i;:::-;9254:2;9249:3;9245:12;9238:19;;8897:366;;;:::o;9269:419::-;9435:4;9473:2;9462:9;9458:18;9450:26;;9522:9;9516:4;9512:20;9508:1;9497:9;9493:17;9486:47;9550:131;9676:4;9550:131;:::i;:::-;9542:139;;9269:419;;;:::o;9694:169::-;9834:21;9830:1;9822:6;9818:14;9811:45;9694:169;:::o;9869:366::-;10011:3;10032:67;10096:2;10091:3;10032:67;:::i;:::-;10025:74;;10108:93;10197:3;10108:93;:::i;:::-;10226:2;10221:3;10217:12;10210:19;;9869:366;;;:::o;10241:419::-;10407:4;10445:2;10434:9;10430:18;10422:26;;10494:9;10488:4;10484:20;10480:1;10469:9;10465:17;10458:47;10522:131;10648:4;10522:131;:::i;:::-;10514:139;;10241:419;;;:::o;10666:166::-;10806:18;10802:1;10794:6;10790:14;10783:42;10666:166;:::o;10838:366::-;10980:3;11001:67;11065:2;11060:3;11001:67;:::i;:::-;10994:74;;11077:93;11166:3;11077:93;:::i;:::-;11195:2;11190:3;11186:12;11179:19;;10838:366;;;:::o;11210:419::-;11376:4;11414:2;11403:9;11399:18;11391:26;;11463:9;11457:4;11453:20;11449:1;11438:9;11434:17;11427:47;11491:131;11617:4;11491:131;:::i;:::-;11483:139;;11210:419;;;:::o;11635:181::-;11775:33;11771:1;11763:6;11759:14;11752:57;11635:181;:::o;11822:366::-;11964:3;11985:67;12049:2;12044:3;11985:67;:::i;:::-;11978:74;;12061:93;12150:3;12061:93;:::i;:::-;12179:2;12174:3;12170:12;12163:19;;11822:366;;;:::o;12194:419::-;12360:4;12398:2;12387:9;12383:18;12375:26;;12447:9;12441:4;12437:20;12433:1;12422:9;12418:17;12411:47;12475:131;12601:4;12475:131;:::i;:::-;12467:139;;12194:419;;;:::o;12619:180::-;12667:77;12664:1;12657:88;12764:4;12761:1;12754:15;12788:4;12785:1;12778:15;12805:191;12845:3;12864:20;12882:1;12864:20;:::i;:::-;12859:25;;12898:20;12916:1;12898:20;:::i;:::-;12893:25;;12941:1;12938;12934:9;12927:16;;12962:3;12959:1;12956:10;12953:36;;;12969:18;;:::i;:::-;12953:36;12805:191;;;;:::o;13002:442::-;13151:4;13189:2;13178:9;13174:18;13166:26;;13202:71;13270:1;13259:9;13255:17;13246:6;13202:71;:::i;:::-;13283:72;13351:2;13340:9;13336:18;13327:6;13283:72;:::i;:::-;13365;13433:2;13422:9;13418:18;13409:6;13365:72;:::i;:::-;13002:442;;;;;;:::o;13450:170::-;13590:22;13586:1;13578:6;13574:14;13567:46;13450:170;:::o;13626:366::-;13768:3;13789:67;13853:2;13848:3;13789:67;:::i;:::-;13782:74;;13865:93;13954:3;13865:93;:::i;:::-;13983:2;13978:3;13974:12;13967:19;;13626:366;;;:::o;13998:419::-;14164:4;14202:2;14191:9;14187:18;14179:26;;14251:9;14245:4;14241:20;14237:1;14226:9;14222:17;14215:47;14279:131;14405:4;14279:131;:::i;:::-;14271:139;;13998:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "1591200",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"INITIAL_SUPPLY()": "437",
"MAX_SUPPLY()": "348",
"TRANSFER_COOLDOWN()": "414",
"allowance(address,address)": "infinite",
"approve(address,uint256)": "infinite",
"balanceOf(address)": "2962",
"burn(uint256)": "infinite",
"burnFrom(address,uint256)": "infinite",
"decimals()": "472",
"freezeAccount(address)": "infinite",
"frozenAccounts(address)": "2966",
"lastTransferTimestamp(address)": "2869",
"mint(address,uint256)": "infinite",
"name()": "infinite",
"owner()": "2611",
"pause()": "infinite",
"paused()": "2584",
"renounceOwnership()": "infinite",
"symbol()": "infinite",
"totalSupply()": "2500",
"transfer(address,uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite",
"transferOwnership(address)": "infinite",
"unfreezeAccount(address)": "infinite",
"unpause()": "infinite"
}
},
"methodIdentifiers": {
"INITIAL_SUPPLY()": "2ff2e9dc",
"MAX_SUPPLY()": "32cb6b0c",
"TRANSFER_COOLDOWN()": "7a4a3412",
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"burn(uint256)": "42966c68",
"burnFrom(address,uint256)": "79cc6790",
"decimals()": "313ce567",
"freezeAccount(address)": "f26c159f",
"frozenAccounts(address)": "860838a5",
"lastTransferTimestamp(address)": "91fc1f2c",
"mint(address,uint256)": "40c10f19",
"name()": "06fdde03",
"owner()": "8da5cb5b",
"pause()": "8456cb59",
"paused()": "5c975abb",
"renounceOwnership()": "715018a6",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd",
"transferOwnership(address)": "f2fde38b",
"unfreezeAccount(address)": "788649ea",
"unpause()": "3f4ba83a"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "AccountFrozen",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "AccountUnfrozen",
"type": "event"
},
{
"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": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"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"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [],
"name": "INITIAL_SUPPLY",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MAX_SUPPLY",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "TRANSFER_COOLDOWN",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"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": [
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "freezeAccount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "frozenAccounts",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "lastTransferTimestamp",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"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": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "unfreezeAccount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.26+commit.8a97fa7a"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "AccountFrozen",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "AccountUnfrozen",
"type": "event"
},
{
"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": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"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"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [],
"name": "INITIAL_SUPPLY",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MAX_SUPPLY",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "TRANSFER_COOLDOWN",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"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": [
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "freezeAccount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "frozenAccounts",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "lastTransferTimestamp",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"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": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "unfreezeAccount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"errors": {
"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."
}
}
],
"OwnableInvalidOwner(address)": [
{
"details": "The owner is not a valid owner account. (eg. `address(0)`)"
}
],
"OwnableUnauthorizedAccount(address)": [
{
"details": "The caller account is not authorized to perform an operation."
}
]
},
"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."
},
"Paused(address)": {
"details": "Emitted when the pause is triggered by `account`."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
},
"Unpaused(address)": {
"details": "Emitted when the pause is lifted by `account`."
}
},
"kind": "dev",
"methods": {
"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}."
},
"burn(uint256)": {
"details": "Destroys a `value` amount of tokens from the caller. See {ERC20-_burn}."
},
"burnFrom(address,uint256)": {
"details": "Destroys a `value` amount of tokens from `account`, deducting from the caller's allowance. See {ERC20-_burn} and {ERC20-allowance}. Requirements: - the caller must have allowance for ``accounts``'s tokens of at least `value`."
},
"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}."
},
"name()": {
"details": "Returns the name of the token."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"paused()": {
"details": "Returns true if the contract is paused, and false otherwise."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/PepeVote.sol": "PepeVote"
},
"evmVersion": "cancun",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb",
"license": "MIT",
"urls": [
"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6",
"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a"
]
},
"@openzeppelin/contracts/interfaces/draft-IERC6093.sol": {
"keccak256": "0x60c65f701957fdd6faea1acb0bb45825791d473693ed9ecb34726fdfaa849dd7",
"license": "MIT",
"urls": [
"bzz-raw://ea290300e0efc4d901244949dc4d877fd46e6c5e43dc2b26620e8efab3ab803f",
"dweb:/ipfs/QmcLLJppxKeJWqHxE2CUkcfhuRTgHSn8J4kijcLa5MYhSt"
]
},
"@openzeppelin/contracts/security/Pausable.sol": {
"keccak256": "0x0849d93b16c9940beb286a7864ed02724b248b93e0d80ef6355af5ef15c64773",
"license": "MIT",
"urls": [
"bzz-raw://4ddabb16009cd17eaca3143feadf450ac13e72919ebe2ca50e00f61cb78bc004",
"dweb:/ipfs/QmSPwPxX7d6TTWakN5jy5wsaGkS1y9TW8fuhGSraMkLk2B"
]
},
"@openzeppelin/contracts/security/ReentrancyGuard.sol": {
"keccak256": "0xa535a5df777d44e945dd24aa43a11e44b024140fc340ad0dfe42acf4002aade1",
"license": "MIT",
"urls": [
"bzz-raw://41319e7f621f2dc3733511332c4fd032f8e32ad2aa7fd6f665c19741d9941a34",
"dweb:/ipfs/QmcYR3bd862GD1Bc7jwrU9bGxrhUu5na1oP964bDCu2id1"
]
},
"@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/ERC20Burnable.sol": {
"keccak256": "0x2659248df25e34000ed214b3dc8da2160bc39874c992b477d9e2b1b3283dc073",
"license": "MIT",
"urls": [
"bzz-raw://c345af1b0e7ea28d1216d6a04ab28f5534a5229b9edf9ca3cd0e84950ae58d26",
"dweb:/ipfs/QmY63jtSrYpLRe8Gj1ep2vMDCKxGNNG3hnNVKBVnrs2nmA"
]
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"keccak256": "0xaa761817f6cd7892fcf158b3c776b34551cde36f48ff9703d53898bc45a94ea2",
"license": "MIT",
"urls": [
"bzz-raw://0ad7c8d4d08938c8dfc43d75a148863fb324b80cf53e0a36f7e5a4ac29008850",
"dweb:/ipfs/QmcrhfPgVNf5mkdhQvy1pMv51TFokD3Y4Wa5WZhFqVh8UV"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2",
"license": "MIT",
"urls": [
"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12",
"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF"
]
},
"@openzeppelin/contracts/utils/math/SafeMath.sol": {
"keccak256": "0x58b21219689909c4f8339af00813760337f7e2e7f169a97fe49e2896dcfb3b9a",
"license": "MIT",
"urls": [
"bzz-raw://ef8e012e946dec20e59f2d4446f4b44bb098f3fa8bac103b1b5112fff777447b",
"dweb:/ipfs/QmVTooKWcLkJ9W68yNX4MgdrbAKiAXwuRN9A7f4NkdcdtQ"
]
},
"contracts/PepeVote.sol": {
"keccak256": "0x562be3d14102c528aece26bcb94c078fc1b31dad1882f6373b440eb1c1bc6648",
"license": "MIT",
"urls": [
"bzz-raw://7f28b4e125869073dc84aeb12e78ded2c7b71fa9570f6759b27ec1df23700bb0",
"dweb:/ipfs/QmduwMm1ET7Q3xTpuC98zVpNtQLfaysScvtJtB3QT2e986"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
contract PepeVote is ERC20, ERC20Burnable, Pausable, Ownable, ReentrancyGuard {
using SafeMath for uint256;
uint256 public constant MAX_SUPPLY = 7_000_000_000 * 10**18; // 7 billion tokens
uint256 public constant INITIAL_SUPPLY = 700_000_000 * 10**18; // 700 million tokens
mapping(address => bool) public frozenAccounts;
mapping(address => uint256) public lastTransferTimestamp;
uint256 public constant TRANSFER_COOLDOWN = 1 minutes;
event AccountFrozen(address indexed account);
event AccountUnfrozen(address indexed account);
constructor() ERC20("PepeVote", "PVO") Ownable(msg.sender) {
_mint(msg.sender, INITIAL_SUPPLY);
}
function mint(address to, uint256 amount) public onlyOwner {
require(totalSupply().add(amount) <= MAX_SUPPLY, "Max supply exceeded");
_mint(to, amount);
}
function freezeAccount(address account) public onlyOwner {
frozenAccounts[account] = true;
emit AccountFrozen(account);
}
function unfreezeAccount(address account) public onlyOwner {
frozenAccounts[account] = false;
emit AccountUnfrozen(account);
}
function transfer(address recipient, uint256 amount) public virtual override whenNotPaused nonReentrant returns (bool) {
require(!frozenAccounts[_msgSender()], "Sender account is frozen");
require(!frozenAccounts[recipient], "Recipient account is frozen");
require(block.timestamp >= lastTransferTimestamp[_msgSender()].add(TRANSFER_COOLDOWN), "Transfer cooldown active");
lastTransferTimestamp[_msgSender()] = block.timestamp;
return super.transfer(recipient, amount);
}
function transferFrom(address sender, address recipient, uint256 amount) public virtual override whenNotPaused nonReentrant returns (bool) {
require(!frozenAccounts[sender], "Sender account is frozen");
require(!frozenAccounts[recipient], "Recipient account is frozen");
require(block.timestamp >= lastTransferTimestamp[sender].add(TRANSFER_COOLDOWN), "Transfer cooldown active");
lastTransferTimestamp[sender] = block.timestamp;
return super.transferFrom(sender, recipient, amount);
}
function pause() public onlyOwner {
_pause();
}
function unpause() public onlyOwner {
_unpause();
}
}
// File: @openzeppelin/contracts/token/ERC20/IERC20.sol
// 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);
}
// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.20;
/**
* @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);
}
// File: @openzeppelin/contracts/utils/Context.sol
// 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;
}
}
// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol
// 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);
}
// File: @openzeppelin/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.20;
/**
* @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);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)
pragma solidity ^0.8.20;
/**
* @dev Extension of {ERC20} that allows token holders to destroy both their own
* tokens and those that they have an allowance for, in a way that can be
* recognized off-chain (via event analysis).
*/
abstract contract ERC20Burnable is Context, ERC20 {
/**
* @dev Destroys a `value` amount of tokens from the caller.
*
* See {ERC20-_burn}.
*/
function burn(uint256 value) public virtual {
_burn(_msgSender(), value);
}
/**
* @dev Destroys a `value` amount of tokens from `account`, deducting from
* the caller's allowance.
*
* See {ERC20-_burn} and {ERC20-allowance}.
*
* Requirements:
*
* - the caller must have allowance for ``accounts``'s tokens of at least
* `value`.
*/
function burnFrom(address account, uint256 value) public virtual {
_spendAllowance(account, _msgSender(), value);
_burn(account, value);
}
}
// File: @openzeppelin/contracts/security/Pausable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract Pausable is Context {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
constructor() {
_paused = false;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
_requireNotPaused();
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
_requirePaused();
_;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Throws if the contract is paused.
*/
function _requireNotPaused() internal view virtual {
require(!paused(), "Pausable: paused");
}
/**
* @dev Throws if the contract is not paused.
*/
function _requirePaused() internal view virtual {
require(paused(), "Pausable: not paused");
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
pragma solidity ^0.8.20;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* The initial owner is set to the address provided by the deployer. This can
* later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
/**
* @dev The caller account is not authorized to perform an operation.
*/
error OwnableUnauthorizedAccount(address account);
/**
* @dev The owner is not a valid owner account. (eg. `address(0)`)
*/
error OwnableInvalidOwner(address owner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the address provided by the deployer as the initial owner.
*/
constructor(address initialOwner) {
if (initialOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(initialOwner);
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
if (owner() != _msgSender()) {
revert OwnableUnauthorizedAccount(_msgSender());
}
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
if (newOwner == address(0)) {
revert OwnableInvalidOwner(address(0));
}
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
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.
*
* _Available since v3.4._
*/
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.
*
* _Available since v3.4._
*/
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.
*
* _Available since v3.4._
*/
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.
*
* _Available since v3.4._
*/
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 addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol
// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
* `nonReentrant` function in the call stack.
*/
function _reentrancyGuardEntered() internal view returns (bool) {
return _status == _ENTERED;
}
}
// File: contracts/PepeVote.sol
pragma solidity ^0.8.20;
contract PepeVote is ERC20, ERC20Burnable, Pausable, Ownable, ReentrancyGuard {
using SafeMath for uint256;
uint256 public constant MAX_SUPPLY = 7_000_000_000 * 10**18; // 7 billion tokens
uint256 public constant INITIAL_SUPPLY = 700_000_000 * 10**18; // 700 million tokens
mapping(address => bool) public frozenAccounts;
mapping(address => uint256) public lastTransferTimestamp;
uint256 public constant TRANSFER_COOLDOWN = 1 minutes;
event AccountFrozen(address indexed account);
event AccountUnfrozen(address indexed account);
constructor() ERC20("PepeVote", "PVO") Ownable(msg.sender) {
_mint(msg.sender, INITIAL_SUPPLY);
}
function mint(address to, uint256 amount) public onlyOwner {
require(totalSupply().add(amount) <= MAX_SUPPLY, "Max supply exceeded");
_mint(to, amount);
}
function freezeAccount(address account) public onlyOwner {
frozenAccounts[account] = true;
emit AccountFrozen(account);
}
function unfreezeAccount(address account) public onlyOwner {
frozenAccounts[account] = false;
emit AccountUnfrozen(account);
}
function transfer(address recipient, uint256 amount) public virtual override whenNotPaused nonReentrant returns (bool) {
require(!frozenAccounts[_msgSender()], "Sender account is frozen");
require(!frozenAccounts[recipient], "Recipient account is frozen");
require(block.timestamp >= lastTransferTimestamp[_msgSender()].add(TRANSFER_COOLDOWN), "Transfer cooldown active");
lastTransferTimestamp[_msgSender()] = block.timestamp;
return super.transfer(recipient, amount);
}
function transferFrom(address sender, address recipient, uint256 amount) public virtual override whenNotPaused nonReentrant returns (bool) {
require(!frozenAccounts[sender], "Sender account is frozen");
require(!frozenAccounts[recipient], "Recipient account is frozen");
require(block.timestamp >= lastTransferTimestamp[sender].add(TRANSFER_COOLDOWN), "Transfer cooldown active");
lastTransferTimestamp[sender] = block.timestamp;
return super.transferFrom(sender, recipient, amount);
}
function pause() public onlyOwner {
_pause();
}
function unpause() public onlyOwner {
_unpause();
}
}
This file has been truncated, but you can view the full file.
{
"id": "5ad48364d823bdc57d0e038fb797994f",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.26",
"solcLongVersion": "0.8.26+commit.8a97fa7a",
"input": {
"language": "Solidity",
"sources": {
"contracts/PepeVote.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.20;\n\nimport \"@openzeppelin/contracts/token/ERC20/ERC20.sol\";\nimport \"@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol\";\nimport \"@openzeppelin/contracts/security/Pausable.sol\";\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\nimport \"@openzeppelin/contracts/utils/math/SafeMath.sol\";\nimport \"@openzeppelin/contracts/security/ReentrancyGuard.sol\";\n\ncontract PepeVote is ERC20, ERC20Burnable, Pausable, Ownable, ReentrancyGuard {\n using SafeMath for uint256;\n\n uint256 public constant MAX_SUPPLY = 7_000_000_000 * 10**18; // 7 billion tokens\n uint256 public constant INITIAL_SUPPLY = 700_000_000 * 10**18; // 700 million tokens\n\n mapping(address => bool) public frozenAccounts;\n mapping(address => uint256) public lastTransferTimestamp;\n\n uint256 public constant TRANSFER_COOLDOWN = 1 minutes;\n\n event AccountFrozen(address indexed account);\n event AccountUnfrozen(address indexed account);\n\n constructor() ERC20(\"PepeVote\", \"PVO\") Ownable(msg.sender) {\n _mint(msg.sender, INITIAL_SUPPLY);\n }\n\n function mint(address to, uint256 amount) public onlyOwner {\n require(totalSupply().add(amount) <= MAX_SUPPLY, \"Max supply exceeded\");\n _mint(to, amount);\n }\n\n function freezeAccount(address account) public onlyOwner {\n frozenAccounts[account] = true;\n emit AccountFrozen(account);\n }\n\n function unfreezeAccount(address account) public onlyOwner {\n frozenAccounts[account] = false;\n emit AccountUnfrozen(account);\n }\n\n function transfer(address recipient, uint256 amount) public virtual override whenNotPaused nonReentrant returns (bool) {\n require(!frozenAccounts[_msgSender()], \"Sender account is frozen\");\n require(!frozenAccounts[recipient], \"Recipient account is frozen\");\n require(block.timestamp >= lastTransferTimestamp[_msgSender()].add(TRANSFER_COOLDOWN), \"Transfer cooldown active\");\n\n lastTransferTimestamp[_msgSender()] = block.timestamp;\n return super.transfer(recipient, amount);\n }\n\n function transferFrom(address sender, address recipient, uint256 amount) public virtual override whenNotPaused nonReentrant returns (bool) {\n require(!frozenAccounts[sender], \"Sender account is frozen\");\n require(!frozenAccounts[recipient], \"Recipient account is frozen\");\n require(block.timestamp >= lastTransferTimestamp[sender].add(TRANSFER_COOLDOWN), \"Transfer cooldown active\");\n\n lastTransferTimestamp[sender] = block.timestamp;\n return super.transferFrom(sender, recipient, amount);\n }\n\n function pause() public onlyOwner {\n _pause();\n }\n\n function unpause() public onlyOwner {\n _unpause();\n }\n}"
},
"@openzeppelin/contracts/security/ReentrancyGuard.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Contract module that helps prevent reentrant calls to a function.\n *\n * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier\n * available, which can be applied to functions to make sure there are no nested\n * (reentrant) calls to them.\n *\n * Note that because there is a single `nonReentrant` guard, functions marked as\n * `nonReentrant` may not call one another. This can be worked around by making\n * those functions `private`, and then adding `external` `nonReentrant` entry\n * points to them.\n *\n * TIP: If you would like to learn more about reentrancy and alternative ways\n * to protect against it, check out our blog post\n * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\n */\nabstract contract ReentrancyGuard {\n // Booleans are more expensive than uint256 or any type that takes up a full\n // word because each write operation emits an extra SLOAD to first read the\n // slot's contents, replace the bits taken up by the boolean, and then write\n // back. This is the compiler's defense against contract upgrades and\n // pointer aliasing, and it cannot be disabled.\n\n // The values being non-zero value makes deployment a bit more expensive,\n // but in exchange the refund on every call to nonReentrant will be lower in\n // amount. Since refunds are capped to a percentage of the total\n // transaction's gas, it is best to keep them low in cases like this one, to\n // increase the likelihood of the full refund coming into effect.\n uint256 private constant _NOT_ENTERED = 1;\n uint256 private constant _ENTERED = 2;\n\n uint256 private _status;\n\n constructor() {\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Prevents a contract from calling itself, directly or indirectly.\n * Calling a `nonReentrant` function from another `nonReentrant`\n * function is not supported. It is possible to prevent this from happening\n * by making the `nonReentrant` function external, and making it call a\n * `private` function that does the actual work.\n */\n modifier nonReentrant() {\n _nonReentrantBefore();\n _;\n _nonReentrantAfter();\n }\n\n function _nonReentrantBefore() private {\n // On the first call to nonReentrant, _status will be _NOT_ENTERED\n require(_status != _ENTERED, \"ReentrancyGuard: reentrant call\");\n\n // Any calls to nonReentrant after this point will fail\n _status = _ENTERED;\n }\n\n function _nonReentrantAfter() private {\n // By storing the original value once again, a refund is triggered (see\n // https://eips.ethereum.org/EIPS/eip-2200)\n _status = _NOT_ENTERED;\n }\n\n /**\n * @dev Returns true if the reentrancy guard is currently set to \"entered\", which indicates there is a\n * `nonReentrant` function in the call stack.\n */\n function _reentrancyGuardEntered() internal view returns (bool) {\n return _status == _ENTERED;\n }\n}\n"
},
"@openzeppelin/contracts/utils/math/SafeMath.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)\n\npragma solidity ^0.8.0;\n\n// CAUTION\n// This version of SafeMath should only be used with Solidity 0.8 or later,\n// because it relies on the compiler's built in overflow checks.\n\n/**\n * @dev Wrappers over Solidity's arithmetic operations.\n *\n * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler\n * now has built in overflow checking.\n */\nlibrary SafeMath {\n /**\n * @dev Returns the addition of two unsigned integers, with an overflow flag.\n *\n * _Available since v3.4._\n */\n function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n unchecked {\n uint256 c = a + b;\n if (c < a) return (false, 0);\n return (true, c);\n }\n }\n\n /**\n * @dev Returns the subtraction of two unsigned integers, with an overflow flag.\n *\n * _Available since v3.4._\n */\n function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n unchecked {\n if (b > a) return (false, 0);\n return (true, a - b);\n }\n }\n\n /**\n * @dev Returns the multiplication of two unsigned integers, with an overflow flag.\n *\n * _Available since v3.4._\n */\n function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n unchecked {\n // Gas optimization: this is cheaper than requiring 'a' not being zero, but the\n // benefit is lost if 'b' is also tested.\n // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522\n if (a == 0) return (true, 0);\n uint256 c = a * b;\n if (c / a != b) return (false, 0);\n return (true, c);\n }\n }\n\n /**\n * @dev Returns the division of two unsigned integers, with a division by zero flag.\n *\n * _Available since v3.4._\n */\n function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n unchecked {\n if (b == 0) return (false, 0);\n return (true, a / b);\n }\n }\n\n /**\n * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.\n *\n * _Available since v3.4._\n */\n function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {\n unchecked {\n if (b == 0) return (false, 0);\n return (true, a % b);\n }\n }\n\n /**\n * @dev Returns the addition of two unsigned integers, reverting on\n * overflow.\n *\n * Counterpart to Solidity's `+` operator.\n *\n * Requirements:\n *\n * - Addition cannot overflow.\n */\n function add(uint256 a, uint256 b) internal pure returns (uint256) {\n return a + b;\n }\n\n /**\n * @dev Returns the subtraction of two unsigned integers, reverting on\n * overflow (when the result is negative).\n *\n * Counterpart to Solidity's `-` operator.\n *\n * Requirements:\n *\n * - Subtraction cannot overflow.\n */\n function sub(uint256 a, uint256 b) internal pure returns (uint256) {\n return a - b;\n }\n\n /**\n * @dev Returns the multiplication of two unsigned integers, reverting on\n * overflow.\n *\n * Counterpart to Solidity's `*` operator.\n *\n * Requirements:\n *\n * - Multiplication cannot overflow.\n */\n function mul(uint256 a, uint256 b) internal pure returns (uint256) {\n return a * b;\n }\n\n /**\n * @dev Returns the integer division of two unsigned integers, reverting on\n * division by zero. The result is rounded towards zero.\n *\n * Counterpart to Solidity's `/` operator.\n *\n * Requirements:\n *\n * - The divisor cannot be zero.\n */\n function div(uint256 a, uint256 b) internal pure returns (uint256) {\n return a / b;\n }\n\n /**\n * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n * reverting when dividing by zero.\n *\n * Counterpart to Solidity's `%` operator. This function uses a `revert`\n * opcode (which leaves remaining gas untouched) while Solidity uses an\n * invalid opcode to revert (consuming all remaining gas).\n *\n * Requirements:\n *\n * - The divisor cannot be zero.\n */\n function mod(uint256 a, uint256 b) internal pure returns (uint256) {\n return a % b;\n }\n\n /**\n * @dev Returns the subtraction of two unsigned integers, reverting with custom message on\n * overflow (when the result is negative).\n *\n * CAUTION: This function is deprecated because it requires allocating memory for the error\n * message unnecessarily. For custom revert reasons use {trySub}.\n *\n * Counterpart to Solidity's `-` operator.\n *\n * Requirements:\n *\n * - Subtraction cannot overflow.\n */\n function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\n unchecked {\n require(b <= a, errorMessage);\n return a - b;\n }\n }\n\n /**\n * @dev Returns the integer division of two unsigned integers, reverting with custom message on\n * division by zero. The result is rounded towards zero.\n *\n * Counterpart to Solidity's `/` operator. Note: this function uses a\n * `revert` opcode (which leaves remaining gas untouched) while Solidity\n * uses an invalid opcode to revert (consuming all remaining gas).\n *\n * Requirements:\n *\n * - The divisor cannot be zero.\n */\n function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\n unchecked {\n require(b > 0, errorMessage);\n return a / b;\n }\n }\n\n /**\n * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),\n * reverting with custom message when dividing by zero.\n *\n * CAUTION: This function is deprecated because it requires allocating memory for the error\n * message unnecessarily. For custom revert reasons use {tryMod}.\n *\n * Counterpart to Solidity's `%` operator. This function uses a `revert`\n * opcode (which leaves remaining gas untouched) while Solidity uses an\n * invalid opcode to revert (consuming all remaining gas).\n *\n * Requirements:\n *\n * - The divisor cannot be zero.\n */\n function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {\n unchecked {\n require(b > 0, errorMessage);\n return a % b;\n }\n }\n}\n"
},
"@openzeppelin/contracts/access/Ownable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)\n\npragma solidity ^0.8.20;\n\nimport {Context} from \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * The initial owner is set to the address provided by the deployer. This can\n * later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n /**\n * @dev The caller account is not authorized to perform an operation.\n */\n error OwnableUnauthorizedAccount(address account);\n\n /**\n * @dev The owner is not a valid owner account. (eg. `address(0)`)\n */\n error OwnableInvalidOwner(address owner);\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the address provided by the deployer as the initial owner.\n */\n constructor(address initialOwner) {\n if (initialOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\n _transferOwnership(initialOwner);\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n if (owner() != _msgSender()) {\n revert OwnableUnauthorizedAccount(_msgSender());\n }\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby disabling any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n if (newOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n"
},
"@openzeppelin/contracts/security/Pausable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which allows children to implement an emergency stop\n * mechanism that can be triggered by an authorized account.\n *\n * This module is used through inheritance. It will make available the\n * modifiers `whenNotPaused` and `whenPaused`, which can be applied to\n * the functions of your contract. Note that they will not be pausable by\n * simply including this module, only once the modifiers are put in place.\n */\nabstract contract Pausable is Context {\n /**\n * @dev Emitted when the pause is triggered by `account`.\n */\n event Paused(address account);\n\n /**\n * @dev Emitted when the pause is lifted by `account`.\n */\n event Unpaused(address account);\n\n bool private _paused;\n\n /**\n * @dev Initializes the contract in unpaused state.\n */\n constructor() {\n _paused = false;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is not paused.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n modifier whenNotPaused() {\n _requireNotPaused();\n _;\n }\n\n /**\n * @dev Modifier to make a function callable only when the contract is paused.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n modifier whenPaused() {\n _requirePaused();\n _;\n }\n\n /**\n * @dev Returns true if the contract is paused, and false otherwise.\n */\n function paused() public view virtual returns (bool) {\n return _paused;\n }\n\n /**\n * @dev Throws if the contract is paused.\n */\n function _requireNotPaused() internal view virtual {\n require(!paused(), \"Pausable: paused\");\n }\n\n /**\n * @dev Throws if the contract is not paused.\n */\n function _requirePaused() internal view virtual {\n require(paused(), \"Pausable: not paused\");\n }\n\n /**\n * @dev Triggers stopped state.\n *\n * Requirements:\n *\n * - The contract must not be paused.\n */\n function _pause() internal virtual whenNotPaused {\n _paused = true;\n emit Paused(_msgSender());\n }\n\n /**\n * @dev Returns to normal state.\n *\n * Requirements:\n *\n * - The contract must be paused.\n */\n function _unpause() internal virtual whenPaused {\n _paused = false;\n emit Unpaused(_msgSender());\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)\n\npragma solidity ^0.8.20;\n\nimport {ERC20} from \"../ERC20.sol\";\nimport {Context} from \"../../../utils/Context.sol\";\n\n/**\n * @dev Extension of {ERC20} that allows token holders to destroy both their own\n * tokens and those that they have an allowance for, in a way that can be\n * recognized off-chain (via event analysis).\n */\nabstract contract ERC20Burnable is Context, ERC20 {\n /**\n * @dev Destroys a `value` amount of tokens from the caller.\n *\n * See {ERC20-_burn}.\n */\n function burn(uint256 value) public virtual {\n _burn(_msgSender(), value);\n }\n\n /**\n * @dev Destroys a `value` amount of tokens from `account`, deducting from\n * the caller's allowance.\n *\n * See {ERC20-_burn} and {ERC20-allowance}.\n *\n * Requirements:\n *\n * - the caller must have allowance for ``accounts``'s tokens of at least\n * `value`.\n */\n function burnFrom(address account, uint256 value) public virtual {\n _spendAllowance(account, _msgSender(), value);\n _burn(account, value);\n }\n}\n"
},
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"./IERC20.sol\";\nimport {IERC20Metadata} from \"./extensions/IERC20Metadata.sol\";\nimport {Context} from \"../../utils/Context.sol\";\nimport {IERC20Errors} from \"../../interfaces/draft-IERC6093.sol\";\n\n/**\n * @dev Implementation of the {IERC20} interface.\n *\n * This implementation is agnostic to the way tokens are created. This means\n * that a supply mechanism has to be added in a derived contract using {_mint}.\n *\n * TIP: For a detailed writeup see our guide\n * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How\n * to implement supply mechanisms].\n *\n * The default value of {decimals} is 18. To change this, you should override\n * this function so it returns a different value.\n *\n * We have followed general OpenZeppelin Contracts guidelines: functions revert\n * instead returning `false` on failure. This behavior is nonetheless\n * conventional and does not conflict with the expectations of ERC20\n * applications.\n *\n * Additionally, an {Approval} event is emitted on calls to {transferFrom}.\n * This allows applications to reconstruct the allowance for all accounts just\n * by listening to said events. Other implementations of the EIP may not emit\n * these events, as it isn't required by the specification.\n */\nabstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {\n mapping(address account => uint256) private _balances;\n\n mapping(address account => mapping(address spender => uint256)) private _allowances;\n\n uint256 private _totalSupply;\n\n string private _name;\n string private _symbol;\n\n /**\n * @dev Sets the values for {name} and {symbol}.\n *\n * All two of these values are immutable: they can only be set once during\n * construction.\n */\n constructor(string memory name_, string memory symbol_) {\n _name = name_;\n _symbol = symbol_;\n }\n\n /**\n * @dev Returns the name of the token.\n */\n function name() public view virtual returns (string memory) {\n return _name;\n }\n\n /**\n * @dev Returns the symbol of the token, usually a shorter version of the\n * name.\n */\n function symbol() public view virtual returns (string memory) {\n return _symbol;\n }\n\n /**\n * @dev Returns the number of decimals used to get its user representation.\n * For example, if `decimals` equals `2`, a balance of `505` tokens should\n * be displayed to a user as `5.05` (`505 / 10 ** 2`).\n *\n * Tokens usually opt for a value of 18, imitating the relationship between\n * Ether and Wei. This is the default value returned by this function, unless\n * it's overridden.\n *\n * NOTE: This information is only used for _display_ purposes: it in\n * no way affects any of the arithmetic of the contract, including\n * {IERC20-balanceOf} and {IERC20-transfer}.\n */\n function decimals() public view virtual returns (uint8) {\n return 18;\n }\n\n /**\n * @dev See {IERC20-totalSupply}.\n */\n function totalSupply() public view virtual returns (uint256) {\n return _totalSupply;\n }\n\n /**\n * @dev See {IERC20-balanceOf}.\n */\n function balanceOf(address account) public view virtual returns (uint256) {\n return _balances[account];\n }\n\n /**\n * @dev See {IERC20-transfer}.\n *\n * Requirements:\n *\n * - `to` cannot be the zero address.\n * - the caller must have a balance of at least `value`.\n */\n function transfer(address to, uint256 value) public virtual returns (bool) {\n address owner = _msgSender();\n _transfer(owner, to, value);\n return true;\n }\n\n /**\n * @dev See {IERC20-allowance}.\n */\n function allowance(address owner, address spender) public view virtual returns (uint256) {\n return _allowances[owner][spender];\n }\n\n /**\n * @dev See {IERC20-approve}.\n *\n * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on\n * `transferFrom`. This is semantically equivalent to an infinite approval.\n *\n * Requirements:\n *\n * - `spender` cannot be the zero address.\n */\n function approve(address spender, uint256 value) public virtual returns (bool) {\n address owner = _msgSender();\n _approve(owner, spender, value);\n return true;\n }\n\n /**\n * @dev See {IERC20-transferFrom}.\n *\n * Emits an {Approval} event indicating the updated allowance. This is not\n * required by the EIP. See the note at the beginning of {ERC20}.\n *\n * NOTE: Does not update the allowance if the current allowance\n * is the maximum `uint256`.\n *\n * Requirements:\n *\n * - `from` and `to` cannot be the zero address.\n * - `from` must have a balance of at least `value`.\n * - the caller must have allowance for ``from``'s tokens of at least\n * `value`.\n */\n function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {\n address spender = _msgSender();\n _spendAllowance(from, spender, value);\n _transfer(from, to, value);\n return true;\n }\n\n /**\n * @dev Moves a `value` amount of tokens from `from` to `to`.\n *\n * This internal function is equivalent to {transfer}, and can be used to\n * e.g. implement automatic token fees, slashing mechanisms, etc.\n *\n * Emits a {Transfer} event.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead.\n */\n function _transfer(address from, address to, uint256 value) internal {\n if (from == address(0)) {\n revert ERC20InvalidSender(address(0));\n }\n if (to == address(0)) {\n revert ERC20InvalidReceiver(address(0));\n }\n _update(from, to, value);\n }\n\n /**\n * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`\n * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding\n * this function.\n *\n * Emits a {Transfer} event.\n */\n function _update(address from, address to, uint256 value) internal virtual {\n if (from == address(0)) {\n // Overflow check required: The rest of the code assumes that totalSupply never overflows\n _totalSupply += value;\n } else {\n uint256 fromBalance = _balances[from];\n if (fromBalance < value) {\n revert ERC20InsufficientBalance(from, fromBalance, value);\n }\n unchecked {\n // Overflow not possible: value <= fromBalance <= totalSupply.\n _balances[from] = fromBalance - value;\n }\n }\n\n if (to == address(0)) {\n unchecked {\n // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.\n _totalSupply -= value;\n }\n } else {\n unchecked {\n // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.\n _balances[to] += value;\n }\n }\n\n emit Transfer(from, to, value);\n }\n\n /**\n * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).\n * Relies on the `_update` mechanism\n *\n * Emits a {Transfer} event with `from` set to the zero address.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead.\n */\n function _mint(address account, uint256 value) internal {\n if (account == address(0)) {\n revert ERC20InvalidReceiver(address(0));\n }\n _update(address(0), account, value);\n }\n\n /**\n * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.\n * Relies on the `_update` mechanism.\n *\n * Emits a {Transfer} event with `to` set to the zero address.\n *\n * NOTE: This function is not virtual, {_update} should be overridden instead\n */\n function _burn(address account, uint256 value) internal {\n if (account == address(0)) {\n revert ERC20InvalidSender(address(0));\n }\n _update(account, address(0), value);\n }\n\n /**\n * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.\n *\n * This internal function is equivalent to `approve`, and can be used to\n * e.g. set automatic allowances for certain subsystems, etc.\n *\n * Emits an {Approval} event.\n *\n * Requirements:\n *\n * - `owner` cannot be the zero address.\n * - `spender` cannot be the zero address.\n *\n * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.\n */\n function _approve(address owner, address spender, uint256 value) internal {\n _approve(owner, spender, value, true);\n }\n\n /**\n * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.\n *\n * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by\n * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any\n * `Approval` event during `transferFrom` operations.\n *\n * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to\n * true using the following override:\n * ```\n * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {\n * super._approve(owner, spender, value, true);\n * }\n * ```\n *\n * Requirements are the same as {_approve}.\n */\n function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {\n if (owner == address(0)) {\n revert ERC20InvalidApprover(address(0));\n }\n if (spender == address(0)) {\n revert ERC20InvalidSpender(address(0));\n }\n _allowances[owner][spender] = value;\n if (emitEvent) {\n emit Approval(owner, spender, value);\n }\n }\n\n /**\n * @dev Updates `owner` s allowance for `spender` based on spent `value`.\n *\n * Does not update the allowance value in case of infinite allowance.\n * Revert if not enough allowance is available.\n *\n * Does not emit an {Approval} event.\n */\n function _spendAllowance(address owner, address spender, uint256 value) internal virtual {\n uint256 currentAllowance = allowance(owner, spender);\n if (currentAllowance != type(uint256).max) {\n if (currentAllowance < value) {\n revert ERC20InsufficientAllowance(spender, currentAllowance, value);\n }\n unchecked {\n _approve(owner, spender, currentAllowance - value, false);\n }\n }\n }\n}\n"
},
"@openzeppelin/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n\n function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n"
},
"@openzeppelin/contracts/interfaces/draft-IERC6093.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)\npragma solidity ^0.8.20;\n\n/**\n * @dev Standard ERC20 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.\n */\ninterface IERC20Errors {\n /**\n * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param balance Current balance for the interacting account.\n * @param needed Minimum amount required to perform a transfer.\n */\n error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC20InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC20InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.\n * @param spender Address that may be allowed to operate on tokens without being their owner.\n * @param allowance Amount of tokens a `spender` is allowed to operate with.\n * @param needed Minimum amount required to perform a transfer.\n */\n error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC20InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `spender` to be approved. Used in approvals.\n * @param spender Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC20InvalidSpender(address spender);\n}\n\n/**\n * @dev Standard ERC721 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.\n */\ninterface IERC721Errors {\n /**\n * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.\n * Used in balance queries.\n * @param owner Address of the current owner of a token.\n */\n error ERC721InvalidOwner(address owner);\n\n /**\n * @dev Indicates a `tokenId` whose `owner` is the zero address.\n * @param tokenId Identifier number of a token.\n */\n error ERC721NonexistentToken(uint256 tokenId);\n\n /**\n * @dev Indicates an error related to the ownership over a particular token. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param tokenId Identifier number of a token.\n * @param owner Address of the current owner of a token.\n */\n error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC721InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC721InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n * @param tokenId Identifier number of a token.\n */\n error ERC721InsufficientApproval(address operator, uint256 tokenId);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC721InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC721InvalidOperator(address operator);\n}\n\n/**\n * @dev Standard ERC1155 Errors\n * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.\n */\ninterface IERC1155Errors {\n /**\n * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n * @param balance Current balance for the interacting account.\n * @param needed Minimum amount required to perform a transfer.\n * @param tokenId Identifier number of a token.\n */\n error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);\n\n /**\n * @dev Indicates a failure with the token `sender`. Used in transfers.\n * @param sender Address whose tokens are being transferred.\n */\n error ERC1155InvalidSender(address sender);\n\n /**\n * @dev Indicates a failure with the token `receiver`. Used in transfers.\n * @param receiver Address to which tokens are being transferred.\n */\n error ERC1155InvalidReceiver(address receiver);\n\n /**\n * @dev Indicates a failure with the `operator`’s approval. Used in transfers.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n * @param owner Address of the current owner of a token.\n */\n error ERC1155MissingApprovalForAll(address operator, address owner);\n\n /**\n * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.\n * @param approver Address initiating an approval operation.\n */\n error ERC1155InvalidApprover(address approver);\n\n /**\n * @dev Indicates a failure with the `operator` to be approved. Used in approvals.\n * @param operator Address that may be allowed to operate on tokens without being their owner.\n */\n error ERC1155InvalidOperator(address operator);\n\n /**\n * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.\n * Used in batch transfers.\n * @param idsLength Length of the array of token identifiers\n * @param valuesLength Length of the array of token amounts\n */\n error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);\n}\n"
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC20} from \"../IERC20.sol\";\n\n/**\n * @dev Interface for the optional metadata functions from the ERC20 standard.\n */\ninterface IERC20Metadata is IERC20 {\n /**\n * @dev Returns the name of the token.\n */\n function name() external view returns (string memory);\n\n /**\n * @dev Returns the symbol of the token.\n */\n function symbol() external view returns (string memory);\n\n /**\n * @dev Returns the decimals places of the token.\n */\n function decimals() external view returns (uint8);\n}\n"
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Interface of the ERC20 standard as defined in the EIP.\n */\ninterface IERC20 {\n /**\n * @dev Emitted when `value` tokens are moved from one account (`from`) to\n * another (`to`).\n *\n * Note that `value` may be zero.\n */\n event Transfer(address indexed from, address indexed to, uint256 value);\n\n /**\n * @dev Emitted when the allowance of a `spender` for an `owner` is set by\n * a call to {approve}. `value` is the new allowance.\n */\n event Approval(address indexed owner, address indexed spender, uint256 value);\n\n /**\n * @dev Returns the value of tokens in existence.\n */\n function totalSupply() external view returns (uint256);\n\n /**\n * @dev Returns the value of tokens owned by `account`.\n */\n function balanceOf(address account) external view returns (uint256);\n\n /**\n * @dev Moves a `value` amount of tokens from the caller's account to `to`.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transfer(address to, uint256 value) external returns (bool);\n\n /**\n * @dev Returns the remaining number of tokens that `spender` will be\n * allowed to spend on behalf of `owner` through {transferFrom}. This is\n * zero by default.\n *\n * This value changes when {approve} or {transferFrom} are called.\n */\n function allowance(address owner, address spender) external view returns (uint256);\n\n /**\n * @dev Sets a `value` amount of tokens as the allowance of `spender` over the\n * caller's tokens.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * IMPORTANT: Beware that changing an allowance with this method brings the risk\n * that someone may use both the old and the new allowance by unfortunate\n * transaction ordering. One possible solution to mitigate this race\n * condition is to first reduce the spender's allowance to 0 and set the\n * desired value afterwards:\n * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729\n *\n * Emits an {Approval} event.\n */\n function approve(address spender, uint256 value) external returns (bool);\n\n /**\n * @dev Moves a `value` amount of tokens from `from` to `to` using the\n * allowance mechanism. `value` is then deducted from the caller's\n * allowance.\n *\n * Returns a boolean value indicating whether the operation succeeded.\n *\n * Emits a {Transfer} event.\n */\n function transferFrom(address from, address to, uint256 value) external returns (bool);\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
},
"remappings": []
}
},
"output": {
"contracts": {
"@openzeppelin/contracts/access/Ownable.sol": {
"Ownable": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. The initial owner is set to the address provided by the deployer. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.",
"errors": {
"OwnableInvalidOwner(address)": [
{
"details": "The owner is not a valid owner account. (eg. `address(0)`)"
}
],
"OwnableUnauthorizedAccount(address)": [
{
"details": "The caller account is not authorized to perform an operation."
}
]
},
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the address provided by the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. The initial owner is set to the address provided by the deployer. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.\",\"errors\":{\"OwnableInvalidOwner(address)\":[{\"details\":\"The owner is not a valid owner account. (eg. `address(0)`)\"}],\"OwnableUnauthorizedAccount(address)\":[{\"details\":\"The caller account is not authorized to perform an operation.\"}]},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract setting the address provided by the deployer as the initial owner.\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner.\"},\"transferOwnership(address)\":{\"details\":\"Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0xff6d0bb2e285473e5311d9d3caacb525ae3538a80758c10649a4d61029b017bb\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8ed324d3920bb545059d66ab97d43e43ee85fd3bd52e03e401f020afb0b120f6\",\"dweb:/ipfs/QmfEckWLmZkDDcoWrkEvMWhms66xwTLff9DDhegYpvHo1a\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 8,
"contract": "@openzeppelin/contracts/access/Ownable.sol:Ownable",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/interfaces/draft-IERC6093.sol": {
"IERC1155Errors": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ERC1155InsufficientBalance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "approver",
"type": "address"
}
],
"name": "ERC1155InvalidApprover",
"type": "error"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "idsLength",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "valuesLength",
"type": "uint256"
}
],
"name": "ERC1155InvalidArrayLength",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "ERC1155InvalidOperator",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "receiver",
"type": "address"
}
],
"name": "ERC1155InvalidReceiver",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "ERC1155InvalidSender",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "ERC1155MissingApprovalForAll",
"type": "error"
}
],
"devdoc": {
"details": "Standard ERC1155 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.",
"errors": {
"ERC1155InsufficientBalance(address,uint256,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.",
"tokenId": "Identifier number of a token."
}
}
],
"ERC1155InvalidApprover(address)": [
{
"details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.",
"params": {
"approver": "Address initiating an approval operation."
}
}
],
"ERC1155InvalidArrayLength(uint256,uint256)": [
{
"details": "Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. Used in batch transfers.",
"params": {
"idsLength": "Length of the array of token identifiers",
"valuesLength": "Length of the array of token amounts"
}
}
],
"ERC1155InvalidOperator(address)": [
{
"details": "Indicates a failure with the `operator` to be approved. Used in approvals.",
"params": {
"operator": "Address that may be allowed to operate on tokens without being their owner."
}
}
],
"ERC1155InvalidReceiver(address)": [
{
"details": "Indicates a failure with the token `receiver`. Used in transfers.",
"params": {
"receiver": "Address to which tokens are being transferred."
}
}
],
"ERC1155InvalidSender(address)": [
{
"details": "Indicates a failure with the token `sender`. Used in transfers.",
"params": {
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC1155MissingApprovalForAll(address,address)": [
{
"details": "Indicates a failure with the `operator`’s approval. Used in transfers.",
"params": {
"operator": "Address that may be allowed to operate on tokens without being their owner.",
"owner": "Address of the current owner of a token."
}
}
]
},
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC1155InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"idsLength\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"valuesLength\",\"type\":\"uint256\"}],\"name\":\"ERC1155InvalidArrayLength\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC1155InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC1155MissingApprovalForAll\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC1155 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.\",\"errors\":{\"ERC1155InsufficientBalance(address,uint256,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.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC1155InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC1155InvalidArrayLength(uint256,uint256)\":[{\"details\":\"Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. Used in batch transfers.\",\"params\":{\"idsLength\":\"Length of the array of token identifiers\",\"valuesLength\":\"Length of the array of token amounts\"}}],\"ERC1155InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC1155InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC1155InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC1155MissingApprovalForAll(address,address)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"owner\":\"Address of the current owner of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC1155Errors\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x60c65f701957fdd6faea1acb0bb45825791d473693ed9ecb34726fdfaa849dd7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ea290300e0efc4d901244949dc4d877fd46e6c5e43dc2b26620e8efab3ab803f\",\"dweb:/ipfs/QmcLLJppxKeJWqHxE2CUkcfhuRTgHSn8J4kijcLa5MYhSt\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"IERC20Errors": {
"abi": [
{
"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"
}
],
"devdoc": {
"details": "Standard ERC20 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.",
"errors": {
"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."
}
}
]
},
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"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\"}],\"devdoc\":{\"details\":\"Standard ERC20 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `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.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC20Errors\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x60c65f701957fdd6faea1acb0bb45825791d473693ed9ecb34726fdfaa849dd7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ea290300e0efc4d901244949dc4d877fd46e6c5e43dc2b26620e8efab3ab803f\",\"dweb:/ipfs/QmcLLJppxKeJWqHxE2CUkcfhuRTgHSn8J4kijcLa5MYhSt\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"IERC721Errors": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "ERC721IncorrectOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ERC721InsufficientApproval",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "approver",
"type": "address"
}
],
"name": "ERC721InvalidApprover",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "ERC721InvalidOperator",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "ERC721InvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "receiver",
"type": "address"
}
],
"name": "ERC721InvalidReceiver",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
}
],
"name": "ERC721InvalidSender",
"type": "error"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ERC721NonexistentToken",
"type": "error"
}
],
"devdoc": {
"details": "Standard ERC721 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.",
"errors": {
"ERC721IncorrectOwner(address,uint256,address)": [
{
"details": "Indicates an error related to the ownership over a particular token. Used in transfers.",
"params": {
"owner": "Address of the current owner of a token.",
"sender": "Address whose tokens are being transferred.",
"tokenId": "Identifier number of a token."
}
}
],
"ERC721InsufficientApproval(address,uint256)": [
{
"details": "Indicates a failure with the `operator`’s approval. Used in transfers.",
"params": {
"operator": "Address that may be allowed to operate on tokens without being their owner.",
"tokenId": "Identifier number of a token."
}
}
],
"ERC721InvalidApprover(address)": [
{
"details": "Indicates a failure with the `approver` of a token to be approved. Used in approvals.",
"params": {
"approver": "Address initiating an approval operation."
}
}
],
"ERC721InvalidOperator(address)": [
{
"details": "Indicates a failure with the `operator` to be approved. Used in approvals.",
"params": {
"operator": "Address that may be allowed to operate on tokens without being their owner."
}
}
],
"ERC721InvalidOwner(address)": [
{
"details": "Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. Used in balance queries.",
"params": {
"owner": "Address of the current owner of a token."
}
}
],
"ERC721InvalidReceiver(address)": [
{
"details": "Indicates a failure with the token `receiver`. Used in transfers.",
"params": {
"receiver": "Address to which tokens are being transferred."
}
}
],
"ERC721InvalidSender(address)": [
{
"details": "Indicates a failure with the token `sender`. Used in transfers.",
"params": {
"sender": "Address whose tokens are being transferred."
}
}
],
"ERC721NonexistentToken(uint256)": [
{
"details": "Indicates a `tokenId` whose `owner` is the zero address.",
"params": {
"tokenId": "Identifier number of a token."
}
}
]
},
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"},{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721IncorrectOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721InsufficientApproval\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"approver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidApprover\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"operator\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOperator\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"ERC721InvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"receiver\",\"type\":\"address\"}],\"name\":\"ERC721InvalidReceiver\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"sender\",\"type\":\"address\"}],\"name\":\"ERC721InvalidSender\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"tokenId\",\"type\":\"uint256\"}],\"name\":\"ERC721NonexistentToken\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Standard ERC721 Errors Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.\",\"errors\":{\"ERC721IncorrectOwner(address,uint256,address)\":[{\"details\":\"Indicates an error related to the ownership over a particular token. Used in transfers.\",\"params\":{\"owner\":\"Address of the current owner of a token.\",\"sender\":\"Address whose tokens are being transferred.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InsufficientApproval(address,uint256)\":[{\"details\":\"Indicates a failure with the `operator`\\u2019s approval. Used in transfers.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\",\"tokenId\":\"Identifier number of a token.\"}}],\"ERC721InvalidApprover(address)\":[{\"details\":\"Indicates a failure with the `approver` of a token to be approved. Used in approvals.\",\"params\":{\"approver\":\"Address initiating an approval operation.\"}}],\"ERC721InvalidOperator(address)\":[{\"details\":\"Indicates a failure with the `operator` to be approved. Used in approvals.\",\"params\":{\"operator\":\"Address that may be allowed to operate on tokens without being their owner.\"}}],\"ERC721InvalidOwner(address)\":[{\"details\":\"Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. Used in balance queries.\",\"params\":{\"owner\":\"Address of the current owner of a token.\"}}],\"ERC721InvalidReceiver(address)\":[{\"details\":\"Indicates a failure with the token `receiver`. Used in transfers.\",\"params\":{\"receiver\":\"Address to which tokens are being transferred.\"}}],\"ERC721InvalidSender(address)\":[{\"details\":\"Indicates a failure with the token `sender`. Used in transfers.\",\"params\":{\"sender\":\"Address whose tokens are being transferred.\"}}],\"ERC721NonexistentToken(uint256)\":[{\"details\":\"Indicates a `tokenId` whose `owner` is the zero address.\",\"params\":{\"tokenId\":\"Identifier number of a token.\"}}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":\"IERC721Errors\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC6093.sol\":{\"keccak256\":\"0x60c65f701957fdd6faea1acb0bb45825791d473693ed9ecb34726fdfaa849dd7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ea290300e0efc4d901244949dc4d877fd46e6c5e43dc2b26620e8efab3ab803f\",\"dweb:/ipfs/QmcLLJppxKeJWqHxE2CUkcfhuRTgHSn8J4kijcLa5MYhSt\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/security/Pausable.sol": {
"Pausable": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "Contract module which allows children to implement an emergency stop mechanism that can be triggered by an authorized account. This module is used through inheritance. It will make available the modifiers `whenNotPaused` and `whenPaused`, which can be applied to the functions of your contract. Note that they will not be pausable by simply including this module, only once the modifiers are put in place.",
"events": {
"Paused(address)": {
"details": "Emitted when the pause is triggered by `account`."
},
"Unpaused(address)": {
"details": "Emitted when the pause is lifted by `account`."
}
},
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract in unpaused state."
},
"paused()": {
"details": "Returns true if the contract is paused, and false otherwise."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"paused()": "5c975abb"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Paused\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"Unpaused\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Contract module which allows children to implement an emergency stop mechanism that can be triggered by an authorized account. This module is used through inheritance. It will make available the modifiers `whenNotPaused` and `whenPaused`, which can be applied to the functions of your contract. Note that they will not be pausable by simply including this module, only once the modifiers are put in place.\",\"events\":{\"Paused(address)\":{\"details\":\"Emitted when the pause is triggered by `account`.\"},\"Unpaused(address)\":{\"details\":\"Emitted when the pause is lifted by `account`.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the contract in unpaused state.\"},\"paused()\":{\"details\":\"Returns true if the contract is paused, and false otherwise.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/security/Pausable.sol\":\"Pausable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/security/Pausable.sol\":{\"keccak256\":\"0x0849d93b16c9940beb286a7864ed02724b248b93e0d80ef6355af5ef15c64773\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://4ddabb16009cd17eaca3143feadf450ac13e72919ebe2ca50e00f61cb78bc004\",\"dweb:/ipfs/QmSPwPxX7d6TTWakN5jy5wsaGkS1y9TW8fuhGSraMkLk2B\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 302,
"contract": "@openzeppelin/contracts/security/Pausable.sol:Pausable",
"label": "_paused",
"offset": 0,
"slot": "0",
"type": "t_bool"
}
],
"types": {
"t_bool": {
"encoding": "inplace",
"label": "bool",
"numberOfBytes": "1"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/security/ReentrancyGuard.sol": {
"ReentrancyGuard": {
"abi": [],
"devdoc": {
"details": "Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Contract module that helps prevent reentrant calls to a function. Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier available, which can be applied to functions to make sure there are no nested (reentrant) calls to them. Note that because there is a single `nonReentrant` guard, functions marked as `nonReentrant` may not call one another. This can be worked around by making those functions `private`, and then adding `external` `nonReentrant` entry points to them. TIP: If you would like to learn more about reentrancy and alternative ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":\"ReentrancyGuard\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/security/ReentrancyGuard.sol\":{\"keccak256\":\"0xa535a5df777d44e945dd24aa43a11e44b024140fc340ad0dfe42acf4002aade1\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://41319e7f621f2dc3733511332c4fd032f8e32ad2aa7fd6f665c19741d9941a34\",\"dweb:/ipfs/QmcYR3bd862GD1Bc7jwrU9bGxrhUu5na1oP964bDCu2id1\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 403,
"contract": "@openzeppelin/contracts/security/ReentrancyGuard.sol:ReentrancyGuard",
"label": "_status",
"offset": 0,
"slot": "0",
"type": "t_uint256"
}
],
"types": {
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/token/ERC20/ERC20.sol": {
"ERC20": {
"abi": [
{
"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"
},
{
"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": [
{
"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": [
{
"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": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"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": {
"details": "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.",
"errors": {
"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."
}
}
]
},
"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."
},
"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": {
"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}."
},
"constructor": {
"details": "Sets the values for {name} and {symbol}. All two of these values are immutable: they can only be set once during construction."
},
"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}."
},
"name()": {
"details": "Returns the name of the token."
},
"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
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"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\"},{\"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\":[{\"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\":[{\"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\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"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\":{\"details\":\"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.\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `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.\"}}]},\"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.\"},\"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\":{\"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}.\"},\"constructor\":{\"details\":\"Sets the values for {name} and {symbol}. All two of these values are immutable: they can only be set once during construction.\"},\"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}.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"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\":{\"@openzeppelin/contracts/token/ERC20/ERC20.sol\":\"ERC20\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@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/IERC20Metadata.sol\":{\"keccak256\":\"0xaa761817f6cd7892fcf158b3c776b34551cde36f48ff9703d53898bc45a94ea2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ad7c8d4d08938c8dfc43d75a148863fb324b80cf53e0a36f7e5a4ac29008850\",\"dweb:/ipfs/QmcrhfPgVNf5mkdhQvy1pMv51TFokD3Y4Wa5WZhFqVh8UV\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 480,
"contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
"label": "_balances",
"offset": 0,
"slot": "0",
"type": "t_mapping(t_address,t_uint256)"
},
{
"astId": 486,
"contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
"label": "_allowances",
"offset": 0,
"slot": "1",
"type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
},
{
"astId": 488,
"contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
"label": "_totalSupply",
"offset": 0,
"slot": "2",
"type": "t_uint256"
},
{
"astId": 490,
"contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
"label": "_name",
"offset": 0,
"slot": "3",
"type": "t_string_storage"
},
{
"astId": 492,
"contract": "@openzeppelin/contracts/token/ERC20/ERC20.sol:ERC20",
"label": "_symbol",
"offset": 0,
"slot": "4",
"type": "t_string_storage"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
},
"t_mapping(t_address,t_mapping(t_address,t_uint256))": {
"encoding": "mapping",
"key": "t_address",
"label": "mapping(address => mapping(address => uint256))",
"numberOfBytes": "32",
"value": "t_mapping(t_address,t_uint256)"
},
"t_mapping(t_address,t_uint256)": {
"encoding": "mapping",
"key": "t_address",
"label": "mapping(address => uint256)",
"numberOfBytes": "32",
"value": "t_uint256"
},
"t_string_storage": {
"encoding": "bytes",
"label": "string",
"numberOfBytes": "32"
},
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/token/ERC20/IERC20.sol": {
"IERC20": {
"abi": [
{
"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": [
{
"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": [
{
"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": "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": {
"details": "Interface of the ERC20 standard as defined in the EIP.",
"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."
},
"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": {
"allowance(address,address)": {
"details": "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."
},
"approve(address,uint256)": {
"details": "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."
},
"balanceOf(address)": {
"details": "Returns the value of tokens owned by `account`."
},
"totalSupply()": {
"details": "Returns the value of tokens in existence."
},
"transfer(address,uint256)": {
"details": "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."
},
"transferFrom(address,address,uint256)": {
"details": "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."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"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\":[{\"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\":[{\"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\":\"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\":{\"details\":\"Interface of the ERC20 standard as defined in the EIP.\",\"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.\"},\"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\":{\"allowance(address,address)\":{\"details\":\"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.\"},\"approve(address,uint256)\":{\"details\":\"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.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"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.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"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.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":\"IERC20\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xc6a8ff0ea489379b61faa647490411b80102578440ab9d84e9a957cc12164e70\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ea104e577e63faea3b69c415637e99e755dcbf64c5833d7140c35a714d6d90c\",\"dweb:/ipfs/Qmau6x4Ns9XdyynRCNNp3RhLqijJjFm7z5fyZazfYFGYdq\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol": {
"ERC20Burnable": {
"abi": [
{
"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"
},
{
"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": [
{
"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": [
{
"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": [
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"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": {
"details": "Extension of {ERC20} that allows token holders to destroy both their own tokens and those that they have an allowance for, in a way that can be recognized off-chain (via event analysis).",
"errors": {
"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."
}
}
]
},
"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."
},
"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": {
"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}."
},
"burn(uint256)": {
"details": "Destroys a `value` amount of tokens from the caller. See {ERC20-_burn}."
},
"burnFrom(address,uint256)": {
"details": "Destroys a `value` amount of tokens from `account`, deducting from the caller's allowance. See {ERC20-_burn} and {ERC20-allowance}. Requirements: - the caller must have allowance for ``accounts``'s tokens of at least `value`."
},
"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}."
},
"name()": {
"details": "Returns the name of the token."
},
"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
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"burn(uint256)": "42966c68",
"burnFrom(address,uint256)": "79cc6790",
"decimals()": "313ce567",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"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\"},{\"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\":[{\"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\":[{\"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\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"burn\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"burnFrom\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"decimals\",\"outputs\":[{\"internalType\":\"uint8\",\"name\":\"\",\"type\":\"uint8\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"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\":{\"details\":\"Extension of {ERC20} that allows token holders to destroy both their own tokens and those that they have an allowance for, in a way that can be recognized off-chain (via event analysis).\",\"errors\":{\"ERC20InsufficientAllowance(address,uint256,uint256)\":[{\"details\":\"Indicates a failure with the `spender`\\u2019s `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.\"}}]},\"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.\"},\"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\":{\"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}.\"},\"burn(uint256)\":{\"details\":\"Destroys a `value` amount of tokens from the caller. See {ERC20-_burn}.\"},\"burnFrom(address,uint256)\":{\"details\":\"Destroys a `value` amount of tokens from `account`, deducting from the caller's allowance. See {ERC20-_burn} and {ERC20-allowance}. Requirements: - the caller must have allowance for ``accounts``'s tokens of at least `value`.\"},\"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}.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"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\":{\"@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol\":\"ERC20Burnable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@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/ERC20Burnable.sol\":{\"keccak256\":\"0x2659248df25e34000ed214b3dc8da2160bc39874c992b477d9e2b1b3283dc073\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c345af1b0e7ea28d1216d6a04ab28f5534a5229b9edf9ca3cd0e84950ae58d26\",\"dweb:/ipfs/QmY63jtSrYpLRe8Gj1ep2vMDCKxGNNG3hnNVKBVnrs2nmA\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xaa761817f6cd7892fcf158b3c776b34551cde36f48ff9703d53898bc45a94ea2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ad7c8d4d08938c8dfc43d75a148863fb324b80cf53e0a36f7e5a4ac29008850\",\"dweb:/ipfs/QmcrhfPgVNf5mkdhQvy1pMv51TFokD3Y4Wa5WZhFqVh8UV\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 480,
"contract": "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol:ERC20Burnable",
"label": "_balances",
"offset": 0,
"slot": "0",
"type": "t_mapping(t_address,t_uint256)"
},
{
"astId": 486,
"contract": "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol:ERC20Burnable",
"label": "_allowances",
"offset": 0,
"slot": "1",
"type": "t_mapping(t_address,t_mapping(t_address,t_uint256))"
},
{
"astId": 488,
"contract": "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol:ERC20Burnable",
"label": "_totalSupply",
"offset": 0,
"slot": "2",
"type": "t_uint256"
},
{
"astId": 490,
"contract": "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol:ERC20Burnable",
"label": "_name",
"offset": 0,
"slot": "3",
"type": "t_string_storage"
},
{
"astId": 492,
"contract": "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol:ERC20Burnable",
"label": "_symbol",
"offset": 0,
"slot": "4",
"type": "t_string_storage"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
},
"t_mapping(t_address,t_mapping(t_address,t_uint256))": {
"encoding": "mapping",
"key": "t_address",
"label": "mapping(address => mapping(address => uint256))",
"numberOfBytes": "32",
"value": "t_mapping(t_address,t_uint256)"
},
"t_mapping(t_address,t_uint256)": {
"encoding": "mapping",
"key": "t_address",
"label": "mapping(address => uint256)",
"numberOfBytes": "32",
"value": "t_uint256"
},
"t_string_storage": {
"encoding": "bytes",
"label": "string",
"numberOfBytes": "32"
},
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol": {
"IERC20Metadata": {
"abi": [
{
"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": [
{
"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": [
{
"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": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"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": {
"details": "Interface for the optional metadata functions from the ERC20 standard.",
"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."
},
"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": {
"allowance(address,address)": {
"details": "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."
},
"approve(address,uint256)": {
"details": "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."
},
"balanceOf(address)": {
"details": "Returns the value of tokens owned by `account`."
},
"decimals()": {
"details": "Returns the decimals places of the token."
},
"name()": {
"details": "Returns the name of the token."
},
"symbol()": {
"details": "Returns the symbol of the token."
},
"totalSupply()": {
"details": "Returns the value of tokens in existence."
},
"transfer(address,uint256)": {
"details": "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."
},
"transferFrom(address,address,uint256)": {
"details": "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."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"allowance(address,address)": "dd62ed3e",
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"decimals()": "313ce567",
"name()": "06fdde03",
"symbol()": "95d89b41",
"totalSupply()": "18160ddd",
"transfer(address,uint256)": "a9059cbb",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"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\":[{\"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\":[{\"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\":\"name\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"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\":{\"details\":\"Interface for the optional metadata functions from the ERC20 standard.\",\"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.\"},\"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\":{\"allowance(address,address)\":{\"details\":\"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.\"},\"approve(address,uint256)\":{\"details\":\"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.\"},\"balanceOf(address)\":{\"details\":\"Returns the value of tokens owned by `account`.\"},\"decimals()\":{\"details\":\"Returns the decimals places of the token.\"},\"name()\":{\"details\":\"Returns the name of the token.\"},\"symbol()\":{\"details\":\"Returns the symbol of the token.\"},\"totalSupply()\":{\"details\":\"Returns the value of tokens in existence.\"},\"transfer(address,uint256)\":{\"details\":\"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.\"},\"transferFrom(address,address,uint256)\":{\"details\":\"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.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":\"IERC20Metadata\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/token/ERC20/IERC20.sol\":{\"keccak256\":\"0xc6a8ff0ea489379b61faa647490411b80102578440ab9d84e9a957cc12164e70\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ea104e577e63faea3b69c415637e99e755dcbf64c5833d7140c35a714d6d90c\",\"dweb:/ipfs/Qmau6x4Ns9XdyynRCNNp3RhLqijJjFm7z5fyZazfYFGYdq\"]},\"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol\":{\"keccak256\":\"0xaa761817f6cd7892fcf158b3c776b34551cde36f48ff9703d53898bc45a94ea2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0ad7c8d4d08938c8dfc43d75a148863fb324b80cf53e0a36f7e5a4ac29008850\",\"dweb:/ipfs/QmcrhfPgVNf5mkdhQvy1pMv51TFokD3Y4Wa5WZhFqVh8UV\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/utils/Context.sol": {
"Context": {
"abi": [],
"devdoc": {
"details": "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.",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"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.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0x493033a8d1b176a037b2cc6a04dad01a5c157722049bbecf632ca876224dd4b2\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6a708e8a5bdb1011c2c381c9a5cfd8a9a956d7d0a9dc1bd8bcdaf52f76ef2f12\",\"dweb:/ipfs/Qmax9WHBnVsZP46ZxEMNRQpLQnrdE4dK8LehML1Py8FowF\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/utils/math/SafeMath.sol": {
"SafeMath": {
"abi": [],
"devdoc": {
"details": "Wrappers over Solidity's arithmetic operations. NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler now has built in overflow checking.",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"@openzeppelin/contracts/utils/math/SafeMath.sol\":482:6692 library SafeMath {... */\n dataSize(sub_0)\n dataOffset(sub_0)\n 0x0b\n dup3\n dup3\n dup3\n codecopy\n dup1\n mload\n 0x00\n byte\n 0x73\n eq\n tag_1\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x00)\n revert(0x00, 0x24)\ntag_1:\n mstore(0x00, address)\n 0x73\n dup2\n mstore8\n dup3\n dup2\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts/utils/math/SafeMath.sol\":482:6692 library SafeMath {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa264697066735822122047c4537c112e7dfd362fbbc3109dcd7efad1e9f705b895d9c42d83f61dd9cedb64736f6c634300081a0033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122047c4537c112e7dfd362fbbc3109dcd7efad1e9f705b895d9c42d83f61dd9cedb64736f6c634300081a0033",
"opcodes": "PUSH1 0x55 PUSH1 0x4B PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x3F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SELFBALANCE 0xC4 MSTORE8 PUSH29 0x112E7DFD362FBBC3109DCD7EFAD1E9F705B895D9C42D83F61DD9CEDB64 PUSH20 0x6F6C634300081A00330000000000000000000000 ",
"sourceMap": "482:6210:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122047c4537c112e7dfd362fbbc3109dcd7efad1e9f705b895d9c42d83f61dd9cedb64736f6c634300081a0033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SELFBALANCE 0xC4 MSTORE8 PUSH29 0x112E7DFD362FBBC3109DCD7EFAD1E9F705B895D9C42D83F61DD9CEDB64 PUSH20 0x6F6C634300081A00330000000000000000000000 ",
"sourceMap": "482:6210:9:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17000",
"executionCost": "92",
"totalCost": "17092"
},
"internal": {
"add(uint256,uint256)": "infinite",
"div(uint256,uint256)": "infinite",
"div(uint256,uint256,string memory)": "infinite",
"mod(uint256,uint256)": "infinite",
"mod(uint256,uint256,string memory)": "infinite",
"mul(uint256,uint256)": "infinite",
"sub(uint256,uint256)": "infinite",
"sub(uint256,uint256,string memory)": "infinite",
"tryAdd(uint256,uint256)": "infinite",
"tryDiv(uint256,uint256)": "infinite",
"tryMod(uint256,uint256)": "infinite",
"tryMul(uint256,uint256)": "infinite",
"trySub(uint256,uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 482,
"end": 6692,
"name": "PUSH #[$]",
"source": 9,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 482,
"end": 6692,
"name": "PUSH [$]",
"source": 9,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "B"
},
{
"begin": 482,
"end": 6692,
"name": "DUP3",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "DUP3",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "DUP3",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "CODECOPY",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "DUP1",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "MLOAD",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "0"
},
{
"begin": 482,
"end": 6692,
"name": "BYTE",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "73"
},
{
"begin": 482,
"end": 6692,
"name": "EQ",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "PUSH [tag]",
"source": 9,
"value": "1"
},
{
"begin": 482,
"end": 6692,
"name": "JUMPI",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "0"
},
{
"begin": 482,
"end": 6692,
"name": "MSTORE",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "0"
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "4"
},
{
"begin": 482,
"end": 6692,
"name": "MSTORE",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "24"
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "0"
},
{
"begin": 482,
"end": 6692,
"name": "REVERT",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "tag",
"source": 9,
"value": "1"
},
{
"begin": 482,
"end": 6692,
"name": "JUMPDEST",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "ADDRESS",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "0"
},
{
"begin": 482,
"end": 6692,
"name": "MSTORE",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "73"
},
{
"begin": 482,
"end": 6692,
"name": "DUP2",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "MSTORE8",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "DUP3",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "DUP2",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "RETURN",
"source": 9
}
],
".data": {
"0": {
".auxdata": "a264697066735822122047c4537c112e7dfd362fbbc3109dcd7efad1e9f705b895d9c42d83f61dd9cedb64736f6c634300081a0033",
".code": [
{
"begin": 482,
"end": 6692,
"name": "PUSHDEPLOYADDRESS",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "ADDRESS",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "EQ",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "80"
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "40"
},
{
"begin": 482,
"end": 6692,
"name": "MSTORE",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "PUSH",
"source": 9,
"value": "0"
},
{
"begin": 482,
"end": 6692,
"name": "DUP1",
"source": 9
},
{
"begin": 482,
"end": 6692,
"name": "REVERT",
"source": 9
}
]
}
},
"sourceList": [
"@openzeppelin/contracts/access/Ownable.sol",
"@openzeppelin/contracts/interfaces/draft-IERC6093.sol",
"@openzeppelin/contracts/security/Pausable.sol",
"@openzeppelin/contracts/security/ReentrancyGuard.sol",
"@openzeppelin/contracts/token/ERC20/ERC20.sol",
"@openzeppelin/contracts/token/ERC20/IERC20.sol",
"@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol",
"@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol",
"@openzeppelin/contracts/utils/Context.sol",
"@openzeppelin/contracts/utils/math/SafeMath.sol",
"contracts/PepeVote.sol",
"#utility.yul"
]
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Wrappers over Solidity's arithmetic operations. NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler now has built in overflow checking.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/math/SafeMath.sol\":\"SafeMath\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/math/SafeMath.sol\":{\"keccak256\":\"0x58b21219689909c4f8339af00813760337f7e2e7f169a97fe49e2896dcfb3b9a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ef8e012e946dec20e59f2d4446f4b44bb098f3fa8bac103b1b5112fff777447b\",\"dweb:/ipfs/QmVTooKWcLkJ9W68yNX4MgdrbAKiAXwuRN9A7f4NkdcdtQ\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"contracts/PepeVote.sol": {
"PepeVote": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"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": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "AccountFrozen",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "AccountUnfrozen",
"type": "event"
},
{
"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": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Paused",
"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"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "Unpaused",
"type": "event"
},
{
"inputs": [],
"name": "INITIAL_SUPPLY",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "MAX_SUPPLY",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "TRANSFER_COOLDOWN",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"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": [
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "burn",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
},
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "burnFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "decimals",
"outputs": [
{
"internalType": "uint8",
"name": "",
"type": "uint8"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "freezeAccount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "frozenAccounts",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "lastTransferTimestamp",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "mint",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "pause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "paused",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"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": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transfer",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "sender",
"type": "address"
},
{
"internalType": "address",
"name": "recipient",
"type": "address"
},
{
"internalType": "uint256",
"name": "amount",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "unfreezeAccount",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "unpause",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"errors": {
"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."
}
}
],
"OwnableInvalidOwner(address)": [
{
"details": "The owner is not a valid owner account. (eg. `address(0)`)"
}
],
"OwnableUnauthorizedAccount(address)": [
{
"details": "The caller account is not authorized to perform an operation."
}
]
},
"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."
},
"Paused(address)": {
"details": "Emitted when the pause is triggered by `account`."
},
"Transfer(address,address,uint256)": {
"details": "Emitted when `value` tokens are moved from one account (`from`) to another (`to`). Note that `value` may be zero."
},
"Unpaused(address)": {
"details": "Emitted when the pause is lifted by `account`."
}
},
"kind": "dev",
"methods": {
"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}."
},
"burn(uint256)": {
"details": "Destroys a `value` amount of tokens from the caller. See {ERC20-_burn}."
},
"burnFrom(address,uint256)": {
"details": "Destroys a `value` amount of tokens from `account`, deducting from the caller's allowance. See {ERC20-_burn} and {ERC20-allowance}. Requirements: - the caller must have allowance for ``accounts``'s tokens of at least `value`."
},
"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}."
},
"name()": {
"details": "Returns the name of the token."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"paused()": {
"details": "Returns true if the contract is paused, and false otherwise."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling any functionality that is only available to the owner."
},
"symbol()": {
"details": "Returns the symbol of the token, usually a shorter version of the name."
},
"totalSupply()": {
"details": "See {IERC20-totalSupply}."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/PepeVote.sol\":420:2772 contract PepeVote is ERC20, ERC20Burnable, Pausable, Ownable, ReentrancyGuard {... */\n mstore(0x40, 0x80)\n /* \"contracts/PepeVote.sol\":990:1099 constructor() ERC20(\"PepeVote\", \"PVO\") Ownable(msg.sender) {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n /* \"contracts/PepeVote.sol\":1037:1047 msg.sender */\n caller\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1896:2009 constructor(string memory name_, string memory symbol_) {... */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x08\n dup2\n mstore\n 0x20\n add\n 0x50657065566f7465000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x03\n dup2\n mstore\n 0x20\n add\n 0x50564f0000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1970:1975 name_ */\n dup2\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1962:1967 _name */\n 0x03\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1962:1975 _name = name_ */\n swap1\n dup2\n tag_8\n swap2\n swap1\n tag_9\n jump\t// in\ntag_8:\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1995:2002 symbol_ */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1985:1992 _symbol */\n 0x04\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1985:2002 _symbol = symbol_ */\n swap1\n dup2\n tag_10\n swap2\n swap1\n tag_9\n jump\t// in\ntag_10:\n pop\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":1896:2009 constructor(string memory name_, string memory symbol_) {... */\n pop\n pop\n /* \"@openzeppelin/contracts/security/Pausable.sol\":1006:1011 false */\n 0x00\n /* \"@openzeppelin/contracts/security/Pausable.sol\":996:1003 _paused */\n 0x05\n 0x00\n /* \"@openzeppelin/contracts/security/Pausable.sol\":996:1011 _paused = false */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1297:1298 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1273:1299 initialOwner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1273:1285 initialOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1273:1299 initialOwner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1269:1364 if (initialOwner == address(0)) {... */\n tag_13\n jumpi\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1350:1351 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1322:1353 OwnableInvalidOwner(address(0)) */\n mload(0x40)\n 0x1e4fbdf700000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_14\n swap2\n swap1\n tag_15\n jump\t// in\ntag_14:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1269:1364 if (initialOwner == address(0)) {... */\ntag_13:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1373:1405 _transferOwnership(initialOwner) */\n tag_16\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1392:1404 initialOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1373:1391 _transferOwnership */\n shl(0x20, tag_17)\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1373:1405 _transferOwnership(initialOwner) */\n 0x20\n shr\n jump\t// in\ntag_16:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1225:1412 constructor(address initialOwner) {... */\n pop\n /* \"@openzeppelin/contracts/security/ReentrancyGuard.sol\":1716:1717 1 */\n 0x01\n /* \"@openzeppelin/contracts/security/ReentrancyGuard.sol\":1821:1828 _status */\n 0x06\n /* \"@openzeppelin/contracts/security/ReentrancyGuard.sol\":1821:1843 _status = _NOT_ENTERED */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/PepeVote.sol\":1059:1092 _mint(msg.sender, INITIAL_SUPPLY) */\n tag_20\n /* \"contracts/PepeVote.sol\":1065:1075 msg.sender */\n caller\n /* \"contracts/PepeVote.sol\":663:683 700_000_000 * 10**18 */\n 0x024306c4097859c43c000000\n /* \"contracts/PepeVote.sol\":1059:1064 _mint */\n shl(0x20, tag_21)\n /* \"contracts/PepeVote.sol\":1059:1092 _mint(msg.sender, INITIAL_SUPPLY) */\n 0x20\n shr\n jump\t// in\ntag_20:\n /* \"contracts/PepeVote.sol\":420:2772 contract PepeVote is ERC20, ERC20Burnable, Pausable, Ownable, ReentrancyGuard {... */\n jump(tag_22)\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2912:3099 function _transferOwnership(address newOwner) internal virtual {... */\ntag_17:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2985:3001 address oldOwner */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3004:3010 _owner */\n 0x05\n 0x01\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2985:3010 address oldOwner = _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3029:3037 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3020:3026 _owner */\n 0x05\n 0x01\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3020:3037 _owner = newOwner */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3083:3091 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3052:3092 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3073:3081 oldOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":3052:3092 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2975:3099 {... */\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2912:3099 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7721:7929 function _mint(address account, uint256 value) internal {... */\ntag_21:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7810:7811 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7791:7812 account == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7791:7798 account */\n dup3\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7791:7812 account == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7787:7878 if (account == address(0)) {... */\n tag_25\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7864:7865 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7835:7867 ERC20InvalidReceiver(address(0)) */\n mload(0x40)\n 0xec442f0500000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_26\n swap2\n swap1\n tag_15\n jump\t// in\ntag_26:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7787:7878 if (account == address(0)) {... */\ntag_25:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7887:7922 _update(address(0), account, value) */\n tag_27\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7903:7904 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7907:7914 account */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7916:7921 value */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7887:7894 _update */\n shl(0x20, tag_28)\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7887:7922 _update(address(0), account, value) */\n 0x20\n shr\n jump\t// in\ntag_27:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":7721:7929 function _mint(address account, uint256 value) internal {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6271:7378 function _update(address from, address to, uint256 value) internal virtual {... */\ntag_28:\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6376:6377 0 */\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6360:6378 from == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6360:6364 from */\n dup4\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6360:6378 from == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6356:6896 if (from == address(0)) {... */\n tag_30\n jumpi\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6512:6517 value */\n dup1\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\":6496:6508 _totalSupply */\n 0x02\n 0x00\n /* \"@openzeppelin/contracts/token/ERC20/ERC20.sol\"
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