ETH Price: $3,343.18 (-0.71%)
Gas: 4 Gwei

Token

Ethereum Pumpkin Collective (Ethereum Pumpkin Collective)
 

Overview

Max Total Supply

248 Ethereum Pumpkin Collective

Holders

39

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 Ethereum Pumpkin Collective
0x9d2c8cefbdc3fd2be3c7395037d0d884c939d086
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EthereumPumpkinCollective

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-31
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
     *   a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or
     *   {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
     *   a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// 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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables
     * (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`,
     * checking first that contract recipients are aware of the ERC721 protocol
     * to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move
     * this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external payable;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom}
     * whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external payable;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // Mapping from token ID to approved address.
    mapping(uint256 => TokenApprovalRef) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the
     * zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal virtual {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.0) (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;
    }
}

// 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: contracts/ethereumpumpkins.sol

pragma solidity ^0.8.22;

contract EthereumPumpkinCollective is Ownable, ERC721A, ReentrancyGuard {
    string   public       baseURI;
    bool     public       publicSale                      = false;
    uint256  public       nbFree                          = 1;
    uint256  public       price                           = 0.001 ether;
    uint     public       maxFreePerWallet                = 1;
    uint     public       maxPerTx                        = 10;
    uint     public       maxSupply                       = 2;

    constructor() ERC721A("Ethereum Pumpkin Collective", "Ethereum Pumpkin Collective") Ownable(msg.sender) {}

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function setFree(uint256 nb) external onlyOwner {
        nbFree = nb;
    }

    function freeMint(uint256 quantity) external callerIsUser {
        require(publicSale, "Public sale has not begun yet");
        require(totalSupply() + quantity <= nbFree, "Reached max free supply");
        require(numberMinted(msg.sender) + quantity <= maxFreePerWallet,"Too many free per wallet!");
        _safeMint(msg.sender, quantity);
    }


  function setMaxFreePerWallet(uint256 maxFreePerWallet_) external onlyOwner {
      maxFreePerWallet = maxFreePerWallet_;
  }

    function mint(uint256 quantity) external payable callerIsUser {
        require(publicSale, "Public sale has not begun yet");
        require(
            totalSupply() + quantity <= maxSupply,
            "Reached max supply"
        );
        require(quantity <= maxPerTx, "can not mint this many at a time");
        require(
            price * quantity >= msg.value,
            "Ether value sent is not correct"
        );

        _safeMint(msg.sender, quantity);
    }

  function ownerMint(uint256 quantity) external onlyOwner
  {
    require(totalSupply() + quantity < maxSupply + 1,"too many!");

    _safeMint(msg.sender, quantity);
  }


  function setmaxPerTx(uint256 maxPerTx_) external onlyOwner {
      maxPerTx = maxPerTx_;
  }

  function setmaxSupply(uint256 maxSupply_) external onlyOwner {
      maxSupply = maxSupply_;
  }


	function setprice(uint256 _newprice) public onlyOwner {
	    price = _newprice;
	}
    
    function setSaleState(bool state) external onlyOwner {
        publicSale = state;
    }


  function setBaseURI(string calldata baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }


    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nbFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nb","type":"uint256"}],"name":"setFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxFreePerWallet_","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setmaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxSupply_","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newprice","type":"uint256"}],"name":"setprice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b805460ff191690556001600c81905566038d7ea4c68000600d55600e55600a600f55600260105534801562000039575f80fd5b50604080518082018252601b8082527f457468657265756d2050756d706b696e20436f6c6c65637469766500000000006020808401829052845180860190955291845290830152903380620000a757604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b620000b281620000e2565b506003620000c18382620001cf565b506004620000d08282620001cf565b50505f6001908155600955506200029b565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200015a57607f821691505b6020821081036200017957634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001ca57805f5260205f20601f840160051c81016020851015620001a65750805b601f840160051c820191505b81811015620001c7575f8155600101620001b2565b50505b505050565b81516001600160401b03811115620001eb57620001eb62000131565b6200020381620001fc845462000145565b846200017f565b602080601f83116001811462000239575f8415620002215750858301515b5f19600386901b1c1916600185901b17855562000293565b5f85815260208120601f198616915b82811015620002695788860151825594840194600190910190840162000248565b50858210156200028757878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b611a3480620002a95f395ff3fe608060405260043610610207575f3560e01c8063805dcae511610113578063c4e370951161009d578063dc33e6811161006d578063dc33e68114610567578063e985e9c514610586578063f19e75d4146105a5578063f2fde38b146105c4578063f968adbe146105e3575f80fd5b8063c4e37095146104f5578063c87b56dd14610514578063d49f0fa514610533578063d5abeb0114610552575f80fd5b8063a0712d68116100e3578063a0712d6814610486578063a0a01bf214610499578063a22cb465146104ae578063a7027357146104cd578063b88d4fde146104e2575f80fd5b8063805dcae5146104225780638da5cb5b1461044157806395d89b411461045d578063a035b1fe14610471575f80fd5b806342842e0e116101945780636d7c4a4b116101645780636d7c4a4b146103925780637040d73f146103b157806370a08231146103d0578063715018a6146103ef5780637c928fe914610403575f80fd5b806342842e0e1461032d57806355f804b3146103405780636352211e1461035f5780636c0360eb1461037e575f80fd5b806318160ddd116101da57806318160ddd146102ac578063228025e8146102ce57806323b872dd146102ed57806333bc1c5c146103005780633ccfd60b14610319575f80fd5b806301ffc9a71461020b57806306fdde031461023f578063081812fc14610260578063095ea7b314610297575b5f80fd5b348015610216575f80fd5b5061022a610225366004611509565b6105f8565b60405190151581526020015b60405180910390f35b34801561024a575f80fd5b50610253610649565b6040516102369190611571565b34801561026b575f80fd5b5061027f61027a366004611583565b6106d9565b6040516001600160a01b039091168152602001610236565b6102aa6102a53660046115b5565b61071b565b005b3480156102b7575f80fd5b50600254600154035b604051908152602001610236565b3480156102d9575f80fd5b506102aa6102e8366004611583565b6107b9565b6102aa6102fb3660046115dd565b6107c6565b34801561030b575f80fd5b50600b5461022a9060ff1681565b348015610324575f80fd5b506102aa610956565b6102aa61033b3660046115dd565b610a00565b34801561034b575f80fd5b506102aa61035a366004611616565b610a1f565b34801561036a575f80fd5b5061027f610379366004611583565b610a34565b348015610389575f80fd5b50610253610a3e565b34801561039d575f80fd5b506102aa6103ac366004611583565b610aca565b3480156103bc575f80fd5b506102aa6103cb366004611583565b610ad7565b3480156103db575f80fd5b506102c06103ea366004611682565b610ae4565b3480156103fa575f80fd5b506102aa610b31565b34801561040e575f80fd5b506102aa61041d366004611583565b610b42565b34801561042d575f80fd5b506102aa61043c366004611583565b610cbe565b34801561044c575f80fd5b505f546001600160a01b031661027f565b348015610468575f80fd5b50610253610ccb565b34801561047c575f80fd5b506102c0600d5481565b6102aa610494366004611583565b610cda565b3480156104a4575f80fd5b506102c0600c5481565b3480156104b9575f80fd5b506102aa6104c83660046116aa565b610e88565b3480156104d8575f80fd5b506102c0600e5481565b6102aa6104f03660046116ef565b610ef3565b348015610500575f80fd5b506102aa61050f3660046117c4565b610f3d565b34801561051f575f80fd5b5061025361052e366004611583565b610f58565b34801561053e575f80fd5b506102aa61054d366004611583565b610fd9565b34801561055d575f80fd5b506102c060105481565b348015610572575f80fd5b506102c0610581366004611682565b610fe6565b348015610591575f80fd5b5061022a6105a03660046117dd565b611010565b3480156105b0575f80fd5b506102aa6105bf366004611583565b61103d565b3480156105cf575f80fd5b506102aa6105de366004611682565b6110a4565b3480156105ee575f80fd5b506102c0600f5481565b5f6301ffc9a760e01b6001600160e01b03198316148061062857506380ac58cd60e01b6001600160e01b03198316145b806106435750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461065890611805565b80601f016020809104026020016040519081016040528092919081815260200182805461068490611805565b80156106cf5780601f106106a6576101008083540402835291602001916106cf565b820191905f5260205f20905b8154815290600101906020018083116106b257829003601f168201915b5050505050905090565b5f6106e3826110de565b610700576040516333d1c03960e21b815260040160405180910390fd5b505f908152600760205260409020546001600160a01b031690565b5f61072582610a34565b9050336001600160a01b0382161461075e576107418133611010565b61075e576040516367d9dca160e11b815260040160405180910390fd5b5f8281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107c1611104565b601055565b5f6107d082611130565b9050836001600160a01b0316816001600160a01b0316146108035760405162a1148160e81b815260040160405180910390fd5b5f8281526007602052604090208054338082146001600160a01b0388169091141761084f576108328633611010565b61084f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661087657604051633a954ecd60e21b815260040160405180910390fd5b8015610880575f82555b6001600160a01b038681165f9081526006602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260056020526040812091909155600160e11b8416900361090d57600184015f81815260056020526040812054900361090b57600154811461090b575f8181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61095e611104565b610966611192565b6040515f90339047908381818185875af1925050503d805f81146109a5576040519150601f19603f3d011682016040523d82523d5f602084013e6109aa565b606091505b50509050806109f35760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b506109fe6001600955565b565b610a1a83838360405180602001604052805f815250610ef3565b505050565b610a27611104565b600a610a1a828483611881565b5f61064382611130565b600a8054610a4b90611805565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7790611805565b8015610ac25780601f10610a9957610100808354040283529160200191610ac2565b820191905f5260205f20905b815481529060010190602001808311610aa557829003601f168201915b505050505081565b610ad2611104565b600e55565b610adf611104565b600c55565b5f6001600160a01b038216610b0c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526006602052604090205467ffffffffffffffff1690565b610b39611104565b6109fe5f6111eb565b323314610b915760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109ea565b600b5460ff16610be35760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016109ea565b600c5481610bf46002546001540390565b610bfe919061194f565b1115610c4c5760405162461bcd60e51b815260206004820152601760248201527f52656163686564206d6178206672656520737570706c7900000000000000000060448201526064016109ea565b600e5481610c5933610fe6565b610c63919061194f565b1115610cb15760405162461bcd60e51b815260206004820152601960248201527f546f6f206d616e792066726565207065722077616c6c6574210000000000000060448201526064016109ea565b610cbb338261123a565b50565b610cc6611104565b600f55565b60606004805461065890611805565b323314610d295760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109ea565b600b5460ff16610d7b5760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016109ea565b60105481610d8c6002546001540390565b610d96919061194f565b1115610dd95760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820737570706c7960701b60448201526064016109ea565b600f54811115610e2b5760405162461bcd60e51b815260206004820181905260248201527f63616e206e6f74206d696e742074686973206d616e7920617420612074696d6560448201526064016109ea565b3481600d54610e3a9190611962565b1015610cb15760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016109ea565b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610efe8484846107c6565b6001600160a01b0383163b15610f3757610f1a84848484611257565b610f37576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f45611104565b600b805460ff1916911515919091179055565b6060610f63826110de565b610f8057604051630a14c4b560e41b815260040160405180910390fd5b5f610f8961133e565b905080515f03610fa75760405180602001604052805f815250610fd2565b80610fb18461134d565b604051602001610fc2929190611979565b6040516020818303038152906040525b9392505050565b610fe1611104565b600d55565b6001600160a01b0381165f908152600660205260408082205467ffffffffffffffff911c16610643565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205460ff1690565b611045611104565b60105461105390600161194f565b816110616002546001540390565b61106b919061194f565b10610cb15760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b60448201526064016109ea565b6110ac611104565b6001600160a01b0381166110d557604051631e4fbdf760e01b81525f60048201526024016109ea565b610cbb816111eb565b5f600154821080156106435750505f90815260056020526040902054600160e01b161590565b5f546001600160a01b031633146109fe5760405163118cdaa760e01b81523360048201526024016109ea565b5f81600154811015611179575f8181526005602052604081205490600160e01b82169003611177575b805f03610fd257505f19015f81815260056020526040902054611159565b505b604051636f96cda160e11b815260040160405180910390fd5b6002600954036111e45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109ea565b6002600955565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611253828260405180602001604052805f815250611390565b5050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a029061128b9033908990889088906004016119a7565b6020604051808303815f875af19250505080156112c5575060408051601f3d908101601f191682019092526112c2918101906119e3565b60015b611321573d8080156112f2576040519150601f19603f3d011682016040523d82523d5f602084013e6112f7565b606091505b5080515f03611319576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600a805461065890611805565b606060a06040510180604052602081039150505f815280825b600183039250600a81066030018353600a9004806113665750819003601f19909101908152919050565b61139a83836113fb565b6001600160a01b0383163b15610a1a576001548281035b6113c35f868380600101945086611257565b6113e0576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113b15781600154146113f4575f80fd5b5050505050565b6001545f82900361141f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146114cb5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600101611495565b50815f036114eb57604051622e076360e81b815260040160405180910390fd5b60015550505050565b6001600160e01b031981168114610cbb575f80fd5b5f60208284031215611519575f80fd5b8135610fd2816114f4565b5f5b8381101561153e578181015183820152602001611526565b50505f910152565b5f815180845261155d816020860160208601611524565b601f01601f19169290920160200192915050565b602081525f610fd26020830184611546565b5f60208284031215611593575f80fd5b5035919050565b80356001600160a01b03811681146115b0575f80fd5b919050565b5f80604083850312156115c6575f80fd5b6115cf8361159a565b946020939093013593505050565b5f805f606084860312156115ef575f80fd5b6115f88461159a565b92506116066020850161159a565b9150604084013590509250925092565b5f8060208385031215611627575f80fd5b823567ffffffffffffffff8082111561163e575f80fd5b818501915085601f830112611651575f80fd5b81358181111561165f575f80fd5b866020828501011115611670575f80fd5b60209290920196919550909350505050565b5f60208284031215611692575f80fd5b610fd28261159a565b803580151581146115b0575f80fd5b5f80604083850312156116bb575f80fd5b6116c48361159a565b91506116d26020840161169b565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f8060808587031215611702575f80fd5b61170b8561159a565b93506117196020860161159a565b925060408501359150606085013567ffffffffffffffff8082111561173c575f80fd5b818701915087601f83011261174f575f80fd5b813581811115611761576117616116db565b604051601f8201601f19908116603f01168101908382118183101715611789576117896116db565b816040528281528a60208487010111156117a1575f80fd5b826020860160208301375f60208483010152809550505050505092959194509250565b5f602082840312156117d4575f80fd5b610fd28261169b565b5f80604083850312156117ee575f80fd5b6117f78361159a565b91506116d26020840161159a565b600181811c9082168061181957607f821691505b60208210810361183757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610a1a57805f5260205f20601f840160051c810160208510156118625750805b601f840160051c820191505b818110156113f4575f815560010161186e565b67ffffffffffffffff831115611899576118996116db565b6118ad836118a78354611805565b8361183d565b5f601f8411600181146118de575f85156118c75750838201355b5f19600387901b1c1916600186901b1783556113f4565b5f83815260208120601f198716915b8281101561190d57868501358255602094850194600190920191016118ed565b5086821015611929575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156106435761064361193b565b80820281158282048414176106435761064361193b565b5f835161198a818460208801611524565b83519083019061199e818360208801611524565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906119d990830184611546565b9695505050505050565b5f602082840312156119f3575f80fd5b8151610fd2816114f456fea26469706673582212206e7e5a3cf7d62a2cd6a783e686b614266b7ceeb8d420fbfed8ed5ec5f71c02de64736f6c63430008160033

Deployed Bytecode

0x608060405260043610610207575f3560e01c8063805dcae511610113578063c4e370951161009d578063dc33e6811161006d578063dc33e68114610567578063e985e9c514610586578063f19e75d4146105a5578063f2fde38b146105c4578063f968adbe146105e3575f80fd5b8063c4e37095146104f5578063c87b56dd14610514578063d49f0fa514610533578063d5abeb0114610552575f80fd5b8063a0712d68116100e3578063a0712d6814610486578063a0a01bf214610499578063a22cb465146104ae578063a7027357146104cd578063b88d4fde146104e2575f80fd5b8063805dcae5146104225780638da5cb5b1461044157806395d89b411461045d578063a035b1fe14610471575f80fd5b806342842e0e116101945780636d7c4a4b116101645780636d7c4a4b146103925780637040d73f146103b157806370a08231146103d0578063715018a6146103ef5780637c928fe914610403575f80fd5b806342842e0e1461032d57806355f804b3146103405780636352211e1461035f5780636c0360eb1461037e575f80fd5b806318160ddd116101da57806318160ddd146102ac578063228025e8146102ce57806323b872dd146102ed57806333bc1c5c146103005780633ccfd60b14610319575f80fd5b806301ffc9a71461020b57806306fdde031461023f578063081812fc14610260578063095ea7b314610297575b5f80fd5b348015610216575f80fd5b5061022a610225366004611509565b6105f8565b60405190151581526020015b60405180910390f35b34801561024a575f80fd5b50610253610649565b6040516102369190611571565b34801561026b575f80fd5b5061027f61027a366004611583565b6106d9565b6040516001600160a01b039091168152602001610236565b6102aa6102a53660046115b5565b61071b565b005b3480156102b7575f80fd5b50600254600154035b604051908152602001610236565b3480156102d9575f80fd5b506102aa6102e8366004611583565b6107b9565b6102aa6102fb3660046115dd565b6107c6565b34801561030b575f80fd5b50600b5461022a9060ff1681565b348015610324575f80fd5b506102aa610956565b6102aa61033b3660046115dd565b610a00565b34801561034b575f80fd5b506102aa61035a366004611616565b610a1f565b34801561036a575f80fd5b5061027f610379366004611583565b610a34565b348015610389575f80fd5b50610253610a3e565b34801561039d575f80fd5b506102aa6103ac366004611583565b610aca565b3480156103bc575f80fd5b506102aa6103cb366004611583565b610ad7565b3480156103db575f80fd5b506102c06103ea366004611682565b610ae4565b3480156103fa575f80fd5b506102aa610b31565b34801561040e575f80fd5b506102aa61041d366004611583565b610b42565b34801561042d575f80fd5b506102aa61043c366004611583565b610cbe565b34801561044c575f80fd5b505f546001600160a01b031661027f565b348015610468575f80fd5b50610253610ccb565b34801561047c575f80fd5b506102c0600d5481565b6102aa610494366004611583565b610cda565b3480156104a4575f80fd5b506102c0600c5481565b3480156104b9575f80fd5b506102aa6104c83660046116aa565b610e88565b3480156104d8575f80fd5b506102c0600e5481565b6102aa6104f03660046116ef565b610ef3565b348015610500575f80fd5b506102aa61050f3660046117c4565b610f3d565b34801561051f575f80fd5b5061025361052e366004611583565b610f58565b34801561053e575f80fd5b506102aa61054d366004611583565b610fd9565b34801561055d575f80fd5b506102c060105481565b348015610572575f80fd5b506102c0610581366004611682565b610fe6565b348015610591575f80fd5b5061022a6105a03660046117dd565b611010565b3480156105b0575f80fd5b506102aa6105bf366004611583565b61103d565b3480156105cf575f80fd5b506102aa6105de366004611682565b6110a4565b3480156105ee575f80fd5b506102c0600f5481565b5f6301ffc9a760e01b6001600160e01b03198316148061062857506380ac58cd60e01b6001600160e01b03198316145b806106435750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461065890611805565b80601f016020809104026020016040519081016040528092919081815260200182805461068490611805565b80156106cf5780601f106106a6576101008083540402835291602001916106cf565b820191905f5260205f20905b8154815290600101906020018083116106b257829003601f168201915b5050505050905090565b5f6106e3826110de565b610700576040516333d1c03960e21b815260040160405180910390fd5b505f908152600760205260409020546001600160a01b031690565b5f61072582610a34565b9050336001600160a01b0382161461075e576107418133611010565b61075e576040516367d9dca160e11b815260040160405180910390fd5b5f8281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6107c1611104565b601055565b5f6107d082611130565b9050836001600160a01b0316816001600160a01b0316146108035760405162a1148160e81b815260040160405180910390fd5b5f8281526007602052604090208054338082146001600160a01b0388169091141761084f576108328633611010565b61084f57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661087657604051633a954ecd60e21b815260040160405180910390fd5b8015610880575f82555b6001600160a01b038681165f9081526006602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260056020526040812091909155600160e11b8416900361090d57600184015f81815260056020526040812054900361090b57600154811461090b575f8181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b61095e611104565b610966611192565b6040515f90339047908381818185875af1925050503d805f81146109a5576040519150601f19603f3d011682016040523d82523d5f602084013e6109aa565b606091505b50509050806109f35760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b506109fe6001600955565b565b610a1a83838360405180602001604052805f815250610ef3565b505050565b610a27611104565b600a610a1a828483611881565b5f61064382611130565b600a8054610a4b90611805565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7790611805565b8015610ac25780601f10610a9957610100808354040283529160200191610ac2565b820191905f5260205f20905b815481529060010190602001808311610aa557829003601f168201915b505050505081565b610ad2611104565b600e55565b610adf611104565b600c55565b5f6001600160a01b038216610b0c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526006602052604090205467ffffffffffffffff1690565b610b39611104565b6109fe5f6111eb565b323314610b915760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109ea565b600b5460ff16610be35760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016109ea565b600c5481610bf46002546001540390565b610bfe919061194f565b1115610c4c5760405162461bcd60e51b815260206004820152601760248201527f52656163686564206d6178206672656520737570706c7900000000000000000060448201526064016109ea565b600e5481610c5933610fe6565b610c63919061194f565b1115610cb15760405162461bcd60e51b815260206004820152601960248201527f546f6f206d616e792066726565207065722077616c6c6574210000000000000060448201526064016109ea565b610cbb338261123a565b50565b610cc6611104565b600f55565b60606004805461065890611805565b323314610d295760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109ea565b600b5460ff16610d7b5760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e2079657400000060448201526064016109ea565b60105481610d8c6002546001540390565b610d96919061194f565b1115610dd95760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820737570706c7960701b60448201526064016109ea565b600f54811115610e2b5760405162461bcd60e51b815260206004820181905260248201527f63616e206e6f74206d696e742074686973206d616e7920617420612074696d6560448201526064016109ea565b3481600d54610e3a9190611962565b1015610cb15760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016109ea565b335f8181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610efe8484846107c6565b6001600160a01b0383163b15610f3757610f1a84848484611257565b610f37576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610f45611104565b600b805460ff1916911515919091179055565b6060610f63826110de565b610f8057604051630a14c4b560e41b815260040160405180910390fd5b5f610f8961133e565b905080515f03610fa75760405180602001604052805f815250610fd2565b80610fb18461134d565b604051602001610fc2929190611979565b6040516020818303038152906040525b9392505050565b610fe1611104565b600d55565b6001600160a01b0381165f908152600660205260408082205467ffffffffffffffff911c16610643565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205460ff1690565b611045611104565b60105461105390600161194f565b816110616002546001540390565b61106b919061194f565b10610cb15760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b60448201526064016109ea565b6110ac611104565b6001600160a01b0381166110d557604051631e4fbdf760e01b81525f60048201526024016109ea565b610cbb816111eb565b5f600154821080156106435750505f90815260056020526040902054600160e01b161590565b5f546001600160a01b031633146109fe5760405163118cdaa760e01b81523360048201526024016109ea565b5f81600154811015611179575f8181526005602052604081205490600160e01b82169003611177575b805f03610fd257505f19015f81815260056020526040902054611159565b505b604051636f96cda160e11b815260040160405180910390fd5b6002600954036111e45760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109ea565b6002600955565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611253828260405180602001604052805f815250611390565b5050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a029061128b9033908990889088906004016119a7565b6020604051808303815f875af19250505080156112c5575060408051601f3d908101601f191682019092526112c2918101906119e3565b60015b611321573d8080156112f2576040519150601f19603f3d011682016040523d82523d5f602084013e6112f7565b606091505b5080515f03611319576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600a805461065890611805565b606060a06040510180604052602081039150505f815280825b600183039250600a81066030018353600a9004806113665750819003601f19909101908152919050565b61139a83836113fb565b6001600160a01b0383163b15610a1a576001548281035b6113c35f868380600101945086611257565b6113e0576040516368d2bf6b60e11b815260040160405180910390fd5b8181106113b15781600154146113f4575f80fd5b5050505050565b6001545f82900361141f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146114cb5780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600101611495565b50815f036114eb57604051622e076360e81b815260040160405180910390fd5b60015550505050565b6001600160e01b031981168114610cbb575f80fd5b5f60208284031215611519575f80fd5b8135610fd2816114f4565b5f5b8381101561153e578181015183820152602001611526565b50505f910152565b5f815180845261155d816020860160208601611524565b601f01601f19169290920160200192915050565b602081525f610fd26020830184611546565b5f60208284031215611593575f80fd5b5035919050565b80356001600160a01b03811681146115b0575f80fd5b919050565b5f80604083850312156115c6575f80fd5b6115cf8361159a565b946020939093013593505050565b5f805f606084860312156115ef575f80fd5b6115f88461159a565b92506116066020850161159a565b9150604084013590509250925092565b5f8060208385031215611627575f80fd5b823567ffffffffffffffff8082111561163e575f80fd5b818501915085601f830112611651575f80fd5b81358181111561165f575f80fd5b866020828501011115611670575f80fd5b60209290920196919550909350505050565b5f60208284031215611692575f80fd5b610fd28261159a565b803580151581146115b0575f80fd5b5f80604083850312156116bb575f80fd5b6116c48361159a565b91506116d26020840161169b565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f805f8060808587031215611702575f80fd5b61170b8561159a565b93506117196020860161159a565b925060408501359150606085013567ffffffffffffffff8082111561173c575f80fd5b818701915087601f83011261174f575f80fd5b813581811115611761576117616116db565b604051601f8201601f19908116603f01168101908382118183101715611789576117896116db565b816040528281528a60208487010111156117a1575f80fd5b826020860160208301375f60208483010152809550505050505092959194509250565b5f602082840312156117d4575f80fd5b610fd28261169b565b5f80604083850312156117ee575f80fd5b6117f78361159a565b91506116d26020840161159a565b600181811c9082168061181957607f821691505b60208210810361183757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610a1a57805f5260205f20601f840160051c810160208510156118625750805b601f840160051c820191505b818110156113f4575f815560010161186e565b67ffffffffffffffff831115611899576118996116db565b6118ad836118a78354611805565b8361183d565b5f601f8411600181146118de575f85156118c75750838201355b5f19600387901b1c1916600186901b1783556113f4565b5f83815260208120601f198716915b8281101561190d57868501358255602094850194600190920191016118ed565b5086821015611929575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156106435761064361193b565b80820281158282048414176106435761064361193b565b5f835161198a818460208801611524565b83519083019061199e818360208801611524565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906119d990830184611546565b9695505050505050565b5f602082840312156119f3575f80fd5b8151610fd2816114f456fea26469706673582212206e7e5a3cf7d62a2cd6a783e686b614266b7ceeb8d420fbfed8ed5ec5f71c02de64736f6c63430008160033

Deployed Bytecode Sourcemap

65660:2950:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28468:639;;;;;;;;;;-1:-1:-1;28468:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28468:639:0;;;;;;;;29370:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35861:218::-;;;;;;;;;;-1:-1:-1;35861:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;35861:218:0;1533:203:1;35294:408:0;;;;;;:::i;:::-;;:::i;:::-;;25121:323;;;;;;;;;;-1:-1:-1;25395:12:0;;25379:13;;:28;25121:323;;;2324:25:1;;;2312:2;2297:18;25121:323:0;2178:177:1;67779:98:0;;;;;;;;;;-1:-1:-1;67779:98:0;;;;;:::i;:::-;;:::i;39500:2825::-;;;;;;:::i;:::-;;:::i;65775:61::-;;;;;;;;;;-1:-1:-1;65775:61:0;;;;;;;;68290:186;;;;;;;;;;;;;:::i;42421:193::-;;;;;;:::i;:::-;;:::i;68078:96::-;;;;;;;;;;-1:-1:-1;68078:96:0;;;;;:::i;:::-;;:::i;30763:152::-;;;;;;;;;;-1:-1:-1;30763:152:0;;;;;:::i;:::-;;:::i;65739:29::-;;;;;;;;;;;;;:::i;66868:126::-;;;;;;;;;;-1:-1:-1;66868:126:0;;;;;:::i;:::-;;:::i;66419:78::-;;;;;;;;;;-1:-1:-1;66419:78:0;;;;;:::i;:::-;;:::i;26305:233::-;;;;;;;;;;-1:-1:-1;26305:233:0;;;;;:::i;:::-;;:::i;64753:103::-;;;;;;;;;;;;;:::i;66505:355::-;;;;;;;;;;-1:-1:-1;66505:355:0;;;;;:::i;:::-;;:::i;67679:94::-;;;;;;;;;;-1:-1:-1;67679:94:0;;;;;:::i;:::-;;:::i;64078:87::-;;;;;;;;;;-1:-1:-1;64124:7:0;64151:6;-1:-1:-1;;;;;64151:6:0;64078:87;;29546:104;;;;;;;;;;;;;:::i;65907:67::-;;;;;;;;;;;;;;;;67002:490;;;;;;:::i;:::-;;:::i;65843:57::-;;;;;;;;;;;;;;;;36419:234;;;;;;;;;;-1:-1:-1;36419:234:0;;;;;:::i;:::-;;:::i;65981:57::-;;;;;;;;;;;;;;;;43212:407;;;;;;:::i;:::-;;:::i;67980:90::-;;;;;;;;;;-1:-1:-1;67980:90:0;;;;;:::i;:::-;;:::i;29756:318::-;;;;;;;;;;-1:-1:-1;29756:318:0;;;;;:::i;:::-;;:::i;67884:84::-;;;;;;;;;;-1:-1:-1;67884:84:0;;;;;:::i;:::-;;:::i;66110:57::-;;;;;;;;;;;;;;;;68486:113;;;;;;;;;;-1:-1:-1;68486:113:0;;;;;:::i;:::-;;:::i;36810:164::-;;;;;;;;;;-1:-1:-1;36810:164:0;;;;;:::i;:::-;;:::i;67498:173::-;;;;;;;;;;-1:-1:-1;67498:173:0;;;;;:::i;:::-;;:::i;65011:220::-;;;;;;;;;;-1:-1:-1;65011:220:0;;;;;:::i;:::-;;:::i;66045:58::-;;;;;;;;;;;;;;;;28468:639;28553:4;-1:-1:-1;;;;;;;;;28877:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;28954:25:0;;;28877:102;:179;;;-1:-1:-1;;;;;;;;;;29031:25:0;;;28877:179;28857:199;28468:639;-1:-1:-1;;28468:639:0:o;29370:100::-;29424:13;29457:5;29450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29370:100;:::o;35861:218::-;35937:7;35962:16;35970:7;35962;:16::i;:::-;35957:64;;35987:34;;-1:-1:-1;;;35987:34:0;;;;;;;;;;;35957:64;-1:-1:-1;36041:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;36041:30:0;;35861:218::o;35294:408::-;35383:13;35399:16;35407:7;35399;:16::i;:::-;35383:32;-1:-1:-1;59627:10:0;-1:-1:-1;;;;;35432:28:0;;;35428:175;;35480:44;35497:5;59627:10;36810:164;:::i;35480:44::-;35475:128;;35552:35;;-1:-1:-1;;;35552:35:0;;;;;;;;;;;35475:128;35615:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;35615:35:0;-1:-1:-1;;;;;35615:35:0;;;;;;;;;35666:28;;35615:24;;35666:28;;;;;;;35372:330;35294:408;;:::o;67779:98::-;63964:13;:11;:13::i;:::-;67849:9:::1;:22:::0;67779:98::o;39500:2825::-;39642:27;39672;39691:7;39672:18;:27::i;:::-;39642:57;;39757:4;-1:-1:-1;;;;;39716:45:0;39732:19;-1:-1:-1;;;;;39716:45:0;;39712:86;;39770:28;;-1:-1:-1;;;39770:28:0;;;;;;;;;;;39712:86;39812:27;38608:24;;;:15;:24;;;;;38836:26;;59627:10;38233:30;;;-1:-1:-1;;;;;37926:28:0;;38211:20;;;38208:56;39998:180;;40091:43;40108:4;59627:10;36810:164;:::i;40091:43::-;40086:92;;40143:35;;-1:-1:-1;;;40143:35:0;;;;;;;;;;;40086:92;-1:-1:-1;;;;;40195:16:0;;40191:52;;40220:23;;-1:-1:-1;;;40220:23:0;;;;;;;;;;;40191:52;40392:15;40389:160;;;40532:1;40511:19;40504:30;40389:160;-1:-1:-1;;;;;40929:24:0;;;;;;;:18;:24;;;;;;40927:26;;-1:-1:-1;;40927:26:0;;;40998:22;;;;;;;;;40996:24;;-1:-1:-1;40996:24:0;;;34152:11;34127:23;34123:41;34110:63;-1:-1:-1;;;34110:63:0;41291:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;41586:47:0;;:52;;41582:627;;41691:1;41681:11;;41659:19;41814:30;;;:17;:30;;;;;;:35;;41810:384;;41952:13;;41937:11;:28;41933:242;;42099:30;;;;:17;:30;;;;;:52;;;41933:242;41640:569;41582:627;42256:7;42252:2;-1:-1:-1;;;;;42237:27:0;42246:4;-1:-1:-1;;;;;42237:27:0;;;;;;;;;;;39631:2694;;;39500:2825;;;:::o;68290:186::-;63964:13;:11;:13::i;:::-;9169:21:::1;:19;:21::i;:::-;68372:49:::2;::::0;68354:12:::2;::::0;68372:10:::2;::::0;68395:21:::2;::::0;68354:12;68372:49;68354:12;68372:49;68395:21;68372:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68353:68;;;68440:7;68432:36;;;::::0;-1:-1:-1;;;68432:36:0;;6427:2:1;68432:36:0::2;::::0;::::2;6409:21:1::0;6466:2;6446:18;;;6439:30;-1:-1:-1;;;6485:18:1;;;6478:46;6541:18;;68432:36:0::2;;;;;;;;;68342:134;9213:20:::1;8607:1:::0;9733:7;:22;9550:213;9213:20:::1;68290:186::o:0;42421:193::-;42567:39;42584:4;42590:2;42594:7;42567:39;;;;;;;;;;;;:16;:39::i;:::-;42421:193;;;:::o;68078:96::-;63964:13;:11;:13::i;:::-;68150:7:::1;:18;68160:8:::0;;68150:7;:18:::1;:::i;30763:152::-:0;30835:7;30878:27;30897:7;30878:18;:27::i;65739:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;66868:126::-;63964:13;:11;:13::i;:::-;66952:16:::1;:36:::0;66868:126::o;66419:78::-;63964:13;:11;:13::i;:::-;66478:6:::1;:11:::0;66419:78::o;26305:233::-;26377:7;-1:-1:-1;;;;;26401:19:0;;26397:60;;26429:28;;-1:-1:-1;;;26429:28:0;;;;;;;;;;;26397:60;-1:-1:-1;;;;;;26475:25:0;;;;;:18;:25;;;;;;20464:13;26475:55;;26305:233::o;64753:103::-;63964:13;:11;:13::i;:::-;64818:30:::1;64845:1;64818:18;:30::i;66505:355::-:0;66333:9;66346:10;66333:23;66325:66;;;;-1:-1:-1;;;66325:66:0;;8795:2:1;66325:66:0;;;8777:21:1;8834:2;8814:18;;;8807:30;8873:32;8853:18;;;8846:60;8923:18;;66325:66:0;8593:354:1;66325:66:0;66582:10:::1;::::0;::::1;;66574:52;;;::::0;-1:-1:-1;;;66574:52:0;;9154:2:1;66574:52:0::1;::::0;::::1;9136:21:1::0;9193:2;9173:18;;;9166:30;9232:31;9212:18;;;9205:59;9281:18;;66574:52:0::1;8952:353:1::0;66574:52:0::1;66673:6;;66661:8;66645:13;25395:12:::0;;25379:13;;:28;;25121:323;66645:13:::1;:24;;;;:::i;:::-;:34;;66637:70;;;::::0;-1:-1:-1;;;66637:70:0;;9774:2:1;66637:70:0::1;::::0;::::1;9756:21:1::0;9813:2;9793:18;;;9786:30;9852:25;9832:18;;;9825:53;9895:18;;66637:70:0::1;9572:347:1::0;66637:70:0::1;66765:16;;66753:8;66726:24;66739:10;66726:12;:24::i;:::-;:35;;;;:::i;:::-;:55;;66718:92;;;::::0;-1:-1:-1;;;66718:92:0;;10126:2:1;66718:92:0::1;::::0;::::1;10108:21:1::0;10165:2;10145:18;;;10138:30;10204:27;10184:18;;;10177:55;10249:18;;66718:92:0::1;9924:349:1::0;66718:92:0::1;66821:31;66831:10;66843:8;66821:9;:31::i;:::-;66505:355:::0;:::o;67679:94::-;63964:13;:11;:13::i;:::-;67747:8:::1;:20:::0;67679:94::o;29546:104::-;29602:13;29635:7;29628:14;;;;;:::i;67002:490::-;66333:9;66346:10;66333:23;66325:66;;;;-1:-1:-1;;;66325:66:0;;8795:2:1;66325:66:0;;;8777:21:1;8834:2;8814:18;;;8807:30;8873:32;8853:18;;;8846:60;8923:18;;66325:66:0;8593:354:1;66325:66:0;67083:10:::1;::::0;::::1;;67075:52;;;::::0;-1:-1:-1;;;67075:52:0;;9154:2:1;67075:52:0::1;::::0;::::1;9136:21:1::0;9193:2;9173:18;;;9166:30;9232:31;9212:18;;;9205:59;9281:18;;67075:52:0::1;8952:353:1::0;67075:52:0::1;67188:9;;67176:8;67160:13;25395:12:::0;;25379:13;;:28;;25121:323;67160:13:::1;:24;;;;:::i;:::-;:37;;67138:105;;;::::0;-1:-1:-1;;;67138:105:0;;10480:2:1;67138:105:0::1;::::0;::::1;10462:21:1::0;10519:2;10499:18;;;10492:30;-1:-1:-1;;;10538:18:1;;;10531:48;10596:18;;67138:105:0::1;10278:342:1::0;67138:105:0::1;67274:8;;67262;:20;;67254:65;;;::::0;-1:-1:-1;;;67254:65:0;;10827:2:1;67254:65:0::1;::::0;::::1;10809:21:1::0;;;10846:18;;;10839:30;10905:34;10885:18;;;10878:62;10957:18;;67254:65:0::1;10625:356:1::0;67254:65:0::1;67372:9;67360:8;67352:5;;:16;;;;:::i;:::-;:29;;67330:110;;;::::0;-1:-1:-1;;;67330:110:0;;11361:2:1;67330:110:0::1;::::0;::::1;11343:21:1::0;11400:2;11380:18;;;11373:30;11439:33;11419:18;;;11412:61;11490:18;;67330:110:0::1;11159:355:1::0;36419:234:0;59627:10;36514:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;36514:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;36514:60:0;;;;;;;;;;36590:55;;540:41:1;;;36514:49:0;;59627:10;36590:55;;513:18:1;36590:55:0;;;;;;;36419:234;;:::o;43212:407::-;43387:31;43400:4;43406:2;43410:7;43387:12;:31::i;:::-;-1:-1:-1;;;;;43433:14:0;;;:19;43429:183;;43472:56;43503:4;43509:2;43513:7;43522:5;43472:30;:56::i;:::-;43467:145;;43556:40;;-1:-1:-1;;;43556:40:0;;;;;;;;;;;43467:145;43212:407;;;;:::o;67980:90::-;63964:13;:11;:13::i;:::-;68044:10:::1;:18:::0;;-1:-1:-1;;68044:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;67980:90::o;29756:318::-;29829:13;29860:16;29868:7;29860;:16::i;:::-;29855:59;;29885:29;;-1:-1:-1;;;29885:29:0;;;;;;;;;;;29855:59;29927:21;29951:10;:8;:10::i;:::-;29927:34;;29985:7;29979:21;30004:1;29979:26;:87;;;;;;;;;;;;;;;;;30032:7;30041:18;30051:7;30041:9;:18::i;:::-;30015:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29979:87;29972:94;29756:318;-1:-1:-1;;;29756:318:0:o;67884:84::-;63964:13;:11;:13::i;:::-;67946:5:::1;:17:::0;67884:84::o;68486:113::-;-1:-1:-1;;;;;26709:25:0;;68544:7;26709:25;;;:18;:25;;20602:2;26709:25;;;;20464:13;26709:50;;26708:82;68571:20;26620:178;36810:164;-1:-1:-1;;;;;36931:25:0;;;36907:4;36931:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36810:164::o;67498:173::-;63964:13;:11;:13::i;:::-;67599:9:::1;::::0;:13:::1;::::0;67611:1:::1;67599:13;:::i;:::-;67588:8;67572:13;25395:12:::0;;25379:13;;:28;;25121:323;67572:13:::1;:24;;;;:::i;:::-;:40;67564:61;;;::::0;-1:-1:-1;;;67564:61:0;;12222:2:1;67564:61:0::1;::::0;::::1;12204:21:1::0;12261:1;12241:18;;;12234:29;-1:-1:-1;;;12279:18:1;;;12272:39;12328:18;;67564:61:0::1;12020:332:1::0;65011:220:0;63964:13;:11;:13::i;:::-;-1:-1:-1;;;;;65096:22:0;::::1;65092:93;;65142:31;::::0;-1:-1:-1;;;65142:31:0;;65170:1:::1;65142:31;::::0;::::1;1679:51:1::0;1652:18;;65142:31:0::1;1533:203:1::0;65092:93:0::1;65195:28;65214:8;65195:18;:28::i;37232:282::-:0;37297:4;37387:13;;37377:7;:23;37334:153;;;;-1:-1:-1;;37438:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;37438:44:0;:49;;37232:282::o;64243:166::-;64124:7;64151:6;-1:-1:-1;;;;;64151:6:0;59627:10;64303:23;64299:103;;64350:40;;-1:-1:-1;;;64350:40:0;;59627:10;64350:40;;;1679:51:1;1652:18;;64350:40:0;1533:203:1;31918:1275:0;31985:7;32020;32122:13;;32115:4;:20;32111:1015;;;32160:14;32177:23;;;:17;:23;;;;;;;-1:-1:-1;;;32266:24:0;;:29;;32262:845;;32931:113;32938:6;32948:1;32938:11;32931:113;;-1:-1:-1;;;33009:6:0;32991:25;;;;:17;:25;;;;;;32931:113;;32262:845;32137:989;32111:1015;33154:31;;-1:-1:-1;;;33154:31:0;;;;;;;;;;;9249:293;8651:1;9383:7;;:19;9375:63;;;;-1:-1:-1;;;9375:63:0;;12559:2:1;9375:63:0;;;12541:21:1;12598:2;12578:18;;;12571:30;12637:33;12617:18;;;12610:61;12688:18;;9375:63:0;12357:355:1;9375:63:0;8651:1;9516:7;:18;9249:293::o;65391:191::-;65465:16;65484:6;;-1:-1:-1;;;;;65501:17:0;;;-1:-1:-1;;;;;;65501:17:0;;;;;;65534:40;;65484:6;;;;;;;65534:40;;65465:16;65534:40;65454:128;65391:191;:::o;53372:112::-;53449:27;53459:2;53463:8;53449:27;;;;;;;;;;;;:9;:27::i;:::-;53372:112;;:::o;45703:716::-;45887:88;;-1:-1:-1;;;45887:88:0;;45866:4;;-1:-1:-1;;;;;45887:45:0;;;;;:88;;59627:10;;45954:4;;45960:7;;45969:5;;45887:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45887:88:0;;;;;;;;-1:-1:-1;;45887:88:0;;;;;;;;;;;;:::i;:::-;;;45883:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46170:6;:13;46187:1;46170:18;46166:235;;46216:40;;-1:-1:-1;;;46216:40:0;;;;;;;;;;;46166:235;46359:6;46353:13;46344:6;46340:2;46336:15;46329:38;45883:529;-1:-1:-1;;;;;;46046:64:0;-1:-1:-1;;;46046:64:0;;-1:-1:-1;45703:716:0;;;;;;:::o;68180:102::-;68240:13;68269:7;68262:14;;;;;:::i;59747:1745::-;59812:17;60246:4;60239;60233:11;60229:22;60338:1;60332:4;60325:15;60413:4;60410:1;60406:12;60399:19;;;60495:1;60490:3;60483:14;60599:3;60838:5;60820:428;60886:1;60881:3;60877:11;60870:18;;61057:2;61051:4;61047:13;61043:2;61039:22;61034:3;61026:36;61151:2;61141:13;;61208:25;60820:428;61208:25;-1:-1:-1;61278:13:0;;;-1:-1:-1;;61393:14:0;;;61455:19;;;61393:14;59747:1745;-1:-1:-1;59747:1745:0:o;52599:689::-;52730:19;52736:2;52740:8;52730:5;:19::i;:::-;-1:-1:-1;;;;;52791:14:0;;;:19;52787:483;;52845:13;;52893:14;;;52926:233;52957:62;52996:1;53000:2;53004:7;;;;;;53013:5;52957:30;:62::i;:::-;52952:167;;53055:40;;-1:-1:-1;;;53055:40:0;;;;;;;;;;;52952:167;53154:3;53146:5;:11;52926:233;;53241:3;53224:13;;:20;53220:34;;53246:8;;;53220:34;52812:458;;52599:689;;;:::o;46881:2966::-;46977:13;;46954:20;47005:13;;;47001:44;;47027:18;;-1:-1:-1;;;47027:18:0;;;;;;;;;;;47001:44;-1:-1:-1;;;;;47533:22:0;;;;;;:18;:22;;;;20602:2;47533:22;;;:71;;47571:32;47559:45;;47533:71;;;47847:31;;;:17;:31;;;;;-1:-1:-1;34583:15:0;;34557:24;34553:46;34152:11;34127:23;34123:41;34120:52;34110:63;;47847:173;;48082:23;;;;47847:31;;47533:22;;48847:25;47533:22;;48700:335;49361:1;49347:12;49343:20;49301:346;49402:3;49393:7;49390:16;49301:346;;49620:7;49610:8;49607:1;49580:25;49577:1;49574;49569:59;49455:1;49442:15;49301:346;;;49305:77;49680:8;49692:1;49680:13;49676:45;;49702:19;;-1:-1:-1;;;49702:19:0;;;;;;;;;;;49676:45;49738:13;:19;-1:-1:-1;42421:193:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:592::-;2764:6;2772;2825:2;2813:9;2804:7;2800:23;2796:32;2793:52;;;2841:1;2838;2831:12;2793:52;2881:9;2868:23;2910:18;2951:2;2943:6;2940:14;2937:34;;;2967:1;2964;2957:12;2937:34;3005:6;2994:9;2990:22;2980:32;;3050:7;3043:4;3039:2;3035:13;3031:27;3021:55;;3072:1;3069;3062:12;3021:55;3112:2;3099:16;3138:2;3130:6;3127:14;3124:34;;;3154:1;3151;3144:12;3124:34;3199:7;3194:2;3185:6;3181:2;3177:15;3173:24;3170:37;3167:57;;;3220:1;3217;3210:12;3167:57;3251:2;3243:11;;;;;3273:6;;-1:-1:-1;2693:592:1;;-1:-1:-1;;;;2693:592:1:o;3290:186::-;3349:6;3402:2;3390:9;3381:7;3377:23;3373:32;3370:52;;;3418:1;3415;3408:12;3370:52;3441:29;3460:9;3441:29;:::i;3481:160::-;3546:20;;3602:13;;3595:21;3585:32;;3575:60;;3631:1;3628;3621:12;3646:254;3711:6;3719;3772:2;3760:9;3751:7;3747:23;3743:32;3740:52;;;3788:1;3785;3778:12;3740:52;3811:29;3830:9;3811:29;:::i;:::-;3801:39;;3859:35;3890:2;3879:9;3875:18;3859:35;:::i;:::-;3849:45;;3646:254;;;;;:::o;3905:127::-;3966:10;3961:3;3957:20;3954:1;3947:31;3997:4;3994:1;3987:15;4021:4;4018:1;4011:15;4037:1138;4132:6;4140;4148;4156;4209:3;4197:9;4188:7;4184:23;4180:33;4177:53;;;4226:1;4223;4216:12;4177:53;4249:29;4268:9;4249:29;:::i;:::-;4239:39;;4297:38;4331:2;4320:9;4316:18;4297:38;:::i;:::-;4287:48;;4382:2;4371:9;4367:18;4354:32;4344:42;;4437:2;4426:9;4422:18;4409:32;4460:18;4501:2;4493:6;4490:14;4487:34;;;4517:1;4514;4507:12;4487:34;4555:6;4544:9;4540:22;4530:32;;4600:7;4593:4;4589:2;4585:13;4581:27;4571:55;;4622:1;4619;4612:12;4571:55;4658:2;4645:16;4680:2;4676;4673:10;4670:36;;;4686:18;;:::i;:::-;4761:2;4755:9;4729:2;4815:13;;-1:-1:-1;;4811:22:1;;;4835:2;4807:31;4803:40;4791:53;;;4859:18;;;4879:22;;;4856:46;4853:72;;;4905:18;;:::i;:::-;4945:10;4941:2;4934:22;4980:2;4972:6;4965:18;5020:7;5015:2;5010;5006;5002:11;4998:20;4995:33;4992:53;;;5041:1;5038;5031:12;4992:53;5097:2;5092;5088;5084:11;5079:2;5071:6;5067:15;5054:46;5142:1;5137:2;5132;5124:6;5120:15;5116:24;5109:35;5163:6;5153:16;;;;;;;4037:1138;;;;;;;:::o;5180:180::-;5236:6;5289:2;5277:9;5268:7;5264:23;5260:32;5257:52;;;5305:1;5302;5295:12;5257:52;5328:26;5344:9;5328:26;:::i;5365:260::-;5433:6;5441;5494:2;5482:9;5473:7;5469:23;5465:32;5462:52;;;5510:1;5507;5500:12;5462:52;5533:29;5552:9;5533:29;:::i;:::-;5523:39;;5581:38;5615:2;5604:9;5600:18;5581:38;:::i;5630:380::-;5709:1;5705:12;;;;5752;;;5773:61;;5827:4;5819:6;5815:17;5805:27;;5773:61;5880:2;5872:6;5869:14;5849:18;5846:38;5843:161;;5926:10;5921:3;5917:20;5914:1;5907:31;5961:4;5958:1;5951:15;5989:4;5986:1;5979:15;5843:161;;5630:380;;;:::o;6696:518::-;6798:2;6793:3;6790:11;6787:421;;;6834:5;6831:1;6824:16;6878:4;6875:1;6865:18;6948:2;6936:10;6932:19;6929:1;6925:27;6919:4;6915:38;6984:4;6972:10;6969:20;6966:47;;;-1:-1:-1;7007:4:1;6966:47;7062:2;7057:3;7053:12;7050:1;7046:20;7040:4;7036:31;7026:41;;7117:81;7135:2;7128:5;7125:13;7117:81;;;7194:1;7180:16;;7161:1;7150:13;7117:81;;7390:1198;7514:18;7509:3;7506:27;7503:53;;;7536:18;;:::i;:::-;7565:94;7655:3;7615:38;7647:4;7641:11;7615:38;:::i;:::-;7609:4;7565:94;:::i;:::-;7685:1;7710:2;7705:3;7702:11;7727:1;7722:608;;;;8374:1;8391:3;8388:93;;;-1:-1:-1;8447:19:1;;;8434:33;8388:93;-1:-1:-1;;7347:1:1;7343:11;;;7339:24;7335:29;7325:40;7371:1;7367:11;;;7322:57;8494:78;;7695:887;;7722:608;6643:1;6636:14;;;6680:4;6667:18;;-1:-1:-1;;7758:17:1;;;7873:229;7887:7;7884:1;7881:14;7873:229;;;7976:19;;;7963:33;7948:49;;8083:4;8068:20;;;;8036:1;8024:14;;;;7903:12;7873:229;;;7877:3;8130;8121:7;8118:16;8115:159;;;8254:1;8250:6;8244:3;8238;8235:1;8231:11;8227:21;8223:34;8219:39;8206:9;8201:3;8197:19;8184:33;8180:79;8172:6;8165:95;8115:159;;;8317:1;8311:3;8308:1;8304:11;8300:19;8294:4;8287:33;7695:887;;7390:1198;;;:::o;9310:127::-;9371:10;9366:3;9362:20;9359:1;9352:31;9402:4;9399:1;9392:15;9426:4;9423:1;9416:15;9442:125;9507:9;;;9528:10;;;9525:36;;;9541:18;;:::i;10986:168::-;11059:9;;;11090;;11107:15;;;11101:22;;11087:37;11077:71;;11128:18;;:::i;11519:496::-;11698:3;11736:6;11730:13;11752:66;11811:6;11806:3;11799:4;11791:6;11787:17;11752:66;:::i;:::-;11881:13;;11840:16;;;;11903:70;11881:13;11840:16;11950:4;11938:17;;11903:70;:::i;:::-;11989:20;;11519:496;-1:-1:-1;;;;11519:496:1:o;12717:489::-;-1:-1:-1;;;;;12986:15:1;;;12968:34;;13038:15;;13033:2;13018:18;;13011:43;13085:2;13070:18;;13063:34;;;13133:3;13128:2;13113:18;;13106:31;;;12911:4;;13154:46;;13180:19;;13172:6;13154:46;:::i;:::-;13146:54;12717:489;-1:-1:-1;;;;;;12717:489:1:o;13211:249::-;13280:6;13333:2;13321:9;13312:7;13308:23;13304:32;13301:52;;;13349:1;13346;13339:12;13301:52;13381:9;13375:16;13400:30;13424:5;13400:30;:::i

Swarm Source

ipfs://6e7e5a3cf7d62a2cd6a783e686b614266b7ceeb8d420fbfed8ed5ec5f71c02de
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.