ETH Price: $3,416.18 (-1.83%)
Gas: 5 Gwei

Token

Degen Project (DPNFT)
 

Overview

Max Total Supply

83 DPNFT

Holders

60

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
readypereone.eth
Balance
1 DPNFT
0xCd241563F7288b5eb2b9B715F736232889B62d8b
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:
DegenProject

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-21
*/

// SPDX-License-Identifier: MIT

// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

/**
*                                                                                                                
*   DDDDDDDDDDDDD      EEEEEEEEEEEEEEEEEEEEEE       GGGGGGGGGGGGGEEEEEEEEEEEEEEEEEEEEEENNNNNNNN        NNNNNNNN     
*   D::::::::::::DDD   E::::::::::::::::::::E    GGG::::::::::::GE::::::::::::::::::::EN:::::::N       N::::::N     
*   D:::::::::::::::DD E::::::::::::::::::::E  GG:::::::::::::::GE::::::::::::::::::::EN::::::::N      N::::::N     
*   DDD:::::DDDDD:::::DEE::::::EEEEEEEEE::::E G:::::GGGGGGGG::::GEE::::::EEEEEEEEE::::EN:::::::::N     N::::::N     
*     D:::::D    D:::::D E:::::E       EEEEEEG:::::G       GGGGGG  E:::::E       EEEEEEN::::::::::N    N::::::N     
*     D:::::D     D:::::DE:::::E            G:::::G                E:::::E             N:::::::::::N   N::::::N     
*     D:::::D     D:::::DE::::::EEEEEEEEEE  G:::::G                E::::::EEEEEEEEEE   N:::::::N::::N  N::::::N     
*     D:::::D     D:::::DE:::::::::::::::E  G:::::G    GGGGGGGGGG  E:::::::::::::::E   N::::::N N::::N N::::::N     
*     D:::::D     D:::::DE:::::::::::::::E  G:::::G    G::::::::G  E:::::::::::::::E   N::::::N  N::::N:::::::N     
*     D:::::D     D:::::DE::::::EEEEEEEEEE  G:::::G    GGGGG::::G  E::::::EEEEEEEEEE   N::::::N   N:::::::::::N     
*     D:::::D     D:::::DE:::::E            G:::::G        G::::G  E:::::E             N::::::N    N::::::::::N     
*     D:::::D    D:::::D E:::::E       EEEEEEG:::::G       G::::G  E:::::E       EEEEEEN::::::N     N:::::::::N     
*   DDD:::::DDDDD:::::DEE::::::EEEEEEEE:::::E G:::::GGGGGGGG::::GEE::::::EEEEEEEE:::::EN::::::N      N::::::::N     
*   D:::::::::::::::DD E::::::::::::::::::::E  GG:::::::::::::::GE::::::::::::::::::::EN::::::N       N:::::::N     
*   D::::::::::::DDD   E::::::::::::::::::::E    GGG::::::GGG:::GE::::::::::::::::::::EN::::::N        N::::::N     
*   DDDDDDDDDDDDD      EEEEEEEEEEEEEEEEEEEEEE       GGGGGG   GGGGEEEEEEEEEEEEEEEEEEEEEENNNNNNNN         NNNNNNN                                                                                                                                                                                                                                 
*
*   @degenzero                                                                                                                                                                                                                                                                               
*
*/


pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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
    ) external;

    /**
     * @dev Transfers `tokenId` token 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;

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

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

    /**
     * @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 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);

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

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


// File erc721a/contracts/[email protected]

// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _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 ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary 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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, prevOwnership.addr);

        // 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 {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

    /**
     * @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 {}
}


// File @openzeppelin/contracts/security/[email protected]

// OpenZeppelin Contracts v4.4.1 (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() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/security/[email protected]

// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


// File @openzeppelin/contracts/utils/cryptography/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @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 Returns the rebuilt hash obtained by traversing a Merklee 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.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


// File contracts/DegenProject.sol

pragma solidity ^0.8.4;





error DListedOnly();
error InsufficientPayment();
error IncorrectPayment();
error AccountNotWhitelisted();
error AmountExceedsSupply();
error IncorrectBatchSize();

contract DegenProject is ERC721A, Ownable, Pausable {
    uint public price;
    uint public maxSupply;
    uint public maxBatchSize = 3;
    uint public maxDLmint = 3;
    uint public maxDLRewardmint = 1;
    bytes32 public DLRoot;
    bytes32 public DLRewardRoot;
    bool public isDListOnly;
    string private _baseTokenURI;

    mapping(address => uint) public DLClaimed;
    mapping(address => uint) public DLRewardClaimed;


    constructor(uint supply, uint mintPrice, string memory baseTokenURI) ERC721A("Degen Project", "DPNFT") {
        maxSupply = supply;
        price = mintPrice;
        _baseTokenURI = baseTokenURI;
    }

    /// @dev Returns the tokenIds of the address. O(totalSupply) in complexity.
    function tokensOfOwner(address owner) external view returns (uint256[] memory) {
        unchecked {
            uint256[] memory a = new uint256[](balanceOf(owner)); 
            uint256 end = _currentIndex;
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            for (uint256 i; i < end; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    a[tokenIdsIdx++] = i;
                }
            }
            return a;    
        }
    }

    function setPrice(uint mintPrice) public onlyOwner {
        price = mintPrice;
    }

    function safeMintDL(uint256 quantity, bytes32[] calldata signature) public whenNotPaused payable {
        require(((DLClaimed[msg.sender]+quantity) <= maxDLmint), "DPNFT: Quantity Exceeds Max Allowed");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(signature, DLRoot, leaf),
            "DPNFT: Address not whitelisted."
        );
        if (quantity > maxBatchSize)           revert IncorrectBatchSize();
        if (totalSupply() + quantity > maxSupply)     revert AmountExceedsSupply();
        if ((quantity * price) != msg.value)   revert IncorrectPayment();

        _safeMint(msg.sender, quantity);
        payable(owner()).transfer(msg.value);
        DLClaimed[msg.sender] += quantity;
    }

    function safeMintReward(bytes32[] calldata signature) public whenNotPaused {
        require(((DLRewardClaimed[msg.sender]+1) <= maxDLRewardmint), "DPNFT: Quantity Exceeds Max Allowed");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(signature, DLRewardRoot, leaf),
            "DPNFT: Address not whitelisted."
        );
        if (totalSupply() + 1 > maxSupply)     revert AmountExceedsSupply();

        _safeMint(msg.sender, 1);
        DLRewardClaimed[msg.sender] += 1;
    }

    function safeMint(uint256 quantity) public whenNotPaused payable {
        if (isDListOnly)  revert DListedOnly();
        if (quantity > maxBatchSize)           revert IncorrectBatchSize();
        if (totalSupply() + quantity > maxSupply)     revert AmountExceedsSupply();
        if ((quantity * price) != msg.value)   revert IncorrectPayment();

        _safeMint(msg.sender, quantity);
        payable(owner()).transfer(msg.value);
    }

    function setMaxBatchSize(uint size) public onlyOwner {
        maxBatchSize = size;
    }

    function setBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }

    function setDLRoot(bytes32 root) public onlyOwner {
        DLRoot = root;
    }

    function setDLRewardRoot(bytes32 root) public onlyOwner {
        DLRewardRoot = root;
    }

    function setDListStatus(bool _isDListOnly) public onlyOwner {
        isDListOnly = _isDListOnly;
    }

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

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

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }
}


// File contracts/DegenProject.flat.sol

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"string","name":"baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AmountExceedsSupply","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"DListedOnly","type":"error"},{"inputs":[],"name":"IncorrectBatchSize","type":"error"},{"inputs":[],"name":"IncorrectPayment","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"DLClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"DLRewardClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DLRewardRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DLRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDListOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDLRewardmint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDLmint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"signature","type":"bytes32[]"}],"name":"safeMintDL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"signature","type":"bytes32[]"}],"name":"safeMintReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setDLRewardRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setDLRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isDListOnly","type":"bool"}],"name":"setDListStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"size","type":"uint256"}],"name":"setMaxBatchSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526003600b556003600c556001600d553480156200002057600080fd5b50604051620027ae380380620027ae8339810160408190526200004391620001ec565b604080518082018252600d81526c111959d95b88141c9bda9958dd609a1b602080830191825283518085019094526005845264111413919560da1b908401528151919291620000959160029162000146565b508051620000ab90600390602084019062000146565b5050600160005550620000be33620000f4565b6008805460ff60a01b19169055600a83905560098290558051620000ea90601190602084019062000146565b5050505062000332565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015490620002df565b90600052602060002090601f016020900481019282620001785760008555620001c3565b82601f106200019357805160ff1916838001178555620001c3565b82800160010185558215620001c3579182015b82811115620001c3578251825591602001919060010190620001a6565b50620001d1929150620001d5565b5090565b5b80821115620001d15760008155600101620001d6565b6000806000606084860312156200020257600080fd5b835160208086015160408701519295509350906001600160401b03808211156200022b57600080fd5b818701915087601f8301126200024057600080fd5b8151818111156200025557620002556200031c565b604051601f8201601f19908116603f011681019083821181831017156200028057620002806200031c565b816040528281528a868487010111156200029957600080fd5b600093505b82841015620002bd57848401860151818501870152928501926200029e565b82841115620002cf5760008684830101525b8096505050505050509250925092565b600181811c90821680620002f457607f821691505b602082108114156200031657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61246c80620003426000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063b61688a8116100ab578063d5abeb011161006f578063d5abeb0114610679578063ded449a41461068f578063e985e9c5146106af578063f2fde38b146106f8578063fee7d73d1461071857600080fd5b8063b61688a8146105d9578063b88d4fde146105f9578063c4bcec6714610619578063c87b56dd1461062c578063c8c045ba1461064c57600080fd5b806391b7f5ed116100f257806391b7f5ed1461055857806395d89b4114610578578063962fda8b1461058d578063a035b1fe146105a3578063a22cb465146105b957600080fd5b8063715018a6146104cd5780638456cb59146104e25780638462151c146104f757806385258dd0146105245780638da5cb5b1461053a57600080fd5b80632ea87861116101bc57806352d122ad1161018057806352d122ad1461043857806355f804b31461044e5780635c975abb1461046e5780636352211e1461048d57806370a08231146104ad57600080fd5b80632ea87861146103a957806331c864e8146103c357806334f95c4d146103d65780633f4ba83a1461040357806342842e0e1461041857600080fd5b806321b8ece01161020357806321b8ece01461031d57806323b872dd1461033d57806325867a621461035d5780632913daa0146103735780632b26a6bf1461038957600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612072565b610738565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61078a565b60405161026c919061221b565b3480156102a357600080fd5b506102b76102b2366004612059565b61081c565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611fd3565b610860565b005b3480156102fd57600080fd5b5061030f600154600054036000190190565b60405190815260200161026c565b34801561032957600080fd5b506102ef610338366004612059565b6108ee565b34801561034957600080fd5b506102ef610358366004611ef2565b610926565b34801561036957600080fd5b5061030f600e5481565b34801561037f57600080fd5b5061030f600b5481565b34801561039557600080fd5b506102ef6103a4366004612059565b610931565b3480156103b557600080fd5b506010546102609060ff1681565b6102ef6103d1366004612059565b610960565b3480156103e257600080fd5b5061030f6103f1366004611ea4565b60126020526000908152604090205481565b34801561040f57600080fd5b506102ef610a83565b34801561042457600080fd5b506102ef610433366004611ef2565b610ab7565b34801561044457600080fd5b5061030f600d5481565b34801561045a57600080fd5b506102ef6104693660046120ac565b610ad2565b34801561047a57600080fd5b50600854600160a01b900460ff16610260565b34801561049957600080fd5b506102b76104a8366004612059565b610b0f565b3480156104b957600080fd5b5061030f6104c8366004611ea4565b610b21565b3480156104d957600080fd5b506102ef610b6f565b3480156104ee57600080fd5b506102ef610ba3565b34801561050357600080fd5b50610517610512366004611ea4565b610bd5565b60405161026c91906121d7565b34801561053057600080fd5b5061030f600f5481565b34801561054657600080fd5b506008546001600160a01b03166102b7565b34801561056457600080fd5b506102ef610573366004612059565b610cfe565b34801561058457600080fd5b5061028a610d2d565b34801561059957600080fd5b5061030f600c5481565b3480156105af57600080fd5b5061030f60095481565b3480156105c557600080fd5b506102ef6105d4366004611fa9565b610d3c565b3480156105e557600080fd5b506102ef6105f436600461203e565b610dd2565b34801561060557600080fd5b506102ef610614366004611f2e565b610e0f565b6102ef6106273660046120f4565b610e60565b34801561063857600080fd5b5061028a610647366004612059565b611088565b34801561065857600080fd5b5061030f610667366004611ea4565b60136020526000908152604090205481565b34801561068557600080fd5b5061030f600a5481565b34801561069b57600080fd5b506102ef6106aa366004612059565b61110d565b3480156106bb57600080fd5b506102606106ca366004611ebf565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070457600080fd5b506102ef610713366004611ea4565b61113c565b34801561072457600080fd5b506102ef610733366004611ffd565b6111d7565b60006001600160e01b031982166380ac58cd60e01b148061076957506001600160e01b03198216635b5e139f60e01b145b8061078457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107999061235e565b80601f01602080910402602001604051908101604052809291908181526020018280546107c59061235e565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b600061082782611376565b610844576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061086b82610b0f565b9050806001600160a01b0316836001600160a01b031614156108a05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108c057506108be81336106ca565b155b156108de576040516367d9dca160e11b815260040160405180910390fd5b6108e98383836113af565b505050565b6008546001600160a01b031633146109215760405162461bcd60e51b815260040161091890612258565b60405180910390fd5b600e55565b6108e983838361140b565b6008546001600160a01b0316331461095b5760405162461bcd60e51b815260040161091890612258565b600b55565b600854600160a01b900460ff161561098a5760405162461bcd60e51b81526004016109189061222e565b60105460ff16156109ae57604051637a196ef960e01b815260040160405180910390fd5b600b548111156109d157604051636c8e7a1960e01b815260040160405180910390fd5b600a54816109e6600154600054036000190190565b6109f091906122d0565b1115610a0f5760405163da7cdff760e01b815260040160405180910390fd5b3460095482610a1e91906122fc565b14610a3c5760405163569e8c1160e01b815260040160405180910390fd5b610a46338261161f565b6008546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610a7f573d6000803e3d6000fd5b5050565b6008546001600160a01b03163314610aad5760405162461bcd60e51b815260040161091890612258565b610ab5611639565b565b6108e983838360405180602001604052806000815250610e0f565b6008546001600160a01b03163314610afc5760405162461bcd60e51b815260040161091890612258565b8051610a7f906011906020840190611d1f565b6000610b1a826116d6565b5192915050565b60006001600160a01b038216610b4a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610b995760405162461bcd60e51b815260040161091890612258565b610ab560006117fd565b6008546001600160a01b03163314610bcd5760405162461bcd60e51b815260040161091890612258565b610ab561184f565b60606000610be283610b21565b6001600160401b03811115610bf957610bf961240a565b604051908082528060200260200182016040528015610c22578160200160208202803683370190505b506000805491925080805b83811015610cf357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610c945750610ceb565b80516001600160a01b031615610ca957805192505b876001600160a01b0316836001600160a01b03161415610ce95781868580600101965081518110610cdc57610cdc6123f4565b6020026020010181815250505b505b600101610c2d565b509295945050505050565b6008546001600160a01b03163314610d285760405162461bcd60e51b815260040161091890612258565b600955565b6060600380546107999061235e565b6001600160a01b038216331415610d665760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610dfc5760405162461bcd60e51b815260040161091890612258565b6010805460ff1916911515919091179055565b610e1a84848461140b565b6001600160a01b0383163b15158015610e3c5750610e3a848484846118b4565b155b15610e5a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600854600160a01b900460ff1615610e8a5760405162461bcd60e51b81526004016109189061222e565b600c5433600090815260126020526040902054610ea89085906122d0565b1115610ec65760405162461bcd60e51b81526004016109189061228d565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f4083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e5491508490506119ac565b610f8c5760405162461bcd60e51b815260206004820152601f60248201527f44504e46543a2041646472657373206e6f742077686974656c69737465642e006044820152606401610918565b600b54841115610faf57604051636c8e7a1960e01b815260040160405180910390fd5b600a5484610fc4600154600054036000190190565b610fce91906122d0565b1115610fed5760405163da7cdff760e01b815260040160405180910390fd5b3460095485610ffc91906122fc565b1461101a5760405163569e8c1160e01b815260040160405180910390fd5b611024338561161f565b6008546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561105d573d6000803e3d6000fd5b50336000908152601260205260408120805486929061107d9084906122d0565b909155505050505050565b606061109382611376565b6110b057604051630a14c4b560e41b815260040160405180910390fd5b60006110ba6119c2565b90508051600014156110db5760405180602001604052806000815250611106565b806110e5846119d1565b6040516020016110f692919061216b565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111375760405162461bcd60e51b815260040161091890612258565b600f55565b6008546001600160a01b031633146111665760405162461bcd60e51b815260040161091890612258565b6001600160a01b0381166111cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610918565b6111d4816117fd565b50565b600854600160a01b900460ff16156112015760405162461bcd60e51b81526004016109189061222e565b600d543360009081526013602052604090205461121f9060016122d0565b111561123d5760405162461bcd60e51b81526004016109189061228d565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506112b783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506119ac565b6113035760405162461bcd60e51b815260206004820152601f60248201527f44504e46543a2041646472657373206e6f742077686974656c69737465642e006044820152606401610918565b600a54611317600154600054036000190190565b6113229060016122d0565b11156113415760405163da7cdff760e01b815260040160405180910390fd5b61134c33600161161f565b33600090815260136020526040812080546001929061136c9084906122d0565b9091555050505050565b60008160011115801561138a575060005482105b8015610784575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611416826116d6565b80519091506000906001600160a01b0316336001600160a01b031614806114445750815161144490336106ca565b8061145f5750336114548461081c565b6001600160a01b0316145b90508061147f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146114b45760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166114db57604051633a954ecd60e21b815260040160405180910390fd5b6114eb60008484600001516113af565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166115d5576000548110156115d557825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a7f828260405180602001604052806000815250611ace565b600854600160a01b900460ff166116895760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610918565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101919091528180600111158015611706575060005481105b156117e457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117e25780516001600160a01b031615611779579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156117dd579392505050565b611779565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff16156118795760405162461bcd60e51b81526004016109189061222e565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586116b93390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118e990339089908890889060040161219a565b602060405180830381600087803b15801561190357600080fd5b505af1925050508015611933575060408051601f3d908101601f191682019092526119309181019061208f565b60015b61198e573d808015611961576040519150601f19603f3d011682016040523d82523d6000602084013e611966565b606091505b508051611986576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826119b98584611adb565b14949350505050565b6060601180546107999061235e565b6060816119f55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a1f5780611a0981612399565b9150611a189050600a836122e8565b91506119f9565b6000816001600160401b03811115611a3957611a3961240a565b6040519080825280601f01601f191660200182016040528015611a63576020820181803683370190505b5090505b84156119a457611a7860018361231b565b9150611a85600a866123b4565b611a909060306122d0565b60f81b818381518110611aa557611aa56123f4565b60200101906001600160f81b031916908160001a905350611ac7600a866122e8565b9450611a67565b6108e98383836001611b4f565b600081815b8451811015611b47576000858281518110611afd57611afd6123f4565b60200260200101519050808311611b235760008381526020829052604090209250611b34565b600081815260208490526040902092505b5080611b3f81612399565b915050611ae0565b509392505050565b6000546001600160a01b038516611b7857604051622e076360e81b815260040160405180910390fd5b83611b965760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c4757506001600160a01b0387163b15155b15611cd0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c9860008884806001019550886118b4565b611cb5576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c4d578260005414611ccb57600080fd5b611d16565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611cd1575b50600055611618565b828054611d2b9061235e565b90600052602060002090601f016020900481019282611d4d5760008555611d93565b82601f10611d6657805160ff1916838001178555611d93565b82800160010185558215611d93579182015b82811115611d93578251825591602001919060010190611d78565b50611d9f929150611da3565b5090565b5b80821115611d9f5760008155600101611da4565b60006001600160401b0380841115611dd257611dd261240a565b604051601f8501601f19908116603f01168101908282118183101715611dfa57611dfa61240a565b81604052809350858152868686011115611e1357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e4457600080fd5b919050565b60008083601f840112611e5b57600080fd5b5081356001600160401b03811115611e7257600080fd5b6020830191508360208260051b8501011115611e8d57600080fd5b9250929050565b80358015158114611e4457600080fd5b600060208284031215611eb657600080fd5b61110682611e2d565b60008060408385031215611ed257600080fd5b611edb83611e2d565b9150611ee960208401611e2d565b90509250929050565b600080600060608486031215611f0757600080fd5b611f1084611e2d565b9250611f1e60208501611e2d565b9150604084013590509250925092565b60008060008060808587031215611f4457600080fd5b611f4d85611e2d565b9350611f5b60208601611e2d565b92506040850135915060608501356001600160401b03811115611f7d57600080fd5b8501601f81018713611f8e57600080fd5b611f9d87823560208401611db8565b91505092959194509250565b60008060408385031215611fbc57600080fd5b611fc583611e2d565b9150611ee960208401611e94565b60008060408385031215611fe657600080fd5b611fef83611e2d565b946020939093013593505050565b6000806020838503121561201057600080fd5b82356001600160401b0381111561202657600080fd5b61203285828601611e49565b90969095509350505050565b60006020828403121561205057600080fd5b61110682611e94565b60006020828403121561206b57600080fd5b5035919050565b60006020828403121561208457600080fd5b813561110681612420565b6000602082840312156120a157600080fd5b815161110681612420565b6000602082840312156120be57600080fd5b81356001600160401b038111156120d457600080fd5b8201601f810184136120e557600080fd5b6119a484823560208401611db8565b60008060006040848603121561210957600080fd5b8335925060208401356001600160401b0381111561212657600080fd5b61213286828701611e49565b9497909650939450505050565b60008151808452612157816020860160208601612332565b601f01601f19169290920160200192915050565b6000835161217d818460208801612332565b835190830190612191818360208801612332565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121cd9083018461213f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561220f578351835292840192918401916001016121f3565b50909695505050505050565b602081526000611106602083018461213f565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526023908201527f44504e46543a205175616e746974792045786365656473204d617820416c6c6f6040820152621dd95960ea1b606082015260800190565b600082198211156122e3576122e36123c8565b500190565b6000826122f7576122f76123de565b500490565b6000816000190483118215151615612316576123166123c8565b500290565b60008282101561232d5761232d6123c8565b500390565b60005b8381101561234d578181015183820152602001612335565b83811115610e5a5750506000910152565b600181811c9082168061237257607f821691505b6020821081141561239357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123ad576123ad6123c8565b5060010190565b6000826123c3576123c36123de565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111d457600080fdfea2646970667358221220c62352820be344a5f2e0284c4a9e41ed31aea2988576104634010f17b976a69f64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000002b200000000000000000000000000000000000000000000000000f796af8e65a00000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5464504774665a514d5045624537774e4568485148354d50597671704475676e7556764c4231626d4c6875562f00000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063b61688a8116100ab578063d5abeb011161006f578063d5abeb0114610679578063ded449a41461068f578063e985e9c5146106af578063f2fde38b146106f8578063fee7d73d1461071857600080fd5b8063b61688a8146105d9578063b88d4fde146105f9578063c4bcec6714610619578063c87b56dd1461062c578063c8c045ba1461064c57600080fd5b806391b7f5ed116100f257806391b7f5ed1461055857806395d89b4114610578578063962fda8b1461058d578063a035b1fe146105a3578063a22cb465146105b957600080fd5b8063715018a6146104cd5780638456cb59146104e25780638462151c146104f757806385258dd0146105245780638da5cb5b1461053a57600080fd5b80632ea87861116101bc57806352d122ad1161018057806352d122ad1461043857806355f804b31461044e5780635c975abb1461046e5780636352211e1461048d57806370a08231146104ad57600080fd5b80632ea87861146103a957806331c864e8146103c357806334f95c4d146103d65780633f4ba83a1461040357806342842e0e1461041857600080fd5b806321b8ece01161020357806321b8ece01461031d57806323b872dd1461033d57806325867a621461035d5780632913daa0146103735780632b26a6bf1461038957600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf57806318160ddd146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612072565b610738565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61078a565b60405161026c919061221b565b3480156102a357600080fd5b506102b76102b2366004612059565b61081c565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611fd3565b610860565b005b3480156102fd57600080fd5b5061030f600154600054036000190190565b60405190815260200161026c565b34801561032957600080fd5b506102ef610338366004612059565b6108ee565b34801561034957600080fd5b506102ef610358366004611ef2565b610926565b34801561036957600080fd5b5061030f600e5481565b34801561037f57600080fd5b5061030f600b5481565b34801561039557600080fd5b506102ef6103a4366004612059565b610931565b3480156103b557600080fd5b506010546102609060ff1681565b6102ef6103d1366004612059565b610960565b3480156103e257600080fd5b5061030f6103f1366004611ea4565b60126020526000908152604090205481565b34801561040f57600080fd5b506102ef610a83565b34801561042457600080fd5b506102ef610433366004611ef2565b610ab7565b34801561044457600080fd5b5061030f600d5481565b34801561045a57600080fd5b506102ef6104693660046120ac565b610ad2565b34801561047a57600080fd5b50600854600160a01b900460ff16610260565b34801561049957600080fd5b506102b76104a8366004612059565b610b0f565b3480156104b957600080fd5b5061030f6104c8366004611ea4565b610b21565b3480156104d957600080fd5b506102ef610b6f565b3480156104ee57600080fd5b506102ef610ba3565b34801561050357600080fd5b50610517610512366004611ea4565b610bd5565b60405161026c91906121d7565b34801561053057600080fd5b5061030f600f5481565b34801561054657600080fd5b506008546001600160a01b03166102b7565b34801561056457600080fd5b506102ef610573366004612059565b610cfe565b34801561058457600080fd5b5061028a610d2d565b34801561059957600080fd5b5061030f600c5481565b3480156105af57600080fd5b5061030f60095481565b3480156105c557600080fd5b506102ef6105d4366004611fa9565b610d3c565b3480156105e557600080fd5b506102ef6105f436600461203e565b610dd2565b34801561060557600080fd5b506102ef610614366004611f2e565b610e0f565b6102ef6106273660046120f4565b610e60565b34801561063857600080fd5b5061028a610647366004612059565b611088565b34801561065857600080fd5b5061030f610667366004611ea4565b60136020526000908152604090205481565b34801561068557600080fd5b5061030f600a5481565b34801561069b57600080fd5b506102ef6106aa366004612059565b61110d565b3480156106bb57600080fd5b506102606106ca366004611ebf565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561070457600080fd5b506102ef610713366004611ea4565b61113c565b34801561072457600080fd5b506102ef610733366004611ffd565b6111d7565b60006001600160e01b031982166380ac58cd60e01b148061076957506001600160e01b03198216635b5e139f60e01b145b8061078457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107999061235e565b80601f01602080910402602001604051908101604052809291908181526020018280546107c59061235e565b80156108125780601f106107e757610100808354040283529160200191610812565b820191906000526020600020905b8154815290600101906020018083116107f557829003601f168201915b5050505050905090565b600061082782611376565b610844576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061086b82610b0f565b9050806001600160a01b0316836001600160a01b031614156108a05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108c057506108be81336106ca565b155b156108de576040516367d9dca160e11b815260040160405180910390fd5b6108e98383836113af565b505050565b6008546001600160a01b031633146109215760405162461bcd60e51b815260040161091890612258565b60405180910390fd5b600e55565b6108e983838361140b565b6008546001600160a01b0316331461095b5760405162461bcd60e51b815260040161091890612258565b600b55565b600854600160a01b900460ff161561098a5760405162461bcd60e51b81526004016109189061222e565b60105460ff16156109ae57604051637a196ef960e01b815260040160405180910390fd5b600b548111156109d157604051636c8e7a1960e01b815260040160405180910390fd5b600a54816109e6600154600054036000190190565b6109f091906122d0565b1115610a0f5760405163da7cdff760e01b815260040160405180910390fd5b3460095482610a1e91906122fc565b14610a3c5760405163569e8c1160e01b815260040160405180910390fd5b610a46338261161f565b6008546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610a7f573d6000803e3d6000fd5b5050565b6008546001600160a01b03163314610aad5760405162461bcd60e51b815260040161091890612258565b610ab5611639565b565b6108e983838360405180602001604052806000815250610e0f565b6008546001600160a01b03163314610afc5760405162461bcd60e51b815260040161091890612258565b8051610a7f906011906020840190611d1f565b6000610b1a826116d6565b5192915050565b60006001600160a01b038216610b4a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610b995760405162461bcd60e51b815260040161091890612258565b610ab560006117fd565b6008546001600160a01b03163314610bcd5760405162461bcd60e51b815260040161091890612258565b610ab561184f565b60606000610be283610b21565b6001600160401b03811115610bf957610bf961240a565b604051908082528060200260200182016040528015610c22578160200160208202803683370190505b506000805491925080805b83811015610cf357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610c945750610ceb565b80516001600160a01b031615610ca957805192505b876001600160a01b0316836001600160a01b03161415610ce95781868580600101965081518110610cdc57610cdc6123f4565b6020026020010181815250505b505b600101610c2d565b509295945050505050565b6008546001600160a01b03163314610d285760405162461bcd60e51b815260040161091890612258565b600955565b6060600380546107999061235e565b6001600160a01b038216331415610d665760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610dfc5760405162461bcd60e51b815260040161091890612258565b6010805460ff1916911515919091179055565b610e1a84848461140b565b6001600160a01b0383163b15158015610e3c5750610e3a848484846118b4565b155b15610e5a576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600854600160a01b900460ff1615610e8a5760405162461bcd60e51b81526004016109189061222e565b600c5433600090815260126020526040902054610ea89085906122d0565b1115610ec65760405162461bcd60e51b81526004016109189061228d565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610f4083838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e5491508490506119ac565b610f8c5760405162461bcd60e51b815260206004820152601f60248201527f44504e46543a2041646472657373206e6f742077686974656c69737465642e006044820152606401610918565b600b54841115610faf57604051636c8e7a1960e01b815260040160405180910390fd5b600a5484610fc4600154600054036000190190565b610fce91906122d0565b1115610fed5760405163da7cdff760e01b815260040160405180910390fd5b3460095485610ffc91906122fc565b1461101a5760405163569e8c1160e01b815260040160405180910390fd5b611024338561161f565b6008546040516001600160a01b03909116903480156108fc02916000818181858888f1935050505015801561105d573d6000803e3d6000fd5b50336000908152601260205260408120805486929061107d9084906122d0565b909155505050505050565b606061109382611376565b6110b057604051630a14c4b560e41b815260040160405180910390fd5b60006110ba6119c2565b90508051600014156110db5760405180602001604052806000815250611106565b806110e5846119d1565b6040516020016110f692919061216b565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111375760405162461bcd60e51b815260040161091890612258565b600f55565b6008546001600160a01b031633146111665760405162461bcd60e51b815260040161091890612258565b6001600160a01b0381166111cb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610918565b6111d4816117fd565b50565b600854600160a01b900460ff16156112015760405162461bcd60e51b81526004016109189061222e565b600d543360009081526013602052604090205461121f9060016122d0565b111561123d5760405162461bcd60e51b81526004016109189061228d565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506112b783838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508490506119ac565b6113035760405162461bcd60e51b815260206004820152601f60248201527f44504e46543a2041646472657373206e6f742077686974656c69737465642e006044820152606401610918565b600a54611317600154600054036000190190565b6113229060016122d0565b11156113415760405163da7cdff760e01b815260040160405180910390fd5b61134c33600161161f565b33600090815260136020526040812080546001929061136c9084906122d0565b9091555050505050565b60008160011115801561138a575060005482105b8015610784575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611416826116d6565b80519091506000906001600160a01b0316336001600160a01b031614806114445750815161144490336106ca565b8061145f5750336114548461081c565b6001600160a01b0316145b90508061147f57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146114b45760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166114db57604051633a954ecd60e21b815260040160405180910390fd5b6114eb60008484600001516113af565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166115d5576000548110156115d557825160008281526004602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a7f828260405180602001604052806000815250611ace565b600854600160a01b900460ff166116895760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610918565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60408051606081018252600080825260208201819052918101919091528180600111158015611706575060005481105b156117e457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117e25780516001600160a01b031615611779579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156117dd579392505050565b611779565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff16156118795760405162461bcd60e51b81526004016109189061222e565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586116b93390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906118e990339089908890889060040161219a565b602060405180830381600087803b15801561190357600080fd5b505af1925050508015611933575060408051601f3d908101601f191682019092526119309181019061208f565b60015b61198e573d808015611961576040519150601f19603f3d011682016040523d82523d6000602084013e611966565b606091505b508051611986576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6000826119b98584611adb565b14949350505050565b6060601180546107999061235e565b6060816119f55750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a1f5780611a0981612399565b9150611a189050600a836122e8565b91506119f9565b6000816001600160401b03811115611a3957611a3961240a565b6040519080825280601f01601f191660200182016040528015611a63576020820181803683370190505b5090505b84156119a457611a7860018361231b565b9150611a85600a866123b4565b611a909060306122d0565b60f81b818381518110611aa557611aa56123f4565b60200101906001600160f81b031916908160001a905350611ac7600a866122e8565b9450611a67565b6108e98383836001611b4f565b600081815b8451811015611b47576000858281518110611afd57611afd6123f4565b60200260200101519050808311611b235760008381526020829052604090209250611b34565b600081815260208490526040902092505b5080611b3f81612399565b915050611ae0565b509392505050565b6000546001600160a01b038516611b7857604051622e076360e81b815260040160405180910390fd5b83611b965760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611c4757506001600160a01b0387163b15155b15611cd0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c9860008884806001019550886118b4565b611cb5576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611c4d578260005414611ccb57600080fd5b611d16565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611cd1575b50600055611618565b828054611d2b9061235e565b90600052602060002090601f016020900481019282611d4d5760008555611d93565b82601f10611d6657805160ff1916838001178555611d93565b82800160010185558215611d93579182015b82811115611d93578251825591602001919060010190611d78565b50611d9f929150611da3565b5090565b5b80821115611d9f5760008155600101611da4565b60006001600160401b0380841115611dd257611dd261240a565b604051601f8501601f19908116603f01168101908282118183101715611dfa57611dfa61240a565b81604052809350858152868686011115611e1357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611e4457600080fd5b919050565b60008083601f840112611e5b57600080fd5b5081356001600160401b03811115611e7257600080fd5b6020830191508360208260051b8501011115611e8d57600080fd5b9250929050565b80358015158114611e4457600080fd5b600060208284031215611eb657600080fd5b61110682611e2d565b60008060408385031215611ed257600080fd5b611edb83611e2d565b9150611ee960208401611e2d565b90509250929050565b600080600060608486031215611f0757600080fd5b611f1084611e2d565b9250611f1e60208501611e2d565b9150604084013590509250925092565b60008060008060808587031215611f4457600080fd5b611f4d85611e2d565b9350611f5b60208601611e2d565b92506040850135915060608501356001600160401b03811115611f7d57600080fd5b8501601f81018713611f8e57600080fd5b611f9d87823560208401611db8565b91505092959194509250565b60008060408385031215611fbc57600080fd5b611fc583611e2d565b9150611ee960208401611e94565b60008060408385031215611fe657600080fd5b611fef83611e2d565b946020939093013593505050565b6000806020838503121561201057600080fd5b82356001600160401b0381111561202657600080fd5b61203285828601611e49565b90969095509350505050565b60006020828403121561205057600080fd5b61110682611e94565b60006020828403121561206b57600080fd5b5035919050565b60006020828403121561208457600080fd5b813561110681612420565b6000602082840312156120a157600080fd5b815161110681612420565b6000602082840312156120be57600080fd5b81356001600160401b038111156120d457600080fd5b8201601f810184136120e557600080fd5b6119a484823560208401611db8565b60008060006040848603121561210957600080fd5b8335925060208401356001600160401b0381111561212657600080fd5b61213286828701611e49565b9497909650939450505050565b60008151808452612157816020860160208601612332565b601f01601f19169290920160200192915050565b6000835161217d818460208801612332565b835190830190612191818360208801612332565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121cd9083018461213f565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561220f578351835292840192918401916001016121f3565b50909695505050505050565b602081526000611106602083018461213f565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526023908201527f44504e46543a205175616e746974792045786365656473204d617820416c6c6f6040820152621dd95960ea1b606082015260800190565b600082198211156122e3576122e36123c8565b500190565b6000826122f7576122f76123de565b500490565b6000816000190483118215151615612316576123166123c8565b500290565b60008282101561232d5761232d6123c8565b500390565b60005b8381101561234d578181015183820152602001612335565b83811115610e5a5750506000910152565b600181811c9082168061237257607f821691505b6020821081141561239357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123ad576123ad6123c8565b5060010190565b6000826123c3576123c36123de565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146111d457600080fdfea2646970667358221220c62352820be344a5f2e0284c4a9e41ed31aea2988576104634010f17b976a69f64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000002b200000000000000000000000000000000000000000000000000f796af8e65a00000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5464504774665a514d5045624537774e4568485148354d50597671704475676e7556764c4231626d4c6875562f00000000000000000000

-----Decoded View---------------
Arg [0] : supply (uint256): 690
Arg [1] : mintPrice (uint256): 69690000000000000
Arg [2] : baseTokenURI (string): ipfs://QmTdPGtfZQMPEbE7wNEhHQH5MPYvqpDugnuVvLB1bmLhuV/

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000002b2
Arg [1] : 00000000000000000000000000000000000000000000000000f796af8e65a000
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d5464504774665a514d5045624537774e4568485148354d
Arg [5] : 50597671704475676e7556764c4231626d4c6875562f00000000000000000000


Deployed Bytecode Sourcemap

56080:4337:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28354:305;;;;;;;;;;-1:-1:-1;28354:305:0;;;;;:::i;:::-;;:::i;:::-;;;8283:14:1;;8276:22;8258:41;;8246:2;8231:18;28354:305:0;;;;;;;;31739:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33242:204::-;;;;;;;;;;-1:-1:-1;33242:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6944:32:1;;;6926:51;;6914:2;6899:18;33242:204:0;6780:203:1;32805:371:0;;;;;;;;;;-1:-1:-1;32805:371:0;;;;;:::i;:::-;;:::i;:::-;;27603:303;;;;;;;;;;;;60263:1;27857:12;27647:7;27841:13;:28;-1:-1:-1;;27841:46:0;;27603:303;;;;8456:25:1;;;8444:2;8429:18;27603:303:0;8310:177:1;59744:82:0;;;;;;;;;;-1:-1:-1;59744:82:0;;;;;:::i;:::-;;:::i;34099:170::-;;;;;;;;;;-1:-1:-1;34099:170:0;;;;;:::i;:::-;;:::i;56296:21::-;;;;;;;;;;;;;;;;56191:28;;;;;;;;;;;;;;;;59535:91;;;;;;;;;;-1:-1:-1;59535:91:0;;;;;:::i;:::-;;:::i;56358:23::-;;;;;;;;;;-1:-1:-1;56358:23:0;;;;;;;;59077:450;;;;;;:::i;:::-;;:::i;56425:41::-;;;;;;;;;;-1:-1:-1;56425:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;60349:65;;;;;;;;;;;;;:::i;34340:185::-;;;;;;;;;;-1:-1:-1;34340:185:0;;;;;:::i;:::-;;:::i;56258:31::-;;;;;;;;;;;;;;;;59634:102;;;;;;;;;;-1:-1:-1;59634:102:0;;;;;:::i;:::-;;:::i;52252:86::-;;;;;;;;;;-1:-1:-1;52323:7:0;;-1:-1:-1;;;52323:7:0;;;;52252:86;;31548:124;;;;;;;;;;-1:-1:-1;31548:124:0;;;;;:::i;:::-;;:::i;28723:206::-;;;;;;;;;;-1:-1:-1;28723:206:0;;;;;:::i;:::-;;:::i;50299:103::-;;;;;;;;;;;;;:::i;60280:61::-;;;;;;;;;;;;;:::i;56827:790::-;;;;;;;;;;-1:-1:-1;56827:790:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;56324:27::-;;;;;;;;;;;;;;;;49648:87;;;;;;;;;;-1:-1:-1;49721:6:0;;-1:-1:-1;;;;;49721:6:0;49648:87;;57625;;;;;;;;;;-1:-1:-1;57625:87:0;;;;;:::i;:::-;;:::i;31908:104::-;;;;;;;;;;;;;:::i;56226:25::-;;;;;;;;;;;;;;;;56139:17;;;;;;;;;;;;;;;;33518:279;;;;;;;;;;-1:-1:-1;33518:279:0;;;;;:::i;:::-;;:::i;59936:105::-;;;;;;;;;;-1:-1:-1;59936:105:0;;;;;:::i;:::-;;:::i;34596:369::-;;;;;;;;;;-1:-1:-1;34596:369:0;;;;;:::i;:::-;;:::i;57720:783::-;;;;;;:::i;:::-;;:::i;32083:318::-;;;;;;;;;;-1:-1:-1;32083:318:0;;;;;:::i;:::-;;:::i;56473:47::-;;;;;;;;;;-1:-1:-1;56473:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;56163:21;;;;;;;;;;;;;;;;59834:94;;;;;;;;;;-1:-1:-1;59834:94:0;;;;;:::i;:::-;;:::i;33868:164::-;;;;;;;;;;-1:-1:-1;33868:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33989:25:0;;;33965:4;33989:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33868:164;50557:201;;;;;;;;;;-1:-1:-1;50557:201:0;;;;;:::i;:::-;;:::i;58511:558::-;;;;;;;;;;-1:-1:-1;58511:558:0;;;;;:::i;:::-;;:::i;28354:305::-;28456:4;-1:-1:-1;;;;;;28493:40:0;;-1:-1:-1;;;28493:40:0;;:105;;-1:-1:-1;;;;;;;28550:48:0;;-1:-1:-1;;;28550:48:0;28493:105;:158;;;-1:-1:-1;;;;;;;;;;23805:40:0;;;28615:36;28473:178;28354:305;-1:-1:-1;;28354:305:0:o;31739:100::-;31793:13;31826:5;31819:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31739:100;:::o;33242:204::-;33310:7;33335:16;33343:7;33335;:16::i;:::-;33330:64;;33360:34;;-1:-1:-1;;;33360:34:0;;;;;;;;;;;33330:64;-1:-1:-1;33414:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33414:24:0;;33242:204::o;32805:371::-;32878:13;32894:24;32910:7;32894:15;:24::i;:::-;32878:40;;32939:5;-1:-1:-1;;;;;32933:11:0;:2;-1:-1:-1;;;;;32933:11:0;;32929:48;;;32953:24;;-1:-1:-1;;;32953:24:0;;;;;;;;;;;32929:48;20563:10;-1:-1:-1;;;;;32994:21:0;;;;;;:63;;-1:-1:-1;33020:37:0;33037:5;20563:10;33868:164;:::i;33020:37::-;33019:38;32994:63;32990:138;;;33081:35;;-1:-1:-1;;;33081:35:0;;;;;;;;;;;32990:138;33140:28;33149:2;33153:7;33162:5;33140:8;:28::i;:::-;32867:309;32805:371;;:::o;59744:82::-;49721:6;;-1:-1:-1;;;;;49721:6:0;20563:10;49868:23;49860:68;;;;-1:-1:-1;;;49860:68:0;;;;;;;:::i;:::-;;;;;;;;;59805:6:::1;:13:::0;59744:82::o;34099:170::-;34233:28;34243:4;34249:2;34253:7;34233:9;:28::i;59535:91::-;49721:6;;-1:-1:-1;;;;;49721:6:0;20563:10;49868:23;49860:68;;;;-1:-1:-1;;;49860:68:0;;;;;;;:::i;:::-;59599:12:::1;:19:::0;59535:91::o;59077:450::-;52323:7;;-1:-1:-1;;;52323:7:0;;;;52577:9;52569:38;;;;-1:-1:-1;;;52569:38:0;;;;;;;:::i;:::-;59157:11:::1;::::0;::::1;;59153:38;;;59178:13;;-1:-1:-1::0;;;59178:13:0::1;;;;;;;;;;;59153:38;59217:12;;59206:8;:23;59202:66;;;59248:20;;-1:-1:-1::0;;;59248:20:0::1;;;;;;;;;;;59202:66;59310:9;;59299:8;59283:13;60263:1:::0;27857:12;27647:7;27841:13;:28;-1:-1:-1;;27841:46:0;;27603:303;59283:13:::1;:24;;;;:::i;:::-;:36;59279:74;;;59332:21;;-1:-1:-1::0;;;59332:21:0::1;;;;;;;;;;;59279:74;59390:9;59380:5;;59369:8;:16;;;;:::i;:::-;59368:31;59364:64;;59410:18;;-1:-1:-1::0;;;59410:18:0::1;;;;;;;;;;;59364:64;59441:31;59451:10;59463:8;59441:9;:31::i;:::-;49721:6:::0;;59483:36:::1;::::0;-1:-1:-1;;;;;49721:6:0;;;;59509:9:::1;59483:36:::0;::::1;;;::::0;::::1;::::0;;;59509:9;49721:6;59483:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;59077:450:::0;:::o;60349:65::-;49721:6;;-1:-1:-1;;;;;49721:6:0;20563:10;49868:23;49860:68;;;;-1:-1:-1;;;49860:68:0;;;;;;;:::i;:::-;60396:10:::1;:8;:10::i;:::-;60349:65::o:0;34340:185::-;34478:39;34495:4;34501:2;34505:7;34478:39;;;;;;;;;;;;:16;:39::i;59634:102::-;49721:6;;-1:-1:-1;;;;;49721:6:0;20563:10;49868:23;49860:68;;;;-1:-1:-1;;;49860:68:0;;;;;;;:::i;:::-;59705:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;31548:124::-:0;31612:7;31639:20;31651:7;31639:11;:20::i;:::-;:25;;31548:124;-1:-1:-1;;31548:124:0:o;28723:206::-;28787:7;-1:-1:-1;;;;;28811:19:0;;28807:60;;28839:28;;-1:-1:-1;;;28839:28:0;;;;;;;;;;;28807:60;-1:-1:-1;;;;;;28893:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28893:27:0;;28723:206::o;50299:103::-;49721:6;;-1:-1:-1;;;;;49721:6:0;20563:10;49868:23;49860:68;;;;-1:-1:-1;;;49860:68:0;;;;;;;:::i;:::-;50364:30:::1;50391:1;50364:18;:30::i;60280:61::-:0;49721:6;;-1:-1:-1;;;;;49721:6:0;20563:10;49868:23;49860:68;;;;-1:-1:-1;;;49860:68:0;;;;;;;:::i;:::-;60325:8:::1;:6;:8::i;56827:790::-:0;56888:16;56942:18;56977:16;56987:5;56977:9;:16::i;:::-;-1:-1:-1;;;;;56963:31:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56963:31:0;-1:-1:-1;57010:11:0;57024:13;;56942:52;;-1:-1:-1;57010:11:0;;57126:446;57146:3;57142:1;:7;57126:446;;;57175:31;57209:14;;;:11;:14;;;;;;;;;57175:48;;;;;;;;;-1:-1:-1;;;;;57175:48:0;;;;-1:-1:-1;;;57175:48:0;;-1:-1:-1;;;;;57175:48:0;;;;;;;;-1:-1:-1;;;57175:48:0;;;;;;;;;;;;;;;;57242:73;;57287:8;;;57242:73;57337:14;;-1:-1:-1;;;;;57337:28:0;;57333:111;;57410:14;;;-1:-1:-1;57333:111:0;57487:5;-1:-1:-1;;;;;57466:26:0;:17;-1:-1:-1;;;;;57466:26:0;;57462:95;;;57536:1;57517;57519:13;;;;;;57517:16;;;;;;;;:::i;:::-;;;;;;:20;;;;;57462:95;57156:416;57126:446;57151:3;;57126:446;;;-1:-1:-1;57593:1:0;;56827:790;-1:-1:-1;;;;;56827:790:0:o;57625:87::-;49721:6;;-1:-1:-1;;;;;49721:6:0;20563:10;49868:23;49860:68;;;;-1:-1:-1;;;49860:68:0;;;;;;;:::i;:::-;57687:5:::1;:17:::0;57625:87::o;31908:104::-;31964:13;31997:7;31990:14;;;;;:::i;33518:279::-;-1:-1:-1;;;;;33609:24:0;;20563:10;33609:24;33605:54;;;33642:17;;-1:-1:-1;;;33642:17:0;;;;;;;;;;;33605:54;20563:10;33672:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33672:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33672:53:0;;;;;;;;;;33741:48;;8258:41:1;;;33672:42:0;;20563:10;33741:48;;8231:18:1;33741:48:0;;;;;;;33518:279;;:::o;59936:105::-;49721:6;;-1:-1:-1;;;;;49721:6:0;20563:10;49868:23;49860:68;;;;-1:-1:-1;;;49860:68:0;;;;;;;:::i;:::-;60007:11:::1;:26:::0;;-1:-1:-1;;60007:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59936:105::o;34596:369::-;34763:28;34773:4;34779:2;34783:7;34763:9;:28::i;:::-;-1:-1:-1;;;;;34806:13:0;;12823:19;:23;;34806:76;;;;;34826:56;34857:4;34863:2;34867:7;34876:5;34826:30;:56::i;:::-;34825:57;34806:76;34802:156;;;34906:40;;-1:-1:-1;;;34906:40:0;;;;;;;;;;;34802:156;34596:369;;;;:::o;57720:783::-;52323:7;;-1:-1:-1;;;52323:7:0;;;;52577:9;52569:38;;;;-1:-1:-1;;;52569:38:0;;;;;;;:::i;:::-;57873:9:::1;::::0;57848:10:::1;57838:21;::::0;;;:9:::1;:21;::::0;;;;;:30:::1;::::0;57860:8;;57838:30:::1;:::i;:::-;57837:45;;57828:95;;;;-1:-1:-1::0;;;57828:95:0::1;;;;;;;:::i;:::-;57959:28;::::0;-1:-1:-1;;57976:10:0::1;6220:2:1::0;6216:15;6212:53;57959:28:0::1;::::0;::::1;6200:66:1::0;57934:12:0::1;::::0;6282::1;;57959:28:0::1;;;;;;;;;;;;57949:39;;;;;;57934:54;;58021:43;58040:9;;58021:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;58051:6:0::1;::::0;;-1:-1:-1;58059:4:0;;-1:-1:-1;58021:18:0::1;:43::i;:::-;57999:124;;;::::0;-1:-1:-1;;;57999:124:0;;10019:2:1;57999:124:0::1;::::0;::::1;10001:21:1::0;10058:2;10038:18;;;10031:30;10097:33;10077:18;;;10070:61;10148:18;;57999:124:0::1;9817:355:1::0;57999:124:0::1;58149:12;;58138:8;:23;58134:66;;;58180:20;;-1:-1:-1::0;;;58180:20:0::1;;;;;;;;;;;58134:66;58242:9;;58231:8;58215:13;60263:1:::0;27857:12;27647:7;27841:13;:28;-1:-1:-1;;27841:46:0;;27603:303;58215:13:::1;:24;;;;:::i;:::-;:36;58211:74;;;58264:21;;-1:-1:-1::0;;;58264:21:0::1;;;;;;;;;;;58211:74;58322:9;58312:5;;58301:8;:16;;;;:::i;:::-;58300:31;58296:64;;58342:18;;-1:-1:-1::0;;;58342:18:0::1;;;;;;;;;;;58296:64;58373:31;58383:10;58395:8;58373:9;:31::i;:::-;49721:6:::0;;58415:36:::1;::::0;-1:-1:-1;;;;;49721:6:0;;;;58441:9:::1;58415:36:::0;::::1;;;::::0;::::1;::::0;;;58441:9;49721:6;58415:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;58472:10:0::1;58462:21;::::0;;;:9:::1;:21;::::0;;;;:33;;58487:8;;58462:21;:33:::1;::::0;58487:8;;58462:33:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;57720:783:0:o;32083:318::-;32156:13;32187:16;32195:7;32187;:16::i;:::-;32182:59;;32212:29;;-1:-1:-1;;;32212:29:0;;;;;;;;;;;32182:59;32254:21;32278:10;:8;:10::i;:::-;32254:34;;32312:7;32306:21;32331:1;32306:26;;:87;;;;;;;;;;;;;;;;;32359:7;32368:18;:7;:16;:18::i;:::-;32342:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32306:87;32299:94;32083:318;-1:-1:-1;;;32083:318:0:o;59834:94::-;49721:6;;-1:-1:-1;;;;;49721:6:0;20563:10;49868:23;49860:68;;;;-1:-1:-1;;;49860:68:0;;;;;;;:::i;:::-;59901:12:::1;:19:::0;59834:94::o;50557:201::-;49721:6;;-1:-1:-1;;;;;49721:6:0;20563:10;49868:23;49860:68;;;;-1:-1:-1;;;49860:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50646:22:0;::::1;50638:73;;;::::0;-1:-1:-1;;;50638:73:0;;9267:2:1;50638:73:0::1;::::0;::::1;9249:21:1::0;9306:2;9286:18;;;9279:30;9345:34;9325:18;;;9318:62;-1:-1:-1;;;9396:18:1;;;9389:36;9442:19;;50638:73:0::1;9065:402:1::0;50638:73:0::1;50722:28;50741:8;50722:18;:28::i;:::-;50557:201:::0;:::o;58511:558::-;52323:7;;-1:-1:-1;;;52323:7:0;;;;52577:9;52569:38;;;;-1:-1:-1;;;52569:38:0;;;;;;;:::i;:::-;58641:15:::1;::::0;58623:10:::1;58607:27;::::0;;;:15:::1;:27;::::0;;;;;:29:::1;::::0;58635:1:::1;58607:29;:::i;:::-;58606:50;;58597:100;;;;-1:-1:-1::0;;;58597:100:0::1;;;;;;;:::i;:::-;58733:28;::::0;-1:-1:-1;;58750:10:0::1;6220:2:1::0;6216:15;6212:53;58733:28:0::1;::::0;::::1;6200:66:1::0;58708:12:0::1;::::0;6282::1;;58733:28:0::1;;;;;;;;;;;;58723:39;;;;;;58708:54;;58795:49;58814:9;;58795:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;58825:12:0::1;::::0;;-1:-1:-1;58839:4:0;;-1:-1:-1;58795:18:0::1;:49::i;:::-;58773:130;;;::::0;-1:-1:-1;;;58773:130:0;;10019:2:1;58773:130:0::1;::::0;::::1;10001:21:1::0;10058:2;10038:18;;;10031:30;10097:33;10077:18;;;10070:61;10148:18;;58773:130:0::1;9817:355:1::0;58773:130:0::1;58938:9;;58918:13;60263:1:::0;27857:12;27647:7;27841:13;:28;-1:-1:-1;;27841:46:0;;27603:303;58918:13:::1;:17;::::0;58934:1:::1;58918:17;:::i;:::-;:29;58914:67;;;58960:21;;-1:-1:-1::0;;;58960:21:0::1;;;;;;;;;;;58914:67;58994:24;59004:10;59016:1;58994:9;:24::i;:::-;59045:10;59029:27;::::0;;;:15:::1;:27;::::0;;;;:32;;59060:1:::1;::::0;59029:27;:32:::1;::::0;59060:1;;59029:32:::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;58511:558:0:o;35220:187::-;35277:4;35320:7;60263:1;35301:26;;:53;;;;;35341:13;;35331:7;:23;35301:53;:98;;;;-1:-1:-1;;35372:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35372:27:0;;;;35371:28;;35220:187::o;42831:196::-;42946:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;42946:29:0;-1:-1:-1;;;;;42946:29:0;;;;;;;;;42991:28;;42946:24;;42991:28;;;;;;;42831:196;;;:::o;38333:2112::-;38448:35;38486:20;38498:7;38486:11;:20::i;:::-;38561:18;;38448:58;;-1:-1:-1;38519:22:0;;-1:-1:-1;;;;;38545:34:0;20563:10;-1:-1:-1;;;;;38545:34:0;;:101;;;-1:-1:-1;38613:18:0;;38596:50;;20563:10;33868:164;:::i;38596:50::-;38545:154;;;-1:-1:-1;20563:10:0;38663:20;38675:7;38663:11;:20::i;:::-;-1:-1:-1;;;;;38663:36:0;;38545:154;38519:181;;38718:17;38713:66;;38744:35;;-1:-1:-1;;;38744:35:0;;;;;;;;;;;38713:66;38816:4;-1:-1:-1;;;;;38794:26:0;:13;:18;;;-1:-1:-1;;;;;38794:26:0;;38790:67;;38829:28;;-1:-1:-1;;;38829:28:0;;;;;;;;;;;38790:67;-1:-1:-1;;;;;38872:16:0;;38868:52;;38897:23;;-1:-1:-1;;;38897:23:0;;;;;;;;;;;38868:52;39041:49;39058:1;39062:7;39071:13;:18;;;39041:8;:49::i;:::-;-1:-1:-1;;;;;39386:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39386:31:0;;;-1:-1:-1;;;;;39386:31:0;;;-1:-1:-1;;39386:31:0;;;;;;;39432:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39432:29:0;;;;;;;;;;;39478:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;39523:61:0;;;;-1:-1:-1;;;39568:15:0;39523:61;;;;;;;;;;;39858:11;;;39888:24;;;;;:29;39858:11;;39888:29;39884:445;;40113:13;;40099:11;:27;40095:219;;;40183:18;;;40151:24;;;:11;:24;;;;;;;;:50;;40266:28;;;;-1:-1:-1;;;;;40224:70:0;-1:-1:-1;;;40224:70:0;-1:-1:-1;;;;;;40224:70:0;;;-1:-1:-1;;;;;40151:50:0;;;40224:70;;;;;;;40095:219;39361:979;40376:7;40372:2;-1:-1:-1;;;;;40357:27:0;40366:4;-1:-1:-1;;;;;40357:27:0;;;;;;;;;;;40395:42;38437:2008;;38333:2112;;;:::o;35415:104::-;35484:27;35494:2;35498:8;35484:27;;;;;;;;;;;;:9;:27::i;53311:120::-;52323:7;;-1:-1:-1;;;52323:7:0;;;;52847:41;;;;-1:-1:-1;;;52847:41:0;;8918:2:1;52847:41:0;;;8900:21:1;8957:2;8937:18;;;8930:30;-1:-1:-1;;;8976:18:1;;;8969:50;9036:18;;52847:41:0;8716:344:1;52847:41:0;53370:7:::1;:15:::0;;-1:-1:-1;;;;53370:15:0::1;::::0;;53401:22:::1;20563:10:::0;53410:12:::1;53401:22;::::0;-1:-1:-1;;;;;6944:32:1;;;6926:51;;6914:2;6899:18;53401:22:0::1;;;;;;;53311:120::o:0;30378:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30488:7:0;;60263:1;30537:23;;:47;;;;;30571:13;;30564:4;:20;30537:47;30533:886;;;30605:31;30639:17;;;:11;:17;;;;;;;;;30605:51;;;;;;;;;-1:-1:-1;;;;;30605:51:0;;;;-1:-1:-1;;;30605:51:0;;-1:-1:-1;;;;;30605:51:0;;;;;;;;-1:-1:-1;;;30605:51:0;;;;;;;;;;;;;;30675:729;;30725:14;;-1:-1:-1;;;;;30725:28:0;;30721:101;;30789:9;30378:1108;-1:-1:-1;;;30378:1108:0:o;30721:101::-;-1:-1:-1;;;31164:6:0;31209:17;;;;:11;:17;;;;;;;;;31197:29;;;;;;;;;-1:-1:-1;;;;;31197:29:0;;;;;-1:-1:-1;;;31197:29:0;;-1:-1:-1;;;;;31197:29:0;;;;;;;;-1:-1:-1;;;31197:29:0;;;;;;;;;;;;;31257:28;31253:109;;31325:9;30378:1108;-1:-1:-1;;;30378:1108:0:o;31253:109::-;31124:261;;;30586:833;30533:886;31447:31;;-1:-1:-1;;;31447:31:0;;;;;;;;;;;50918:191;51011:6;;;-1:-1:-1;;;;;51028:17:0;;;-1:-1:-1;;;;;;51028:17:0;;;;;;;51061:40;;51011:6;;;51028:17;51011:6;;51061:40;;50992:16;;51061:40;50981:128;50918:191;:::o;53052:118::-;52323:7;;-1:-1:-1;;;52323:7:0;;;;52577:9;52569:38;;;;-1:-1:-1;;;52569:38:0;;;;;;;:::i;:::-;53112:7:::1;:14:::0;;-1:-1:-1;;;;53112:14:0::1;-1:-1:-1::0;;;53112:14:0::1;::::0;;53142:20:::1;53149:12;20563:10:::0;;20483:98;43519:667;43703:72;;-1:-1:-1;;;43703:72:0;;43682:4;;-1:-1:-1;;;;;43703:36:0;;;;;:72;;20563:10;;43754:4;;43760:7;;43769:5;;43703:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43703:72:0;;;;;;;;-1:-1:-1;;43703:72:0;;;;;;;;;;;;:::i;:::-;;;43699:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43937:13:0;;43933:235;;43983:40;;-1:-1:-1;;;43983:40:0;;;;;;;;;;;43933:235;44126:6;44120:13;44111:6;44107:2;44103:15;44096:38;43699:480;-1:-1:-1;;;;;;43822:55:0;-1:-1:-1;;;43822:55:0;;-1:-1:-1;43699:480:0;43519:667;;;;;;:::o;54367:190::-;54492:4;54545;54516:25;54529:5;54536:4;54516:12;:25::i;:::-;:33;;54367:190;-1:-1:-1;;;;54367:190:0:o;60049:114::-;60109:13;60142;60135:20;;;;;:::i;21068:723::-;21124:13;21345:10;21341:53;;-1:-1:-1;;21372:10:0;;;;;;;;;;;;-1:-1:-1;;;21372:10:0;;;;;21068:723::o;21341:53::-;21419:5;21404:12;21460:78;21467:9;;21460:78;;21493:8;;;;:::i;:::-;;-1:-1:-1;21516:10:0;;-1:-1:-1;21524:2:0;21516:10;;:::i;:::-;;;21460:78;;;21548:19;21580:6;-1:-1:-1;;;;;21570:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21570:17:0;;21548:39;;21598:154;21605:10;;21598:154;;21632:11;21642:1;21632:11;;:::i;:::-;;-1:-1:-1;21701:10:0;21709:2;21701:5;:10;:::i;:::-;21688:24;;:2;:24;:::i;:::-;21675:39;;21658:6;21665;21658:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21658:56:0;;;;;;;;-1:-1:-1;21729:11:0;21738:2;21729:11;;:::i;:::-;;;21598:154;;35882:163;36005:32;36011:2;36015:8;36025:5;36032:4;36005:5;:32::i;54919:675::-;55002:7;55045:4;55002:7;55060:497;55084:5;:12;55080:1;:16;55060:497;;;55118:20;55141:5;55147:1;55141:8;;;;;;;;:::i;:::-;;;;;;;55118:31;;55184:12;55168;:28;55164:382;;55670:13;55720:15;;;55756:4;55749:15;;;55803:4;55787:21;;55296:57;;55164:382;;;55670:13;55720:15;;;55756:4;55749:15;;;55803:4;55787:21;;55473:57;;55164:382;-1:-1:-1;55098:3:0;;;;:::i;:::-;;;;55060:497;;;-1:-1:-1;55574:12:0;54919:675;-1:-1:-1;;;54919:675:0:o;36304:1775::-;36443:20;36466:13;-1:-1:-1;;;;;36494:16:0;;36490:48;;36519:19;;-1:-1:-1;;;36519:19:0;;;;;;;;;;;36490:48;36553:13;36549:44;;36575:18;;-1:-1:-1;;;36575:18:0;;;;;;;;;;;36549:44;-1:-1:-1;;;;;36944:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37003:49:0;;-1:-1:-1;;;;;36944:44:0;;;;;;;37003:49;;;;-1:-1:-1;;36944:44:0;;;;;;37003:49;;;;;;;;;;;;;;;;37069:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37119:66:0;;;;-1:-1:-1;;;37169:15:0;37119:66;;;;;;;;;;37069:25;37266:23;;;37310:4;:23;;;;-1:-1:-1;;;;;;37318:13:0;;12823:19;:23;;37318:15;37306:641;;;37354:314;37385:38;;37410:12;;-1:-1:-1;;;;;37385:38:0;;;37402:1;;37385:38;;37402:1;;37385:38;37451:69;37490:1;37494:2;37498:14;;;;;;37514:5;37451:30;:69::i;:::-;37446:174;;37556:40;;-1:-1:-1;;;37556:40:0;;;;;;;;;;;37446:174;37663:3;37647:12;:19;;37354:314;;37749:12;37732:13;;:29;37728:43;;37763:8;;;37728:43;37306:641;;;37812:120;37843:40;;37868:14;;;;;-1:-1:-1;;;;;37843:40:0;;;37860:1;;37843:40;;37860:1;;37843:40;37927:3;37911:12;:19;;37812:120;;37306:641;-1:-1:-1;37961:13:0;:28;38011:60;34596:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:160::-;1265:20;;1321:13;;1314:21;1304:32;;1294:60;;1350:1;1347;1340:12;1365:186;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;1516:29;1535:9;1516:29;:::i;1556:260::-;1624:6;1632;1685:2;1673:9;1664:7;1660:23;1656:32;1653:52;;;1701:1;1698;1691:12;1653:52;1724:29;1743:9;1724:29;:::i;:::-;1714:39;;1772:38;1806:2;1795:9;1791:18;1772:38;:::i;:::-;1762:48;;1556:260;;;;;:::o;1821:328::-;1898:6;1906;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2006:29;2025:9;2006:29;:::i;:::-;1996:39;;2054:38;2088:2;2077:9;2073:18;2054:38;:::i;:::-;2044:48;;2139:2;2128:9;2124:18;2111:32;2101:42;;1821:328;;;;;:::o;2154:666::-;2249:6;2257;2265;2273;2326:3;2314:9;2305:7;2301:23;2297:33;2294:53;;;2343:1;2340;2333:12;2294:53;2366:29;2385:9;2366:29;:::i;:::-;2356:39;;2414:38;2448:2;2437:9;2433:18;2414:38;:::i;:::-;2404:48;;2499:2;2488:9;2484:18;2471:32;2461:42;;2554:2;2543:9;2539:18;2526:32;-1:-1:-1;;;;;2573:6:1;2570:30;2567:50;;;2613:1;2610;2603:12;2567:50;2636:22;;2689:4;2681:13;;2677:27;-1:-1:-1;2667:55:1;;2718:1;2715;2708:12;2667:55;2741:73;2806:7;2801:2;2788:16;2783:2;2779;2775:11;2741:73;:::i;:::-;2731:83;;;2154:666;;;;;;;:::o;2825:254::-;2890:6;2898;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;2990:29;3009:9;2990:29;:::i;:::-;2980:39;;3038:35;3069:2;3058:9;3054:18;3038:35;:::i;3084:254::-;3152:6;3160;3213:2;3201:9;3192:7;3188:23;3184:32;3181:52;;;3229:1;3226;3219:12;3181:52;3252:29;3271:9;3252:29;:::i;:::-;3242:39;3328:2;3313:18;;;;3300:32;;-1:-1:-1;;;3084:254:1:o;3343:437::-;3429:6;3437;3490:2;3478:9;3469:7;3465:23;3461:32;3458:52;;;3506:1;3503;3496:12;3458:52;3546:9;3533:23;-1:-1:-1;;;;;3571:6:1;3568:30;3565:50;;;3611:1;3608;3601:12;3565:50;3650:70;3712:7;3703:6;3692:9;3688:22;3650:70;:::i;:::-;3739:8;;3624:96;;-1:-1:-1;3343:437:1;-1:-1:-1;;;;3343:437:1:o;3785:180::-;3841:6;3894:2;3882:9;3873:7;3869:23;3865:32;3862:52;;;3910:1;3907;3900:12;3862:52;3933:26;3949:9;3933:26;:::i;3970:180::-;4029:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:52;;;4098:1;4095;4088:12;4050:52;-1:-1:-1;4121:23:1;;3970:180;-1:-1:-1;3970:180:1:o;4155:245::-;4213:6;4266:2;4254:9;4245:7;4241:23;4237:32;4234:52;;;4282:1;4279;4272:12;4234:52;4321:9;4308:23;4340:30;4364:5;4340:30;:::i;4405:249::-;4474:6;4527:2;4515:9;4506:7;4502:23;4498:32;4495:52;;;4543:1;4540;4533:12;4495:52;4575:9;4569:16;4594:30;4618:5;4594:30;:::i;4659:450::-;4728:6;4781:2;4769:9;4760:7;4756:23;4752:32;4749:52;;;4797:1;4794;4787:12;4749:52;4837:9;4824:23;-1:-1:-1;;;;;4862:6:1;4859:30;4856:50;;;4902:1;4899;4892:12;4856:50;4925:22;;4978:4;4970:13;;4966:27;-1:-1:-1;4956:55:1;;5007:1;5004;4997:12;4956:55;5030:73;5095:7;5090:2;5077:16;5072:2;5068;5064:11;5030:73;:::i;5299:505::-;5394:6;5402;5410;5463:2;5451:9;5442:7;5438:23;5434:32;5431:52;;;5479:1;5476;5469:12;5431:52;5515:9;5502:23;5492:33;;5576:2;5565:9;5561:18;5548:32;-1:-1:-1;;;;;5595:6:1;5592:30;5589:50;;;5635:1;5632;5625:12;5589:50;5674:70;5736:7;5727:6;5716:9;5712:22;5674:70;:::i;:::-;5299:505;;5763:8;;-1:-1:-1;5648:96:1;;-1:-1:-1;;;;5299:505:1:o;5809:257::-;5850:3;5888:5;5882:12;5915:6;5910:3;5903:19;5931:63;5987:6;5980:4;5975:3;5971:14;5964:4;5957:5;5953:16;5931:63;:::i;:::-;6048:2;6027:15;-1:-1:-1;;6023:29:1;6014:39;;;;6055:4;6010:50;;5809:257;-1:-1:-1;;5809:257:1:o;6305:470::-;6484:3;6522:6;6516:13;6538:53;6584:6;6579:3;6572:4;6564:6;6560:17;6538:53;:::i;:::-;6654:13;;6613:16;;;;6676:57;6654:13;6613:16;6710:4;6698:17;;6676:57;:::i;:::-;6749:20;;6305:470;-1:-1:-1;;;;6305:470:1:o;6988:488::-;-1:-1:-1;;;;;7257:15:1;;;7239:34;;7309:15;;7304:2;7289:18;;7282:43;7356:2;7341:18;;7334:34;;;7404:3;7399:2;7384:18;;7377:31;;;7182:4;;7425:45;;7450:19;;7442:6;7425:45;:::i;:::-;7417:53;6988:488;-1:-1:-1;;;;;;6988:488:1:o;7481:632::-;7652:2;7704:21;;;7774:13;;7677:18;;;7796:22;;;7623:4;;7652:2;7875:15;;;;7849:2;7834:18;;;7623:4;7918:169;7932:6;7929:1;7926:13;7918:169;;;7993:13;;7981:26;;8062:15;;;;8027:12;;;;7954:1;7947:9;7918:169;;;-1:-1:-1;8104:3:1;;7481:632;-1:-1:-1;;;;;;7481:632:1:o;8492:219::-;8641:2;8630:9;8623:21;8604:4;8661:44;8701:2;8690:9;8686:18;8678:6;8661:44;:::i;9472:340::-;9674:2;9656:21;;;9713:2;9693:18;;;9686:30;-1:-1:-1;;;9747:2:1;9732:18;;9725:46;9803:2;9788:18;;9472:340::o;10177:356::-;10379:2;10361:21;;;10398:18;;;10391:30;10457:34;10452:2;10437:18;;10430:62;10524:2;10509:18;;10177:356::o;10538:399::-;10740:2;10722:21;;;10779:2;10759:18;;;10752:30;10818:34;10813:2;10798:18;;10791:62;-1:-1:-1;;;10884:2:1;10869:18;;10862:33;10927:3;10912:19;;10538:399::o;11124:128::-;11164:3;11195:1;11191:6;11188:1;11185:13;11182:39;;;11201:18;;:::i;:::-;-1:-1:-1;11237:9:1;;11124:128::o;11257:120::-;11297:1;11323;11313:35;;11328:18;;:::i;:::-;-1:-1:-1;11362:9:1;;11257:120::o;11382:168::-;11422:7;11488:1;11484;11480:6;11476:14;11473:1;11470:21;11465:1;11458:9;11451:17;11447:45;11444:71;;;11495:18;;:::i;:::-;-1:-1:-1;11535:9:1;;11382:168::o;11555:125::-;11595:4;11623:1;11620;11617:8;11614:34;;;11628:18;;:::i;:::-;-1:-1:-1;11665:9:1;;11555:125::o;11685:258::-;11757:1;11767:113;11781:6;11778:1;11775:13;11767:113;;;11857:11;;;11851:18;11838:11;;;11831:39;11803:2;11796:10;11767:113;;;11898:6;11895:1;11892:13;11889:48;;;-1:-1:-1;;11933:1:1;11915:16;;11908:27;11685:258::o;11948:380::-;12027:1;12023:12;;;;12070;;;12091:61;;12145:4;12137:6;12133:17;12123:27;;12091:61;12198:2;12190:6;12187:14;12167:18;12164:38;12161:161;;;12244:10;12239:3;12235:20;12232:1;12225:31;12279:4;12276:1;12269:15;12307:4;12304:1;12297:15;12161:161;;11948:380;;;:::o;12333:135::-;12372:3;-1:-1:-1;;12393:17:1;;12390:43;;;12413:18;;:::i;:::-;-1:-1:-1;12460:1:1;12449:13;;12333:135::o;12473:112::-;12505:1;12531;12521:35;;12536:18;;:::i;:::-;-1:-1:-1;12570:9:1;;12473:112::o;12590:127::-;12651:10;12646:3;12642:20;12639:1;12632:31;12682:4;12679:1;12672:15;12706:4;12703:1;12696:15;12722:127;12783:10;12778:3;12774:20;12771:1;12764:31;12814:4;12811:1;12804:15;12838:4;12835:1;12828:15;12854:127;12915:10;12910:3;12906:20;12903:1;12896:31;12946:4;12943:1;12936:15;12970:4;12967:1;12960:15;12986:127;13047:10;13042:3;13038:20;13035:1;13028:31;13078:4;13075:1;13068:15;13102:4;13099:1;13092:15;13118:131;-1:-1:-1;;;;;;13192:32:1;;13182:43;;13172:71;;13239:1;13236;13229:12

Swarm Source

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