ETH Price: $2,993.56 (-1.89%)
Gas: 2 Gwei

Token

CROCOS (CROCOS)
 

Overview

Max Total Supply

1,770 CROCOS

Holders

718

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
9990666.eth
Balance
4 CROCOS
0xc33b6992331166c37263d54fb94cf85fb40a7166
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:
CROCOS

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-11-23
*/

// 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/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.20;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(
        uint256 tokenId,
        uint256 salePrice
    ) external view returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v5.0.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.20;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 tokenId => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev The default royalty set is invalid (eg. (numerator / denominator) >= 1).
     */
    error ERC2981InvalidDefaultRoyalty(uint256 numerator, uint256 denominator);

    /**
     * @dev The default royalty receiver is invalid.
     */
    error ERC2981InvalidDefaultRoyaltyReceiver(address receiver);

    /**
     * @dev The royalty set for an specific `tokenId` is invalid (eg. (numerator / denominator) >= 1).
     */
    error ERC2981InvalidTokenRoyalty(uint256 tokenId, uint256 numerator, uint256 denominator);

    /**
     * @dev The royalty receiver for `tokenId` is invalid.
     */
    error ERC2981InvalidTokenRoyaltyReceiver(uint256 tokenId, address receiver);

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        uint256 denominator = _feeDenominator();
        if (feeNumerator > denominator) {
            // Royalty fee will exceed the sale price
            revert ERC2981InvalidDefaultRoyalty(feeNumerator, denominator);
        }
        if (receiver == address(0)) {
            revert ERC2981InvalidDefaultRoyaltyReceiver(address(0));
        }

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual {
        uint256 denominator = _feeDenominator();
        if (feeNumerator > denominator) {
            // Royalty fee will exceed the sale price
            revert ERC2981InvalidTokenRoyalty(tokenId, feeNumerator, denominator);
        }
        if (receiver == address(0)) {
            revert ERC2981InvalidTokenRoyaltyReceiver(tokenId, address(0));
        }

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.20;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the Merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates Merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     *@dev The multiproof provided is not valid.
     */
    error MerkleProofInvalidMultiproof();

    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Sorts the pair (a, b) and hashes the result.
     */
    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    /**
     * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.
     */
    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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



// Developer: Fazel Pejmanfar, Twitter: @Pejmanfarfazel


pragma solidity >=0.7.0 <0.9.0;






contract CROCOS is ERC721A, Ownable, ReentrancyGuard, ERC2981 {
    string public baseURI;
    string public notRevealedUri = "ipfs://bafkreibtcwpzsc2lsghq6p47gaha7d7mnvokceof2sslwaoexkvohgf2x4";
    uint256 public cost = 0.0055 ether;
    uint256 public wlcost = 0.0044 ether;
    uint256 public maxSupply = 6666;
    uint256 public wlSupply = 4500;
    uint256 public MaxperWallet = 4;
    uint256 public MaxperWalletWl = 3;
    bool public paused = true;
    bool public revealed = false;
    bool public preSale = false;
    bool public publicSale = false;
    bytes32 public merkleRoot;
    mapping(address => uint256) public PublicMintofUser;
    mapping(address => uint256) public WhitelistedMintofUser;
    mapping(address => bool) public isMintedForFree;

    constructor() ERC721A("CROCOS", "CROCOS") Ownable(msg.sender) {}

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

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    /// @dev Public mint
    function mint(uint256 tokens) public payable nonReentrant {
        require(!paused, "Sale is paused");
        require(publicSale, "Public Sale Hasn't started yet");
        require(tokens <= MaxperWallet, "max mint amount per tx exceeded");
        require(totalSupply() + tokens <= maxSupply, "Soldout");
        require(
            PublicMintofUser[_msgSenderERC721A()] + tokens <= MaxperWallet,
            "Max NFT Per Wallet exceeded"
        );
        require(msg.value >= cost * tokens, "insufficient funds");

        PublicMintofUser[_msgSenderERC721A()] += tokens;
        _safeMint(_msgSenderERC721A(), tokens);
    }

    /// @dev presale mint for whitelisted users
    function presalemint(uint256 tokens, bytes32[] calldata merkleProof)
        public
        payable
        nonReentrant
    {
        require(!paused, "Sale is paused");
        require(preSale, "Presale Hasn't started yet");
        require(
            MerkleProof.verify(
                merkleProof,
                merkleRoot,
                keccak256(abi.encodePacked(msg.sender))
            ),
            "You are not Whitelisted"
        );
        require(
            WhitelistedMintofUser[_msgSenderERC721A()] + tokens <=
                MaxperWalletWl,
            "Max NFT Per Wallet exceeded"
        );
        require(tokens <= MaxperWalletWl, "max mint per Tx exceeded");
        require(
            totalSupply() + tokens <= wlSupply,
            "Whitelist MaxSupply exceeded"
        );

        if (!isMintedForFree[_msgSenderERC721A()]) {
            uint256 pricetopay = tokens - 1;
            require(msg.value >= wlcost * pricetopay, "insufficient funds");
            isMintedForFree[_msgSenderERC721A()] = true;
        } else {
            require(msg.value >= wlcost * tokens, "insufficient funds");
        }

        WhitelistedMintofUser[_msgSenderERC721A()] += tokens;
        _safeMint(_msgSenderERC721A(), tokens);
    }

    /// @dev use it for giveaway and team mint
    function airdrop(uint256 _mintAmount, address[] calldata destination)
        public
        onlyOwner
        nonReentrant
    {
        uint256 totalnft = _mintAmount * destination.length;
        require(
            totalSupply() + totalnft <= maxSupply,
            "max NFT limit exceeded"
        );
        for (uint256 i = 0; i < destination.length; i++) {
            _safeMint(destination[i], _mintAmount);
        }
    }

    /// @notice returns metadata link of tokenid
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721AMetadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _toString(tokenId),
                        ".json"
                    )
                )
                : "";
    }

    /// @notice return the total number minted by an address
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    /// @notice return all tokens owned by an address
    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (
                uint256 i = _startTokenId();
                tokenIdsIdx != tokenIdsLength;
                ++i
            ) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }

    /// @dev to reveal collection, true for reveal
    function reveal(bool _state) public onlyOwner {
        revealed = _state;
    }

    /// @dev change the merkle root for the whitelist phase
    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    /// @dev change the public max per wallet
    function setMaxPerWallet(uint256 _limit) public onlyOwner {
        MaxperWallet = _limit;
    }

    /// @dev change the whitelist max per wallet
    function setWlMaxPerWallet(uint256 _limit) public onlyOwner {
        MaxperWalletWl = _limit;
    }

    /// @dev change the public price(amount need to be in wei)
    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    /// @dev change the whitelist price(amount need to be in wei)
    function setWlCost(uint256 _newWlCost) public onlyOwner {
        wlcost = _newWlCost;
    }

    /// @dev cut the supply if we dont sold out
    function setMaxsupply(uint256 _newsupply) public onlyOwner {
        maxSupply = _newsupply;
    }

        /// @dev cut the supply if we dont sold out
    function setwlsupply(uint256 _newsupply) public onlyOwner {
        wlSupply = _newsupply;
    }

    /// @dev set your baseuri
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

    /// @dev set hidden uri
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    /// @dev to pause and unpause your contract(use booleans true or false)
    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    /// @dev activate whitelist sale(use booleans true or false)
    function togglepreSale(bool _state) external onlyOwner {
        preSale = _state;
    }

    /// @dev activate public sale(use booleans true or false)
    function togglepublicSale(bool _state) external onlyOwner {
        publicSale = _state;
    }

    /// @dev withdraw funds from contract
    function withdraw() public payable onlyOwner nonReentrant {
        uint256 balance = address(this).balance * 90 / 100;
        uint256 balanceSecond = address(this).balance * 10 / 100;
        payable(0x28EF4800417bEddDEDEbDeE594845A41C8c22fBe).transfer(balanceSecond);
        payable(_msgSenderERC721A()).transfer(balance);
    }

    // ERC2981 functions
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, ERC2981)
        returns (bool)
    {
        return
            ERC721A.supportsInterface(interfaceId) ||
            ERC2981.supportsInterface(interfaceId);
    }

    /// @dev set royalty %, eg. 500 = 5%
    function setRoyaltyInfo(address _receiver, uint96 _feeNumerator)
        external
        onlyOwner
    {
        _setDefaultRoyalty(_receiver, _feeNumerator);
    }

    function deleteRoyalty() external onlyOwner {
        _deleteDefaultRoyalty();
    }
}

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":[{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidDefaultRoyalty","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidDefaultRoyaltyReceiver","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidTokenRoyalty","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidTokenRoyaltyReceiver","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":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"PublicMintofUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WhitelistedMintofUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address[]","name":"destination","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteRoyalty","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":[{"internalType":"address","name":"","type":"address"}],"name":"isMintedForFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemint","outputs":[],"stateMutability":"payable","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":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setwlsupply","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":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"payable","type":"function"},{"inputs":[],"name":"wlSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

610100604052604260808181529062002a7260a039600d90620000239082620001f6565b5066138a388a43c000600e55660fa1c6d5030000600f55611a0a601055611194601155600460125560036013556014805463ffffffff191660011790553480156200006c575f80fd5b5060408051808201825260068082526543524f434f5360d01b602080840182905284518086019095529184529083015233916002620000ac8382620001f6565b506003620000bb8282620001f6565b5060015f5550506001600160a01b038116620000f057604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b620000fb8162000107565b506001600955620002c2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200018157607f821691505b602082108103620001a057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620001f157805f5260205f20601f840160051c81016020851015620001cd5750805b601f840160051c820191505b81811015620001ee575f8155600101620001d9565b50505b505050565b81516001600160401b0381111562000212576200021262000158565b6200022a816200022384546200016c565b84620001a6565b602080601f83116001811462000260575f8415620002485750858301515b5f19600386901b1c1916600185901b178555620002ba565b5f85815260208120601f198616915b8281101562000290578886015182559484019460019091019084016200026f565b5085821015620002ae57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b6127a280620002d05f395ff3fe608060405260043610610340575f3560e01c80636c0360eb116101bd578063bd7a1998116100f2578063e985e9c511610092578063f2fde38b1161006d578063f2fde38b1461090f578063f3257cdd1461092e578063fea0e0581461094d578063fff8d2fc1461096c575f80fd5b8063e985e9c5146108b2578063f12f6d5d146108d1578063f2c4ce1e146108f0575f80fd5b8063c87b56dd116100cd578063c87b56dd14610840578063d5abeb011461085f578063dc33e68114610874578063e268e4d314610893575f80fd5b8063bd7a1998146107ed578063bde0608a14610802578063bdf7a8e614610821575f80fd5b80638b14966b1161015d57806395d89b411161013857806395d89b4114610794578063a0712d68146107a8578063a22cb465146107bb578063b88d4fde146107da575f80fd5b80638b14966b1461072d5780638da5cb5b14610758578063940cd05b14610775575f80fd5b8063715018a611610198578063715018a6146106ba5780637cb64759146106ce57806382785214146106ed5780638462151c14610701575f80fd5b80636c0360eb146106725780636c2d3c4f1461068657806370a082311461069b575f80fd5b806323b872dd1161029357806344a0d68a1161023357806355f804b31161020e57806355f804b3146105fc5780635a7adf7f1461061b5780635c975abb1461063a5780636352211e14610653575f80fd5b806344a0d68a146105a0578063458c4f9e146105bf57806351830227146105de575f80fd5b806331940f3f1161026e57806331940f3f1461053757806333bc1c5c146105655780633ccfd60b1461058557806342842e0e1461058d575f80fd5b806323b872dd146104d15780632a55205a146104e45780632eb4a7ab14610522575f80fd5b8063081812fc116102fe5780630fe8418b116102d95780630fe8418b1461046d57806313faede614610482578063149835a01461049757806318160ddd146104b6575f80fd5b8063081812fc1461040f578063081c8c4414610446578063095ea7b31461045a575f80fd5b806277ec051461034457806301ffc9a71461036c57806302329a291461039b57806302fa7c47146103bc578063036e4cb5146103db57806306fdde03146103ee575b5f80fd5b34801561034f575f80fd5b5061035960135481565b6040519081526020015b60405180910390f35b348015610377575f80fd5b5061038b6103863660046120e5565b610997565b6040519015158152602001610363565b3480156103a6575f80fd5b506103ba6103b5366004612114565b6109b6565b005b3480156103c7575f80fd5b506103ba6103d6366004612143565b6109d1565b6103ba6103e93660046121c4565b6109e7565b3480156103f9575f80fd5b50610402610d52565b6040516103639190612259565b34801561041a575f80fd5b5061042e61042936600461226b565b610de2565b6040516001600160a01b039091168152602001610363565b348015610451575f80fd5b50610402610e24565b6103ba610468366004612282565b610eb0565b348015610478575f80fd5b5061035960115481565b34801561048d575f80fd5b50610359600e5481565b3480156104a2575f80fd5b506103ba6104b136600461226b565b610f4e565b3480156104c1575f80fd5b506103596001545f54035f190190565b6103ba6104df3660046122aa565b610f5b565b3480156104ef575f80fd5b506105036104fe3660046122e3565b6110eb565b604080516001600160a01b039093168352602083019190915201610363565b34801561052d575f80fd5b5061035960155481565b348015610542575f80fd5b5061038b610551366004612303565b60186020525f908152604090205460ff1681565b348015610570575f80fd5b5060145461038b906301000000900460ff1681565b6103ba611197565b6103ba61059b3660046122aa565b611254565b3480156105ab575f80fd5b506103ba6105ba36600461226b565b61126e565b3480156105ca575f80fd5b506103ba6105d936600461226b565b61127b565b3480156105e9575f80fd5b5060145461038b90610100900460ff1681565b348015610607575f80fd5b506103ba6106163660046123a3565b611288565b348015610626575f80fd5b5060145461038b9062010000900460ff1681565b348015610645575f80fd5b5060145461038b9060ff1681565b34801561065e575f80fd5b5061042e61066d36600461226b565b61129c565b34801561067d575f80fd5b506104026112a6565b348015610691575f80fd5b50610359600f5481565b3480156106a6575f80fd5b506103596106b5366004612303565b6112b3565b3480156106c5575f80fd5b506103ba611300565b3480156106d9575f80fd5b506103ba6106e836600461226b565b611311565b3480156106f8575f80fd5b506103ba61131e565b34801561070c575f80fd5b5061072061071b366004612303565b61132f565b60405161036391906123e8565b348015610738575f80fd5b50610359610747366004612303565b60176020525f908152604090205481565b348015610763575f80fd5b506008546001600160a01b031661042e565b348015610780575f80fd5b506103ba61078f366004612114565b611434565b34801561079f575f80fd5b50610402611456565b6103ba6107b636600461226b565b611465565b3480156107c6575f80fd5b506103ba6107d536600461241f565b611684565b6103ba6107e8366004612450565b6116ef565b3480156107f8575f80fd5b5061035960125481565b34801561080d575f80fd5b506103ba61081c36600461226b565b611739565b34801561082c575f80fd5b506103ba61083b3660046121c4565b611746565b34801561084b575f80fd5b5061040261085a36600461226b565b611815565b34801561086a575f80fd5b5061035960105481565b34801561087f575f80fd5b5061035961088e366004612303565b611981565b34801561089e575f80fd5b506103ba6108ad36600461226b565b6119ab565b3480156108bd575f80fd5b5061038b6108cc3660046124c7565b6119b8565b3480156108dc575f80fd5b506103ba6108eb36600461226b565b6119e5565b3480156108fb575f80fd5b506103ba61090a3660046123a3565b6119f2565b34801561091a575f80fd5b506103ba610929366004612303565b611a06565b348015610939575f80fd5b506103ba610948366004612114565b611a40565b348015610958575f80fd5b506103ba610967366004612114565b611a66565b348015610977575f80fd5b50610359610986366004612303565b60166020525f908152604090205481565b5f6109a182611a8a565b806109b057506109b082611ad7565b92915050565b6109be611b0b565b6014805460ff1916911515919091179055565b6109d9611b0b565b6109e38282611b38565b5050565b6109ef611bda565b60145460ff1615610a385760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b60448201526064015b60405180910390fd5b60145462010000900460ff16610a905760405162461bcd60e51b815260206004820152601a60248201527f50726573616c65204861736e27742073746172746564207965740000000000006044820152606401610a2f565b610b048282808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250506015546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611c33565b610b505760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742057686974656c69737465640000000000000000006044820152606401610a2f565b601354335f90815260176020526040902054610b6d908590612503565b1115610bbb5760405162461bcd60e51b815260206004820152601b60248201527f4d6178204e4654205065722057616c6c657420657863656564656400000000006044820152606401610a2f565b601354831115610c0d5760405162461bcd60e51b815260206004820152601860248201527f6d6178206d696e742070657220547820657863656564656400000000000000006044820152606401610a2f565b60115483610c206001545f54035f190190565b610c2a9190612503565b1115610c785760405162461bcd60e51b815260206004820152601c60248201527f57686974656c697374204d6178537570706c79206578636565646564000000006044820152606401610a2f565b335f9081526018602052604090205460ff16610ce8575f610c9a600185612516565b905080600f54610caa9190612529565b341015610cc95760405162461bcd60e51b8152600401610a2f90612540565b50335f908152601860205260409020805460ff19166001179055610d15565b82600f54610cf69190612529565b341015610d155760405162461bcd60e51b8152600401610a2f90612540565b335f9081526017602052604081208054859290610d33908490612503565b90915550610d4390503384611c48565b610d4d6001600955565b505050565b606060028054610d619061256c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8d9061256c565b8015610dd85780601f10610daf57610100808354040283529160200191610dd8565b820191905f5260205f20905b815481529060010190602001808311610dbb57829003601f168201915b5050505050905090565b5f610dec82611c61565b610e09576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b600d8054610e319061256c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5d9061256c565b8015610ea85780601f10610e7f57610100808354040283529160200191610ea8565b820191905f5260205f20905b815481529060010190602001808311610e8b57829003601f168201915b505050505081565b5f610eba8261129c565b9050336001600160a01b03821614610ef357610ed681336119b8565b610ef3576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610f56611b0b565b601055565b5f610f6582611c93565b9050836001600160a01b0316816001600160a01b031614610f985760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054338082146001600160a01b03881690911417610fe457610fc786336119b8565b610fe457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661100b57604051633a954ecd60e21b815260040160405180910390fd5b8015611015575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b841690036110a157600184015f81815260046020526040812054900361109f575f54811461109f575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b5f828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161115f575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101515f906127109061117d906001600160601b031687612529565b61118791906125a4565b91519350909150505b9250929050565b61119f611b0b565b6111a7611bda565b5f60646111b547605a612529565b6111bf91906125a4565b90505f60646111cf47600a612529565b6111d991906125a4565b6040519091507328ef4800417bedddedebdee594845a41c8c22fbe9082156108fc029083905f818181858888f1935050505015801561121a573d5f803e3d5ffd5b50604051339083156108fc029084905f818181858888f19350505050158015611245573d5f803e3d5ffd5b5050506112526001600955565b565b610d4d83838360405180602001604052805f8152506116ef565b611276611b0b565b600e55565b611283611b0b565b601155565b611290611b0b565b600c6109e38282612607565b5f6109b082611c93565b600c8054610e319061256c565b5f6001600160a01b0382166112db576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b611308611b0b565b6112525f611cfc565b611319611b0b565b601555565b611326611b0b565b6112525f600a55565b60605f805f61133d856112b3565b90505f8167ffffffffffffffff8111156113595761135961231c565b604051908082528060200260200182016040528015611382578160200160208202803683370190505b5090506113ae604080516080810182525f80825260208201819052918101829052606081019190915290565b60015b838614611428576113c181611d4d565b915081604001516114205781516001600160a01b0316156113e157815194505b876001600160a01b0316856001600160a01b0316036114205780838780600101985081518110611413576114136126c3565b6020026020010181815250505b6001016113b1565b50909695505050505050565b61143c611b0b565b601480549115156101000261ff0019909216919091179055565b606060038054610d619061256c565b61146d611bda565b60145460ff16156114b15760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b6044820152606401610a2f565b6014546301000000900460ff1661150a5760405162461bcd60e51b815260206004820152601e60248201527f5075626c69632053616c65204861736e277420737461727465642079657400006044820152606401610a2f565b60125481111561155c5760405162461bcd60e51b815260206004820152601f60248201527f6d6178206d696e7420616d6f756e7420706572207478206578636565646564006044820152606401610a2f565b6010548161156f6001545f54035f190190565b6115799190612503565b11156115b15760405162461bcd60e51b815260206004820152600760248201526614dbdb191bdd5d60ca1b6044820152606401610a2f565b601254335f908152601660205260409020546115ce908390612503565b111561161c5760405162461bcd60e51b815260206004820152601b60248201527f4d6178204e4654205065722057616c6c657420657863656564656400000000006044820152606401610a2f565b80600e5461162a9190612529565b3410156116495760405162461bcd60e51b8152600401610a2f90612540565b335f9081526016602052604081208054839290611667908490612503565b9091555061167790503382611c48565b6116816001600955565b50565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116fa848484610f5b565b6001600160a01b0383163b156117335761171684848484611dca565b611733576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b611741611b0b565b601355565b61174e611b0b565b611756611bda565b5f6117618285612529565b9050601054816117766001545f54035f190190565b6117809190612503565b11156117c75760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610a2f565b5f5b82811015611809576118018484838181106117e6576117e66126c3565b90506020020160208101906117fb9190612303565b86611c48565b6001016117c9565b5050610d4d6001600955565b606061182082611c61565b6118855760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610a2f565b601454610100900460ff1615155f0361192857600d80546118a59061256c565b80601f01602080910402602001604051908101604052809291908181526020018280546118d19061256c565b801561191c5780601f106118f35761010080835404028352916020019161191c565b820191905f5260205f20905b8154815290600101906020018083116118ff57829003601f168201915b50505050509050919050565b5f611931611eb2565b90505f81511161194f5760405180602001604052805f81525061197a565b8061195984611ec1565b60405160200161196a9291906126d7565b6040516020818303038152906040525b9392505050565b6001600160a01b0381165f908152600560205260408082205467ffffffffffffffff911c166109b0565b6119b3611b0b565b601255565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b6119ed611b0b565b600f55565b6119fa611b0b565b600d6109e38282612607565b611a0e611b0b565b6001600160a01b038116611a3757604051631e4fbdf760e01b81525f6004820152602401610a2f565b61168181611cfc565b611a48611b0b565b6014805491151563010000000263ff00000019909216919091179055565b611a6e611b0b565b60148054911515620100000262ff000019909216919091179055565b5f6301ffc9a760e01b6001600160e01b031983161480611aba57506380ac58cd60e01b6001600160e01b03198316145b806109b05750506001600160e01b031916635b5e139f60e01b1490565b5f6001600160e01b0319821663152a902d60e11b14806109b057506301ffc9a760e01b6001600160e01b03198316146109b0565b6008546001600160a01b031633146112525760405163118cdaa760e01b8152336004820152602401610a2f565b6127106001600160601b038216811015611b7757604051636f483d0960e01b81526001600160601b038316600482015260248101829052604401610a2f565b6001600160a01b038316611ba057604051635b6cc80560e11b81525f6004820152602401610a2f565b50604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b600260095403611c2c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a2f565b6002600955565b5f82611c3f8584611f04565b14949350505050565b6109e3828260405180602001604052805f815250611f46565b5f81600111158015611c7357505f5482105b80156109b05750505f90815260046020526040902054600160e01b161590565b5f8180600111611ce3575f54811015611ce3575f8181526004602052604081205490600160e01b82169003611ce1575b805f0361197a57505f19015f81815260046020526040902054611cc3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604080516080810182525f8082526020820181905291810182905260608101919091525f828152600460205260409020546109b090604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611dfe903390899088908890600401612715565b6020604051808303815f875af1925050508015611e38575060408051601f3d908101601f19168201909252611e3591810190612751565b60015b611e94573d808015611e65576040519150601f19603f3d011682016040523d82523d5f602084013e611e6a565b606091505b5080515f03611e8c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c8054610d619061256c565b606060a06040510180604052602081039150505f815280825b600183039250600a81066030018353600a900480611eda5750819003601f19909101908152919050565b5f81815b8451811015611f3e57611f3482868381518110611f2757611f276126c3565b6020026020010151611faf565b9150600101611f08565b509392505050565b611f508383611fd8565b6001600160a01b0383163b15610d4d575f548281035b611f785f868380600101945086611dca565b611f95576040516368d2bf6b60e11b815260040160405180910390fd5b818110611f6657815f5414611fa8575f80fd5b5050505050565b5f818310611fc9575f82815260208490526040902061197a565b505f9182526020526040902090565b5f805490829003611ffc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146120a85780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600101612072565b50815f036120c857604051622e076360e81b815260040160405180910390fd5b5f5550505050565b6001600160e01b031981168114611681575f80fd5b5f602082840312156120f5575f80fd5b813561197a816120d0565b8035801515811461210f575f80fd5b919050565b5f60208284031215612124575f80fd5b61197a82612100565b80356001600160a01b038116811461210f575f80fd5b5f8060408385031215612154575f80fd5b61215d8361212d565b915060208301356001600160601b0381168114612178575f80fd5b809150509250929050565b5f8083601f840112612193575f80fd5b50813567ffffffffffffffff8111156121aa575f80fd5b6020830191508360208260051b8501011115611190575f80fd5b5f805f604084860312156121d6575f80fd5b83359250602084013567ffffffffffffffff8111156121f3575f80fd5b6121ff86828701612183565b9497909650939450505050565b5f5b8381101561222657818101518382015260200161220e565b50505f910152565b5f815180845261224581602086016020860161220c565b601f01601f19169290920160200192915050565b602081525f61197a602083018461222e565b5f6020828403121561227b575f80fd5b5035919050565b5f8060408385031215612293575f80fd5b61229c8361212d565b946020939093013593505050565b5f805f606084860312156122bc575f80fd5b6122c58461212d565b92506122d36020850161212d565b9150604084013590509250925092565b5f80604083850312156122f4575f80fd5b50508035926020909101359150565b5f60208284031215612313575f80fd5b61197a8261212d565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561234a5761234a61231c565b604051601f8501601f19908116603f011681019082821181831017156123725761237261231c565b8160405280935085815286868601111561238a575f80fd5b858560208301375f602087830101525050509392505050565b5f602082840312156123b3575f80fd5b813567ffffffffffffffff8111156123c9575f80fd5b8201601f810184136123d9575f80fd5b611eaa84823560208401612330565b602080825282518282018190525f9190848201906040850190845b8181101561142857835183529284019291840191600101612403565b5f8060408385031215612430575f80fd5b6124398361212d565b915061244760208401612100565b90509250929050565b5f805f8060808587031215612463575f80fd5b61246c8561212d565b935061247a6020860161212d565b925060408501359150606085013567ffffffffffffffff81111561249c575f80fd5b8501601f810187136124ac575f80fd5b6124bb87823560208401612330565b91505092959194509250565b5f80604083850312156124d8575f80fd5b6124e18361212d565b91506124476020840161212d565b634e487b7160e01b5f52601160045260245ffd5b808201808211156109b0576109b06124ef565b818103818111156109b0576109b06124ef565b80820281158282048414176109b0576109b06124ef565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b600181811c9082168061258057607f821691505b60208210810361259e57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f826125be57634e487b7160e01b5f52601260045260245ffd5b500490565b601f821115610d4d57805f5260205f20601f840160051c810160208510156125e85750805b601f840160051c820191505b81811015611fa8575f81556001016125f4565b815167ffffffffffffffff8111156126215761262161231c565b6126358161262f845461256c565b846125c3565b602080601f831160018114612668575f84156126515750858301515b5f19600386901b1c1916600185901b1785556110e3565b5f85815260208120601f198616915b8281101561269657888601518255948401946001909101908401612677565b50858210156126b357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52603260045260245ffd5b5f83516126e881846020880161220c565b8351908301906126fc81836020880161220c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906127479083018461222e565b9695505050505050565b5f60208284031215612761575f80fd5b815161197a816120d056fea2646970667358221220f9eb67be58c42a646d4137c04f63fbcbe83f774159541173a03db340367d7a0c64736f6c63430008160033697066733a2f2f6261666b72656962746377707a7363326c7367687136703437676168613764376d6e766f6b63656f663273736c77616f65786b766f686766327834

Deployed Bytecode

0x608060405260043610610340575f3560e01c80636c0360eb116101bd578063bd7a1998116100f2578063e985e9c511610092578063f2fde38b1161006d578063f2fde38b1461090f578063f3257cdd1461092e578063fea0e0581461094d578063fff8d2fc1461096c575f80fd5b8063e985e9c5146108b2578063f12f6d5d146108d1578063f2c4ce1e146108f0575f80fd5b8063c87b56dd116100cd578063c87b56dd14610840578063d5abeb011461085f578063dc33e68114610874578063e268e4d314610893575f80fd5b8063bd7a1998146107ed578063bde0608a14610802578063bdf7a8e614610821575f80fd5b80638b14966b1161015d57806395d89b411161013857806395d89b4114610794578063a0712d68146107a8578063a22cb465146107bb578063b88d4fde146107da575f80fd5b80638b14966b1461072d5780638da5cb5b14610758578063940cd05b14610775575f80fd5b8063715018a611610198578063715018a6146106ba5780637cb64759146106ce57806382785214146106ed5780638462151c14610701575f80fd5b80636c0360eb146106725780636c2d3c4f1461068657806370a082311461069b575f80fd5b806323b872dd1161029357806344a0d68a1161023357806355f804b31161020e57806355f804b3146105fc5780635a7adf7f1461061b5780635c975abb1461063a5780636352211e14610653575f80fd5b806344a0d68a146105a0578063458c4f9e146105bf57806351830227146105de575f80fd5b806331940f3f1161026e57806331940f3f1461053757806333bc1c5c146105655780633ccfd60b1461058557806342842e0e1461058d575f80fd5b806323b872dd146104d15780632a55205a146104e45780632eb4a7ab14610522575f80fd5b8063081812fc116102fe5780630fe8418b116102d95780630fe8418b1461046d57806313faede614610482578063149835a01461049757806318160ddd146104b6575f80fd5b8063081812fc1461040f578063081c8c4414610446578063095ea7b31461045a575f80fd5b806277ec051461034457806301ffc9a71461036c57806302329a291461039b57806302fa7c47146103bc578063036e4cb5146103db57806306fdde03146103ee575b5f80fd5b34801561034f575f80fd5b5061035960135481565b6040519081526020015b60405180910390f35b348015610377575f80fd5b5061038b6103863660046120e5565b610997565b6040519015158152602001610363565b3480156103a6575f80fd5b506103ba6103b5366004612114565b6109b6565b005b3480156103c7575f80fd5b506103ba6103d6366004612143565b6109d1565b6103ba6103e93660046121c4565b6109e7565b3480156103f9575f80fd5b50610402610d52565b6040516103639190612259565b34801561041a575f80fd5b5061042e61042936600461226b565b610de2565b6040516001600160a01b039091168152602001610363565b348015610451575f80fd5b50610402610e24565b6103ba610468366004612282565b610eb0565b348015610478575f80fd5b5061035960115481565b34801561048d575f80fd5b50610359600e5481565b3480156104a2575f80fd5b506103ba6104b136600461226b565b610f4e565b3480156104c1575f80fd5b506103596001545f54035f190190565b6103ba6104df3660046122aa565b610f5b565b3480156104ef575f80fd5b506105036104fe3660046122e3565b6110eb565b604080516001600160a01b039093168352602083019190915201610363565b34801561052d575f80fd5b5061035960155481565b348015610542575f80fd5b5061038b610551366004612303565b60186020525f908152604090205460ff1681565b348015610570575f80fd5b5060145461038b906301000000900460ff1681565b6103ba611197565b6103ba61059b3660046122aa565b611254565b3480156105ab575f80fd5b506103ba6105ba36600461226b565b61126e565b3480156105ca575f80fd5b506103ba6105d936600461226b565b61127b565b3480156105e9575f80fd5b5060145461038b90610100900460ff1681565b348015610607575f80fd5b506103ba6106163660046123a3565b611288565b348015610626575f80fd5b5060145461038b9062010000900460ff1681565b348015610645575f80fd5b5060145461038b9060ff1681565b34801561065e575f80fd5b5061042e61066d36600461226b565b61129c565b34801561067d575f80fd5b506104026112a6565b348015610691575f80fd5b50610359600f5481565b3480156106a6575f80fd5b506103596106b5366004612303565b6112b3565b3480156106c5575f80fd5b506103ba611300565b3480156106d9575f80fd5b506103ba6106e836600461226b565b611311565b3480156106f8575f80fd5b506103ba61131e565b34801561070c575f80fd5b5061072061071b366004612303565b61132f565b60405161036391906123e8565b348015610738575f80fd5b50610359610747366004612303565b60176020525f908152604090205481565b348015610763575f80fd5b506008546001600160a01b031661042e565b348015610780575f80fd5b506103ba61078f366004612114565b611434565b34801561079f575f80fd5b50610402611456565b6103ba6107b636600461226b565b611465565b3480156107c6575f80fd5b506103ba6107d536600461241f565b611684565b6103ba6107e8366004612450565b6116ef565b3480156107f8575f80fd5b5061035960125481565b34801561080d575f80fd5b506103ba61081c36600461226b565b611739565b34801561082c575f80fd5b506103ba61083b3660046121c4565b611746565b34801561084b575f80fd5b5061040261085a36600461226b565b611815565b34801561086a575f80fd5b5061035960105481565b34801561087f575f80fd5b5061035961088e366004612303565b611981565b34801561089e575f80fd5b506103ba6108ad36600461226b565b6119ab565b3480156108bd575f80fd5b5061038b6108cc3660046124c7565b6119b8565b3480156108dc575f80fd5b506103ba6108eb36600461226b565b6119e5565b3480156108fb575f80fd5b506103ba61090a3660046123a3565b6119f2565b34801561091a575f80fd5b506103ba610929366004612303565b611a06565b348015610939575f80fd5b506103ba610948366004612114565b611a40565b348015610958575f80fd5b506103ba610967366004612114565b611a66565b348015610977575f80fd5b50610359610986366004612303565b60166020525f908152604090205481565b5f6109a182611a8a565b806109b057506109b082611ad7565b92915050565b6109be611b0b565b6014805460ff1916911515919091179055565b6109d9611b0b565b6109e38282611b38565b5050565b6109ef611bda565b60145460ff1615610a385760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b60448201526064015b60405180910390fd5b60145462010000900460ff16610a905760405162461bcd60e51b815260206004820152601a60248201527f50726573616c65204861736e27742073746172746564207965740000000000006044820152606401610a2f565b610b048282808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250506015546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611c33565b610b505760405162461bcd60e51b815260206004820152601760248201527f596f7520617265206e6f742057686974656c69737465640000000000000000006044820152606401610a2f565b601354335f90815260176020526040902054610b6d908590612503565b1115610bbb5760405162461bcd60e51b815260206004820152601b60248201527f4d6178204e4654205065722057616c6c657420657863656564656400000000006044820152606401610a2f565b601354831115610c0d5760405162461bcd60e51b815260206004820152601860248201527f6d6178206d696e742070657220547820657863656564656400000000000000006044820152606401610a2f565b60115483610c206001545f54035f190190565b610c2a9190612503565b1115610c785760405162461bcd60e51b815260206004820152601c60248201527f57686974656c697374204d6178537570706c79206578636565646564000000006044820152606401610a2f565b335f9081526018602052604090205460ff16610ce8575f610c9a600185612516565b905080600f54610caa9190612529565b341015610cc95760405162461bcd60e51b8152600401610a2f90612540565b50335f908152601860205260409020805460ff19166001179055610d15565b82600f54610cf69190612529565b341015610d155760405162461bcd60e51b8152600401610a2f90612540565b335f9081526017602052604081208054859290610d33908490612503565b90915550610d4390503384611c48565b610d4d6001600955565b505050565b606060028054610d619061256c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8d9061256c565b8015610dd85780601f10610daf57610100808354040283529160200191610dd8565b820191905f5260205f20905b815481529060010190602001808311610dbb57829003601f168201915b5050505050905090565b5f610dec82611c61565b610e09576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b600d8054610e319061256c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5d9061256c565b8015610ea85780601f10610e7f57610100808354040283529160200191610ea8565b820191905f5260205f20905b815481529060010190602001808311610e8b57829003601f168201915b505050505081565b5f610eba8261129c565b9050336001600160a01b03821614610ef357610ed681336119b8565b610ef3576040516367d9dca160e11b815260040160405180910390fd5b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610f56611b0b565b601055565b5f610f6582611c93565b9050836001600160a01b0316816001600160a01b031614610f985760405162a1148160e81b815260040160405180910390fd5b5f8281526006602052604090208054338082146001600160a01b03881690911417610fe457610fc786336119b8565b610fe457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661100b57604051633a954ecd60e21b815260040160405180910390fd5b8015611015575f82555b6001600160a01b038681165f9081526005602052604080822080545f19019055918716808252919020805460010190554260a01b17600160e11b175f85815260046020526040812091909155600160e11b841690036110a157600184015f81815260046020526040812054900361109f575f54811461109f575f8181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b5f828152600b602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b031692820192909252829161115f575060408051808201909152600a546001600160a01b0381168252600160a01b90046001600160601b031660208201525b60208101515f906127109061117d906001600160601b031687612529565b61118791906125a4565b91519350909150505b9250929050565b61119f611b0b565b6111a7611bda565b5f60646111b547605a612529565b6111bf91906125a4565b90505f60646111cf47600a612529565b6111d991906125a4565b6040519091507328ef4800417bedddedebdee594845a41c8c22fbe9082156108fc029083905f818181858888f1935050505015801561121a573d5f803e3d5ffd5b50604051339083156108fc029084905f818181858888f19350505050158015611245573d5f803e3d5ffd5b5050506112526001600955565b565b610d4d83838360405180602001604052805f8152506116ef565b611276611b0b565b600e55565b611283611b0b565b601155565b611290611b0b565b600c6109e38282612607565b5f6109b082611c93565b600c8054610e319061256c565b5f6001600160a01b0382166112db576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f9081526005602052604090205467ffffffffffffffff1690565b611308611b0b565b6112525f611cfc565b611319611b0b565b601555565b611326611b0b565b6112525f600a55565b60605f805f61133d856112b3565b90505f8167ffffffffffffffff8111156113595761135961231c565b604051908082528060200260200182016040528015611382578160200160208202803683370190505b5090506113ae604080516080810182525f80825260208201819052918101829052606081019190915290565b60015b838614611428576113c181611d4d565b915081604001516114205781516001600160a01b0316156113e157815194505b876001600160a01b0316856001600160a01b0316036114205780838780600101985081518110611413576114136126c3565b6020026020010181815250505b6001016113b1565b50909695505050505050565b61143c611b0b565b601480549115156101000261ff0019909216919091179055565b606060038054610d619061256c565b61146d611bda565b60145460ff16156114b15760405162461bcd60e51b815260206004820152600e60248201526d14d85b19481a5cc81c185d5cd95960921b6044820152606401610a2f565b6014546301000000900460ff1661150a5760405162461bcd60e51b815260206004820152601e60248201527f5075626c69632053616c65204861736e277420737461727465642079657400006044820152606401610a2f565b60125481111561155c5760405162461bcd60e51b815260206004820152601f60248201527f6d6178206d696e7420616d6f756e7420706572207478206578636565646564006044820152606401610a2f565b6010548161156f6001545f54035f190190565b6115799190612503565b11156115b15760405162461bcd60e51b815260206004820152600760248201526614dbdb191bdd5d60ca1b6044820152606401610a2f565b601254335f908152601660205260409020546115ce908390612503565b111561161c5760405162461bcd60e51b815260206004820152601b60248201527f4d6178204e4654205065722057616c6c657420657863656564656400000000006044820152606401610a2f565b80600e5461162a9190612529565b3410156116495760405162461bcd60e51b8152600401610a2f90612540565b335f9081526016602052604081208054839290611667908490612503565b9091555061167790503382611c48565b6116816001600955565b50565b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6116fa848484610f5b565b6001600160a01b0383163b156117335761171684848484611dca565b611733576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b611741611b0b565b601355565b61174e611b0b565b611756611bda565b5f6117618285612529565b9050601054816117766001545f54035f190190565b6117809190612503565b11156117c75760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b6044820152606401610a2f565b5f5b82811015611809576118018484838181106117e6576117e66126c3565b90506020020160208101906117fb9190612303565b86611c48565b6001016117c9565b5050610d4d6001600955565b606061182082611c61565b6118855760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b6064820152608401610a2f565b601454610100900460ff1615155f0361192857600d80546118a59061256c565b80601f01602080910402602001604051908101604052809291908181526020018280546118d19061256c565b801561191c5780601f106118f35761010080835404028352916020019161191c565b820191905f5260205f20905b8154815290600101906020018083116118ff57829003601f168201915b50505050509050919050565b5f611931611eb2565b90505f81511161194f5760405180602001604052805f81525061197a565b8061195984611ec1565b60405160200161196a9291906126d7565b6040516020818303038152906040525b9392505050565b6001600160a01b0381165f908152600560205260408082205467ffffffffffffffff911c166109b0565b6119b3611b0b565b601255565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b6119ed611b0b565b600f55565b6119fa611b0b565b600d6109e38282612607565b611a0e611b0b565b6001600160a01b038116611a3757604051631e4fbdf760e01b81525f6004820152602401610a2f565b61168181611cfc565b611a48611b0b565b6014805491151563010000000263ff00000019909216919091179055565b611a6e611b0b565b60148054911515620100000262ff000019909216919091179055565b5f6301ffc9a760e01b6001600160e01b031983161480611aba57506380ac58cd60e01b6001600160e01b03198316145b806109b05750506001600160e01b031916635b5e139f60e01b1490565b5f6001600160e01b0319821663152a902d60e11b14806109b057506301ffc9a760e01b6001600160e01b03198316146109b0565b6008546001600160a01b031633146112525760405163118cdaa760e01b8152336004820152602401610a2f565b6127106001600160601b038216811015611b7757604051636f483d0960e01b81526001600160601b038316600482015260248101829052604401610a2f565b6001600160a01b038316611ba057604051635b6cc80560e11b81525f6004820152602401610a2f565b50604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600a55565b600260095403611c2c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a2f565b6002600955565b5f82611c3f8584611f04565b14949350505050565b6109e3828260405180602001604052805f815250611f46565b5f81600111158015611c7357505f5482105b80156109b05750505f90815260046020526040902054600160e01b161590565b5f8180600111611ce3575f54811015611ce3575f8181526004602052604081205490600160e01b82169003611ce1575b805f0361197a57505f19015f81815260046020526040902054611cc3565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604080516080810182525f8082526020820181905291810182905260608101919091525f828152600460205260409020546109b090604080516080810182526001600160a01b038316815260a083901c67ffffffffffffffff166020820152600160e01b831615159181019190915260e89190911c606082015290565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a0290611dfe903390899088908890600401612715565b6020604051808303815f875af1925050508015611e38575060408051601f3d908101601f19168201909252611e3591810190612751565b60015b611e94573d808015611e65576040519150601f19603f3d011682016040523d82523d5f602084013e611e6a565b606091505b5080515f03611e8c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c8054610d619061256c565b606060a06040510180604052602081039150505f815280825b600183039250600a81066030018353600a900480611eda5750819003601f19909101908152919050565b5f81815b8451811015611f3e57611f3482868381518110611f2757611f276126c3565b6020026020010151611faf565b9150600101611f08565b509392505050565b611f508383611fd8565b6001600160a01b0383163b15610d4d575f548281035b611f785f868380600101945086611dca565b611f95576040516368d2bf6b60e11b815260040160405180910390fd5b818110611f6657815f5414611fa8575f80fd5b5050505050565b5f818310611fc9575f82815260208490526040902061197a565b505f9182526020526040902090565b5f805490829003611ffc5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0383165f8181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146120a85780835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a4600101612072565b50815f036120c857604051622e076360e81b815260040160405180910390fd5b5f5550505050565b6001600160e01b031981168114611681575f80fd5b5f602082840312156120f5575f80fd5b813561197a816120d0565b8035801515811461210f575f80fd5b919050565b5f60208284031215612124575f80fd5b61197a82612100565b80356001600160a01b038116811461210f575f80fd5b5f8060408385031215612154575f80fd5b61215d8361212d565b915060208301356001600160601b0381168114612178575f80fd5b809150509250929050565b5f8083601f840112612193575f80fd5b50813567ffffffffffffffff8111156121aa575f80fd5b6020830191508360208260051b8501011115611190575f80fd5b5f805f604084860312156121d6575f80fd5b83359250602084013567ffffffffffffffff8111156121f3575f80fd5b6121ff86828701612183565b9497909650939450505050565b5f5b8381101561222657818101518382015260200161220e565b50505f910152565b5f815180845261224581602086016020860161220c565b601f01601f19169290920160200192915050565b602081525f61197a602083018461222e565b5f6020828403121561227b575f80fd5b5035919050565b5f8060408385031215612293575f80fd5b61229c8361212d565b946020939093013593505050565b5f805f606084860312156122bc575f80fd5b6122c58461212d565b92506122d36020850161212d565b9150604084013590509250925092565b5f80604083850312156122f4575f80fd5b50508035926020909101359150565b5f60208284031215612313575f80fd5b61197a8261212d565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561234a5761234a61231c565b604051601f8501601f19908116603f011681019082821181831017156123725761237261231c565b8160405280935085815286868601111561238a575f80fd5b858560208301375f602087830101525050509392505050565b5f602082840312156123b3575f80fd5b813567ffffffffffffffff8111156123c9575f80fd5b8201601f810184136123d9575f80fd5b611eaa84823560208401612330565b602080825282518282018190525f9190848201906040850190845b8181101561142857835183529284019291840191600101612403565b5f8060408385031215612430575f80fd5b6124398361212d565b915061244760208401612100565b90509250929050565b5f805f8060808587031215612463575f80fd5b61246c8561212d565b935061247a6020860161212d565b925060408501359150606085013567ffffffffffffffff81111561249c575f80fd5b8501601f810187136124ac575f80fd5b6124bb87823560208401612330565b91505092959194509250565b5f80604083850312156124d8575f80fd5b6124e18361212d565b91506124476020840161212d565b634e487b7160e01b5f52601160045260245ffd5b808201808211156109b0576109b06124ef565b818103818111156109b0576109b06124ef565b80820281158282048414176109b0576109b06124ef565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b600181811c9082168061258057607f821691505b60208210810361259e57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f826125be57634e487b7160e01b5f52601260045260245ffd5b500490565b601f821115610d4d57805f5260205f20601f840160051c810160208510156125e85750805b601f840160051c820191505b81811015611fa8575f81556001016125f4565b815167ffffffffffffffff8111156126215761262161231c565b6126358161262f845461256c565b846125c3565b602080601f831160018114612668575f84156126515750858301515b5f19600386901b1c1916600185901b1785556110e3565b5f85815260208120601f198616915b8281101561269657888601518255948401946001909101908401612677565b50858210156126b357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52603260045260245ffd5b5f83516126e881846020880161220c565b8351908301906126fc81836020880161220c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f906127479083018461222e565b9695505050505050565b5f60208284031215612761575f80fd5b815161197a816120d056fea2646970667358221220f9eb67be58c42a646d4137c04f63fbcbe83f774159541173a03db340367d7a0c64736f6c63430008160033

Deployed Bytecode Sourcemap

76888:8735:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77288:33;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;77288:33:0;;;;;;;;85015:291;;;;;;;;;;-1:-1:-1;85015:291:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;85015:291:0;582:187:1;84183:79:0;;;;;;;;;;-1:-1:-1;84183:79:0;;;;;:::i;:::-;;:::i;:::-;;85356:170;;;;;;;;;;-1:-1:-1;85356:170:0;;;;;:::i;:::-;;:::i;78717:1297::-;;;;;;:::i;:::-;;:::i;44616:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;51107:218::-;;;;;;;;;;-1:-1:-1;51107:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;3660:32:1;;;3642:51;;3630:2;3615:18;51107:218:0;3496:203:1;76985:99:0;;;;;;;;;;;;;:::i;50540:408::-;;;;;;:::i;:::-;;:::i;77213:30::-;;;;;;;;;;;;;;;;77091:34;;;;;;;;;;;;;;;;83533:100;;;;;;;;;;-1:-1:-1;83533:100:0;;;;;:::i;:::-;;:::i;40367:323::-;;;;;;;;;;;;77972:1;40641:12;40428:7;40625:13;:28;-1:-1:-1;;40625:46:0;;40367:323;54746:2825;;;;;;:::i;:::-;;:::i;5112:429::-;;;;;;;;;;-1:-1:-1;5112:429:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4741:32:1;;;4723:51;;4805:2;4790:18;;4783:34;;;;4696:18;5112:429:0;4549:274:1;77466:25:0;;;;;;;;;;;;;;;;77619:47;;;;;;;;;;-1:-1:-1;77619:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;77429:30;;;;;;;;;;-1:-1:-1;77429:30:0;;;;;;;;;;;84644:337;;;:::i;57667:193::-;;;;;;:::i;:::-;;:::i;83221:86::-;;;;;;;;;;-1:-1:-1;83221:86:0;;;;;:::i;:::-;;:::i;83694:98::-;;;;;;;;;;-1:-1:-1;83694:98:0;;;;;:::i;:::-;;:::i;77360:28::-;;;;;;;;;;-1:-1:-1;77360:28:0;;;;;;;;;;;83831:104;;;;;;;;;;-1:-1:-1;83831:104:0;;;;;:::i;:::-;;:::i;77395:27::-;;;;;;;;;;-1:-1:-1;77395:27:0;;;;;;;;;;;77328:25;;;;;;;;;;-1:-1:-1;77328:25:0;;;;;;;;46009:152;;;;;;;;;;-1:-1:-1;46009:152:0;;;;;:::i;:::-;;:::i;76957:21::-;;;;;;;;;;;;;:::i;77132:36::-;;;;;;;;;;;;;;;;41551:233;;;;;;;;;;-1:-1:-1;41551:233:0;;;;;:::i;:::-;;:::i;24474:103::-;;;;;;;;;;;;;:::i;82730:106::-;;;;;;;;;;-1:-1:-1;82730:106:0;;;;;:::i;:::-;;:::i;85534:86::-;;;;;;;;;;;;;:::i;81540:979::-;;;;;;;;;;-1:-1:-1;81540:979:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;77556:56::-;;;;;;;;;;-1:-1:-1;77556:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;23799:87;;;;;;;;;;-1:-1:-1;23872:6:0;;-1:-1:-1;;;;;23872:6:0;23799:87;;82579:82;;;;;;;;;;-1:-1:-1;82579:82:0;;;;;:::i;:::-;;:::i;44792:104::-;;;;;;;;;;;;;:::i;78015:645::-;;;;;;:::i;:::-;;:::i;51665:234::-;;;;;;;;;;-1:-1:-1;51665:234:0;;;;;:::i;:::-;;:::i;58458:407::-;;;;;;:::i;:::-;;:::i;77250:31::-;;;;;;;;;;;;;;;;83047:102;;;;;;;;;;-1:-1:-1;83047:102:0;;;;;:::i;:::-;;:::i;80070:446::-;;;;;;;;;;-1:-1:-1;80070:446:0;;;;;:::i;:::-;;:::i;80574:720::-;;;;;;;;;;-1:-1:-1;80574:720:0;;;;;:::i;:::-;;:::i;77175:31::-;;;;;;;;;;;;;;;;81364:113;;;;;;;;;;-1:-1:-1;81364:113:0;;;;;:::i;:::-;;:::i;82891:98::-;;;;;;;;;;-1:-1:-1;82891:98:0;;;;;:::i;:::-;;:::i;52056:164::-;;;;;;;;;;-1:-1:-1;52056:164:0;;;;;:::i;:::-;;:::i;83382:94::-;;;;;;;;;;-1:-1:-1;83382:94:0;;;;;:::i;:::-;;:::i;83972:126::-;;;;;;;;;;-1:-1:-1;83972:126:0;;;;;:::i;:::-;;:::i;24732:220::-;;;;;;;;;;-1:-1:-1;24732:220:0;;;;;:::i;:::-;;:::i;84497:96::-;;;;;;;;;;-1:-1:-1;84497:96:0;;;;;:::i;:::-;;:::i;84336:90::-;;;;;;;;;;-1:-1:-1;84336:90:0;;;;;:::i;:::-;;:::i;77498:51::-;;;;;;;;;;-1:-1:-1;77498:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;85015:291;85163:4;85205:38;85231:11;85205:25;:38::i;:::-;:93;;;;85260:38;85286:11;85260:25;:38::i;:::-;85185:113;85015:291;-1:-1:-1;;85015:291:0:o;84183:79::-;23685:13;:11;:13::i;:::-;84239:6:::1;:15:::0;;-1:-1:-1;;84239:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;84183:79::o;85356:170::-;23685:13;:11;:13::i;:::-;85474:44:::1;85493:9;85504:13;85474:18;:44::i;:::-;85356:170:::0;;:::o;78717:1297::-;20325:21;:19;:21::i;:::-;78866:6:::1;::::0;::::1;;78865:7;78857:34;;;::::0;-1:-1:-1;;;78857:34:0;;9156:2:1;78857:34:0::1;::::0;::::1;9138:21:1::0;9195:2;9175:18;;;9168:30;-1:-1:-1;;;9214:18:1;;;9207:44;9268:18;;78857:34:0::1;;;;;;;;;78910:7;::::0;;;::::1;;;78902:46;;;::::0;-1:-1:-1;;;78902:46:0;;9499:2:1;78902:46:0::1;::::0;::::1;9481:21:1::0;9538:2;9518:18;;;9511:30;9577:28;9557:18;;;9550:56;9623:18;;78902:46:0::1;9297:350:1::0;78902:46:0::1;78981:150;79018:11;;78981:150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;79048:10:0::1;::::0;79087:28:::1;::::0;-1:-1:-1;;79104:10:0::1;9801:2:1::0;9797:15;9793:53;79087:28:0::1;::::0;::::1;9781:66:1::0;79048:10:0;;-1:-1:-1;9863:12:1;;;-1:-1:-1;79087:28:0::1;;;;;;;;;;;;79077:39;;;;;;78981:18;:150::i;:::-;78959:223;;;::::0;-1:-1:-1;;;78959:223:0;;10088:2:1;78959:223:0::1;::::0;::::1;10070:21:1::0;10127:2;10107:18;;;10100:30;10166:25;10146:18;;;10139:53;10209:18;;78959:223:0::1;9886:347:1::0;78959:223:0::1;79287:14;::::0;74873:10;79215:42:::1;::::0;;;:21:::1;:42;::::0;;;;;:51:::1;::::0;79260:6;;79215:51:::1;:::i;:::-;:86;;79193:163;;;::::0;-1:-1:-1;;;79193:163:0;;10702:2:1;79193:163:0::1;::::0;::::1;10684:21:1::0;10741:2;10721:18;;;10714:30;10780:29;10760:18;;;10753:57;10827:18;;79193:163:0::1;10500:351:1::0;79193:163:0::1;79385:14;;79375:6;:24;;79367:61;;;::::0;-1:-1:-1;;;79367:61:0;;11058:2:1;79367:61:0::1;::::0;::::1;11040:21:1::0;11097:2;11077:18;;;11070:30;11136:26;11116:18;;;11109:54;11180:18;;79367:61:0::1;10856:348:1::0;79367:61:0::1;79487:8;;79477:6;79461:13;77972:1:::0;40641:12;40428:7;40625:13;:28;-1:-1:-1;;40625:46:0;;40367:323;79461:13:::1;:22;;;;:::i;:::-;:34;;79439:112;;;::::0;-1:-1:-1;;;79439:112:0;;11411:2:1;79439:112:0::1;::::0;::::1;11393:21:1::0;11450:2;11430:18;;;11423:30;11489;11469:18;;;11462:58;11537:18;;79439:112:0::1;11209:352:1::0;79439:112:0::1;74873:10:::0;79569:36:::1;::::0;;;:15:::1;:36;::::0;;;;;::::1;;79564:329;;79622:18;79643:10;79652:1;79643:6:::0;:10:::1;:::i;:::-;79622:31;;79698:10;79689:6;;:19;;;;:::i;:::-;79676:9;:32;;79668:63;;;;-1:-1:-1::0;;;79668:63:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;74873:10:0;79746:36:::1;::::0;;;:15:::1;:36;::::0;;;;:43;;-1:-1:-1;;79746:43:0::1;79785:4;79746:43;::::0;;79564:329:::1;;;79852:6;79843;;:15;;;;:::i;:::-;79830:9;:28;;79822:59;;;;-1:-1:-1::0;;;79822:59:0::1;;;;;;;:::i;:::-;74873:10:::0;79905:42:::1;::::0;;;:21:::1;:42;::::0;;;;:52;;79951:6;;79905:42;:52:::1;::::0;79951:6;;79905:52:::1;:::i;:::-;::::0;;;-1:-1:-1;79968:38:0::1;::::0;-1:-1:-1;74873:10:0;79999:6:::1;79968:9;:38::i;:::-;20369:20:::0;19763:1;20889:7;:22;20706:213;20369:20;78717:1297;;;:::o;44616:100::-;44670:13;44703:5;44696:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44616:100;:::o;51107:218::-;51183:7;51208:16;51216:7;51208;:16::i;:::-;51203:64;;51233:34;;-1:-1:-1;;;51233:34:0;;;;;;;;;;;51203:64;-1:-1:-1;51287:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;51287:30:0;;51107:218::o;76985:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50540:408::-;50629:13;50645:16;50653:7;50645;:16::i;:::-;50629:32;-1:-1:-1;74873:10:0;-1:-1:-1;;;;;50678:28:0;;;50674:175;;50726:44;50743:5;74873:10;52056:164;:::i;50726:44::-;50721:128;;50798:35;;-1:-1:-1;;;50798:35:0;;;;;;;;;;;50721:128;50861:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;50861:35:0;-1:-1:-1;;;;;50861:35:0;;;;;;;;;50912:28;;50861:24;;50912:28;;;;;;;50618:330;50540:408;;:::o;83533:100::-;23685:13;:11;:13::i;:::-;83603:9:::1;:22:::0;83533:100::o;54746:2825::-;54888:27;54918;54937:7;54918:18;:27::i;:::-;54888:57;;55003:4;-1:-1:-1;;;;;54962:45:0;54978:19;-1:-1:-1;;;;;54962:45:0;;54958:86;;55016:28;;-1:-1:-1;;;55016:28:0;;;;;;;;;;;54958:86;55058:27;53854:24;;;:15;:24;;;;;54082:26;;74873:10;53479:30;;;-1:-1:-1;;;;;53172:28:0;;53457:20;;;53454:56;55244:180;;55337:43;55354:4;74873:10;52056:164;:::i;55337:43::-;55332:92;;55389:35;;-1:-1:-1;;;55389:35:0;;;;;;;;;;;55332:92;-1:-1:-1;;;;;55441:16:0;;55437:52;;55466:23;;-1:-1:-1;;;55466:23:0;;;;;;;;;;;55437:52;55638:15;55635:160;;;55778:1;55757:19;55750:30;55635:160;-1:-1:-1;;;;;56175:24:0;;;;;;;:18;:24;;;;;;56173:26;;-1:-1:-1;;56173:26:0;;;56244:22;;;;;;;;;56242:24;;-1:-1:-1;56242:24:0;;;49398:11;49373:23;49369:41;49356:63;-1:-1:-1;;;49356:63:0;56537:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;56832:47:0;;:52;;56828:627;;56937:1;56927:11;;56905:19;57060:30;;;:17;:30;;;;;;:35;;57056:384;;57198:13;;57183:11;:28;57179:242;;57345:30;;;;:17;:30;;;;;:52;;;57179:242;56886:569;56828:627;57502:7;57498:2;-1:-1:-1;;;;;57483:27:0;57492:4;-1:-1:-1;;;;;57483:27:0;;;;;;;;;;;57521:42;54877:2694;;;54746:2825;;;:::o;5112:429::-;5198:7;5256:26;;;:17;:26;;;;;;;;5227:55;;;;;;;;;-1:-1:-1;;;;;5227:55:0;;;;;-1:-1:-1;;;5227:55:0;;;-1:-1:-1;;;;;5227:55:0;;;;;;;;5198:7;;5295:92;;-1:-1:-1;5346:29:0;;;;;;;;;5356:19;5346:29;-1:-1:-1;;;;;5346:29:0;;;;-1:-1:-1;;;5346:29:0;;-1:-1:-1;;;;;5346:29:0;;;;;5295:92;5436:23;;;;5399:21;;5907:5;;5424:35;;-1:-1:-1;;;;;5424:35:0;:9;:35;:::i;:::-;5423:57;;;;:::i;:::-;5501:16;;;-1:-1:-1;5399:81:0;;-1:-1:-1;;5112:429:0;;;;;;:::o;84644:337::-;23685:13;:11;:13::i;:::-;20325:21:::1;:19;:21::i;:::-;84713:15:::2;84760:3;84731:26;:21;84755:2;84731:26;:::i;:::-;:32;;;;:::i;:::-;84713:50:::0;-1:-1:-1;84774:21:0::2;84827:3;84798:26;:21;84822:2;84798:26;:::i;:::-;:32;;;;:::i;:::-;84841:75;::::0;84774:56;;-1:-1:-1;84849:42:0::2;::::0;84841:75;::::2;;;::::0;84774:56;;84841:75:::2;::::0;;;84774:56;84849:42;84841:75;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;84927:46:0::2;::::0;74873:10;;84927:46;::::2;;;::::0;84965:7;;84927:46:::2;::::0;;;84965:7;74873:10;84927:46;::::2;;;;;;;;;;;;;::::0;::::2;;;;;;84702:279;;20369:20:::1;19763:1:::0;20889:7;:22;20706:213;20369:20:::1;84644:337::o:0;57667:193::-;57813:39;57830:4;57836:2;57840:7;57813:39;;;;;;;;;;;;:16;:39::i;83221:86::-;23685:13;:11;:13::i;:::-;83284:4:::1;:15:::0;83221:86::o;83694:98::-;23685:13;:11;:13::i;:::-;83763:8:::1;:21:::0;83694:98::o;83831:104::-;23685:13;:11;:13::i;:::-;83906:7:::1;:21;83916:11:::0;83906:7;:21:::1;:::i;46009:152::-:0;46081:7;46124:27;46143:7;46124:18;:27::i;76957:21::-;;;;;;;:::i;41551:233::-;41623:7;-1:-1:-1;;;;;41647:19:0;;41643:60;;41675:28;;-1:-1:-1;;;41675:28:0;;;;;;;;;;;41643:60;-1:-1:-1;;;;;;41721:25:0;;;;;:18;:25;;;;;;35710:13;41721:55;;41551:233::o;24474:103::-;23685:13;:11;:13::i;:::-;24539:30:::1;24566:1;24539:18;:30::i;82730:106::-:0;23685:13;:11;:13::i;:::-;82804:10:::1;:24:::0;82730:106::o;85534:86::-;23685:13;:11;:13::i;:::-;85589:23:::1;6853:19:::0;;6846:26;6785:95;81540:979;81626:16;81685:19;81719:25;81759:22;81784:16;81794:5;81784:9;:16::i;:::-;81759:41;;81815:25;81857:14;81843:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;81843:29:0;;81815:57;;81887:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81887:31:0;77972:1;81933:538;82017:14;82002:11;:29;81933:538;;82100:15;82113:1;82100:12;:15::i;:::-;82088:27;;82138:9;:16;;;82179:8;82134:73;82229:14;;-1:-1:-1;;;;;82229:28:0;;82225:111;;82302:14;;;-1:-1:-1;82225:111:0;82379:5;-1:-1:-1;;;;;82358:26:0;:17;-1:-1:-1;;;;;82358:26:0;;82354:102;;82435:1;82409:8;82418:13;;;;;;82409:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;82354:102;82050:3;;81933:538;;;-1:-1:-1;82492:8:0;;81540:979;-1:-1:-1;;;;;;81540:979:0:o;82579:82::-;23685:13;:11;:13::i;:::-;82636:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;82636:17:0;;::::1;::::0;;;::::1;::::0;;82579:82::o;44792:104::-;44848:13;44881:7;44874:14;;;;;:::i;78015:645::-;20325:21;:19;:21::i;:::-;78093:6:::1;::::0;::::1;;78092:7;78084:34;;;::::0;-1:-1:-1;;;78084:34:0;;9156:2:1;78084:34:0::1;::::0;::::1;9138:21:1::0;9195:2;9175:18;;;9168:30;-1:-1:-1;;;9214:18:1;;;9207:44;9268:18;;78084:34:0::1;8954:338:1::0;78084:34:0::1;78137:10;::::0;;;::::1;;;78129:53;;;::::0;-1:-1:-1;;;78129:53:0;;15330:2:1;78129:53:0::1;::::0;::::1;15312:21:1::0;15369:2;15349:18;;;15342:30;15408:32;15388:18;;;15381:60;15458:18;;78129:53:0::1;15128:354:1::0;78129:53:0::1;78211:12;;78201:6;:22;;78193:66;;;::::0;-1:-1:-1;;;78193:66:0;;15689:2:1;78193:66:0::1;::::0;::::1;15671:21:1::0;15728:2;15708:18;;;15701:30;15767:33;15747:18;;;15740:61;15818:18;;78193:66:0::1;15487:355:1::0;78193:66:0::1;78304:9;;78294:6;78278:13;77972:1:::0;40641:12;40428:7;40625:13;:28;-1:-1:-1;;40625:46:0;;40367:323;78278:13:::1;:22;;;;:::i;:::-;:35;;78270:55;;;::::0;-1:-1:-1;;;78270:55:0;;16049:2:1;78270:55:0::1;::::0;::::1;16031:21:1::0;16088:1;16068:18;;;16061:29;-1:-1:-1;;;16106:18:1;;;16099:37;16153:18;;78270:55:0::1;15847:330:1::0;78270:55:0::1;78408:12;::::0;74873:10;78358:37:::1;::::0;;;:16:::1;:37;::::0;;;;;:46:::1;::::0;78398:6;;78358:46:::1;:::i;:::-;:62;;78336:139;;;::::0;-1:-1:-1;;;78336:139:0;;10702:2:1;78336:139:0::1;::::0;::::1;10684:21:1::0;10741:2;10721:18;;;10714:30;10780:29;10760:18;;;10753:57;10827:18;;78336:139:0::1;10500:351:1::0;78336:139:0::1;78514:6;78507:4;;:13;;;;:::i;:::-;78494:9;:26;;78486:57;;;;-1:-1:-1::0;;;78486:57:0::1;;;;;;;:::i;:::-;74873:10:::0;78556:37:::1;::::0;;;:16:::1;:37;::::0;;;;:47;;78597:6;;78556:37;:47:::1;::::0;78597:6;;78556:47:::1;:::i;:::-;::::0;;;-1:-1:-1;78614:38:0::1;::::0;-1:-1:-1;74873:10:0;78645:6:::1;78614:9;:38::i;:::-;20369:20:::0;19763:1;20889:7;:22;20706:213;20369:20;78015:645;:::o;51665:234::-;74873:10;51760:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;51760:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;51760:60:0;;;;;;;;;;51836:55;;722:41:1;;;51760:49:0;;74873:10;51836:55;;695:18:1;51836:55:0;;;;;;;51665:234;;:::o;58458:407::-;58633:31;58646:4;58652:2;58656:7;58633:12;:31::i;:::-;-1:-1:-1;;;;;58679:14:0;;;:19;58675:183;;58718:56;58749:4;58755:2;58759:7;58768:5;58718:30;:56::i;:::-;58713:145;;58802:40;;-1:-1:-1;;;58802:40:0;;;;;;;;;;;58713:145;58458:407;;;;:::o;83047:102::-;23685:13;:11;:13::i;:::-;83118:14:::1;:23:::0;83047:102::o;80070:446::-;23685:13;:11;:13::i;:::-;20325:21:::1;:19;:21::i;:::-;80213:16:::2;80232:32;80246:11:::0;80232;:32:::2;:::i;:::-;80213:51;;80325:9;;80313:8;80297:13;77972:1:::0;40641:12;40428:7;40625:13;:28;-1:-1:-1;;40625:46:0;;40367:323;80297:13:::2;:24;;;;:::i;:::-;:37;;80275:109;;;::::0;-1:-1:-1;;;80275:109:0;;16384:2:1;80275:109:0::2;::::0;::::2;16366:21:1::0;16423:2;16403:18;;;16396:30;-1:-1:-1;;;16442:18:1;;;16435:52;16504:18;;80275:109:0::2;16182:346:1::0;80275:109:0::2;80400:9;80395:114;80415:22:::0;;::::2;80395:114;;;80459:38;80469:11;;80481:1;80469:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;80485:11;80459:9;:38::i;:::-;80439:3;;80395:114;;;;80202:314;20369:20:::1;19763:1:::0;20889:7;:22;20706:213;80574:720;80692:13;80745:16;80753:7;80745;:16::i;:::-;80723:114;;;;-1:-1:-1;;;80723:114:0;;16735:2:1;80723:114:0;;;16717:21:1;16774:2;16754:18;;;16747:30;16813:34;16793:18;;;16786:62;-1:-1:-1;;;16864:18:1;;;16857:46;16920:19;;80723:114:0;16533:412:1;80723:114:0;80854:8;;;;;;;:17;;80866:5;80854:17;80850:71;;80895:14;80888:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;80574:720;;;:::o;80850:71::-;80933:28;80964:10;:8;:10::i;:::-;80933:41;;81036:1;81011:14;81005:28;:32;:281;;;;;;;;;;;;;;;;;81129:14;81170:18;81180:7;81170:9;:18::i;:::-;81086:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;81005:281;80985:301;80574:720;-1:-1:-1;;;80574:720:0:o;81364:113::-;-1:-1:-1;;;;;41955:25:0;;81422:7;41955:25;;;:18;:25;;35848:2;41955:25;;;;35710:13;41955:50;;41954:82;81449:20;41866:178;82891:98;23685:13;:11;:13::i;:::-;82960:12:::1;:21:::0;82891:98::o;52056:164::-;-1:-1:-1;;;;;52177:25:0;;;52153:4;52177:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;52056:164::o;83382:94::-;23685:13;:11;:13::i;:::-;83449:6:::1;:19:::0;83382:94::o;83972:126::-;23685:13;:11;:13::i;:::-;84058:14:::1;:32;84075:15:::0;84058:14;:32:::1;:::i;24732:220::-:0;23685:13;:11;:13::i;:::-;-1:-1:-1;;;;;24817:22:0;::::1;24813:93;;24863:31;::::0;-1:-1:-1;;;24863:31:0;;24891:1:::1;24863:31;::::0;::::1;3642:51:1::0;3615:18;;24863:31:0::1;3496:203:1::0;24813:93:0::1;24916:28;24935:8;24916:18;:28::i;84497:96::-:0;23685:13;:11;:13::i;:::-;84566:10:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;84566:19:0;;::::1;::::0;;;::::1;::::0;;84497:96::o;84336:90::-;23685:13;:11;:13::i;:::-;84402:7:::1;:16:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;84402:16:0;;::::1;::::0;;;::::1;::::0;;84336:90::o;43714:639::-;43799:4;-1:-1:-1;;;;;;;;;44123:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;44200:25:0;;;44123:102;:179;;;-1:-1:-1;;;;;;;;44277:25:0;-1:-1:-1;;;44277:25:0;;43714:639::o;4842:215::-;4944:4;-1:-1:-1;;;;;;4968:41:0;;-1:-1:-1;;;4968:41:0;;:81;;-1:-1:-1;;;;;;;;;;1849:40:0;;;5013:36;1749:148;23964:166;23872:6;;-1:-1:-1;;;;;23872:6:0;74873:10;24024:23;24020:103;;24071:40;;-1:-1:-1;;;24071:40:0;;74873:10;24071:40;;;3642:51:1;3615:18;;24071:40:0;3496:203:1;6191:518:0;5907:5;-1:-1:-1;;;;;6340:26:0;;;-1:-1:-1;6336:176:0;;;6445:55;;-1:-1:-1;;;6445:55:0;;-1:-1:-1;;;;;17809:39:1;;6445:55:0;;;17791:58:1;17865:18;;;17858:34;;;17764:18;;6445:55:0;17618:280:1;6336:176:0;-1:-1:-1;;;;;6526:22:0;;6522:110;;6572:48;;-1:-1:-1;;;6572:48:0;;6617:1;6572:48;;;3642:51:1;3615:18;;6572:48:0;3496:203:1;6522:110:0;-1:-1:-1;6666:35:0;;;;;;;;;-1:-1:-1;;;;;6666:35:0;;;;;;-1:-1:-1;;;;;6666:35:0;;;;;;;;;;-1:-1:-1;;;6644:57:0;;;;:19;:57;6191:518::o;20405:293::-;19807:1;20539:7;;:19;20531:63;;;;-1:-1:-1;;;20531:63:0;;18105:2:1;20531:63:0;;;18087:21:1;18144:2;18124:18;;;18117:30;18183:33;18163:18;;;18156:61;18234:18;;20531:63:0;17903:355:1;20531:63:0;19807:1;20672:7;:18;20405:293::o;9282:156::-;9373:4;9426;9397:25;9410:5;9417:4;9397:12;:25::i;:::-;:33;;9282:156;-1:-1:-1;;;;9282:156:0:o;68618:112::-;68695:27;68705:2;68709:8;68695:27;;;;;;;;;;;;:9;:27::i;52478:282::-;52543:4;52599:7;77972:1;52580:26;;:66;;;;;52633:13;;52623:7;:23;52580:66;:153;;;;-1:-1:-1;;52684:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;52684:44:0;:49;;52478:282::o;47164:1275::-;47231:7;47266;;77972:1;47315:23;47311:1061;;47368:13;;47361:4;:20;47357:1015;;;47406:14;47423:23;;;:17;:23;;;;;;;-1:-1:-1;;;47512:24:0;;:29;;47508:845;;48177:113;48184:6;48194:1;48184:11;48177:113;;-1:-1:-1;;;48255:6:0;48237:25;;;;:17;:25;;;;;;48177:113;;47508:845;47383:989;47357:1015;48400:31;;-1:-1:-1;;;48400:31:0;;;;;;;;;;;25112:191;25205:6;;;-1:-1:-1;;;;;25222:17:0;;;-1:-1:-1;;;;;;25222:17:0;;;;;;;25255:40;;25205:6;;;25222:17;25205:6;;25255:40;;25186:16;;25255:40;25175:128;25112:191;:::o;46612:161::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46740:24:0;;;;:17;:24;;;;;;46721:44;;-1:-1:-1;;;;;;;;;;;;;48648:41:0;;;;36369:3;48734:33;;;48700:68;;-1:-1:-1;;;48700:68:0;-1:-1:-1;;;48798:24:0;;:29;;-1:-1:-1;;;48779:48:0;;;;36890:3;48867:28;;;;-1:-1:-1;;;48838:58:0;-1:-1:-1;48538:366:0;60949:716;61133:88;;-1:-1:-1;;;61133:88:0;;61112:4;;-1:-1:-1;;;;;61133:45:0;;;;;:88;;74873:10;;61200:4;;61206:7;;61215:5;;61133:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61133:88:0;;;;;;;;-1:-1:-1;;61133:88:0;;;;;;;;;;;;:::i;:::-;;;61129:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61416:6;:13;61433:1;61416:18;61412:235;;61462:40;;-1:-1:-1;;;61462:40:0;;;;;;;;;;;61412:235;61605:6;61599:13;61590:6;61586:2;61582:15;61575:38;61129:529;-1:-1:-1;;;;;;61292:64:0;-1:-1:-1;;;61292:64:0;;-1:-1:-1;61129:529:0;60949:716;;;;;;:::o;77764:108::-;77824:13;77857:7;77850:14;;;;;:::i;74993:1745::-;75058:17;75492:4;75485;75479:11;75475:22;75584:1;75578:4;75571:15;75659:4;75656:1;75652:12;75645:19;;;75741:1;75736:3;75729:14;75845:3;76084:5;76066:428;76132:1;76127:3;76123:11;76116:18;;76303:2;76297:4;76293:13;76289:2;76285:22;76280:3;76272:36;76397:2;76387:13;;76454:25;76066:428;76454:25;-1:-1:-1;76524:13:0;;;-1:-1:-1;;76639:14:0;;;76701:19;;;76639:14;74993:1745;-1:-1:-1;74993:1745:0:o;10001:296::-;10084:7;10127:4;10084:7;10142:118;10166:5;:12;10162:1;:16;10142:118;;;10215:33;10225:12;10239:5;10245:1;10239:8;;;;;;;;:::i;:::-;;;;;;;10215:9;:33::i;:::-;10200:48;-1:-1:-1;10180:3:0;;10142:118;;;-1:-1:-1;10277:12:0;10001:296;-1:-1:-1;;;10001:296:0:o;67845:689::-;67976:19;67982:2;67986:8;67976:5;:19::i;:::-;-1:-1:-1;;;;;68037:14:0;;;:19;68033:483;;68077:11;68091:13;68139:14;;;68172:233;68203:62;68242:1;68246:2;68250:7;;;;;;68259:5;68203:30;:62::i;:::-;68198:167;;68301:40;;-1:-1:-1;;;68301:40:0;;;;;;;;;;;68198:167;68400:3;68392:5;:11;68172:233;;68487:3;68470:13;;:20;68466:34;;68492:8;;;68466:34;68058:458;;67845:689;;;:::o;17431:149::-;17494:7;17525:1;17521;:5;:51;;17773:13;17867:15;;;17903:4;17896:15;;;17950:4;17934:21;;17521:51;;;-1:-1:-1;17773:13:0;17867:15;;;17903:4;17896:15;17950:4;17934:21;;;17431:149::o;62127:2966::-;62200:20;62223:13;;;62251;;;62247:44;;62273:18;;-1:-1:-1;;;62273:18:0;;;;;;;;;;;62247:44;-1:-1:-1;;;;;62779:22:0;;;;;;:18;:22;;;;35848:2;62779:22;;;:71;;62817:32;62805:45;;62779:71;;;63093:31;;;:17;:31;;;;;-1:-1:-1;49829:15:0;;49803:24;49799:46;49398:11;49373:23;49369:41;49366:52;49356:63;;63093:173;;63328:23;;;;63093:31;;62779:22;;64093:25;62779:22;;63946:335;64607:1;64593:12;64589:20;64547:346;64648:3;64639:7;64636:16;64547:346;;64866:7;64856:8;64853:1;64826:25;64823:1;64820;64815:59;64701:1;64688:15;64547:346;;;64551:77;64926:8;64938:1;64926:13;64922:45;;64948:19;;-1:-1:-1;;;64948:19:0;;;;;;;;;;;64922:45;64984:13;:19;-1:-1:-1;78717:1297:0;;;:::o;196:131:1:-;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:160::-;839:20;;895:13;;888:21;878:32;;868:60;;924:1;921;914:12;868:60;774:160;;;:::o;939:180::-;995:6;1048:2;1036:9;1027:7;1023:23;1019:32;1016:52;;;1064:1;1061;1054:12;1016:52;1087:26;1103:9;1087:26;:::i;1124:173::-;1192:20;;-1:-1:-1;;;;;1241:31:1;;1231:42;;1221:70;;1287:1;1284;1277:12;1302:366;1369:6;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1548:2;1537:9;1533:18;1520:32;-1:-1:-1;;;;;1585:5:1;1581:38;1574:5;1571:49;1561:77;;1634:1;1631;1624:12;1561:77;1657:5;1647:15;;;1302:366;;;;;:::o;1673:367::-;1736:8;1746:6;1800:3;1793:4;1785:6;1781:17;1777:27;1767:55;;1818:1;1815;1808:12;1767:55;-1:-1:-1;1841:20:1;;1884:18;1873:30;;1870:50;;;1916:1;1913;1906:12;1870:50;1953:4;1945:6;1941:17;1929:29;;2013:3;2006:4;1996:6;1993:1;1989:14;1981:6;1977:27;1973:38;1970:47;1967:67;;;2030:1;2027;2020:12;2045:505;2140:6;2148;2156;2209:2;2197:9;2188:7;2184:23;2180:32;2177:52;;;2225:1;2222;2215:12;2177:52;2261:9;2248:23;2238:33;;2322:2;2311:9;2307:18;2294:32;2349:18;2341:6;2338:30;2335:50;;;2381:1;2378;2371:12;2335:50;2420:70;2482:7;2473:6;2462:9;2458:22;2420:70;:::i;:::-;2045:505;;2509:8;;-1:-1:-1;2394:96:1;;-1:-1:-1;;;;2045:505:1:o;2555:250::-;2640:1;2650:113;2664:6;2661:1;2658:13;2650:113;;;2740:11;;;2734:18;2721:11;;;2714:39;2686:2;2679:10;2650:113;;;-1:-1:-1;;2797:1:1;2779:16;;2772:27;2555:250::o;2810:271::-;2852:3;2890:5;2884:12;2917:6;2912:3;2905:19;2933:76;3002:6;2995:4;2990:3;2986:14;2979:4;2972:5;2968:16;2933:76;:::i;:::-;3063:2;3042:15;-1:-1:-1;;3038:29:1;3029:39;;;;3070:4;3025:50;;2810:271;-1:-1:-1;;2810:271:1:o;3086:220::-;3235:2;3224:9;3217:21;3198:4;3255:45;3296:2;3285:9;3281:18;3273:6;3255:45;:::i;3311:180::-;3370:6;3423:2;3411:9;3402:7;3398:23;3394:32;3391:52;;;3439:1;3436;3429:12;3391:52;-1:-1:-1;3462:23:1;;3311:180;-1:-1:-1;3311:180:1:o;3704:254::-;3772:6;3780;3833:2;3821:9;3812:7;3808:23;3804:32;3801:52;;;3849:1;3846;3839:12;3801:52;3872:29;3891:9;3872:29;:::i;:::-;3862:39;3948:2;3933:18;;;;3920:32;;-1:-1:-1;;;3704:254:1:o;3963:328::-;4040:6;4048;4056;4109:2;4097:9;4088:7;4084:23;4080:32;4077:52;;;4125:1;4122;4115:12;4077:52;4148:29;4167:9;4148:29;:::i;:::-;4138:39;;4196:38;4230:2;4219:9;4215:18;4196:38;:::i;:::-;4186:48;;4281:2;4270:9;4266:18;4253:32;4243:42;;3963:328;;;;;:::o;4296:248::-;4364:6;4372;4425:2;4413:9;4404:7;4400:23;4396:32;4393:52;;;4441:1;4438;4431:12;4393:52;-1:-1:-1;;4464:23:1;;;4534:2;4519:18;;;4506:32;;-1:-1:-1;4296:248:1:o;5010:186::-;5069:6;5122:2;5110:9;5101:7;5097:23;5093:32;5090:52;;;5138:1;5135;5128:12;5090:52;5161:29;5180:9;5161:29;:::i;5201:127::-;5262:10;5257:3;5253:20;5250:1;5243:31;5293:4;5290:1;5283:15;5317:4;5314:1;5307:15;5333:632;5398:5;5428:18;5469:2;5461:6;5458:14;5455:40;;;5475:18;;:::i;:::-;5550:2;5544:9;5518:2;5604:15;;-1:-1:-1;;5600:24:1;;;5626:2;5596:33;5592:42;5580:55;;;5650:18;;;5670:22;;;5647:46;5644:72;;;5696:18;;:::i;:::-;5736:10;5732:2;5725:22;5765:6;5756:15;;5795:6;5787;5780:22;5835:3;5826:6;5821:3;5817:16;5814:25;5811:45;;;5852:1;5849;5842:12;5811:45;5902:6;5897:3;5890:4;5882:6;5878:17;5865:44;5957:1;5950:4;5941:6;5933;5929:19;5925:30;5918:41;;;;5333:632;;;;;:::o;5970:451::-;6039:6;6092:2;6080:9;6071:7;6067:23;6063:32;6060:52;;;6108:1;6105;6098:12;6060:52;6148:9;6135:23;6181:18;6173:6;6170:30;6167:50;;;6213:1;6210;6203:12;6167:50;6236:22;;6289:4;6281:13;;6277:27;-1:-1:-1;6267:55:1;;6318:1;6315;6308:12;6267:55;6341:74;6407:7;6402:2;6389:16;6384:2;6380;6376:11;6341:74;:::i;6611:632::-;6782:2;6834:21;;;6904:13;;6807:18;;;6926:22;;;6753:4;;6782:2;7005:15;;;;6979:2;6964:18;;;6753:4;7048:169;7062:6;7059:1;7056:13;7048:169;;;7123:13;;7111:26;;7192:15;;;;7157:12;;;;7084:1;7077:9;7048:169;;7248:254;7313:6;7321;7374:2;7362:9;7353:7;7349:23;7345:32;7342:52;;;7390:1;7387;7380:12;7342:52;7413:29;7432:9;7413:29;:::i;:::-;7403:39;;7461:35;7492:2;7481:9;7477:18;7461:35;:::i;:::-;7451:45;;7248:254;;;;;:::o;7507:667::-;7602:6;7610;7618;7626;7679:3;7667:9;7658:7;7654:23;7650:33;7647:53;;;7696:1;7693;7686:12;7647:53;7719:29;7738:9;7719:29;:::i;:::-;7709:39;;7767:38;7801:2;7790:9;7786:18;7767:38;:::i;:::-;7757:48;;7852:2;7841:9;7837:18;7824:32;7814:42;;7907:2;7896:9;7892:18;7879:32;7934:18;7926:6;7923:30;7920:50;;;7966:1;7963;7956:12;7920:50;7989:22;;8042:4;8034:13;;8030:27;-1:-1:-1;8020:55:1;;8071:1;8068;8061:12;8020:55;8094:74;8160:7;8155:2;8142:16;8137:2;8133;8129:11;8094:74;:::i;:::-;8084:84;;;7507:667;;;;;;;:::o;8689:260::-;8757:6;8765;8818:2;8806:9;8797:7;8793:23;8789:32;8786:52;;;8834:1;8831;8824:12;8786:52;8857:29;8876:9;8857:29;:::i;:::-;8847:39;;8905:38;8939:2;8928:9;8924:18;8905:38;:::i;10238:127::-;10299:10;10294:3;10290:20;10287:1;10280:31;10330:4;10327:1;10320:15;10354:4;10351:1;10344:15;10370:125;10435:9;;;10456:10;;;10453:36;;;10469:18;;:::i;11566:128::-;11633:9;;;11654:11;;;11651:37;;;11668:18;;:::i;11699:168::-;11772:9;;;11803;;11820:15;;;11814:22;;11800:37;11790:71;;11841:18;;:::i;11872:342::-;12074:2;12056:21;;;12113:2;12093:18;;;12086:30;-1:-1:-1;;;12147:2:1;12132:18;;12125:48;12205:2;12190:18;;11872:342::o;12219:380::-;12298:1;12294:12;;;;12341;;;12362:61;;12416:4;12408:6;12404:17;12394:27;;12362:61;12469:2;12461:6;12458:14;12438:18;12435:38;12432:161;;12515:10;12510:3;12506:20;12503:1;12496:31;12550:4;12547:1;12540:15;12578:4;12575:1;12568:15;12432:161;;12219:380;;;:::o;12604:217::-;12644:1;12670;12660:132;;12714:10;12709:3;12705:20;12702:1;12695:31;12749:4;12746:1;12739:15;12777:4;12774:1;12767:15;12660:132;-1:-1:-1;12806:9:1;;12604:217::o;12952:518::-;13054:2;13049:3;13046:11;13043:421;;;13090:5;13087:1;13080:16;13134:4;13131:1;13121:18;13204:2;13192:10;13188:19;13185:1;13181:27;13175:4;13171:38;13240:4;13228:10;13225:20;13222:47;;;-1:-1:-1;13263:4:1;13222:47;13318:2;13313:3;13309:12;13306:1;13302:20;13296:4;13292:31;13282:41;;13373:81;13391:2;13384:5;13381:13;13373:81;;;13450:1;13436:16;;13417:1;13406:13;13373:81;;13646:1345;13772:3;13766:10;13799:18;13791:6;13788:30;13785:56;;;13821:18;;:::i;:::-;13850:97;13940:6;13900:38;13932:4;13926:11;13900:38;:::i;:::-;13894:4;13850:97;:::i;:::-;14002:4;;14059:2;14048:14;;14076:1;14071:663;;;;14778:1;14795:6;14792:89;;;-1:-1:-1;14847:19:1;;;14841:26;14792:89;-1:-1:-1;;13603:1:1;13599:11;;;13595:24;13591:29;13581:40;13627:1;13623:11;;;13578:57;14894:81;;14041:944;;14071:663;12899:1;12892:14;;;12936:4;12923:18;;-1:-1:-1;;14107:20:1;;;14225:236;14239:7;14236:1;14233:14;14225:236;;;14328:19;;;14322:26;14307:42;;14420:27;;;;14388:1;14376:14;;;;14255:19;;14225:236;;;14229:3;14489:6;14480:7;14477:19;14474:201;;;14550:19;;;14544:26;-1:-1:-1;;14633:1:1;14629:14;;;14645:3;14625:24;14621:37;14617:42;14602:58;14587:74;;14474:201;-1:-1:-1;;;;;14721:1:1;14705:14;;;14701:22;14688:36;;-1:-1:-1;13646:1345:1:o;14996:127::-;15057:10;15052:3;15048:20;15045:1;15038:31;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;16950:663;17230:3;17268:6;17262:13;17284:66;17343:6;17338:3;17331:4;17323:6;17319:17;17284:66;:::i;:::-;17413:13;;17372:16;;;;17435:70;17413:13;17372:16;17482:4;17470:17;;17435:70;:::i;:::-;-1:-1:-1;;;17527:20:1;;17556:22;;;17605:1;17594:13;;16950:663;-1:-1:-1;;;;16950:663:1:o;18263:489::-;-1:-1:-1;;;;;18532:15:1;;;18514:34;;18584:15;;18579:2;18564:18;;18557:43;18631:2;18616:18;;18609:34;;;18679:3;18674:2;18659:18;;18652:31;;;18457:4;;18700:46;;18726:19;;18718:6;18700:46;:::i;:::-;18692:54;18263:489;-1:-1:-1;;;;;;18263:489:1:o;18757:249::-;18826:6;18879:2;18867:9;18858:7;18854:23;18850:32;18847:52;;;18895:1;18892;18885:12;18847:52;18927:9;18921:16;18946:30;18970:5;18946:30;:::i

Swarm Source

ipfs://f9eb67be58c42a646d4137c04f63fbcbe83f774159541173a03db340367d7a0c
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.