ETH Price: $2,873.16 (-10.83%)
Gas: 20 Gwei

Token

HOTHS (HTH)
 

Overview

Max Total Supply

1,688 HTH

Holders

1,535

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HTH
0xe0FdA175597541f52C47F7F178181B8Fd24E4aCb
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
HootyOwlsTreehouseNFT

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-27
*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;

// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// 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);
}

// OpenZeppelin Contracts (last updated v4.7.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://consensys.net/diligence/blog/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// 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;
    }
}


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

// OpenZeppelin Contracts (last updated v4.7.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// 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;
    }
}

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
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 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) {
        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) {
        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) {
        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 {
        _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 virtual 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);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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 storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.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;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, 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 {}
}

// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree 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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

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

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

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

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

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

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


// 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() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

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

// ------------------------------------------------------------------------------------------
// ------------------------------------------------------------------------------------------
// --@-----@---@@@@----@@@@---@@@@@@@---@-------@------@@@@----@-------@---@------@@@@@@@----
// --@-----@--@----@--@----@-----@-------@-----@------@----@---@-------@---@------@----------
// --@@@@@@@--@----@--@----@-----@--------@---@-------@----@---@---@---@---@------@@@@@@@----
// --@-----@--@----@--@----@-----@----------@---------@----@---@--@-@--@---@------------@----
// --@-----@---@@@@----@@@@------@----------@----------@@@@----@-@---@-@---@@@@@--@@@@@@@----
// ------------------------------------------------------------------------------------------
// ------------------------------------------------------------------------------------------
contract HootyOwlsTreehouseNFT is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  bytes32 public merkleRootWL;
  mapping(address => uint256) public numberOfMintsOnAddress;
  mapping(address => uint256) public numberOfFreeMintsOnAddress;

  string public baseURI = '';
  string public uriSuffix = '.json';
  string public preRevealBaseURI;
  
  uint256 public standardCost;
  uint256 public freeMintAddonCost;
  uint256 public whitelistCost;
  uint256 public maxSupply;
  uint256 public maxMintQuantityPerTx;
  uint256 public maxFreeMintQuantityPerTx;
  uint256 public maxMintQuantityPerAddress;
  uint256 public maxFreeMintQuantityPerAddress;

  bool public paused = true;
  bool public promoPaused = true;
  bool public whitelistPaused = true;
  bool public revealed = false;

  //bundles for mint
  uint256 public zSmallQty;
  uint256 public zSmallCost;
  uint256 public zMediumQty;
  uint256 public zMediumCost;
  uint256 public zLargeQty;
  uint256 public zLargeCost;
  uint256 public zXLargeQty;
  uint256 public zXLargeCost;
  
  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 _standardCost,
    uint256 _freeMintAddonCost,
    uint256 _whitelistCost,
    uint256 _maxSupply,
    uint256 _maxFreeMintQuantityPerTx,
    uint256 _maxMintQuantityPerTx,
    uint256 _maxFreeMintQuantityPerAddress,
    uint256 _maxMintQuantityPerAddress,
    string memory _preRevealBaseURI
  ) ERC721A(_tokenName, _tokenSymbol) {
    setCosts(_standardCost, _freeMintAddonCost, _whitelistCost);
    setMaxSupply(_maxSupply);
    setmaxMintQuantitiesPerTx(_maxFreeMintQuantityPerTx, _maxMintQuantityPerTx);
    setmaxMintQuantitiesPerAddress(_maxFreeMintQuantityPerAddress, _maxMintQuantityPerAddress);
    setPreRevealBaseURI(_preRevealBaseURI);
  }

  modifier mintQuantityCheck(uint256 _mintQuantity) {
    require(_mintQuantity > 0 && _mintQuantity <= maxMintQuantityPerTx, 'Invalid mint quantity!');
    require(totalSupply() + _mintQuantity <= maxSupply, 'Max supply exceeded!');
    require(numberOfMintsOnAddress[msg.sender] + _mintQuantity <= maxMintQuantityPerAddress, "Sender is trying to mint more than allowed");
    _;
  }

  modifier mintPriceCheck(uint256 _mintQuantity) {
    if(_mintQuantity==zSmallQty || _mintQuantity==zMediumQty || _mintQuantity==zLargeQty || _mintQuantity==zXLargeQty){
        if(_mintQuantity == zSmallQty){
            require(msg.value >= zSmallCost, 'Insufficient funds for bundle!');
        }
        if(_mintQuantity == zMediumQty){
            require(msg.value >= zMediumCost, 'Insufficient funds for bundle!');
        }
        if(_mintQuantity == zLargeQty){
            require(msg.value >= zLargeCost, 'Insufficient funds for bundle!');
        }
        if(_mintQuantity == zXLargeQty){
            require(msg.value >= zXLargeCost, 'Insufficient funds for bundle!');
        }
    }
    else{
        require(msg.value >= standardCost * _mintQuantity, 'Insufficient funds!');
    }
    _;
  }

  modifier mintPaused(){
    require(!paused, 'The contract is paused!');
    _;
  }

  function mint(uint256 _mintQuantity) public payable mintPaused mintQuantityCheck(_mintQuantity) mintPriceCheck(_mintQuantity) nonReentrant {
    numberOfMintsOnAddress[msg.sender] += _mintQuantity;
    _safeMint(_msgSender(), _mintQuantity);
  }

  function promoMint(uint256 _mintQuantity) public payable mintQuantityCheck(_mintQuantity) nonReentrant {
    require(!promoPaused, 'The promotion mints are paused!');
    uint256 freeMintQuantity;
    uint256 freeMintAddonQuantity;
    uint256 remainingFreeMintQuantity;

    remainingFreeMintQuantity = maxFreeMintQuantityPerAddress - numberOfFreeMintsOnAddress[msg.sender];

    //get free mint quantity from cost
    if(msg.value == 0) freeMintQuantity = _mintQuantity;
    if(msg.value > 0) {
        freeMintAddonQuantity =  msg.value / freeMintAddonCost;
        freeMintQuantity = _mintQuantity - freeMintAddonQuantity;
    }

    require(freeMintQuantity <= maxFreeMintQuantityPerTx, 'Sender trying to avail too many free mints in single transaction!');
    require(freeMintQuantity <= remainingFreeMintQuantity, 'Sender trying to avail too many free mints!');
    require(msg.value >= freeMintAddonCost * freeMintAddonQuantity, 'Insufficient funds!');

    numberOfMintsOnAddress[msg.sender] += _mintQuantity;
    numberOfFreeMintsOnAddress[msg.sender] += freeMintQuantity;
    _safeMint(_msgSender(), _mintQuantity);
  }

  function whitelistMint(uint256 _mintQuantity, bytes32[] calldata _merkleProofWL) public payable mintQuantityCheck(_mintQuantity) nonReentrant {
    require(!whitelistPaused, 'The whitelist mints are paused!');
    require(msg.value >= whitelistCost * _mintQuantity, 'Insufficient funds!');

    bytes32 leafWL = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProofWL, merkleRootWL, leafWL), 'Invalid proof!');

    numberOfMintsOnAddress[msg.sender] += _mintQuantity;
    _safeMint(_msgSender(), _mintQuantity);
  }

  function mintForAddress(uint256 _mintQuantity, address _receiver) public onlyOwner {
    numberOfMintsOnAddress[_receiver] += _mintQuantity;
    _safeMint(_receiver, _mintQuantity);
  }

  function getWalletTokens(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 0;
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned && ownership.addr != address(0)) {
        latestOwnerAddress = ownership.addr;
      }

      if (latestOwnerAddress == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    if (revealed == false) {
      return string(abi.encodePacked(preRevealBaseURI, _tokenId.toString(), uriSuffix));
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCosts(uint256 _standardCost, uint256 _freeMintAddonCost, uint256 _whitelistCost) public onlyOwner {
    standardCost = _standardCost;
    freeMintAddonCost = _freeMintAddonCost;
    whitelistCost = _whitelistCost;
  }

  function setmaxMintQuantitiesPerTx(uint256 _maxFreeMintQuantityPerTx, uint256 _maxMintQuantityPerTx) public onlyOwner {
    maxFreeMintQuantityPerTx = _maxFreeMintQuantityPerTx;
    maxMintQuantityPerTx = _maxMintQuantityPerTx;
  }

  function setmaxMintQuantitiesPerAddress(uint256 _maxFreeMintQuantityPerAddress, uint256 _maxMintQuantityPerAddress) public onlyOwner {
    maxFreeMintQuantityPerAddress = _maxFreeMintQuantityPerAddress;
    maxMintQuantityPerAddress = _maxMintQuantityPerAddress;
  }

  function setPreRevealBaseURI(string memory _preRevealBaseURI) public onlyOwner {
    preRevealBaseURI = _preRevealBaseURI;
  }

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

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state, bool _promoState, bool _whitelistState) public onlyOwner {
    paused = _state;
    promoPaused = _promoState;
    whitelistPaused = _whitelistState;
  }

  function setMerkleRoot(bytes32 _merkleRootWL) public onlyOwner {
    merkleRootWL = _merkleRootWL;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

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

  function setMintBundles(uint256 _zSmallQty,uint256 _zSmallCost,uint256 _zMediumQty,uint256 _zMediumCost,uint256 _zLargeQty,uint256 _zLargeCost,uint256 _zXLargeQty,uint256 _zXLargeCost) public onlyOwner {
    zSmallQty = _zSmallQty;
    zSmallCost = _zSmallCost;
    zMediumQty = _zMediumQty;
    zMediumCost = _zMediumCost;
    zLargeQty = _zLargeQty;
    zLargeCost = _zLargeCost;
    zXLargeQty = _zXLargeQty;
    zXLargeCost = _zXLargeCost;
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_standardCost","type":"uint256"},{"internalType":"uint256","name":"_freeMintAddonCost","type":"uint256"},{"internalType":"uint256","name":"_whitelistCost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxFreeMintQuantityPerTx","type":"uint256"},{"internalType":"uint256","name":"_maxMintQuantityPerTx","type":"uint256"},{"internalType":"uint256","name":"_maxFreeMintQuantityPerAddress","type":"uint256"},{"internalType":"uint256","name":"_maxMintQuantityPerAddress","type":"uint256"},{"internalType":"string","name":"_preRevealBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"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"},{"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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintAddonCost","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"}],"name":"getWalletTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"maxFreeMintQuantityPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintQuantityPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintQuantityPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintQuantityPerTx","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":"merkleRootWL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintQuantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintQuantity","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numberOfFreeMintsOnAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numberOfMintsOnAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preRevealBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintQuantity","type":"uint256"}],"name":"promoMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"promoPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"uint256","name":"_standardCost","type":"uint256"},{"internalType":"uint256","name":"_freeMintAddonCost","type":"uint256"},{"internalType":"uint256","name":"_whitelistCost","type":"uint256"}],"name":"setCosts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootWL","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_zSmallQty","type":"uint256"},{"internalType":"uint256","name":"_zSmallCost","type":"uint256"},{"internalType":"uint256","name":"_zMediumQty","type":"uint256"},{"internalType":"uint256","name":"_zMediumCost","type":"uint256"},{"internalType":"uint256","name":"_zLargeQty","type":"uint256"},{"internalType":"uint256","name":"_zLargeCost","type":"uint256"},{"internalType":"uint256","name":"_zXLargeQty","type":"uint256"},{"internalType":"uint256","name":"_zXLargeCost","type":"uint256"}],"name":"setMintBundles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"},{"internalType":"bool","name":"_promoState","type":"bool"},{"internalType":"bool","name":"_whitelistState","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_preRevealBaseURI","type":"string"}],"name":"setPreRevealBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMintQuantityPerAddress","type":"uint256"},{"internalType":"uint256","name":"_maxMintQuantityPerAddress","type":"uint256"}],"name":"setmaxMintQuantitiesPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxFreeMintQuantityPerTx","type":"uint256"},{"internalType":"uint256","name":"_maxMintQuantityPerTx","type":"uint256"}],"name":"setmaxMintQuantitiesPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"standardCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintQuantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProofWL","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"zLargeCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"zLargeQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"zMediumCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"zMediumQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"zSmallCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"zSmallQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"zXLargeCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"zXLargeQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60a060405260006080908152600d906200001a9082620002d0565b50604080518082019091526005815264173539b7b760d91b6020820152600e90620000469082620002d0565b506018805463ffffffff1916620101011790553480156200006657600080fd5b506040516200329e3803806200329e833981016040819052620000899162000453565b8a8a6002620000998382620002d0565b506003620000a88282620002d0565b50506000805550620000ba336200010b565b6001600955620000cc8989896200015d565b620000d78662000175565b620000e3858562000184565b620000ef838362000199565b620000fa81620001ae565b505050505050505050505062000540565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000167620001ca565b601092909255601155601255565b6200017f620001ca565b601355565b6200018e620001ca565b601591909155601455565b620001a3620001ca565b601791909155601655565b620001b8620001ca565b600f620001c68282620002d0565b5050565b6008546001600160a01b03163314620002295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200025657607f821691505b6020821081036200027757634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002cb57600081815260208120601f850160051c81016020861015620002a65750805b601f850160051c820191505b81811015620002c757828155600101620002b2565b5050505b505050565b81516001600160401b03811115620002ec57620002ec6200022b565b6200030481620002fd845462000241565b846200027d565b602080601f8311600181146200033c5760008415620003235750858301515b600019600386901b1c1916600185901b178555620002c7565b600085815260208120601f198616915b828110156200036d578886015182559484019460019091019084016200034c565b50858210156200038c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f830112620003ae57600080fd5b81516001600160401b0380821115620003cb57620003cb6200022b565b604051601f8301601f19908116603f01168101908282118183101715620003f657620003f66200022b565b816040528381526020925086838588010111156200041357600080fd5b600091505b8382101562000437578582018301518183018401529082019062000418565b83821115620004495760008385830101525b9695505050505050565b60008060008060008060008060008060006101608c8e0312156200047657600080fd5b8b516001600160401b038111156200048d57600080fd5b6200049b8e828f016200039c565b60208e0151909c5090506001600160401b03811115620004ba57600080fd5b620004c88e828f016200039c565b9a505060408c0151985060608c0151975060808c0151965060a08c0151955060c08c0151945060e08c015193506101008c015192506101208c015191506101408c015160018060401b038111156200051f57600080fd5b6200052d8e828f016200039c565b9150509295989b509295989b9093969950565b612d4e80620005506000396000f3fe6080604052600436106103975760003560e01c806380ef0238116101dc578063d04228be11610102578063e7b99ec7116100a0578063f0d572181161006f578063f0d5721814610a02578063f2fde38b14610a18578063f38ade9b14610a38578063fabc38be14610a5857600080fd5b8063e7b99ec71461096e578063e985e9c514610984578063eb6ac8e1146109cd578063efbd73f4146109e257600080fd5b8063d5abeb01116100dc578063d5abeb011461090c578063d6492d8114610922578063e0a8085314610938578063e3d74c801461095857600080fd5b8063d04228be146108c3578063d12da552146108e3578063d2cab056146108f957600080fd5b8063ab3984ff1161017a578063bd5589c811610149578063bd5589c81461084d578063c87b56dd1461087a578063cb56b2391461089a578063cbfbb288146108b057600080fd5b8063ab3984ff146107d4578063b014e41714610801578063b231db8c14610817578063b88d4fde1461082d57600080fd5b806395d89b41116101b657806395d89b4114610776578063a0712d681461078b578063a22cb4651461079e578063a31657e3146107be57600080fd5b806380ef0238146107225780638b1cb4cb146107385780638da5cb5b1461075857600080fd5b806355bb5350116102c15780636c0360eb1161025f57806370b295341161022e57806370b29534146106b7578063715018a6146106d757806379cd719f146106ec5780637cb647591461070257600080fd5b80636c0360eb1461064c5780636c0cfbfe146106615780636f8b44b01461067757806370a082311461069757600080fd5b80635b2818cd1161029b5780635b2818cd146105dc5780635c975abb146105f257806361e61a251461060c5780636352211e1461062c57600080fd5b806355bb53501461058657806355f804b31461059c5780635813af5c146105bc57600080fd5b80631d953e1e116103395780633f86a6dc116103085780633f86a6dc1461051a57806342842e0e1461053057806351830227146105505780635503a0e81461057157600080fd5b80631d953e1e146104af57806323b872dd146104c5578063331c138c146104e55780633ccfd60b1461050557600080fd5b8063095ea7b311610375578063095ea7b31461042b57806316ba10e01461044d57806318160ddd1461046d5780631bb994a01461049057600080fd5b806301ffc9a71461039c57806306fdde03146103d1578063081812fc146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b736600461240b565b610a85565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103e6610ad7565b6040516103c89190612480565b3480156103ff57600080fd5b5061041361040e366004612493565b610b69565b6040516001600160a01b0390911681526020016103c8565b34801561043757600080fd5b5061044b6104463660046124c8565b610bad565b005b34801561045957600080fd5b5061044b61046836600461257d565b610c3a565b34801561047957600080fd5b50600154600054035b6040519081526020016103c8565b34801561049c57600080fd5b506018546103bc90610100900460ff1681565b3480156104bb57600080fd5b50610482601e5481565b3480156104d157600080fd5b5061044b6104e03660046125c5565b610c52565b3480156104f157600080fd5b5061044b610500366004612611565b610c5d565b34801561051157600080fd5b5061044b610c9e565b34801561052657600080fd5b5061048260155481565b34801561053c57600080fd5b5061044b61054b3660046125c5565b610d2c565b34801561055c57600080fd5b506018546103bc906301000000900460ff1681565b34801561057d57600080fd5b506103e6610d47565b34801561059257600080fd5b50610482601c5481565b3480156105a857600080fd5b5061044b6105b736600461257d565b610dd5565b3480156105c857600080fd5b5061044b6105d7366004612654565b610de9565b3480156105e857600080fd5b5061048260145481565b3480156105fe57600080fd5b506018546103bc9060ff1681565b34801561061857600080fd5b506018546103bc9062010000900460ff1681565b34801561063857600080fd5b50610413610647366004612493565b610e17565b34801561065857600080fd5b506103e6610e29565b34801561066d57600080fd5b50610482601a5481565b34801561068357600080fd5b5061044b610692366004612493565b610e36565b3480156106a357600080fd5b506104826106b23660046126a9565b610e43565b3480156106c357600080fd5b5061044b6106d23660046126c4565b610e91565b3480156106e357600080fd5b5061044b610ea4565b3480156106f857600080fd5b5061048260175481565b34801561070e57600080fd5b5061044b61071d366004612493565b610eb6565b34801561072e57600080fd5b5061048260115481565b34801561074457600080fd5b5061044b6107533660046126e6565b610ec3565b34801561076457600080fd5b506008546001600160a01b0316610413565b34801561078257600080fd5b506103e6610ed9565b61044b610799366004612493565b610ee8565b3480156107aa57600080fd5b5061044b6107b9366004612712565b611132565b3480156107ca57600080fd5b50610482601f5481565b3480156107e057600080fd5b506104826107ef3660046126a9565b600c6020526000908152604090205481565b34801561080d57600080fd5b50610482601b5481565b34801561082357600080fd5b5061048260205481565b34801561083957600080fd5b5061044b610848366004612745565b6111c7565b34801561085957600080fd5b506104826108683660046126a9565b600b6020526000908152604090205481565b34801561088657600080fd5b506103e6610895366004612493565b611218565b3480156108a657600080fd5b50610482601d5481565b61044b6108be366004612493565b611331565b3480156108cf57600080fd5b5061044b6108de3660046126c4565b6115fa565b3480156108ef57600080fd5b5061048260105481565b61044b6109073660046127c0565b61160d565b34801561091857600080fd5b5061048260135481565b34801561092e57600080fd5b50610482600a5481565b34801561094457600080fd5b5061044b61095336600461283e565b61182f565b34801561096457600080fd5b5061048260165481565b34801561097a57600080fd5b5061048260125481565b34801561099057600080fd5b506103bc61099f366004612859565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109d957600080fd5b506103e6611855565b3480156109ee57600080fd5b5061044b6109fd366004612883565b611862565b348015610a0e57600080fd5b5061048260195481565b348015610a2457600080fd5b5061044b610a333660046126a9565b6118a2565b348015610a4457600080fd5b5061044b610a5336600461257d565b61191b565b348015610a6457600080fd5b50610a78610a733660046126a9565b61192f565b6040516103c891906128a6565b60006001600160e01b031982166380ac58cd60e01b1480610ab657506001600160e01b03198216635b5e139f60e01b145b80610ad157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610ae6906128ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610b12906128ea565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b6000610b7482611a75565b610b91576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610bb882610e17565b9050806001600160a01b0316836001600160a01b031603610bec5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610c0c5750610c0a813361099f565b155b15610c2a576040516367d9dca160e11b815260040160405180910390fd5b610c35838383611aa0565b505050565b610c42611afc565b600e610c4e8282612972565b5050565b610c35838383611b56565b610c65611afc565b6018805461ffff191693151561ff00191693909317610100921515929092029190911762ff000019166201000091151591909102179055565b610ca6611afc565b610cae611d44565b6000610cc26008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d0c576040519150601f19603f3d011682016040523d82523d6000602084013e610d11565b606091505b5050905080610d1f57600080fd5b50610d2a6001600955565b565b610c35838383604051806020016040528060008152506111c7565b600e8054610d54906128ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610d80906128ea565b8015610dcd5780601f10610da257610100808354040283529160200191610dcd565b820191906000526020600020905b815481529060010190602001808311610db057829003601f168201915b505050505081565b610ddd611afc565b600d610c4e8282612972565b610df1611afc565b601997909755601a95909555601b93909355601c91909155601d55601e55601f55602055565b6000610e2282611d9d565b5192915050565b600d8054610d54906128ea565b610e3e611afc565b601355565b60006001600160a01b038216610e6c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610e99611afc565b601591909155601455565b610eac611afc565b610d2a6000611eb7565b610ebe611afc565b600a55565b610ecb611afc565b601092909255601155601255565b606060038054610ae6906128ea565b60185460ff1615610f405760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064015b60405180910390fd5b80600081118015610f5357506014548111155b610f6f5760405162461bcd60e51b8152600401610f3790612a31565b60135481610f806001546000540390565b610f8a9190612a77565b1115610fa85760405162461bcd60e51b8152600401610f3790612a8f565b601654336000908152600b6020526040902054610fc6908390612a77565b1115610fe45760405162461bcd60e51b8152600401610f3790612abd565b81601954811480610ff65750601b5481145b806110025750601d5481145b8061100e5750601f5481145b156110c457601954810361103e57601a5434101561103e5760405162461bcd60e51b8152600401610f3790612b07565b601b54810361106957601c543410156110695760405162461bcd60e51b8152600401610f3790612b07565b601d54810361109457601e543410156110945760405162461bcd60e51b8152600401610f3790612b07565b601f5481036110bf576020543410156110bf5760405162461bcd60e51b8152600401610f3790612b07565b6110f1565b806010546110d29190612b3e565b3410156110f15760405162461bcd60e51b8152600401610f3790612b5d565b6110f9611d44565b336000908152600b602052604081208054859290611118908490612a77565b9091555061112890503384611f09565b610c356001600955565b336001600160a01b0383160361115b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111d2848484611b56565b6001600160a01b0383163b151580156111f457506111f284848484611f23565b155b15611212576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061122382611a75565b6112875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610f37565b6018546301000000900460ff1615156000036112d257600f6112a88361200f565b600e6040516020016112bc93929190612bfd565b6040516020818303038152906040529050919050565b60006112dc6120a1565b905060008151116112fc576040518060200160405280600081525061132a565b806113068461200f565b600e60405160200161131a93929190612c30565b6040516020818303038152906040525b9392505050565b8060008111801561134457506014548111155b6113605760405162461bcd60e51b8152600401610f3790612a31565b601354816113716001546000540390565b61137b9190612a77565b11156113995760405162461bcd60e51b8152600401610f3790612a8f565b601654336000908152600b60205260409020546113b7908390612a77565b11156113d55760405162461bcd60e51b8152600401610f3790612abd565b6113dd611d44565b601854610100900460ff16156114355760405162461bcd60e51b815260206004820152601f60248201527f5468652070726f6d6f74696f6e206d696e7473206172652070617573656421006044820152606401610f37565b336000908152600c6020526040812054601754829182916114569190612c56565b905034600003611464578492505b3415611486576011546114779034612c6d565b91506114838286612c56565b92505b6015548311156115085760405162461bcd60e51b815260206004820152604160248201527f53656e64657220747279696e6720746f20617661696c20746f6f206d616e792060448201527f66726565206d696e747320696e2073696e676c65207472616e73616374696f6e6064820152602160f81b608482015260a401610f37565b8083111561156c5760405162461bcd60e51b815260206004820152602b60248201527f53656e64657220747279696e6720746f20617661696c20746f6f206d616e792060448201526a66726565206d696e74732160a81b6064820152608401610f37565b8160115461157a9190612b3e565b3410156115995760405162461bcd60e51b8152600401610f3790612b5d565b336000908152600b6020526040812080548792906115b8908490612a77565b9091555050336000908152600c6020526040812080548592906115dc908490612a77565b909155506115ed9050335b86611f09565b505050610c4e6001600955565b611602611afc565b601791909155601655565b8260008111801561162057506014548111155b61163c5760405162461bcd60e51b8152600401610f3790612a31565b6013548161164d6001546000540390565b6116579190612a77565b11156116755760405162461bcd60e51b8152600401610f3790612a8f565b601654336000908152600b6020526040902054611693908390612a77565b11156116b15760405162461bcd60e51b8152600401610f3790612abd565b6116b9611d44565b60185462010000900460ff16156117125760405162461bcd60e51b815260206004820152601f60248201527f5468652077686974656c697374206d696e7473206172652070617573656421006044820152606401610f37565b836012546117209190612b3e565b34101561173f5760405162461bcd60e51b8152600401610f3790612b5d565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506117b984848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506120b0565b6117f65760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610f37565b336000908152600b602052604081208054879290611815908490612a77565b909155506118249050336115e7565b506112126001600955565b611837611afc565b6018805491151563010000000263ff00000019909216919091179055565b600f8054610d54906128ea565b61186a611afc565b6001600160a01b0381166000908152600b602052604081208054849290611892908490612a77565b90915550610c4e90508183611f09565b6118aa611afc565b6001600160a01b03811661190f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f37565b61191881611eb7565b50565b611923611afc565b600f610c4e8282612972565b6060600061193c83610e43565b90506000816001600160401b03811115611958576119586124f2565b604051908082528060200260200182016040528015611981578160200160208202803683370190505b50905060008060005b848210801561199b57506013548311155b15611a6a57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091611a08575080516001600160a01b031615155b15611a1257805191505b876001600160a01b0316826001600160a01b031603611a575783858481518110611a3e57611a3e612c8f565b602090810291909101015282611a5381612ca5565b9350505b83611a6181612ca5565b9450505061198a565b509195945050505050565b6000805482108015610ad1575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610d2a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f37565b6000611b6182611d9d565b9050836001600160a01b031681600001516001600160a01b031614611b985760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611bb65750611bb6853361099f565b80611bd1575033611bc684610b69565b6001600160a01b0316145b905080611bf157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611c1857604051633a954ecd60e21b815260040160405180910390fd5b611c2460008487611aa0565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611cf8576000548214611cf857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600260095403611d965760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f37565b6002600955565b604080516060810182526000808252602082018190529181019190915281600054811015611e9e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611e9c5780516001600160a01b031615611e33579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611e97579392505050565b611e33565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c4e8282604051806020016040528060008152506120c6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f58903390899088908890600401612cbe565b6020604051808303816000875af1925050508015611f93575060408051601f3d908101601f19168201909252611f9091810190612cfb565b60015b611ff1573d808015611fc1576040519150601f19603f3d011682016040523d82523d6000602084013e611fc6565b606091505b508051600003611fe9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600061201c836120d3565b60010190506000816001600160401b0381111561203b5761203b6124f2565b6040519080825280601f01601f191660200182016040528015612065576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461206f57509392505050565b6060600d8054610ae6906128ea565b6000826120bd85846121ab565b14949350505050565b610c3583838360016121f8565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106121125772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061213e576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061215c57662386f26fc10000830492506010015b6305f5e1008310612174576305f5e100830492506008015b612710831061218857612710830492506004015b6064831061219a576064830492506002015b600a8310610ad15760010192915050565b600081815b84518110156121f0576121dc828683815181106121cf576121cf612c8f565b60200260200101516123c9565b9150806121e881612ca5565b9150506121b0565b509392505050565b6000546001600160a01b03851661222157604051622e076360e81b815260040160405180910390fd5b836000036122425760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156122f357506001600160a01b0387163b15155b1561237b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123446000888480600101955088611f23565b612361576040516368d2bf6b60e11b815260040160405180910390fd5b8082036122f957826000541461237657600080fd5b6123c0565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361237c575b50600055611d3d565b60008183106123e557600082815260208490526040902061132a565b5060009182526020526040902090565b6001600160e01b03198116811461191857600080fd5b60006020828403121561241d57600080fd5b813561132a816123f5565b60005b8381101561244357818101518382015260200161242b565b838111156112125750506000910152565b6000815180845261246c816020860160208601612428565b601f01601f19169290920160200192915050565b60208152600061132a6020830184612454565b6000602082840312156124a557600080fd5b5035919050565b80356001600160a01b03811681146124c357600080fd5b919050565b600080604083850312156124db57600080fd5b6124e4836124ac565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612522576125226124f2565b604051601f8501601f19908116603f0116810190828211818310171561254a5761254a6124f2565b8160405280935085815286868601111561256357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561258f57600080fd5b81356001600160401b038111156125a557600080fd5b8201601f810184136125b657600080fd5b61200784823560208401612508565b6000806000606084860312156125da57600080fd5b6125e3846124ac565b92506125f1602085016124ac565b9150604084013590509250925092565b803580151581146124c357600080fd5b60008060006060848603121561262657600080fd5b61262f84612601565b925061263d60208501612601565b915061264b60408501612601565b90509250925092565b600080600080600080600080610100898b03121561267157600080fd5b505086359860208801359850604088013597606081013597506080810135965060a0810135955060c0810135945060e0013592509050565b6000602082840312156126bb57600080fd5b61132a826124ac565b600080604083850312156126d757600080fd5b50508035926020909101359150565b6000806000606084860312156126fb57600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561272557600080fd5b61272e836124ac565b915061273c60208401612601565b90509250929050565b6000806000806080858703121561275b57600080fd5b612764856124ac565b9350612772602086016124ac565b92506040850135915060608501356001600160401b0381111561279457600080fd5b8501601f810187136127a557600080fd5b6127b487823560208401612508565b91505092959194509250565b6000806000604084860312156127d557600080fd5b8335925060208401356001600160401b03808211156127f357600080fd5b818601915086601f83011261280757600080fd5b81358181111561281657600080fd5b8760208260051b850101111561282b57600080fd5b6020830194508093505050509250925092565b60006020828403121561285057600080fd5b61132a82612601565b6000806040838503121561286c57600080fd5b612875836124ac565b915061273c602084016124ac565b6000806040838503121561289657600080fd5b8235915061273c602084016124ac565b6020808252825182820181905260009190848201906040850190845b818110156128de578351835292840192918401916001016128c2565b50909695505050505050565b600181811c908216806128fe57607f821691505b60208210810361291e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610c3557600081815260208120601f850160051c8101602086101561294b5750805b601f850160051c820191505b8181101561296a57828155600101612957565b505050505050565b81516001600160401b0381111561298b5761298b6124f2565b61299f8161299984546128ea565b84612924565b602080601f8311600181146129d457600084156129bc5750858301515b600019600386901b1c1916600185901b17855561296a565b600085815260208120601f198616915b82811015612a03578886015182559484019460019091019084016129e4565b5085821015612a215787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602080825260169082015275496e76616c6964206d696e74207175616e746974792160501b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a8a57612a8a612a61565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6020808252602a908201527f53656e64657220697320747279696e6720746f206d696e74206d6f7265207468604082015269185b88185b1b1bddd95960b21b606082015260800190565b6020808252601e908201527f496e73756666696369656e742066756e647320666f722062756e646c65210000604082015260600190565b6000816000190483118215151615612b5857612b58612a61565b500290565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60008154612b97816128ea565b60018281168015612baf5760018114612bc457612bf3565b60ff1984168752821515830287019450612bf3565b8560005260208060002060005b85811015612bea5781548a820152908401908201612bd1565b50505082870194505b5050505092915050565b6000612c098286612b8a565b8451612c19818360208901612428565b612c2581830186612b8a565b979650505050505050565b60008451612c42818460208901612428565b845190830190612c19818360208901612428565b600082821015612c6857612c68612a61565b500390565b600082612c8a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612cb757612cb7612a61565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cf190830184612454565b9695505050505050565b600060208284031215612d0d57600080fd5b815161132a816123f556fea264697066735822122096252d8c6681d2b8dac6983e3d3ec6664b30f81627e6c7fe5af4fdcd96de877d64736f6c634300080f0033000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000001ff973cafa8000000000000000000000000000000000000000000000000000001ff973cafa8000000000000000000000000000000000000000000000000000001ff973cafa800000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000005484f54485300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034854480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f686f6f74796f776c736e66742e636f6d2f6170692f74726565686f7573650000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103975760003560e01c806380ef0238116101dc578063d04228be11610102578063e7b99ec7116100a0578063f0d572181161006f578063f0d5721814610a02578063f2fde38b14610a18578063f38ade9b14610a38578063fabc38be14610a5857600080fd5b8063e7b99ec71461096e578063e985e9c514610984578063eb6ac8e1146109cd578063efbd73f4146109e257600080fd5b8063d5abeb01116100dc578063d5abeb011461090c578063d6492d8114610922578063e0a8085314610938578063e3d74c801461095857600080fd5b8063d04228be146108c3578063d12da552146108e3578063d2cab056146108f957600080fd5b8063ab3984ff1161017a578063bd5589c811610149578063bd5589c81461084d578063c87b56dd1461087a578063cb56b2391461089a578063cbfbb288146108b057600080fd5b8063ab3984ff146107d4578063b014e41714610801578063b231db8c14610817578063b88d4fde1461082d57600080fd5b806395d89b41116101b657806395d89b4114610776578063a0712d681461078b578063a22cb4651461079e578063a31657e3146107be57600080fd5b806380ef0238146107225780638b1cb4cb146107385780638da5cb5b1461075857600080fd5b806355bb5350116102c15780636c0360eb1161025f57806370b295341161022e57806370b29534146106b7578063715018a6146106d757806379cd719f146106ec5780637cb647591461070257600080fd5b80636c0360eb1461064c5780636c0cfbfe146106615780636f8b44b01461067757806370a082311461069757600080fd5b80635b2818cd1161029b5780635b2818cd146105dc5780635c975abb146105f257806361e61a251461060c5780636352211e1461062c57600080fd5b806355bb53501461058657806355f804b31461059c5780635813af5c146105bc57600080fd5b80631d953e1e116103395780633f86a6dc116103085780633f86a6dc1461051a57806342842e0e1461053057806351830227146105505780635503a0e81461057157600080fd5b80631d953e1e146104af57806323b872dd146104c5578063331c138c146104e55780633ccfd60b1461050557600080fd5b8063095ea7b311610375578063095ea7b31461042b57806316ba10e01461044d57806318160ddd1461046d5780631bb994a01461049057600080fd5b806301ffc9a71461039c57806306fdde03146103d1578063081812fc146103f3575b600080fd5b3480156103a857600080fd5b506103bc6103b736600461240b565b610a85565b60405190151581526020015b60405180910390f35b3480156103dd57600080fd5b506103e6610ad7565b6040516103c89190612480565b3480156103ff57600080fd5b5061041361040e366004612493565b610b69565b6040516001600160a01b0390911681526020016103c8565b34801561043757600080fd5b5061044b6104463660046124c8565b610bad565b005b34801561045957600080fd5b5061044b61046836600461257d565b610c3a565b34801561047957600080fd5b50600154600054035b6040519081526020016103c8565b34801561049c57600080fd5b506018546103bc90610100900460ff1681565b3480156104bb57600080fd5b50610482601e5481565b3480156104d157600080fd5b5061044b6104e03660046125c5565b610c52565b3480156104f157600080fd5b5061044b610500366004612611565b610c5d565b34801561051157600080fd5b5061044b610c9e565b34801561052657600080fd5b5061048260155481565b34801561053c57600080fd5b5061044b61054b3660046125c5565b610d2c565b34801561055c57600080fd5b506018546103bc906301000000900460ff1681565b34801561057d57600080fd5b506103e6610d47565b34801561059257600080fd5b50610482601c5481565b3480156105a857600080fd5b5061044b6105b736600461257d565b610dd5565b3480156105c857600080fd5b5061044b6105d7366004612654565b610de9565b3480156105e857600080fd5b5061048260145481565b3480156105fe57600080fd5b506018546103bc9060ff1681565b34801561061857600080fd5b506018546103bc9062010000900460ff1681565b34801561063857600080fd5b50610413610647366004612493565b610e17565b34801561065857600080fd5b506103e6610e29565b34801561066d57600080fd5b50610482601a5481565b34801561068357600080fd5b5061044b610692366004612493565b610e36565b3480156106a357600080fd5b506104826106b23660046126a9565b610e43565b3480156106c357600080fd5b5061044b6106d23660046126c4565b610e91565b3480156106e357600080fd5b5061044b610ea4565b3480156106f857600080fd5b5061048260175481565b34801561070e57600080fd5b5061044b61071d366004612493565b610eb6565b34801561072e57600080fd5b5061048260115481565b34801561074457600080fd5b5061044b6107533660046126e6565b610ec3565b34801561076457600080fd5b506008546001600160a01b0316610413565b34801561078257600080fd5b506103e6610ed9565b61044b610799366004612493565b610ee8565b3480156107aa57600080fd5b5061044b6107b9366004612712565b611132565b3480156107ca57600080fd5b50610482601f5481565b3480156107e057600080fd5b506104826107ef3660046126a9565b600c6020526000908152604090205481565b34801561080d57600080fd5b50610482601b5481565b34801561082357600080fd5b5061048260205481565b34801561083957600080fd5b5061044b610848366004612745565b6111c7565b34801561085957600080fd5b506104826108683660046126a9565b600b6020526000908152604090205481565b34801561088657600080fd5b506103e6610895366004612493565b611218565b3480156108a657600080fd5b50610482601d5481565b61044b6108be366004612493565b611331565b3480156108cf57600080fd5b5061044b6108de3660046126c4565b6115fa565b3480156108ef57600080fd5b5061048260105481565b61044b6109073660046127c0565b61160d565b34801561091857600080fd5b5061048260135481565b34801561092e57600080fd5b50610482600a5481565b34801561094457600080fd5b5061044b61095336600461283e565b61182f565b34801561096457600080fd5b5061048260165481565b34801561097a57600080fd5b5061048260125481565b34801561099057600080fd5b506103bc61099f366004612859565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156109d957600080fd5b506103e6611855565b3480156109ee57600080fd5b5061044b6109fd366004612883565b611862565b348015610a0e57600080fd5b5061048260195481565b348015610a2457600080fd5b5061044b610a333660046126a9565b6118a2565b348015610a4457600080fd5b5061044b610a5336600461257d565b61191b565b348015610a6457600080fd5b50610a78610a733660046126a9565b61192f565b6040516103c891906128a6565b60006001600160e01b031982166380ac58cd60e01b1480610ab657506001600160e01b03198216635b5e139f60e01b145b80610ad157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610ae6906128ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610b12906128ea565b8015610b5f5780601f10610b3457610100808354040283529160200191610b5f565b820191906000526020600020905b815481529060010190602001808311610b4257829003601f168201915b5050505050905090565b6000610b7482611a75565b610b91576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610bb882610e17565b9050806001600160a01b0316836001600160a01b031603610bec5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610c0c5750610c0a813361099f565b155b15610c2a576040516367d9dca160e11b815260040160405180910390fd5b610c35838383611aa0565b505050565b610c42611afc565b600e610c4e8282612972565b5050565b610c35838383611b56565b610c65611afc565b6018805461ffff191693151561ff00191693909317610100921515929092029190911762ff000019166201000091151591909102179055565b610ca6611afc565b610cae611d44565b6000610cc26008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610d0c576040519150601f19603f3d011682016040523d82523d6000602084013e610d11565b606091505b5050905080610d1f57600080fd5b50610d2a6001600955565b565b610c35838383604051806020016040528060008152506111c7565b600e8054610d54906128ea565b80601f0160208091040260200160405190810160405280929190818152602001828054610d80906128ea565b8015610dcd5780601f10610da257610100808354040283529160200191610dcd565b820191906000526020600020905b815481529060010190602001808311610db057829003601f168201915b505050505081565b610ddd611afc565b600d610c4e8282612972565b610df1611afc565b601997909755601a95909555601b93909355601c91909155601d55601e55601f55602055565b6000610e2282611d9d565b5192915050565b600d8054610d54906128ea565b610e3e611afc565b601355565b60006001600160a01b038216610e6c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b610e99611afc565b601591909155601455565b610eac611afc565b610d2a6000611eb7565b610ebe611afc565b600a55565b610ecb611afc565b601092909255601155601255565b606060038054610ae6906128ea565b60185460ff1615610f405760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064015b60405180910390fd5b80600081118015610f5357506014548111155b610f6f5760405162461bcd60e51b8152600401610f3790612a31565b60135481610f806001546000540390565b610f8a9190612a77565b1115610fa85760405162461bcd60e51b8152600401610f3790612a8f565b601654336000908152600b6020526040902054610fc6908390612a77565b1115610fe45760405162461bcd60e51b8152600401610f3790612abd565b81601954811480610ff65750601b5481145b806110025750601d5481145b8061100e5750601f5481145b156110c457601954810361103e57601a5434101561103e5760405162461bcd60e51b8152600401610f3790612b07565b601b54810361106957601c543410156110695760405162461bcd60e51b8152600401610f3790612b07565b601d54810361109457601e543410156110945760405162461bcd60e51b8152600401610f3790612b07565b601f5481036110bf576020543410156110bf5760405162461bcd60e51b8152600401610f3790612b07565b6110f1565b806010546110d29190612b3e565b3410156110f15760405162461bcd60e51b8152600401610f3790612b5d565b6110f9611d44565b336000908152600b602052604081208054859290611118908490612a77565b9091555061112890503384611f09565b610c356001600955565b336001600160a01b0383160361115b5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111d2848484611b56565b6001600160a01b0383163b151580156111f457506111f284848484611f23565b155b15611212576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061122382611a75565b6112875760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610f37565b6018546301000000900460ff1615156000036112d257600f6112a88361200f565b600e6040516020016112bc93929190612bfd565b6040516020818303038152906040529050919050565b60006112dc6120a1565b905060008151116112fc576040518060200160405280600081525061132a565b806113068461200f565b600e60405160200161131a93929190612c30565b6040516020818303038152906040525b9392505050565b8060008111801561134457506014548111155b6113605760405162461bcd60e51b8152600401610f3790612a31565b601354816113716001546000540390565b61137b9190612a77565b11156113995760405162461bcd60e51b8152600401610f3790612a8f565b601654336000908152600b60205260409020546113b7908390612a77565b11156113d55760405162461bcd60e51b8152600401610f3790612abd565b6113dd611d44565b601854610100900460ff16156114355760405162461bcd60e51b815260206004820152601f60248201527f5468652070726f6d6f74696f6e206d696e7473206172652070617573656421006044820152606401610f37565b336000908152600c6020526040812054601754829182916114569190612c56565b905034600003611464578492505b3415611486576011546114779034612c6d565b91506114838286612c56565b92505b6015548311156115085760405162461bcd60e51b815260206004820152604160248201527f53656e64657220747279696e6720746f20617661696c20746f6f206d616e792060448201527f66726565206d696e747320696e2073696e676c65207472616e73616374696f6e6064820152602160f81b608482015260a401610f37565b8083111561156c5760405162461bcd60e51b815260206004820152602b60248201527f53656e64657220747279696e6720746f20617661696c20746f6f206d616e792060448201526a66726565206d696e74732160a81b6064820152608401610f37565b8160115461157a9190612b3e565b3410156115995760405162461bcd60e51b8152600401610f3790612b5d565b336000908152600b6020526040812080548792906115b8908490612a77565b9091555050336000908152600c6020526040812080548592906115dc908490612a77565b909155506115ed9050335b86611f09565b505050610c4e6001600955565b611602611afc565b601791909155601655565b8260008111801561162057506014548111155b61163c5760405162461bcd60e51b8152600401610f3790612a31565b6013548161164d6001546000540390565b6116579190612a77565b11156116755760405162461bcd60e51b8152600401610f3790612a8f565b601654336000908152600b6020526040902054611693908390612a77565b11156116b15760405162461bcd60e51b8152600401610f3790612abd565b6116b9611d44565b60185462010000900460ff16156117125760405162461bcd60e51b815260206004820152601f60248201527f5468652077686974656c697374206d696e7473206172652070617573656421006044820152606401610f37565b836012546117209190612b3e565b34101561173f5760405162461bcd60e51b8152600401610f3790612b5d565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506117b984848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a5491508490506120b0565b6117f65760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610f37565b336000908152600b602052604081208054879290611815908490612a77565b909155506118249050336115e7565b506112126001600955565b611837611afc565b6018805491151563010000000263ff00000019909216919091179055565b600f8054610d54906128ea565b61186a611afc565b6001600160a01b0381166000908152600b602052604081208054849290611892908490612a77565b90915550610c4e90508183611f09565b6118aa611afc565b6001600160a01b03811661190f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610f37565b61191881611eb7565b50565b611923611afc565b600f610c4e8282612972565b6060600061193c83610e43565b90506000816001600160401b03811115611958576119586124f2565b604051908082528060200260200182016040528015611981578160200160208202803683370190505b50905060008060005b848210801561199b57506013548311155b15611a6a57600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091611a08575080516001600160a01b031615155b15611a1257805191505b876001600160a01b0316826001600160a01b031603611a575783858481518110611a3e57611a3e612c8f565b602090810291909101015282611a5381612ca5565b9350505b83611a6181612ca5565b9450505061198a565b509195945050505050565b6000805482108015610ad1575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b03163314610d2a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610f37565b6000611b6182611d9d565b9050836001600160a01b031681600001516001600160a01b031614611b985760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611bb65750611bb6853361099f565b80611bd1575033611bc684610b69565b6001600160a01b0316145b905080611bf157604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611c1857604051633a954ecd60e21b815260040160405180910390fd5b611c2460008487611aa0565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611cf8576000548214611cf857805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600260095403611d965760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610f37565b6002600955565b604080516060810182526000808252602082018190529181019190915281600054811015611e9e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611e9c5780516001600160a01b031615611e33579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611e97579392505050565b611e33565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c4e8282604051806020016040528060008152506120c6565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611f58903390899088908890600401612cbe565b6020604051808303816000875af1925050508015611f93575060408051601f3d908101601f19168201909252611f9091810190612cfb565b60015b611ff1573d808015611fc1576040519150601f19603f3d011682016040523d82523d6000602084013e611fc6565b606091505b508051600003611fe9576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600061201c836120d3565b60010190506000816001600160401b0381111561203b5761203b6124f2565b6040519080825280601f01601f191660200182016040528015612065576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a850494508461206f57509392505050565b6060600d8054610ae6906128ea565b6000826120bd85846121ab565b14949350505050565b610c3583838360016121f8565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b83106121125772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef8100000000831061213e576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061215c57662386f26fc10000830492506010015b6305f5e1008310612174576305f5e100830492506008015b612710831061218857612710830492506004015b6064831061219a576064830492506002015b600a8310610ad15760010192915050565b600081815b84518110156121f0576121dc828683815181106121cf576121cf612c8f565b60200260200101516123c9565b9150806121e881612ca5565b9150506121b0565b509392505050565b6000546001600160a01b03851661222157604051622e076360e81b815260040160405180910390fd5b836000036122425760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156122f357506001600160a01b0387163b15155b1561237b575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46123446000888480600101955088611f23565b612361576040516368d2bf6b60e11b815260040160405180910390fd5b8082036122f957826000541461237657600080fd5b6123c0565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480820361237c575b50600055611d3d565b60008183106123e557600082815260208490526040902061132a565b5060009182526020526040902090565b6001600160e01b03198116811461191857600080fd5b60006020828403121561241d57600080fd5b813561132a816123f5565b60005b8381101561244357818101518382015260200161242b565b838111156112125750506000910152565b6000815180845261246c816020860160208601612428565b601f01601f19169290920160200192915050565b60208152600061132a6020830184612454565b6000602082840312156124a557600080fd5b5035919050565b80356001600160a01b03811681146124c357600080fd5b919050565b600080604083850312156124db57600080fd5b6124e4836124ac565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612522576125226124f2565b604051601f8501601f19908116603f0116810190828211818310171561254a5761254a6124f2565b8160405280935085815286868601111561256357600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561258f57600080fd5b81356001600160401b038111156125a557600080fd5b8201601f810184136125b657600080fd5b61200784823560208401612508565b6000806000606084860312156125da57600080fd5b6125e3846124ac565b92506125f1602085016124ac565b9150604084013590509250925092565b803580151581146124c357600080fd5b60008060006060848603121561262657600080fd5b61262f84612601565b925061263d60208501612601565b915061264b60408501612601565b90509250925092565b600080600080600080600080610100898b03121561267157600080fd5b505086359860208801359850604088013597606081013597506080810135965060a0810135955060c0810135945060e0013592509050565b6000602082840312156126bb57600080fd5b61132a826124ac565b600080604083850312156126d757600080fd5b50508035926020909101359150565b6000806000606084860312156126fb57600080fd5b505081359360208301359350604090920135919050565b6000806040838503121561272557600080fd5b61272e836124ac565b915061273c60208401612601565b90509250929050565b6000806000806080858703121561275b57600080fd5b612764856124ac565b9350612772602086016124ac565b92506040850135915060608501356001600160401b0381111561279457600080fd5b8501601f810187136127a557600080fd5b6127b487823560208401612508565b91505092959194509250565b6000806000604084860312156127d557600080fd5b8335925060208401356001600160401b03808211156127f357600080fd5b818601915086601f83011261280757600080fd5b81358181111561281657600080fd5b8760208260051b850101111561282b57600080fd5b6020830194508093505050509250925092565b60006020828403121561285057600080fd5b61132a82612601565b6000806040838503121561286c57600080fd5b612875836124ac565b915061273c602084016124ac565b6000806040838503121561289657600080fd5b8235915061273c602084016124ac565b6020808252825182820181905260009190848201906040850190845b818110156128de578351835292840192918401916001016128c2565b50909695505050505050565b600181811c908216806128fe57607f821691505b60208210810361291e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115610c3557600081815260208120601f850160051c8101602086101561294b5750805b601f850160051c820191505b8181101561296a57828155600101612957565b505050505050565b81516001600160401b0381111561298b5761298b6124f2565b61299f8161299984546128ea565b84612924565b602080601f8311600181146129d457600084156129bc5750858301515b600019600386901b1c1916600185901b17855561296a565b600085815260208120601f198616915b82811015612a03578886015182559484019460019091019084016129e4565b5085821015612a215787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b602080825260169082015275496e76616c6964206d696e74207175616e746974792160501b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612a8a57612a8a612a61565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b6020808252602a908201527f53656e64657220697320747279696e6720746f206d696e74206d6f7265207468604082015269185b88185b1b1bddd95960b21b606082015260800190565b6020808252601e908201527f496e73756666696369656e742066756e647320666f722062756e646c65210000604082015260600190565b6000816000190483118215151615612b5857612b58612a61565b500290565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b60008154612b97816128ea565b60018281168015612baf5760018114612bc457612bf3565b60ff1984168752821515830287019450612bf3565b8560005260208060002060005b85811015612bea5781548a820152908401908201612bd1565b50505082870194505b5050505092915050565b6000612c098286612b8a565b8451612c19818360208901612428565b612c2581830186612b8a565b979650505050505050565b60008451612c42818460208901612428565b845190830190612c19818360208901612428565b600082821015612c6857612c68612a61565b500390565b600082612c8a57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612cb757612cb7612a61565b5060010190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612cf190830184612454565b9695505050505050565b600060208284031215612d0d57600080fd5b815161132a816123f556fea264697066735822122096252d8c6681d2b8dac6983e3d3ec6664b30f81627e6c7fe5af4fdcd96de877d64736f6c634300080f0033

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

000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000001ff973cafa8000000000000000000000000000000000000000000000000000001ff973cafa8000000000000000000000000000000000000000000000000000001ff973cafa800000000000000000000000000000000000000000000000000000000000000001f40000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000001e00000000000000000000000000000000000000000000000000000000000000005484f54485300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034854480000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002668747470733a2f2f686f6f74796f776c736e66742e636f6d2f6170692f74726565686f7573650000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): HOTHS
Arg [1] : _tokenSymbol (string): HTH
Arg [2] : _standardCost (uint256): 9000000000000000
Arg [3] : _freeMintAddonCost (uint256): 9000000000000000
Arg [4] : _whitelistCost (uint256): 9000000000000000
Arg [5] : _maxSupply (uint256): 500
Arg [6] : _maxFreeMintQuantityPerTx (uint256): 1
Arg [7] : _maxMintQuantityPerTx (uint256): 10
Arg [8] : _maxFreeMintQuantityPerAddress (uint256): 1
Arg [9] : _maxMintQuantityPerAddress (uint256): 10
Arg [10] : _preRevealBaseURI (string): https://hootyowlsnft.com/api/treehouse

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [2] : 000000000000000000000000000000000000000000000000001ff973cafa8000
Arg [3] : 000000000000000000000000000000000000000000000000001ff973cafa8000
Arg [4] : 000000000000000000000000000000000000000000000000001ff973cafa8000
Arg [5] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [9] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [10] : 00000000000000000000000000000000000000000000000000000000000001e0
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [12] : 484f544853000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [14] : 4854480000000000000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [16] : 68747470733a2f2f686f6f74796f776c736e66742e636f6d2f6170692f747265
Arg [17] : 65686f7573650000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

70796:8952:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38024:305;;;;;;;;;;-1:-1:-1;38024:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;38024:305:0;;;;;;;;41137:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42640:204::-;;;;;;;;;;-1:-1:-1;42640:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;42640:204:0;1528:203:1;42203:371:0;;;;;;;;;;-1:-1:-1;42203:371:0;;;;;:::i;:::-;;:::i;:::-;;78512:100;;;;;;;;;;-1:-1:-1;78512:100:0;;;;;:::i;:::-;;:::i;37273:303::-;;;;;;;;;;-1:-1:-1;37527:12:0;;37317:7;37511:13;:28;37273:303;;;3544:25:1;;;3532:2;3517:18;37273:303:0;3398:177:1;71514:30:0;;;;;;;;;;-1:-1:-1;71514:30:0;;;;;;;;;;;71794:25;;;;;;;;;;;;;;;;43505:170;;;;;;;;;;-1:-1:-1;43505:170:0;;;;;:::i;:::-;;:::i;78618:189::-;;;;;;;;;;-1:-1:-1;78618:189:0;;;;;:::i;:::-;;:::i;79023:150::-;;;;;;;;;;;;;:::i;71344:39::-;;;;;;;;;;;;;;;;43746:185;;;;;;;;;;-1:-1:-1;43746:185:0;;;;;:::i;:::-;;:::i;71588:28::-;;;;;;;;;;-1:-1:-1;71588:28:0;;;;;;;;;;;71096:33;;;;;;;;;;;;;:::i;71734:26::-;;;;;;;;;;;;;;;;78412:94;;;;;;;;;;-1:-1:-1;78412:94:0;;;;;:::i;:::-;;:::i;79287:456::-;;;;;;;;;;-1:-1:-1;79287:456:0;;;;;:::i;:::-;;:::i;71304:35::-;;;;;;;;;;;;;;;;71484:25;;;;;;;;;;-1:-1:-1;71484:25:0;;;;;;;;71549:34;;;;;;;;;;-1:-1:-1;71549:34:0;;;;;;;;;;;40945:125;;;;;;;;;;-1:-1:-1;40945:125:0;;;;;:::i;:::-;;:::i;71065:26::-;;;;;;;;;;;;;:::i;71674:25::-;;;;;;;;;;;;;;;;78923:94;;;;;;;;;;-1:-1:-1;78923:94:0;;;;;:::i;:::-;;:::i;38393:206::-;;;;;;;;;;-1:-1:-1;38393:206:0;;;;;:::i;:::-;;:::i;77763:234::-;;;;;;;;;;-1:-1:-1;77763:234:0;;;;;:::i;:::-;;:::i;57606:103::-;;;;;;;;;;;;;:::i;71433:44::-;;;;;;;;;;;;;;;;78813:104;;;;;;;;;;-1:-1:-1;78813:104:0;;;;;:::i;:::-;;:::i;71205:32::-;;;;;;;;;;;;;;;;77524:233;;;;;;;;;;-1:-1:-1;77524:233:0;;;;;:::i;:::-;;:::i;56958:87::-;;;;;;;;;;-1:-1:-1;57031:6:0;;-1:-1:-1;;;;;57031:6:0;56958:87;;41306:104;;;;;;;;;;;;;:::i;73969:248::-;;;;;;:::i;:::-;;:::i;42916:287::-;;;;;;;;;;-1:-1:-1;42916:287:0;;;;;:::i;:::-;;:::i;71824:25::-;;;;;;;;;;;;;;;;70997:61;;;;;;;;;;-1:-1:-1;70997:61:0;;;;;:::i;:::-;;;;;;;;;;;;;;71704:25;;;;;;;;;;;;;;;;71854:26;;;;;;;;;;;;;;;;44002:369;;;;;;;;;;-1:-1:-1;44002:369:0;;;;;:::i;:::-;;:::i;70935:57::-;;;;;;;;;;-1:-1:-1;70935:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;76929:502;;;;;;;;;;-1:-1:-1;76929:502:0;;;;;:::i;:::-;;:::i;71765:24::-;;;;;;;;;;;;;;;;74223:1152;;;;;;:::i;:::-;;:::i;78003:269::-;;;;;;;;;;-1:-1:-1;78003:269:0;;;;;:::i;:::-;;:::i;71173:27::-;;;;;;;;;;;;;;;;75381:558;;;;;;:::i;:::-;;:::i;71275:24::-;;;;;;;;;;;;;;;;70903:27;;;;;;;;;;;;;;;;77437:81;;;;;;;;;;-1:-1:-1;77437:81:0;;;;;:::i;:::-;;:::i;71388:40::-;;;;;;;;;;;;;;;;71242:28;;;;;;;;;;;;;;;;43274:164;;;;;;;;;;-1:-1:-1;43274:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;43395:25:0;;;43371:4;43395:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43274:164;71134:30;;;;;;;;;;;;;:::i;75945:188::-;;;;;;;;;;-1:-1:-1;75945:188:0;;;;;:::i;:::-;;:::i;71645:24::-;;;;;;;;;;;;;;;;57864:201;;;;;;;;;;-1:-1:-1;57864:201:0;;;;;:::i;:::-;;:::i;78278:128::-;;;;;;;;;;-1:-1:-1;78278:128:0;;;;;:::i;:::-;;:::i;76139:784::-;;;;;;;;;;-1:-1:-1;76139:784:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;38024:305::-;38126:4;-1:-1:-1;;;;;;38163:40:0;;-1:-1:-1;;;38163:40:0;;:105;;-1:-1:-1;;;;;;;38220:48:0;;-1:-1:-1;;;38220:48:0;38163:105;:158;;;-1:-1:-1;;;;;;;;;;33810:40:0;;;38285:36;38143:178;38024:305;-1:-1:-1;;38024:305:0:o;41137:100::-;41191:13;41224:5;41217:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41137:100;:::o;42640:204::-;42708:7;42733:16;42741:7;42733;:16::i;:::-;42728:64;;42758:34;;-1:-1:-1;;;42758:34:0;;;;;;;;;;;42728:64;-1:-1:-1;42812:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;42812:24:0;;42640:204::o;42203:371::-;42276:13;42292:24;42308:7;42292:15;:24::i;:::-;42276:40;;42337:5;-1:-1:-1;;;;;42331:11:0;:2;-1:-1:-1;;;;;42331:11:0;;42327:48;;42351:24;;-1:-1:-1;;;42351:24:0;;;;;;;;;;;42327:48;17688:10;-1:-1:-1;;;;;42392:21:0;;;;;;:63;;-1:-1:-1;42418:37:0;42435:5;17688:10;43274:164;:::i;42418:37::-;42417:38;42392:63;42388:138;;;42479:35;;-1:-1:-1;;;42479:35:0;;;;;;;;;;;42388:138;42538:28;42547:2;42551:7;42560:5;42538:8;:28::i;:::-;42265:309;42203:371;;:::o;78512:100::-;56844:13;:11;:13::i;:::-;78584:9:::1;:22;78596:10:::0;78584:9;:22:::1;:::i;:::-;;78512:100:::0;:::o;43505:170::-;43639:28;43649:4;43655:2;43659:7;43639:9;:28::i;78618:189::-;56844:13;:11;:13::i;:::-;78714:6:::1;:15:::0;;-1:-1:-1;;78736:25:0;78714:15;::::1;;-1:-1:-1::0;;78736:25:0;;;;;78714:15:::1;78736:25:::0;::::1;;::::0;;;::::1;::::0;;;::::1;-1:-1:-1::0;;78768:33:0::1;::::0;;::::1;;::::0;;;::::1;;::::0;;78618:189::o;79023:150::-;56844:13;:11;:13::i;:::-;69340:21:::1;:19;:21::i;:::-;79081:7:::2;79102;57031:6:::0;;-1:-1:-1;;;;;57031:6:0;;56958:87;79102:7:::2;-1:-1:-1::0;;;;;79094:21:0::2;79123;79094:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;79080:69;;;79164:2;79156:11;;;::::0;::::2;;79073:100;69384:20:::1;68778:1:::0;69904:7;:22;69721:213;69384:20:::1;79023:150::o:0;43746:185::-;43884:39;43901:4;43907:2;43911:7;43884:39;;;;;;;;;;;;:16;:39::i;71096:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;78412:94::-;56844:13;:11;:13::i;:::-;78481:7:::1;:19;78491:9:::0;78481:7;:19:::1;:::i;79287:456::-:0;56844:13;:11;:13::i;:::-;79496:9:::1;:22:::0;;;;79525:10:::1;:24:::0;;;;79556:10:::1;:24:::0;;;;79587:11:::1;:26:::0;;;;79620:9:::1;:22:::0;79649:10:::1;:24:::0;79680:10:::1;:24:::0;79711:11:::1;:26:::0;79287:456::o;40945:125::-;41009:7;41036:21;41049:7;41036:12;:21::i;:::-;:26;;40945:125;-1:-1:-1;;40945:125:0:o;71065:26::-;;;;;;;:::i;78923:94::-;56844:13;:11;:13::i;:::-;78989:9:::1;:22:::0;78923:94::o;38393:206::-;38457:7;-1:-1:-1;;;;;38481:19:0;;38477:60;;38509:28;;-1:-1:-1;;;38509:28:0;;;;;;;;;;;38477:60;-1:-1:-1;;;;;;38563:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;38563:27:0;;38393:206::o;77763:234::-;56844:13;:11;:13::i;:::-;77888:24:::1;:52:::0;;;;77947:20:::1;:44:::0;77763:234::o;57606:103::-;56844:13;:11;:13::i;:::-;57671:30:::1;57698:1;57671:18;:30::i;78813:104::-:0;56844:13;:11;:13::i;:::-;78883:12:::1;:28:::0;78813:104::o;77524:233::-;56844:13;:11;:13::i;:::-;77641:12:::1;:28:::0;;;;77676:17:::1;:38:::0;77721:13:::1;:30:::0;77524:233::o;41306:104::-;41362:13;41395:7;41388:14;;;;;:::i;73969:248::-;73915:6;;;;73914:7;73906:43;;;;-1:-1:-1;;;73906:43:0;;12163:2:1;73906:43:0;;;12145:21:1;12202:2;12182:18;;;12175:30;12241:25;12221:18;;;12214:53;12284:18;;73906:43:0;;;;;;;;;74050:13:::1;72733:1;72717:13;:17;:58;;;;;72755:20;;72738:13;:37;;72717:58;72709:93;;;;-1:-1:-1::0;;;72709:93:0::1;;;;;;;:::i;:::-;72850:9;;72833:13;72817;37527:12:::0;;37317:7;37511:13;:28;;37273:303;72817:13:::1;:29;;;;:::i;:::-;:42;;72809:75;;;;-1:-1:-1::0;;;72809:75:0::1;;;;;;;:::i;:::-;72953:25;::::0;72922:10:::1;72899:34;::::0;;;:22:::1;:34;::::0;;;;;:50:::1;::::0;72936:13;;72899:50:::1;:::i;:::-;:79;;72891:134;;;;-1:-1:-1::0;;;72891:134:0::1;;;;;;;:::i;:::-;74080:13:::2;73117:9;;73102:13;:24;:53;;;;73145:10;;73130:13;:25;73102:53;:81;;;;73174:9;;73159:13;:24;73102:81;:110;;;;73202:10;;73187:13;:25;73102:110;73099:760;;;73244:9;;73227:13;:26:::0;73224:123:::2;;73290:10;;73277:9;:23;;73269:66;;;;-1:-1:-1::0;;;73269:66:0::2;;;;;;;:::i;:::-;73377:10;;73360:13;:27:::0;73357:125:::2;;73424:11;;73411:9;:24;;73403:67;;;;-1:-1:-1::0;;;73403:67:0::2;;;;;;;:::i;:::-;73512:9;;73495:13;:26:::0;73492:123:::2;;73558:10;;73545:9;:23;;73537:66;;;;-1:-1:-1::0;;;73537:66:0::2;;;;;;;:::i;:::-;73645:10;;73628:13;:27:::0;73625:125:::2;;73692:11;;73679:9;:24;;73671:67;;;;-1:-1:-1::0;;;73671:67:0::2;;;;;;;:::i;:::-;73099:760;;;73814:13;73799:12;;:28;;;;:::i;:::-;73786:9;:41;;73778:73;;;;-1:-1:-1::0;;;73778:73:0::2;;;;;;;:::i;:::-;69340:21:::3;:19;:21::i;:::-;74138:10:::4;74115:34;::::0;;;:22:::4;:34;::::0;;;;:51;;74153:13;;74115:34;:51:::4;::::0;74153:13;;74115:51:::4;:::i;:::-;::::0;;;-1:-1:-1;74173:38:0::4;::::0;-1:-1:-1;17688:10:0;74197:13:::4;74173:9;:38::i;:::-;69384:20:::3;68778:1:::0;69904:7;:22;69721:213;42916:287;17688:10;-1:-1:-1;;;;;43015:24:0;;;43011:54;;43048:17;;-1:-1:-1;;;43048:17:0;;;;;;;;;;;43011:54;17688:10;43078:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;43078:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;43078:53:0;;;;;;;;;;43147:48;;540:41:1;;;43078:42:0;;17688:10;43147:48;;513:18:1;43147:48:0;;;;;;;42916:287;;:::o;44002:369::-;44169:28;44179:4;44185:2;44189:7;44169:9;:28::i;:::-;-1:-1:-1;;;;;44212:13:0;;9086:19;:23;;44212:76;;;;;44232:56;44263:4;44269:2;44273:7;44282:5;44232:30;:56::i;:::-;44231:57;44212:76;44208:156;;;44312:40;;-1:-1:-1;;;44312:40:0;;;;;;;;;;;44208:156;44002:369;;;;:::o;76929:502::-;77003:13;77033:17;77041:8;77033:7;:17::i;:::-;77025:77;;;;-1:-1:-1;;;77025:77:0;;14771:2:1;77025:77:0;;;14753:21:1;14810:2;14790:18;;;14783:30;14849:34;14829:18;;;14822:62;-1:-1:-1;;;14900:18:1;;;14893:45;14955:19;;77025:77:0;14569:411:1;77025:77:0;77115:8;;;;;;;:17;;77127:5;77115:17;77111:121;;77174:16;77192:19;:8;:17;:19::i;:::-;77213:9;77157:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77143:81;;76929:502;;;:::o;77111:121::-;77240:28;77271:10;:8;:10::i;:::-;77240:41;;77326:1;77301:14;77295:28;:32;:130;;;;;;;;;;;;;;;;;77363:14;77379:19;:8;:17;:19::i;:::-;77400:9;77346:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;77295:130;77288:137;76929:502;-1:-1:-1;;;76929:502:0:o;74223:1152::-;74298:13;72733:1;72717:13;:17;:58;;;;;72755:20;;72738:13;:37;;72717:58;72709:93;;;;-1:-1:-1;;;72709:93:0;;;;;;;:::i;:::-;72850:9;;72833:13;72817;37527:12;;37317:7;37511:13;:28;;37273:303;72817:13;:29;;;;:::i;:::-;:42;;72809:75;;;;-1:-1:-1;;;72809:75:0;;;;;;;:::i;:::-;72953:25;;72922:10;72899:34;;;;:22;:34;;;;;;:50;;72936:13;;72899:50;:::i;:::-;:79;;72891:134;;;;-1:-1:-1;;;72891:134:0;;;;;;;:::i;:::-;69340:21:::1;:19;:21::i;:::-;74342:11:::2;::::0;::::2;::::0;::::2;;;74341:12;74333:56;;;::::0;-1:-1:-1;;;74333:56:0;;16930:2:1;74333:56:0::2;::::0;::::2;16912:21:1::0;16969:2;16949:18;;;16942:30;17008:33;16988:18;;;16981:61;17059:18;;74333:56:0::2;16728:355:1::0;74333:56:0::2;74592:10;74396:24;74565:38:::0;;;:26:::2;:38;::::0;;;;;74533:29:::2;::::0;74396:24;;;;74533:70:::2;::::0;74565:38;74533:70:::2;:::i;:::-;74505:98;;74655:9;74668:1;74655:14:::0;74652:51:::2;;74690:13;74671:32;;74652:51;74713:9;:13:::0;74710:158:::2;;74776:17;::::0;74764:29:::2;::::0;:9:::2;:29;:::i;:::-;74739:54:::0;-1:-1:-1;74823:37:0::2;74739:54:::0;74823:13;:37:::2;:::i;:::-;74804:56;;74710:158;74904:24;;74884:16;:44;;74876:122;;;::::0;-1:-1:-1;;;74876:122:0;;17774:2:1;74876:122:0::2;::::0;::::2;17756:21:1::0;17813:2;17793:18;;;17786:30;17852:34;17832:18;;;17825:62;17923:34;17903:18;;;17896:62;-1:-1:-1;;;17974:19:1;;;17967:32;18016:19;;74876:122:0::2;17572:469:1::0;74876:122:0::2;75033:25;75013:16;:45;;75005:101;;;::::0;-1:-1:-1;;;75005:101:0;;18248:2:1;75005:101:0::2;::::0;::::2;18230:21:1::0;18287:2;18267:18;;;18260:30;18326:34;18306:18;;;18299:62;-1:-1:-1;;;18377:18:1;;;18370:41;18428:19;;75005:101:0::2;18046:407:1::0;75005:101:0::2;75154:21;75134:17;;:41;;;;:::i;:::-;75121:9;:54;;75113:86;;;;-1:-1:-1::0;;;75113:86:0::2;;;;;;;:::i;:::-;75231:10;75208:34;::::0;;;:22:::2;:34;::::0;;;;:51;;75246:13;;75208:34;:51:::2;::::0;75246:13;;75208:51:::2;:::i;:::-;::::0;;;-1:-1:-1;;75293:10:0::2;75266:38;::::0;;;:26:::2;:38;::::0;;;;:58;;75308:16;;75266:38;:58:::2;::::0;75308:16;;75266:58:::2;:::i;:::-;::::0;;;-1:-1:-1;75331:38:0::2;::::0;-1:-1:-1;17688:10:0;75341:12:::2;75355:13;75331:9;:38::i;:::-;74326:1049;;;69384:20:::1;68778:1:::0;69904:7;:22;69721:213;78003:269;56844:13;:11;:13::i;:::-;78143:29:::1;:62:::0;;;;78212:25:::1;:54:::0;78003:269::o;75381:558::-;75495:13;72733:1;72717:13;:17;:58;;;;;72755:20;;72738:13;:37;;72717:58;72709:93;;;;-1:-1:-1;;;72709:93:0;;;;;;;:::i;:::-;72850:9;;72833:13;72817;37527:12;;37317:7;37511:13;:28;;37273:303;72817:13;:29;;;;:::i;:::-;:42;;72809:75;;;;-1:-1:-1;;;72809:75:0;;;;;;;:::i;:::-;72953:25;;72922:10;72899:34;;;;:22;:34;;;;;;:50;;72936:13;;72899:50;:::i;:::-;:79;;72891:134;;;;-1:-1:-1;;;72891:134:0;;;;;;;:::i;:::-;69340:21:::1;:19;:21::i;:::-;75539:15:::2;::::0;;;::::2;;;75538:16;75530:60;;;::::0;-1:-1:-1;;;75530:60:0;;18660:2:1;75530:60:0::2;::::0;::::2;18642:21:1::0;18699:2;18679:18;;;18672:30;18738:33;18718:18;;;18711:61;18789:18;;75530:60:0::2;18458:355:1::0;75530:60:0::2;75634:13;75618;;:29;;;;:::i;:::-;75605:9;:42;;75597:74;;;;-1:-1:-1::0;;;75597:74:0::2;;;;;;;:::i;:::-;75707:30;::::0;-1:-1:-1;;17688:10:0;18967:2:1;18963:15;18959:53;75707:30:0::2;::::0;::::2;18947:66:1::0;75680:14:0::2;::::0;19029:12:1;;75707:30:0::2;;;;;;;;;;;;75697:41;;;;;;75680:58;;75753:56;75772:14;;75753:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;75788:12:0::2;::::0;;-1:-1:-1;75802:6:0;;-1:-1:-1;75753:18:0::2;:56::i;:::-;75745:83;;;::::0;-1:-1:-1;;;75745:83:0;;19254:2:1;75745:83:0::2;::::0;::::2;19236:21:1::0;19293:2;19273:18;;;19266:30;-1:-1:-1;;;19312:18:1;;;19305:44;19366:18;;75745:83:0::2;19052:338:1::0;75745:83:0::2;75860:10;75837:34;::::0;;;:22:::2;:34;::::0;;;;:51;;75875:13;;75837:34;:51:::2;::::0;75875:13;;75837:51:::2;:::i;:::-;::::0;;;-1:-1:-1;75895:38:0::2;::::0;-1:-1:-1;17688:10:0;75905:12:::2;17608:98:::0;75895:38:::2;75523:416;69384:20:::1;68778:1:::0;69904:7;:22;69721:213;77437:81;56844:13;:11;:13::i;:::-;77495:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;77495:17:0;;::::1;::::0;;;::::1;::::0;;77437:81::o;71134:30::-;;;;;;;:::i;75945:188::-;56844:13;:11;:13::i;:::-;-1:-1:-1;;;;;76035:33:0;::::1;;::::0;;;:22:::1;:33;::::0;;;;:50;;76072:13;;76035:33;:50:::1;::::0;76072:13;;76035:50:::1;:::i;:::-;::::0;;;-1:-1:-1;76092:35:0::1;::::0;-1:-1:-1;76102:9:0;76113:13;76092:9:::1;:35::i;57864:201::-:0;56844:13;:11;:13::i;:::-;-1:-1:-1;;;;;57953:22:0;::::1;57945:73;;;::::0;-1:-1:-1;;;57945:73:0;;19597:2:1;57945:73:0::1;::::0;::::1;19579:21:1::0;19636:2;19616:18;;;19609:30;19675:34;19655:18;;;19648:62;-1:-1:-1;;;19726:18:1;;;19719:36;19772:19;;57945:73:0::1;19395:402:1::0;57945:73:0::1;58029:28;58048:8;58029:18;:28::i;:::-;57864:201:::0;:::o;78278:128::-;56844:13;:11;:13::i;:::-;78364:16:::1;:36;78383:17:::0;78364:16;:36:::1;:::i;76139:784::-:0;76201:16;76226:23;76252:17;76262:6;76252:9;:17::i;:::-;76226:43;;76276:30;76323:15;-1:-1:-1;;;;;76309:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;76309:30:0;;76276:63;;76346:22;76379:23;76413:26;76448:441;76473:15;76455;:33;:64;;;;;76510:9;;76492:14;:27;;76455:64;76448:441;;;76530:31;76564:27;;;:11;:27;;;;;;;;;76530:61;;;;;;;;;-1:-1:-1;;;;;76530:61:0;;;;-1:-1:-1;;;76530:61:0;;-1:-1:-1;;;;;76530:61:0;;;;;;;;-1:-1:-1;;;76530:61:0;;;;;;;;;;;;;;;;76606:49;;-1:-1:-1;76627:14:0;;-1:-1:-1;;;;;76627:28:0;;;76606:49;76602:111;;;76689:14;;;-1:-1:-1;76602:111:0;76749:6;-1:-1:-1;;;;;76727:28:0;:18;-1:-1:-1;;;;;76727:28:0;;76723:132;;76801:14;76768:13;76782:15;76768:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;76828:17;;;;:::i;:::-;;;;76723:132;76865:16;;;;:::i;:::-;;;;76521:368;76448:441;;;-1:-1:-1;76904:13:0;;76139:784;-1:-1:-1;;;;;76139:784:0:o;44626:187::-;44683:4;44747:13;;44737:7;:23;44707:98;;;;-1:-1:-1;;44778:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;44778:27:0;;;;44777:28;;44626:187::o;52796:196::-;52911:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;52911:29:0;-1:-1:-1;;;;;52911:29:0;;;;;;;;;52956:28;;52911:24;;52956:28;;;;;;;52796:196;;;:::o;57123:132::-;57031:6;;-1:-1:-1;;;;;57031:6:0;17688:10;57187:23;57179:68;;;;-1:-1:-1;;;57179:68:0;;20276:2:1;57179:68:0;;;20258:21:1;;;20295:18;;;20288:30;20354:34;20334:18;;;20327:62;20406:18;;57179:68:0;20074:356:1;47739:2130:0;47854:35;47892:21;47905:7;47892:12;:21::i;:::-;47854:59;;47952:4;-1:-1:-1;;;;;47930:26:0;:13;:18;;;-1:-1:-1;;;;;47930:26:0;;47926:67;;47965:28;;-1:-1:-1;;;47965:28:0;;;;;;;;;;;47926:67;48006:22;17688:10;-1:-1:-1;;;;;48032:20:0;;;;:73;;-1:-1:-1;48069:36:0;48086:4;17688:10;43274:164;:::i;48069:36::-;48032:126;;;-1:-1:-1;17688:10:0;48122:20;48134:7;48122:11;:20::i;:::-;-1:-1:-1;;;;;48122:36:0;;48032:126;48006:153;;48177:17;48172:66;;48203:35;;-1:-1:-1;;;48203:35:0;;;;;;;;;;;48172:66;-1:-1:-1;;;;;48253:16:0;;48249:52;;48278:23;;-1:-1:-1;;;48278:23:0;;;;;;;;;;;48249:52;48422:35;48439:1;48443:7;48452:4;48422:8;:35::i;:::-;-1:-1:-1;;;;;48753:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;48753:31:0;;;-1:-1:-1;;;;;48753:31:0;;;-1:-1:-1;;48753:31:0;;;;;;;48799:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;48799:29:0;;;;;;;;;;;48879:20;;;:11;:20;;;;;;48914:18;;-1:-1:-1;;;;;;48947:49:0;;;;-1:-1:-1;;;48980:15:0;48947:49;;;;;;;;;;49270:11;;49330:24;;;;;49373:13;;48879:20;;49330:24;;49373:13;49369:384;;49583:13;;49568:11;:28;49564:174;;49621:20;;49690:28;;;;-1:-1:-1;;;;;49664:54:0;-1:-1:-1;;;49664:54:0;-1:-1:-1;;;;;;49664:54:0;;;-1:-1:-1;;;;;49621:20:0;;49664:54;;;;49564:174;48728:1036;;;49800:7;49796:2;-1:-1:-1;;;;;49781:27:0;49790:4;-1:-1:-1;;;;;49781:27:0;;;;;;;;;;;49819:42;47843:2026;;47739:2130;;;:::o;69420:293::-;68822:1;69554:7;;:19;69546:63;;;;-1:-1:-1;;;69546:63:0;;20637:2:1;69546:63:0;;;20619:21:1;20676:2;20656:18;;;20649:30;20715:33;20695:18;;;20688:61;20766:18;;69546:63:0;20435:355:1;69546:63:0;68822:1;69687:7;:18;69420:293::o;39774:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;39885:7:0;39968:13;;39961:4;:20;39930:886;;;40002:31;40036:17;;;:11;:17;;;;;;;;;40002:51;;;;;;;;;-1:-1:-1;;;;;40002:51:0;;;;-1:-1:-1;;;40002:51:0;;-1:-1:-1;;;;;40002:51:0;;;;;;;;-1:-1:-1;;;40002:51:0;;;;;;;;;;;;;;40072:729;;40122:14;;-1:-1:-1;;;;;40122:28:0;;40118:101;;40186:9;39774:1109;-1:-1:-1;;;39774:1109:0:o;40118:101::-;-1:-1:-1;;;40561:6:0;40606:17;;;;:11;:17;;;;;;;;;40594:29;;;;;;;;;-1:-1:-1;;;;;40594:29:0;;;;;-1:-1:-1;;;40594:29:0;;-1:-1:-1;;;;;40594:29:0;;;;;;;;-1:-1:-1;;;40594:29:0;;;;;;;;;;;;;40654:28;40650:109;;40722:9;39774:1109;-1:-1:-1;;;39774:1109:0:o;40650:109::-;40521:261;;;39983:833;39930:886;40844:31;;-1:-1:-1;;;40844:31:0;;;;;;;;;;;58225:191;58318:6;;;-1:-1:-1;;;;;58335:17:0;;;-1:-1:-1;;;;;;58335:17:0;;;;;;;58368:40;;58318:6;;;58335:17;58318:6;;58368:40;;58299:16;;58368:40;58288:128;58225:191;:::o;44821:104::-;44890:27;44900:2;44904:8;44890:27;;;;;;;;;;;;:9;:27::i;53484:667::-;53668:72;;-1:-1:-1;;;53668:72:0;;53647:4;;-1:-1:-1;;;;;53668:36:0;;;;;:72;;17688:10;;53719:4;;53725:7;;53734:5;;53668:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53668:72:0;;;;;;;;-1:-1:-1;;53668:72:0;;;;;;;;;;;;:::i;:::-;;;53664:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53902:6;:13;53919:1;53902:18;53898:235;;53948:40;;-1:-1:-1;;;53948:40:0;;;;;;;;;;;53898:235;54091:6;54085:13;54076:6;54072:2;54068:15;54061:38;53664:480;-1:-1:-1;;;;;;53787:55:0;-1:-1:-1;;;53787:55:0;;-1:-1:-1;53664:480:0;53484:667;;;;;;:::o;31013:716::-;31069:13;31120:14;31137:17;31148:5;31137:10;:17::i;:::-;31157:1;31137:21;31120:38;;31173:20;31207:6;-1:-1:-1;;;;;31196:18:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31196:18:0;-1:-1:-1;31173:41:0;-1:-1:-1;31338:28:0;;;31354:2;31338:28;31395:288;-1:-1:-1;;31427:5:0;-1:-1:-1;;;31564:2:0;31553:14;;31548:30;31427:5;31535:44;31625:2;31616:11;;;-1:-1:-1;31646:21:0;31395:288;31646:21;-1:-1:-1;31704:6:0;31013:716;-1:-1:-1;;;31013:716:0:o;79179:102::-;79239:13;79268:7;79261:14;;;;;:::i;59569:190::-;59694:4;59747;59718:25;59731:5;59738:4;59718:12;:25::i;:::-;:33;;59569:190;-1:-1:-1;;;;59569:190:0:o;45288:163::-;45411:32;45417:2;45421:8;45431:5;45438:4;45411:5;:32::i;28035:922::-;28088:7;;-1:-1:-1;;;28166:15:0;;28162:102;;-1:-1:-1;;;28202:15:0;;;-1:-1:-1;28246:2:0;28236:12;28162:102;28291:6;28282:5;:15;28278:102;;28327:6;28318:15;;;-1:-1:-1;28362:2:0;28352:12;28278:102;28407:6;28398:5;:15;28394:102;;28443:6;28434:15;;;-1:-1:-1;28478:2:0;28468:12;28394:102;28523:5;28514;:14;28510:99;;28558:5;28549:14;;;-1:-1:-1;28592:1:0;28582:11;28510:99;28636:5;28627;:14;28623:99;;28671:5;28662:14;;;-1:-1:-1;28705:1:0;28695:11;28623:99;28749:5;28740;:14;28736:99;;28784:5;28775:14;;;-1:-1:-1;28818:1:0;28808:11;28736:99;28862:5;28853;:14;28849:66;;28898:1;28888:11;28943:6;28035:922;-1:-1:-1;;28035:922:0:o;60436:296::-;60519:7;60562:4;60519:7;60577:118;60601:5;:12;60597:1;:16;60577:118;;;60650:33;60660:12;60674:5;60680:1;60674:8;;;;;;;;:::i;:::-;;;;;;;60650:9;:33::i;:::-;60635:48;-1:-1:-1;60615:3:0;;;;:::i;:::-;;;;60577:118;;;-1:-1:-1;60712:12:0;60436:296;-1:-1:-1;;;60436:296:0:o;45710:1775::-;45849:20;45872:13;-1:-1:-1;;;;;45900:16:0;;45896:48;;45925:19;;-1:-1:-1;;;45925:19:0;;;;;;;;;;;45896:48;45959:8;45971:1;45959:13;45955:44;;45981:18;;-1:-1:-1;;;45981:18:0;;;;;;;;;;;45955:44;-1:-1:-1;;;;;46350:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;46409:49:0;;-1:-1:-1;;;;;46350:44:0;;;;;;;46409:49;;;;-1:-1:-1;;46350:44:0;;;;;;46409:49;;;;;;;;;;;;;;;;46475:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;46525:66:0;;;;-1:-1:-1;;;46575:15:0;46525:66;;;;;;;;;;46475:25;46672:23;;;46716:4;:23;;;;-1:-1:-1;;;;;;46724:13:0;;9086:19;:23;;46724:15;46712:641;;;46760:314;46791:38;;46816:12;;-1:-1:-1;;;;;46791:38:0;;;46808:1;;46791:38;;46808:1;;46791:38;46857:69;46896:1;46900:2;46904:14;;;;;;46920:5;46857:30;:69::i;:::-;46852:174;;46962:40;;-1:-1:-1;;;46962:40:0;;;;;;;;;;;46852:174;47069:3;47053:12;:19;46760:314;;47155:12;47138:13;;:29;47134:43;;47169:8;;;47134:43;46712:641;;;47218:120;47249:40;;47274:14;;;;;-1:-1:-1;;;;;47249:40:0;;;47266:1;;47249:40;;47266:1;;47249:40;47333:3;47317:12;:19;47218:120;;46712:641;-1:-1:-1;47367:13:0;:28;47417:60;44002:369;66643:149;66706:7;66737:1;66733;:5;:51;;66868:13;66962:15;;;66998:4;66991:15;;;67045:4;67029:21;;66733:51;;;-1:-1:-1;66868:13:0;66962:15;;;66998:4;66991:15;67045:4;67029:21;;;66643:149::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:127::-;2234:10;2229:3;2225:20;2222:1;2215:31;2265:4;2262:1;2255:15;2289:4;2286:1;2279:15;2305:632;2370:5;-1:-1:-1;;;;;2441:2:1;2433:6;2430:14;2427:40;;;2447:18;;:::i;:::-;2522:2;2516:9;2490:2;2576:15;;-1:-1:-1;;2572:24:1;;;2598:2;2568:33;2564:42;2552:55;;;2622:18;;;2642:22;;;2619:46;2616:72;;;2668:18;;:::i;:::-;2708:10;2704:2;2697:22;2737:6;2728:15;;2767:6;2759;2752:22;2807:3;2798:6;2793:3;2789:16;2786:25;2783:45;;;2824:1;2821;2814:12;2783:45;2874:6;2869:3;2862:4;2854:6;2850:17;2837:44;2929:1;2922:4;2913:6;2905;2901:19;2897:30;2890:41;;;;2305:632;;;;;:::o;2942:451::-;3011:6;3064:2;3052:9;3043:7;3039:23;3035:32;3032:52;;;3080:1;3077;3070:12;3032:52;3120:9;3107:23;-1:-1:-1;;;;;3145:6:1;3142:30;3139:50;;;3185:1;3182;3175:12;3139:50;3208:22;;3261:4;3253:13;;3249:27;-1:-1:-1;3239:55:1;;3290:1;3287;3280:12;3239:55;3313:74;3379:7;3374:2;3361:16;3356:2;3352;3348:11;3313:74;:::i;3580:328::-;3657:6;3665;3673;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3765:29;3784:9;3765:29;:::i;:::-;3755:39;;3813:38;3847:2;3836:9;3832:18;3813:38;:::i;:::-;3803:48;;3898:2;3887:9;3883:18;3870:32;3860:42;;3580:328;;;;;:::o;3913:160::-;3978:20;;4034:13;;4027:21;4017:32;;4007:60;;4063:1;4060;4053:12;4078:316;4146:6;4154;4162;4215:2;4203:9;4194:7;4190:23;4186:32;4183:52;;;4231:1;4228;4221:12;4183:52;4254:26;4270:9;4254:26;:::i;:::-;4244:36;;4299:35;4330:2;4319:9;4315:18;4299:35;:::i;:::-;4289:45;;4353:35;4384:2;4373:9;4369:18;4353:35;:::i;:::-;4343:45;;4078:316;;;;;:::o;4399:661::-;4521:6;4529;4537;4545;4553;4561;4569;4577;4630:3;4618:9;4609:7;4605:23;4601:33;4598:53;;;4647:1;4644;4637:12;4598:53;-1:-1:-1;;4670:23:1;;;4740:2;4725:18;;4712:32;;-1:-1:-1;4791:2:1;4776:18;;4763:32;;4842:2;4827:18;;4814:32;;-1:-1:-1;4893:3:1;4878:19;;4865:33;;-1:-1:-1;4945:3:1;4930:19;;4917:33;;-1:-1:-1;4997:3:1;4982:19;;4969:33;;-1:-1:-1;5049:3:1;5034:19;5021:33;;-1:-1:-1;4399:661:1;-1:-1:-1;4399:661:1:o;5065:186::-;5124:6;5177:2;5165:9;5156:7;5152:23;5148:32;5145:52;;;5193:1;5190;5183:12;5145:52;5216:29;5235:9;5216:29;:::i;5256:248::-;5324:6;5332;5385:2;5373:9;5364:7;5360:23;5356:32;5353:52;;;5401:1;5398;5391:12;5353:52;-1:-1:-1;;5424:23:1;;;5494:2;5479:18;;;5466:32;;-1:-1:-1;5256:248:1:o;5694:316::-;5771:6;5779;5787;5840:2;5828:9;5819:7;5815:23;5811:32;5808:52;;;5856:1;5853;5846:12;5808:52;-1:-1:-1;;5879:23:1;;;5949:2;5934:18;;5921:32;;-1:-1:-1;6000:2:1;5985:18;;;5972:32;;5694:316;-1:-1:-1;5694:316:1:o;6015:254::-;6080:6;6088;6141:2;6129:9;6120:7;6116:23;6112:32;6109:52;;;6157:1;6154;6147:12;6109:52;6180:29;6199:9;6180:29;:::i;:::-;6170:39;;6228:35;6259:2;6248:9;6244:18;6228:35;:::i;:::-;6218:45;;6015:254;;;;;:::o;6274:667::-;6369:6;6377;6385;6393;6446:3;6434:9;6425:7;6421:23;6417:33;6414:53;;;6463:1;6460;6453:12;6414:53;6486:29;6505:9;6486:29;:::i;:::-;6476:39;;6534:38;6568:2;6557:9;6553:18;6534:38;:::i;:::-;6524:48;;6619:2;6608:9;6604:18;6591:32;6581:42;;6674:2;6663:9;6659:18;6646:32;-1:-1:-1;;;;;6693:6:1;6690:30;6687:50;;;6733:1;6730;6723:12;6687:50;6756:22;;6809:4;6801:13;;6797:27;-1:-1:-1;6787:55:1;;6838:1;6835;6828:12;6787:55;6861:74;6927:7;6922:2;6909:16;6904:2;6900;6896:11;6861:74;:::i;:::-;6851:84;;;6274:667;;;;;;;:::o;6946:683::-;7041:6;7049;7057;7110:2;7098:9;7089:7;7085:23;7081:32;7078:52;;;7126:1;7123;7116:12;7078:52;7162:9;7149:23;7139:33;;7223:2;7212:9;7208:18;7195:32;-1:-1:-1;;;;;7287:2:1;7279:6;7276:14;7273:34;;;7303:1;7300;7293:12;7273:34;7341:6;7330:9;7326:22;7316:32;;7386:7;7379:4;7375:2;7371:13;7367:27;7357:55;;7408:1;7405;7398:12;7357:55;7448:2;7435:16;7474:2;7466:6;7463:14;7460:34;;;7490:1;7487;7480:12;7460:34;7543:7;7538:2;7528:6;7525:1;7521:14;7517:2;7513:23;7509:32;7506:45;7503:65;;;7564:1;7561;7554:12;7503:65;7595:2;7591;7587:11;7577:21;;7617:6;7607:16;;;;;6946:683;;;;;:::o;7816:180::-;7872:6;7925:2;7913:9;7904:7;7900:23;7896:32;7893:52;;;7941:1;7938;7931:12;7893:52;7964:26;7980:9;7964:26;:::i;8001:260::-;8069:6;8077;8130:2;8118:9;8109:7;8105:23;8101:32;8098:52;;;8146:1;8143;8136:12;8098:52;8169:29;8188:9;8169:29;:::i;:::-;8159:39;;8217:38;8251:2;8240:9;8236:18;8217:38;:::i;8266:254::-;8334:6;8342;8395:2;8383:9;8374:7;8370:23;8366:32;8363:52;;;8411:1;8408;8401:12;8363:52;8447:9;8434:23;8424:33;;8476:38;8510:2;8499:9;8495:18;8476:38;:::i;8525:632::-;8696:2;8748:21;;;8818:13;;8721:18;;;8840:22;;;8667:4;;8696:2;8919:15;;;;8893:2;8878:18;;;8667:4;8962:169;8976:6;8973:1;8970:13;8962:169;;;9037:13;;9025:26;;9106:15;;;;9071:12;;;;8998:1;8991:9;8962:169;;;-1:-1:-1;9148:3:1;;8525:632;-1:-1:-1;;;;;;8525:632:1:o;9162:380::-;9241:1;9237:12;;;;9284;;;9305:61;;9359:4;9351:6;9347:17;9337:27;;9305:61;9412:2;9404:6;9401:14;9381:18;9378:38;9375:161;;9458:10;9453:3;9449:20;9446:1;9439:31;9493:4;9490:1;9483:15;9521:4;9518:1;9511:15;9375:161;;9162:380;;;:::o;9673:545::-;9775:2;9770:3;9767:11;9764:448;;;9811:1;9836:5;9832:2;9825:17;9881:4;9877:2;9867:19;9951:2;9939:10;9935:19;9932:1;9928:27;9922:4;9918:38;9987:4;9975:10;9972:20;9969:47;;;-1:-1:-1;10010:4:1;9969:47;10065:2;10060:3;10056:12;10053:1;10049:20;10043:4;10039:31;10029:41;;10120:82;10138:2;10131:5;10128:13;10120:82;;;10183:17;;;10164:1;10153:13;10120:82;;;10124:3;;;9673:545;;;:::o;10394:1352::-;10520:3;10514:10;-1:-1:-1;;;;;10539:6:1;10536:30;10533:56;;;10569:18;;:::i;:::-;10598:97;10688:6;10648:38;10680:4;10674:11;10648:38;:::i;:::-;10642:4;10598:97;:::i;:::-;10750:4;;10814:2;10803:14;;10831:1;10826:663;;;;11533:1;11550:6;11547:89;;;-1:-1:-1;11602:19:1;;;11596:26;11547:89;-1:-1:-1;;10351:1:1;10347:11;;;10343:24;10339:29;10329:40;10375:1;10371:11;;;10326:57;11649:81;;10796:944;;10826:663;9620:1;9613:14;;;9657:4;9644:18;;-1:-1:-1;;10862:20:1;;;10980:236;10994:7;10991:1;10988:14;10980:236;;;11083:19;;;11077:26;11062:42;;11175:27;;;;11143:1;11131:14;;;;11010:19;;10980:236;;;10984:3;11244:6;11235:7;11232:19;11229:201;;;11305:19;;;11299:26;-1:-1:-1;;11388:1:1;11384:14;;;11400:3;11380:24;11376:37;11372:42;11357:58;11342:74;;11229:201;-1:-1:-1;;;;;11476:1:1;11460:14;;;11456:22;11443:36;;-1:-1:-1;10394:1352:1:o;12313:346::-;12515:2;12497:21;;;12554:2;12534:18;;;12527:30;-1:-1:-1;;;12588:2:1;12573:18;;12566:52;12650:2;12635:18;;12313:346::o;12664:127::-;12725:10;12720:3;12716:20;12713:1;12706:31;12756:4;12753:1;12746:15;12780:4;12777:1;12770:15;12796:128;12836:3;12867:1;12863:6;12860:1;12857:13;12854:39;;;12873:18;;:::i;:::-;-1:-1:-1;12909:9:1;;12796:128::o;12929:344::-;13131:2;13113:21;;;13170:2;13150:18;;;13143:30;-1:-1:-1;;;13204:2:1;13189:18;;13182:50;13264:2;13249:18;;12929:344::o;13278:406::-;13480:2;13462:21;;;13519:2;13499:18;;;13492:30;13558:34;13553:2;13538:18;;13531:62;-1:-1:-1;;;13624:2:1;13609:18;;13602:40;13674:3;13659:19;;13278:406::o;13689:354::-;13891:2;13873:21;;;13930:2;13910:18;;;13903:30;13969:32;13964:2;13949:18;;13942:60;14034:2;14019:18;;13689:354::o;14048:168::-;14088:7;14154:1;14150;14146:6;14142:14;14139:1;14136:21;14131:1;14124:9;14117:17;14113:45;14110:71;;;14161:18;;:::i;:::-;-1:-1:-1;14201:9:1;;14048:168::o;14221:343::-;14423:2;14405:21;;;14462:2;14442:18;;;14435:30;-1:-1:-1;;;14496:2:1;14481:18;;14474:49;14555:2;14540:18;;14221:343::o;14985:722::-;15035:3;15076:5;15070:12;15105:36;15131:9;15105:36;:::i;:::-;15160:1;15177:18;;;15204:133;;;;15351:1;15346:355;;;;15170:531;;15204:133;-1:-1:-1;;15237:24:1;;15225:37;;15310:14;;15303:22;15291:35;;15282:45;;;-1:-1:-1;15204:133:1;;15346:355;15377:5;15374:1;15367:16;15406:4;15451:2;15448:1;15438:16;15476:1;15490:165;15504:6;15501:1;15498:13;15490:165;;;15582:14;;15569:11;;;15562:35;15625:16;;;;15519:10;;15490:165;;;15494:3;;;15684:6;15679:3;15675:16;15668:23;;15170:531;;;;;14985:722;;;;:::o;15712:456::-;15933:3;15961:38;15995:3;15987:6;15961:38;:::i;:::-;16028:6;16022:13;16044:52;16089:6;16085:2;16078:4;16070:6;16066:17;16044:52;:::i;:::-;16112:50;16154:6;16150:2;16146:15;16138:6;16112:50;:::i;:::-;16105:57;15712:456;-1:-1:-1;;;;;;;15712:456:1:o;16173:550::-;16397:3;16435:6;16429:13;16451:53;16497:6;16492:3;16485:4;16477:6;16473:17;16451:53;:::i;:::-;16567:13;;16526:16;;;;16589:57;16567:13;16526:16;16623:4;16611:17;;16589:57;:::i;17088:125::-;17128:4;17156:1;17153;17150:8;17147:34;;;17161:18;;:::i;:::-;-1:-1:-1;17198:9:1;;17088:125::o;17350:217::-;17390:1;17416;17406:132;;17460:10;17455:3;17451:20;17448:1;17441:31;17495:4;17492:1;17485:15;17523:4;17520:1;17513:15;17406:132;-1:-1:-1;17552:9:1;;17350:217::o;19802:127::-;19863:10;19858:3;19854:20;19851:1;19844:31;19894:4;19891:1;19884:15;19918:4;19915:1;19908:15;19934:135;19973:3;19994:17;;;19991:43;;20014:18;;:::i;:::-;-1:-1:-1;20061:1:1;20050:13;;19934:135::o;20795:489::-;-1:-1:-1;;;;;21064:15:1;;;21046:34;;21116:15;;21111:2;21096:18;;21089:43;21163:2;21148:18;;21141:34;;;21211:3;21206:2;21191:18;;21184:31;;;20989:4;;21232:46;;21258:19;;21250:6;21232:46;:::i;:::-;21224:54;20795:489;-1:-1:-1;;;;;;20795:489:1:o;21289:249::-;21358:6;21411:2;21399:9;21390:7;21386:23;21382:32;21379:52;;;21427:1;21424;21417:12;21379:52;21459:9;21453:16;21478:30;21502:5;21478:30;:::i

Swarm Source

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