ETH Price: $3,009.50 (+4.46%)
Gas: 2 Gwei

Token

MellowCat (MellowCat)
 

Overview

Max Total Supply

9,110 MellowCat

Holders

384

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
20 MellowCat
0x0264A803979bd0b485A6701F1AB17aAb3Bcd8Ff7
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MellowCats

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-23
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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


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

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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


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


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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


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


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

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;

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

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

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


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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


// File contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;
/**
 * @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 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }
    uint256 private constant START_TOKEN_ID = 10000;

    uint256 internal currentIndex;

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

    function totalSupply() public view returns (uint256) {
        return currentIndex;
    }

    /**
     * @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) {
        require(owner != address(0), 'ERC721A: balance query for the zero address');
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * 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) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= START_TOKEN_ID; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

        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);
        require(to != owner, 'ERC721A: approval to current owner');

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            'ERC721A: approve caller is not owner nor approved for all'
        );

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        require(_exists(tokenId), 'ERC721A: approved query for nonexistent token');

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), 'ERC721A: approve to caller');

        _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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

    /**
     * @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 tokenId - START_TOKEN_ID < currentIndex;
    }

    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 + START_TOKEN_ID;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex += quantity;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @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 address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            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('ERC721A: transfer to non ERC721Receiver implementer');
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


// File contracts/MellowCats.sol



pragma solidity ^0.8.0;
contract MellowCats is Ownable, ERC721A, ReentrancyGuard {
    using SafeMath for uint256;
   
    bool private _isActive = false;

    uint256 public constant MAX_SUPPLY = 9999;

    uint256 public constant maxCountPerMint = 20;
    
    uint256 public price1 = 0.015 ether;
    uint256 public price2 = 0.02 ether;

    bytes32 public merkleRoot;
    uint256 public freeMintCount = 25;     // Commnunity freee mint count

    string private _tokenBaseURI = "";

    address private constant devAddr = 0x08E7d2BCdEf1FEae4D0293822049470865bF240e;

    address private constant coolCatAddr = 0x1A92f7381B9F03921564a437210bB9396471050C;
    address private constant xApesAddr = 0x22C08C358f62f35B742D023Bf2fAF67e30e5376E;
    address private constant xPunkAddr = 0x0D0167A823C6619D430B1a96aD85B888bcF97C37;
    address private constant xAzukiAddr = 0x2eb6be120eF111553F768FcD509B6368e82D1661;

    modifier onlyActive() {
        require(_isActive && totalSupply() < MAX_SUPPLY, 'not active');
        _;
    }

    constructor(bytes32 _merkleRoot) ERC721A("MellowCat", "MellowCat") {
        merkleRoot = _merkleRoot;
    }

    function mint(uint256 numberOfTokens, bytes32[] calldata merkleProof) external payable onlyActive nonReentrant() {
        require(numberOfTokens > 0, "zero count");
        require(numberOfTokens <= maxCountPerMint, "exceeded max limit per mint");
        require(numberOfTokens <= MAX_SUPPLY.sub(totalSupply()), "not enough nfts");
        
        uint256 costForMinting = costForMint(numberOfTokens, msg.sender, merkleProof);
        require(msg.value >= costForMinting, "insufficient funds!");

        _safeMint(msg.sender, numberOfTokens);
    }

    function mintOwner(uint256 numberOfTokens) external onlyActive onlyOwner {
        require(numberOfTokens > 0, "zero count");
        require(numberOfTokens <= maxCountPerMint, "exceeded max limit per mint");
        require(numberOfTokens <= MAX_SUPPLY.sub(totalSupply()), "not enough nfts");
        require(freeMintCount >= numberOfTokens, "exceeded max free limit");

        freeMintCount -= numberOfTokens;

        _safeMint(msg.sender, numberOfTokens);
    }

    function costForMint(uint256 _numToMint, address account, bytes32[] calldata merkleProof) public view returns(uint256) {
        uint256 price = 0;
        if(IERC721(coolCatAddr).balanceOf(account) > 0) {
            price = price1;
        } else if (IERC721(xApesAddr).balanceOf(account) > 0) {
            price = price1;
        } else if (IERC721(xPunkAddr).balanceOf(account) > 0) {
            price = price1;
        } else if (IERC721(xAzukiAddr).balanceOf(account) > 0) {
            price = price1;
        } else if (isWhiteList(account, merkleProof)) {
            price = price1;
        } else {
            price = price2;
        }

        return price.mul(_numToMint);
    }

    function isWhiteList(address account, bytes32[] calldata merkleProof) public view returns(bool) {
        // Verify the merkle proof.
        bytes32 node = keccak256(abi.encodePacked(account));
        return MerkleProof.verify(merkleProof, merkleRoot, node);
    }


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

    function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    
    /////////////////////////////////////////////////////////////
    //////////////////   Admin Functions ////////////////////////
    /////////////////////////////////////////////////////////////
    function startSale() external onlyOwner {
        _isActive = true;
    }

    function endSale() external onlyOwner {
        _isActive = false;
    }

    function setPriceForWhitelist(uint256 _price) external onlyOwner {
        price1 = _price;
    }

    function setPriceForNonWhitelist(uint256 _price) external onlyOwner {
        price2 = _price;
    }

    function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setTokenBaseURI(string memory URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function withdraw() external onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        uint256 devAmount = balance.div(10);
        Address.sendValue(payable(devAddr), devAmount);
        Address.sendValue(payable(owner()), balance.sub(devAmount));
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numToMint","type":"uint256"},{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"costForMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"isWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCountPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPriceForNonWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPriceForWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6009805460ff1916905566354a6ba7a18000600a5566470de4df820000600b556019600d5560a06040819052600060808190526200004091600e916200015f565b503480156200004e57600080fd5b50604051620029ed380380620029ed833981016040819052620000719162000205565b6040518060400160405280600981526020016813595b1b1bddd0d85d60ba1b8152506040518060400160405280600981526020016813595b1b1bddd0d85d60ba1b815250620000cf620000c96200010b60201b60201c565b6200010f565b8151620000e49060029060208501906200015f565b508051620000fa9060039060208401906200015f565b5050600160085550600c556200025b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200016d906200021e565b90600052602060002090601f016020900481019282620001915760008555620001dc565b82601f10620001ac57805160ff1916838001178555620001dc565b82800160010185558215620001dc579182015b82811115620001dc578251825591602001919060010190620001bf565b50620001ea929150620001ee565b5090565b5b80821115620001ea5760008155600101620001ef565b60006020828403121562000217578081fd5b5051919050565b6002810460018216806200023357607f821691505b602082108114156200025557634e487b7160e01b600052602260045260246000fd5b50919050565b612782806200026b6000396000f3fe6080604052600436106101fd5760003560e01c80636352211e1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461056b578063e55f58bb1461058b578063e90fcb5d146105a1578063e985e9c5146105b6578063f2fde38b146105ff57610204565b8063a22cb46514610503578063b66a0e5d14610523578063b88d4fde14610538578063ba41b0c61461055857610204565b80637cb64759116100dc5780637cb64759146104905780638da5cb5b146104b05780638ef79e91146104ce57806395d89b41146104ee57610204565b80636352211e146104255780636caf25ce1461044557806370a082311461045b578063715018a61461047b57610204565b80632c374e9511610190578063380d831b1161015f578063380d831b1461039b5780633ccfd60b146103b057806342842e0e146103c5578063584ce8ff146103e55780636246de0e1461040557610204565b80632c374e951461032f5780632eb4a7ab1461034f57806332cb6b0c1461036557806333f88d221461037b57610204565b806318160ddd116101cc57806318160ddd146102ba57806323b872dd146102d957806327a3181d146102f957806328b90c0e1461030f57610204565b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b31461029857610204565b3661020457005b600080fd5b34801561021557600080fd5b506102296102243660046123aa565b61061f565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610673565b6040516102359190612561565b34801561026c57600080fd5b5061028061027b366004612392565b610705565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004612369565b610793565b005b3480156102c657600080fd5b506001545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f436600461222a565b6108ab565b34801561030557600080fd5b506102cb600b5481565b34801561031b57600080fd5b506102b861032a366004612392565b6108b6565b34801561033b57600080fd5b5061022961034a3660046122de565b6108e5565b34801561035b57600080fd5b506102cb600c5481565b34801561037157600080fd5b506102cb61270f81565b34801561038757600080fd5b506102b8610396366004612392565b61096b565b3480156103a757600080fd5b506102b8610b44565b3480156103bc57600080fd5b506102b8610b7a565b3480156103d157600080fd5b506102b86103e036600461222a565b610c57565b3480156103f157600080fd5b506102b8610400366004612392565b610c72565b34801561041157600080fd5b506102cb610420366004612440565b610ca1565b34801561043157600080fd5b50610280610440366004612392565b610f4d565b34801561045157600080fd5b506102cb600a5481565b34801561046757600080fd5b506102cb6104763660046121de565b610f5f565b34801561048757600080fd5b506102b8610ff0565b34801561049c57600080fd5b506102b86104ab366004612392565b611026565b3480156104bc57600080fd5b506000546001600160a01b0316610280565b3480156104da57600080fd5b506102b86104e93660046123e2565b611055565b3480156104fa57600080fd5b50610253611096565b34801561050f57600080fd5b506102b861051e36600461232f565b6110a5565b34801561052f57600080fd5b506102b8611177565b34801561054457600080fd5b506102b8610553366004612265565b6111b0565b6102b8610566366004612498565b6111e9565b34801561057757600080fd5b50610253610586366004612392565b6113d8565b34801561059757600080fd5b506102cb600d5481565b3480156105ad57600080fd5b506102cb601481565b3480156105c257600080fd5b506102296105d13660046121f8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060b57600080fd5b506102b861061a3660046121de565b6113e3565b60006001600160e01b031982166380ac58cd60e01b148061065057506001600160e01b03198216635b5e139f60e01b145b8061066b57506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b6060600280546106829061268a565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae9061268a565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b60006107108261147b565b6107775760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079e82610f4d565b9050806001600160a01b0316836001600160a01b0316141561080d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161076e565b336001600160a01b0382161480610829575061082981336105d1565b61089b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161076e565b6108a6838383611494565b505050565b6108a68383836114f0565b6000546001600160a01b031633146108e05760405162461bcd60e51b815260040161076e90612574565b600a55565b6040516bffffffffffffffffffffffff19606085901b166020820152600090819060340160405160208183030381529060405280519060200120905061096284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c5491508490506117f2565b95945050505050565b60095460ff168015610986575061270f61098460015490565b105b6109bf5760405162461bcd60e51b815260206004820152600a6024820152696e6f742061637469766560b01b604482015260640161076e565b6000546001600160a01b031633146109e95760405162461bcd60e51b815260040161076e90612574565b60008111610a265760405162461bcd60e51b815260206004820152600a6024820152691e995c9bc818dbdd5b9d60b21b604482015260640161076e565b6014811115610a775760405162461bcd60e51b815260206004820152601b60248201527f6578636565646564206d6178206c696d697420706572206d696e740000000000604482015260640161076e565b610a8c610a8360015490565b61270f90611808565b811115610acd5760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768206e66747360881b604482015260640161076e565b80600d541015610b1f5760405162461bcd60e51b815260206004820152601760248201527f6578636565646564206d61782066726565206c696d6974000000000000000000604482015260640161076e565b80600d6000828254610b319190612647565b90915550610b419050338261181b565b50565b6000546001600160a01b03163314610b6e5760405162461bcd60e51b815260040161076e90612574565b6009805460ff19169055565b6000546001600160a01b03163314610ba45760405162461bcd60e51b815260040161076e90612574565b60026008541415610bf75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076e565b6002600855476000610c0a82600a611835565b9050610c2a7308e7d2bcdef1feae4d0293822049470865bf240e82611841565b610c4e610c3f6000546001600160a01b031690565b610c498484611808565b611841565b50506001600855565b6108a6838383604051806020016040528060008152506111b0565b6000546001600160a01b03163314610c9c5760405162461bcd60e51b815260040161076e90612574565b600b55565b6040516370a0823160e01b81526001600160a01b038416600482015260009081908190731a92f7381b9f03921564a437210bb9396471050c906370a082319060240160206040518083038186803b158015610cfb57600080fd5b505afa158015610d0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d339190612428565b1115610d425750600a54610f37565b6040516370a0823160e01b81526001600160a01b03861660048201526000907322c08c358f62f35b742d023bf2faf67e30e5376e906370a082319060240160206040518083038186803b158015610d9857600080fd5b505afa158015610dac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd09190612428565b1115610ddf5750600a54610f37565b6040516370a0823160e01b81526001600160a01b0386166004820152600090730d0167a823c6619d430b1a96ad85b888bcf97c37906370a082319060240160206040518083038186803b158015610e3557600080fd5b505afa158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d9190612428565b1115610e7c5750600a54610f37565b6040516370a0823160e01b81526001600160a01b0386166004820152600090732eb6be120ef111553f768fcd509b6368e82d1661906370a082319060240160206040518083038186803b158015610ed257600080fd5b505afa158015610ee6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0a9190612428565b1115610f195750600a54610f37565b610f248585856108e5565b15610f325750600a54610f37565b50600b545b610f41818761195a565b9150505b949350505050565b6000610f5882611966565b5192915050565b60006001600160a01b038216610fcb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161076e565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b0316331461101a5760405162461bcd60e51b815260040161076e90612574565b6110246000611aa7565b565b6000546001600160a01b031633146110505760405162461bcd60e51b815260040161076e90612574565b600c55565b6000546001600160a01b0316331461107f5760405162461bcd60e51b815260040161076e90612574565b805161109290600e90602084019061206f565b5050565b6060600380546106829061268a565b6001600160a01b0382163314156110fe5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161076e565b3360008181526007602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161116b911515815260200190565b60405180910390a35050565b6000546001600160a01b031633146111a15760405162461bcd60e51b815260040161076e90612574565b6009805460ff19166001179055565b6111bb8484846114f0565b6111c784848484611af7565b6111e35760405162461bcd60e51b815260040161076e906125a9565b50505050565b60095460ff168015611204575061270f61120260015490565b105b61123d5760405162461bcd60e51b815260206004820152600a6024820152696e6f742061637469766560b01b604482015260640161076e565b600260085414156112905760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076e565b6002600855826112cf5760405162461bcd60e51b815260206004820152600a6024820152691e995c9bc818dbdd5b9d60b21b604482015260640161076e565b60148311156113205760405162461bcd60e51b815260206004820152601b60248201527f6578636565646564206d6178206c696d697420706572206d696e740000000000604482015260640161076e565b61132c610a8360015490565b83111561136d5760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768206e66747360881b604482015260640161076e565b600061137b84338585610ca1565b9050803410156113c35760405162461bcd60e51b8152602060048201526013602482015272696e73756666696369656e742066756e64732160681b604482015260640161076e565b6113cd338561181b565b505060016008555050565b606061066b82611c01565b6000546001600160a01b0316331461140d5760405162461bcd60e51b815260040161076e90612574565b6001600160a01b0381166114725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076e565b610b4181611aa7565b60015460009061148d61271084612647565b1092915050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114fb82611966565b80519091506000906001600160a01b0316336001600160a01b0316148061153257503361152784610705565b6001600160a01b0316145b806115445750815161154490336105d1565b9050806115ae5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161076e565b846001600160a01b031682600001516001600160a01b0316146116225760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161076e565b6001600160a01b0384166116865760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161076e565b6116966000848460000151611494565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790559086018083529120549091166117a85761174a8161147b565b156117a8578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826117ff8584611ccc565b14949350505050565b60006118148284612647565b9392505050565b611092828260405180602001604052806000815250611d4e565b60006118148284612614565b804710156118915760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161076e565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146118de576040519150601f19603f3d011682016040523d82523d6000602084013e6118e3565b606091505b50509050806108a65760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161076e565b60006118148284612628565b60408051808201909152600080825260208201526119838261147b565b6119e25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161076e565b815b6127108110611a46576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611a3c57915061066e9050565b50600019016119e4565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161076e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611bf957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b3b903390899088908890600401612524565b602060405180830381600087803b158015611b5557600080fd5b505af1925050508015611b85575060408051601f3d908101601f19168201909252611b82918101906123c6565b60015b611bdf573d808015611bb3576040519150601f19603f3d011682016040523d82523d6000602084013e611bb8565b606091505b508051611bd75760405162461bcd60e51b815260040161076e906125a9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f45565b506001610f45565b6060611c0c8261147b565b611c705760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161076e565b6000611c7a611d5b565b9050805160001415611c9b5760405180602001604052806000815250611814565b80611ca584611d6a565b604051602001611cb69291906124f5565b6040516020818303038152906040529392505050565b600081815b8451811015611d46576000858281518110611cfc57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611d225760008381526020829052604090209250611d33565b600081815260208490526040902092505b5080611d3e816126c5565b915050611cd1565b509392505050565b6108a68383836001611e85565b6060600e80546106829061268a565b606081611d8f57506040805180820190915260018152600360fc1b602082015261066e565b8160005b8115611db95780611da3816126c5565b9150611db29050600a83612614565b9150611d93565b60008167ffffffffffffffff811115611de257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e0c576020820181803683370190505b5090505b8415610f4557611e21600183612647565b9150611e2e600a866126e0565b611e399060306125fc565b60f81b818381518110611e5c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e7e600a86612614565b9450611e10565b6000612710600154611e9791906125fc565b90506001600160a01b038516611ef95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161076e565b83611f575760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161076e565b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526004909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b858110156120605760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612054576120386000888488611af7565b6120545760405162461bcd60e51b815260040161076e906125a9565b60019182019101611fe5565b505060018054850190556117eb565b82805461207b9061268a565b90600052602060002090601f01602090048101928261209d57600085556120e3565b82601f106120b657805160ff19168380011785556120e3565b828001600101855582156120e3579182015b828111156120e35782518255916020019190600101906120c8565b506120ef9291506120f3565b5090565b5b808211156120ef57600081556001016120f4565b600067ffffffffffffffff8084111561212357612123612720565b604051601f8501601f19908116603f0116810190828211818310171561214b5761214b612720565b8160405280935085815286868601111561216457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461066e57600080fd5b60008083601f8401126121a6578081fd5b50813567ffffffffffffffff8111156121bd578182fd5b60208301915083602080830285010111156121d757600080fd5b9250929050565b6000602082840312156121ef578081fd5b6118148261217e565b6000806040838503121561220a578081fd5b6122138361217e565b91506122216020840161217e565b90509250929050565b60008060006060848603121561223e578081fd5b6122478461217e565b92506122556020850161217e565b9150604084013590509250925092565b6000806000806080858703121561227a578081fd5b6122838561217e565b93506122916020860161217e565b925060408501359150606085013567ffffffffffffffff8111156122b3578182fd5b8501601f810187136122c3578182fd5b6122d287823560208401612108565b91505092959194509250565b6000806000604084860312156122f2578283fd5b6122fb8461217e565b9250602084013567ffffffffffffffff811115612316578283fd5b61232286828701612195565b9497909650939450505050565b60008060408385031215612341578182fd5b61234a8361217e565b91506020830135801515811461235e578182fd5b809150509250929050565b6000806040838503121561237b578182fd5b6123848361217e565b946020939093013593505050565b6000602082840312156123a3578081fd5b5035919050565b6000602082840312156123bb578081fd5b813561181481612736565b6000602082840312156123d7578081fd5b815161181481612736565b6000602082840312156123f3578081fd5b813567ffffffffffffffff811115612409578182fd5b8201601f81018413612419578182fd5b610f4584823560208401612108565b600060208284031215612439578081fd5b5051919050565b60008060008060608587031215612455578182fd5b843593506124656020860161217e565b9250604085013567ffffffffffffffff811115612480578283fd5b61248c87828801612195565b95989497509550505050565b6000806000604084860312156124ac578081fd5b83359250602084013567ffffffffffffffff811115612316578182fd5b600081518084526124e181602086016020860161265e565b601f01601f19169290920160200192915050565b6000835161250781846020880161265e565b83519083019061251b81836020880161265e565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612557908301846124c9565b9695505050505050565b60006020825261181460208301846124c9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000821982111561260f5761260f6126f4565b500190565b6000826126235761262361270a565b500490565b6000816000190483118215151615612642576126426126f4565b500290565b600082821015612659576126596126f4565b500390565b60005b83811015612679578181015183820152602001612661565b838111156111e35750506000910152565b60028104600182168061269e57607f821691505b602082108114156126bf57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126d9576126d96126f4565b5060010190565b6000826126ef576126ef61270a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4157600080fdfea26469706673582212202b98ecab794c4afc0f72103cb6081f96deb8e1707e3c8fdc7601e1f2a0fe714964736f6c63430008020033c209814ff1acb0cf868e723e897facff0d571254fcb78b6c831bf90652fed73f

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c80636352211e1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461056b578063e55f58bb1461058b578063e90fcb5d146105a1578063e985e9c5146105b6578063f2fde38b146105ff57610204565b8063a22cb46514610503578063b66a0e5d14610523578063b88d4fde14610538578063ba41b0c61461055857610204565b80637cb64759116100dc5780637cb64759146104905780638da5cb5b146104b05780638ef79e91146104ce57806395d89b41146104ee57610204565b80636352211e146104255780636caf25ce1461044557806370a082311461045b578063715018a61461047b57610204565b80632c374e9511610190578063380d831b1161015f578063380d831b1461039b5780633ccfd60b146103b057806342842e0e146103c5578063584ce8ff146103e55780636246de0e1461040557610204565b80632c374e951461032f5780632eb4a7ab1461034f57806332cb6b0c1461036557806333f88d221461037b57610204565b806318160ddd116101cc57806318160ddd146102ba57806323b872dd146102d957806327a3181d146102f957806328b90c0e1461030f57610204565b806301ffc9a71461020957806306fdde031461023e578063081812fc14610260578063095ea7b31461029857610204565b3661020457005b600080fd5b34801561021557600080fd5b506102296102243660046123aa565b61061f565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b50610253610673565b6040516102359190612561565b34801561026c57600080fd5b5061028061027b366004612392565b610705565b6040516001600160a01b039091168152602001610235565b3480156102a457600080fd5b506102b86102b3366004612369565b610793565b005b3480156102c657600080fd5b506001545b604051908152602001610235565b3480156102e557600080fd5b506102b86102f436600461222a565b6108ab565b34801561030557600080fd5b506102cb600b5481565b34801561031b57600080fd5b506102b861032a366004612392565b6108b6565b34801561033b57600080fd5b5061022961034a3660046122de565b6108e5565b34801561035b57600080fd5b506102cb600c5481565b34801561037157600080fd5b506102cb61270f81565b34801561038757600080fd5b506102b8610396366004612392565b61096b565b3480156103a757600080fd5b506102b8610b44565b3480156103bc57600080fd5b506102b8610b7a565b3480156103d157600080fd5b506102b86103e036600461222a565b610c57565b3480156103f157600080fd5b506102b8610400366004612392565b610c72565b34801561041157600080fd5b506102cb610420366004612440565b610ca1565b34801561043157600080fd5b50610280610440366004612392565b610f4d565b34801561045157600080fd5b506102cb600a5481565b34801561046757600080fd5b506102cb6104763660046121de565b610f5f565b34801561048757600080fd5b506102b8610ff0565b34801561049c57600080fd5b506102b86104ab366004612392565b611026565b3480156104bc57600080fd5b506000546001600160a01b0316610280565b3480156104da57600080fd5b506102b86104e93660046123e2565b611055565b3480156104fa57600080fd5b50610253611096565b34801561050f57600080fd5b506102b861051e36600461232f565b6110a5565b34801561052f57600080fd5b506102b8611177565b34801561054457600080fd5b506102b8610553366004612265565b6111b0565b6102b8610566366004612498565b6111e9565b34801561057757600080fd5b50610253610586366004612392565b6113d8565b34801561059757600080fd5b506102cb600d5481565b3480156105ad57600080fd5b506102cb601481565b3480156105c257600080fd5b506102296105d13660046121f8565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060b57600080fd5b506102b861061a3660046121de565b6113e3565b60006001600160e01b031982166380ac58cd60e01b148061065057506001600160e01b03198216635b5e139f60e01b145b8061066b57506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b6060600280546106829061268a565b80601f01602080910402602001604051908101604052809291908181526020018280546106ae9061268a565b80156106fb5780601f106106d0576101008083540402835291602001916106fb565b820191906000526020600020905b8154815290600101906020018083116106de57829003601f168201915b5050505050905090565b60006107108261147b565b6107775760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061079e82610f4d565b9050806001600160a01b0316836001600160a01b0316141561080d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161076e565b336001600160a01b0382161480610829575061082981336105d1565b61089b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161076e565b6108a6838383611494565b505050565b6108a68383836114f0565b6000546001600160a01b031633146108e05760405162461bcd60e51b815260040161076e90612574565b600a55565b6040516bffffffffffffffffffffffff19606085901b166020820152600090819060340160405160208183030381529060405280519060200120905061096284848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600c5491508490506117f2565b95945050505050565b60095460ff168015610986575061270f61098460015490565b105b6109bf5760405162461bcd60e51b815260206004820152600a6024820152696e6f742061637469766560b01b604482015260640161076e565b6000546001600160a01b031633146109e95760405162461bcd60e51b815260040161076e90612574565b60008111610a265760405162461bcd60e51b815260206004820152600a6024820152691e995c9bc818dbdd5b9d60b21b604482015260640161076e565b6014811115610a775760405162461bcd60e51b815260206004820152601b60248201527f6578636565646564206d6178206c696d697420706572206d696e740000000000604482015260640161076e565b610a8c610a8360015490565b61270f90611808565b811115610acd5760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768206e66747360881b604482015260640161076e565b80600d541015610b1f5760405162461bcd60e51b815260206004820152601760248201527f6578636565646564206d61782066726565206c696d6974000000000000000000604482015260640161076e565b80600d6000828254610b319190612647565b90915550610b419050338261181b565b50565b6000546001600160a01b03163314610b6e5760405162461bcd60e51b815260040161076e90612574565b6009805460ff19169055565b6000546001600160a01b03163314610ba45760405162461bcd60e51b815260040161076e90612574565b60026008541415610bf75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076e565b6002600855476000610c0a82600a611835565b9050610c2a7308e7d2bcdef1feae4d0293822049470865bf240e82611841565b610c4e610c3f6000546001600160a01b031690565b610c498484611808565b611841565b50506001600855565b6108a6838383604051806020016040528060008152506111b0565b6000546001600160a01b03163314610c9c5760405162461bcd60e51b815260040161076e90612574565b600b55565b6040516370a0823160e01b81526001600160a01b038416600482015260009081908190731a92f7381b9f03921564a437210bb9396471050c906370a082319060240160206040518083038186803b158015610cfb57600080fd5b505afa158015610d0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d339190612428565b1115610d425750600a54610f37565b6040516370a0823160e01b81526001600160a01b03861660048201526000907322c08c358f62f35b742d023bf2faf67e30e5376e906370a082319060240160206040518083038186803b158015610d9857600080fd5b505afa158015610dac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd09190612428565b1115610ddf5750600a54610f37565b6040516370a0823160e01b81526001600160a01b0386166004820152600090730d0167a823c6619d430b1a96ad85b888bcf97c37906370a082319060240160206040518083038186803b158015610e3557600080fd5b505afa158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d9190612428565b1115610e7c5750600a54610f37565b6040516370a0823160e01b81526001600160a01b0386166004820152600090732eb6be120ef111553f768fcd509b6368e82d1661906370a082319060240160206040518083038186803b158015610ed257600080fd5b505afa158015610ee6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0a9190612428565b1115610f195750600a54610f37565b610f248585856108e5565b15610f325750600a54610f37565b50600b545b610f41818761195a565b9150505b949350505050565b6000610f5882611966565b5192915050565b60006001600160a01b038216610fcb5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161076e565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b0316331461101a5760405162461bcd60e51b815260040161076e90612574565b6110246000611aa7565b565b6000546001600160a01b031633146110505760405162461bcd60e51b815260040161076e90612574565b600c55565b6000546001600160a01b0316331461107f5760405162461bcd60e51b815260040161076e90612574565b805161109290600e90602084019061206f565b5050565b6060600380546106829061268a565b6001600160a01b0382163314156110fe5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161076e565b3360008181526007602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161116b911515815260200190565b60405180910390a35050565b6000546001600160a01b031633146111a15760405162461bcd60e51b815260040161076e90612574565b6009805460ff19166001179055565b6111bb8484846114f0565b6111c784848484611af7565b6111e35760405162461bcd60e51b815260040161076e906125a9565b50505050565b60095460ff168015611204575061270f61120260015490565b105b61123d5760405162461bcd60e51b815260206004820152600a6024820152696e6f742061637469766560b01b604482015260640161076e565b600260085414156112905760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076e565b6002600855826112cf5760405162461bcd60e51b815260206004820152600a6024820152691e995c9bc818dbdd5b9d60b21b604482015260640161076e565b60148311156113205760405162461bcd60e51b815260206004820152601b60248201527f6578636565646564206d6178206c696d697420706572206d696e740000000000604482015260640161076e565b61132c610a8360015490565b83111561136d5760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768206e66747360881b604482015260640161076e565b600061137b84338585610ca1565b9050803410156113c35760405162461bcd60e51b8152602060048201526013602482015272696e73756666696369656e742066756e64732160681b604482015260640161076e565b6113cd338561181b565b505060016008555050565b606061066b82611c01565b6000546001600160a01b0316331461140d5760405162461bcd60e51b815260040161076e90612574565b6001600160a01b0381166114725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076e565b610b4181611aa7565b60015460009061148d61271084612647565b1092915050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114fb82611966565b80519091506000906001600160a01b0316336001600160a01b0316148061153257503361152784610705565b6001600160a01b0316145b806115445750815161154490336105d1565b9050806115ae5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161076e565b846001600160a01b031682600001516001600160a01b0316146116225760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161076e565b6001600160a01b0384166116865760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161076e565b6116966000848460000151611494565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790559086018083529120549091166117a85761174a8161147b565b156117a8578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000826117ff8584611ccc565b14949350505050565b60006118148284612647565b9392505050565b611092828260405180602001604052806000815250611d4e565b60006118148284612614565b804710156118915760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161076e565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146118de576040519150601f19603f3d011682016040523d82523d6000602084013e6118e3565b606091505b50509050806108a65760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161076e565b60006118148284612628565b60408051808201909152600080825260208201526119838261147b565b6119e25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161076e565b815b6127108110611a46576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611a3c57915061066e9050565b50600019016119e4565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161076e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611bf957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b3b903390899088908890600401612524565b602060405180830381600087803b158015611b5557600080fd5b505af1925050508015611b85575060408051601f3d908101601f19168201909252611b82918101906123c6565b60015b611bdf573d808015611bb3576040519150601f19603f3d011682016040523d82523d6000602084013e611bb8565b606091505b508051611bd75760405162461bcd60e51b815260040161076e906125a9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f45565b506001610f45565b6060611c0c8261147b565b611c705760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161076e565b6000611c7a611d5b565b9050805160001415611c9b5760405180602001604052806000815250611814565b80611ca584611d6a565b604051602001611cb69291906124f5565b6040516020818303038152906040529392505050565b600081815b8451811015611d46576000858281518110611cfc57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611d225760008381526020829052604090209250611d33565b600081815260208490526040902092505b5080611d3e816126c5565b915050611cd1565b509392505050565b6108a68383836001611e85565b6060600e80546106829061268a565b606081611d8f57506040805180820190915260018152600360fc1b602082015261066e565b8160005b8115611db95780611da3816126c5565b9150611db29050600a83612614565b9150611d93565b60008167ffffffffffffffff811115611de257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e0c576020820181803683370190505b5090505b8415610f4557611e21600183612647565b9150611e2e600a866126e0565b611e399060306125fc565b60f81b818381518110611e5c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611e7e600a86612614565b9450611e10565b6000612710600154611e9791906125fc565b90506001600160a01b038516611ef95760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161076e565b83611f575760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161076e565b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526004909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b858110156120605760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315612054576120386000888488611af7565b6120545760405162461bcd60e51b815260040161076e906125a9565b60019182019101611fe5565b505060018054850190556117eb565b82805461207b9061268a565b90600052602060002090601f01602090048101928261209d57600085556120e3565b82601f106120b657805160ff19168380011785556120e3565b828001600101855582156120e3579182015b828111156120e35782518255916020019190600101906120c8565b506120ef9291506120f3565b5090565b5b808211156120ef57600081556001016120f4565b600067ffffffffffffffff8084111561212357612123612720565b604051601f8501601f19908116603f0116810190828211818310171561214b5761214b612720565b8160405280935085815286868601111561216457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461066e57600080fd5b60008083601f8401126121a6578081fd5b50813567ffffffffffffffff8111156121bd578182fd5b60208301915083602080830285010111156121d757600080fd5b9250929050565b6000602082840312156121ef578081fd5b6118148261217e565b6000806040838503121561220a578081fd5b6122138361217e565b91506122216020840161217e565b90509250929050565b60008060006060848603121561223e578081fd5b6122478461217e565b92506122556020850161217e565b9150604084013590509250925092565b6000806000806080858703121561227a578081fd5b6122838561217e565b93506122916020860161217e565b925060408501359150606085013567ffffffffffffffff8111156122b3578182fd5b8501601f810187136122c3578182fd5b6122d287823560208401612108565b91505092959194509250565b6000806000604084860312156122f2578283fd5b6122fb8461217e565b9250602084013567ffffffffffffffff811115612316578283fd5b61232286828701612195565b9497909650939450505050565b60008060408385031215612341578182fd5b61234a8361217e565b91506020830135801515811461235e578182fd5b809150509250929050565b6000806040838503121561237b578182fd5b6123848361217e565b946020939093013593505050565b6000602082840312156123a3578081fd5b5035919050565b6000602082840312156123bb578081fd5b813561181481612736565b6000602082840312156123d7578081fd5b815161181481612736565b6000602082840312156123f3578081fd5b813567ffffffffffffffff811115612409578182fd5b8201601f81018413612419578182fd5b610f4584823560208401612108565b600060208284031215612439578081fd5b5051919050565b60008060008060608587031215612455578182fd5b843593506124656020860161217e565b9250604085013567ffffffffffffffff811115612480578283fd5b61248c87828801612195565b95989497509550505050565b6000806000604084860312156124ac578081fd5b83359250602084013567ffffffffffffffff811115612316578182fd5b600081518084526124e181602086016020860161265e565b601f01601f19169290920160200192915050565b6000835161250781846020880161265e565b83519083019061251b81836020880161265e565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612557908301846124c9565b9695505050505050565b60006020825261181460208301846124c9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000821982111561260f5761260f6126f4565b500190565b6000826126235761262361270a565b500490565b6000816000190483118215151615612642576126426126f4565b500290565b600082821015612659576126596126f4565b500390565b60005b83811015612679578181015183820152602001612661565b838111156111e35750506000910152565b60028104600182168061269e57607f821691505b602082108114156126bf57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126d9576126d96126f4565b5060010190565b6000826126ef576126ef61270a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4157600080fdfea26469706673582212202b98ecab794c4afc0f72103cb6081f96deb8e1707e3c8fdc7601e1f2a0fe714964736f6c63430008020033

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

c209814ff1acb0cf868e723e897facff0d571254fcb78b6c831bf90652fed73f

-----Decoded View---------------
Arg [0] : _merkleRoot (bytes32): 0xc209814ff1acb0cf868e723e897facff0d571254fcb78b6c831bf90652fed73f

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : c209814ff1acb0cf868e723e897facff0d571254fcb78b6c831bf90652fed73f


Deployed Bytecode Sourcemap

49993:4611:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36845:293;;;;;;;;;;-1:-1:-1;36845:293:0;;;;;:::i;:::-;;:::i;:::-;;;8703:14:1;;8696:22;8678:41;;8666:2;8651:18;36845:293:0;;;;;;;;38665:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40227:214::-;;;;;;;;;;-1:-1:-1;40227:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8001:32:1;;;7983:51;;7971:2;7956:18;40227:214:0;7938:102:1;39748:413:0;;;;;;;;;;-1:-1:-1;39748:413:0;;;;;:::i;:::-;;:::i;:::-;;36682:91;;;;;;;;;;-1:-1:-1;36753:12:0;;36682:91;;;8876:25:1;;;8864:2;8849:18;36682:91:0;8831:76:1;41103:162:0;;;;;;;;;;-1:-1:-1;41103:162:0;;;;;:::i;:::-;;:::i;50283:34::-;;;;;;;;;;;;;;;;53841:99;;;;;;;;;;-1:-1:-1;53841:99:0;;;;;:::i;:::-;;:::i;52924:270::-;;;;;;;;;;-1:-1:-1;52924:270:0;;;;;:::i;:::-;;:::i;50326:25::-;;;;;;;;;;;;;;;;50134:41;;;;;;;;;;;;50171:4;50134:41;;51722:475;;;;;;;;;;-1:-1:-1;51722:475:0;;;;;:::i;:::-;;:::i;53759:74::-;;;;;;;;;;;;;:::i;54281:283::-;;;;;;;;;;;;;:::i;41336:177::-;;;;;;;;;;-1:-1:-1;41336:177:0;;;;;:::i;:::-;;:::i;53948:102::-;;;;;;;;;;-1:-1:-1;53948:102:0;;;;;:::i;:::-;;:::i;52205:711::-;;;;;;;;;;-1:-1:-1;52205:711:0;;;;;:::i;:::-;;:::i;38474:124::-;;;;;;;;;;-1:-1:-1;38474:124:0;;;;;:::i;:::-;;:::i;50241:35::-;;;;;;;;;;;;;;;;37202:221;;;;;;;;;;-1:-1:-1;37202:221:0;;;;;:::i;:::-;;:::i;2589:103::-;;;;;;;;;;;;;:::i;54058:106::-;;;;;;;;;;-1:-1:-1;54058:106:0;;;;;:::i;:::-;;:::i;1938:87::-;;;;;;;;;;-1:-1:-1;1984:7:0;2011:6;-1:-1:-1;;;;;2011:6:0;1938:87;;54172:101;;;;;;;;;;-1:-1:-1;54172:101:0;;;;;:::i;:::-;;:::i;38834:104::-;;;;;;;;;;;;;:::i;40513:288::-;;;;;;;;;;-1:-1:-1;40513:288:0;;;;;:::i;:::-;;:::i;53676:75::-;;;;;;;;;;;;;:::i;41584:355::-;;;;;;;;;;-1:-1:-1;41584:355:0;;;;;:::i;:::-;;:::i;51153:561::-;;;;;;:::i;:::-;;:::i;53318:143::-;;;;;;;;;;-1:-1:-1;53318:143:0;;;;;:::i;:::-;;:::i;50358:33::-;;;;;;;;;;;;;;;;50184:44;;;;;;;;;;;;50226:2;50184:44;;40872:164;;;;;;;;;;-1:-1:-1;40872:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;40993:25:0;;;40969:4;40993:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40872:164;2847:201;;;;;;;;;;-1:-1:-1;2847:201:0;;;;;:::i;:::-;;:::i;36845:293::-;36947:4;-1:-1:-1;;;;;;36980:40:0;;-1:-1:-1;;;36980:40:0;;:101;;-1:-1:-1;;;;;;;37033:48:0;;-1:-1:-1;;;37033:48:0;36980:101;:150;;;-1:-1:-1;;;;;;;;;;34879:40:0;;;37094:36;36964:166;;36845:293;;;;:::o;38665:100::-;38719:13;38752:5;38745:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38665:100;:::o;40227:214::-;40295:7;40323:16;40331:7;40323;:16::i;:::-;40315:74;;;;-1:-1:-1;;;40315:74:0;;18631:2:1;40315:74:0;;;18613:21:1;18670:2;18650:18;;;18643:30;18709:34;18689:18;;;18682:62;-1:-1:-1;;;18760:18:1;;;18753:43;18813:19;;40315:74:0;;;;;;;;;-1:-1:-1;40409:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40409:24:0;;40227:214::o;39748:413::-;39821:13;39837:24;39853:7;39837:15;:24::i;:::-;39821:40;;39886:5;-1:-1:-1;;;;;39880:11:0;:2;-1:-1:-1;;;;;39880:11:0;;;39872:58;;;;-1:-1:-1;;;39872:58:0;;15882:2:1;39872:58:0;;;15864:21:1;15921:2;15901:18;;;15894:30;15960:34;15940:18;;;15933:62;-1:-1:-1;;;16011:18:1;;;16004:32;16053:19;;39872:58:0;15854:224:1;39872:58:0;736:10;-1:-1:-1;;;;;39965:21:0;;;;:62;;-1:-1:-1;39990:37:0;40007:5;736:10;40014:12;656:98;39990:37;39943:169;;;;-1:-1:-1;;;39943:169:0;;12734:2:1;39943:169:0;;;12716:21:1;12773:2;12753:18;;;12746:30;12812:34;12792:18;;;12785:62;12883:27;12863:18;;;12856:55;12928:19;;39943:169:0;12706:247:1;39943:169:0;40125:28;40134:2;40138:7;40147:5;40125:8;:28::i;:::-;39748:413;;;:::o;41103:162::-;41229:28;41239:4;41245:2;41249:7;41229:9;:28::i;53841:99::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;53917:6:::1;:15:::0;53841:99::o;52924:270::-;53093:25;;-1:-1:-1;;7067:2:1;7063:15;;;7059:53;53093:25:0;;;7047:66:1;53014:4:0;;;;7129:12:1;;53093:25:0;;;;;;;;;;;;53083:36;;;;;;53068:51;;53137:49;53156:11;;53137:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53169:10:0;;;-1:-1:-1;53181:4:0;;-1:-1:-1;53137:18:0;:49::i;:::-;53130:56;52924:270;-1:-1:-1;;;;;52924:270:0:o;51722:475::-;50953:9;;;;:39;;;;;50171:4;50966:13;36753:12;;36682:91;;50966:13;:26;50953:39;50945:62;;;;-1:-1:-1;;;50945:62:0;;10504:2:1;50945:62:0;;;10486:21:1;10543:2;10523:18;;;10516:30;-1:-1:-1;;;10562:18:1;;;10555:40;10612:18;;50945:62:0;10476:160:1;50945:62:0;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23:::1;2150:68;;;;-1:-1:-1::0;;;2150:68:0::1;;;;;;;:::i;:::-;51831:1:::2;51814:14;:18;51806:41;;;::::0;-1:-1:-1;;;51806:41:0;;16705:2:1;51806:41:0::2;::::0;::::2;16687:21:1::0;16744:2;16724:18;;;16717:30;-1:-1:-1;;;16763:18:1;;;16756:40;16813:18;;51806:41:0::2;16677:160:1::0;51806:41:0::2;50226:2;51866:14;:33;;51858:73;;;::::0;-1:-1:-1;;;51858:73:0;;12034:2:1;51858:73:0::2;::::0;::::2;12016:21:1::0;12073:2;12053:18;;;12046:30;12112:29;12092:18;;;12085:57;12159:18;;51858:73:0::2;12006:177:1::0;51858:73:0::2;51968:29;51983:13;36753:12:::0;;36682:91;;51983:13:::2;50171:4;::::0;51968:14:::2;:29::i;:::-;51950:14;:47;;51942:75;;;::::0;-1:-1:-1;;;51942:75:0;;12390:2:1;51942:75:0::2;::::0;::::2;12372:21:1::0;12429:2;12409:18;;;12402:30;-1:-1:-1;;;12448:18:1;;;12441:45;12503:18;;51942:75:0::2;12362:165:1::0;51942:75:0::2;52053:14;52036:13;;:31;;52028:67;;;::::0;-1:-1:-1;;;52028:67:0;;13160:2:1;52028:67:0::2;::::0;::::2;13142:21:1::0;13199:2;13179:18;;;13172:30;13238:25;13218:18;;;13211:53;13281:18;;52028:67:0::2;13132:173:1::0;52028:67:0::2;52125:14;52108:13;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;52152:37:0::2;::::0;-1:-1:-1;52162:10:0::2;52174:14:::0;52152:9:::2;:37::i;:::-;51722:475:::0;:::o;53759:74::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;53808:9:::1;:17:::0;;-1:-1:-1;;53808:17:0::1;::::0;;53759:74::o;54281:283::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;18054:1:::1;18652:7;;:19;;18644:63;;;::::0;-1:-1:-1;;;18644:63:0;;17855:2:1;18644:63:0::1;::::0;::::1;17837:21:1::0;17894:2;17874:18;;;17867:30;17933:33;17913:18;;;17906:61;17984:18;;18644:63:0::1;17827:181:1::0;18644:63:0::1;18054:1;18785:7;:18:::0;54362:21:::2;54344:15;54414;54362:21:::0;54426:2:::2;54414:11;:15::i;:::-;54394:35;;54440:46;50512:42;54476:9;54440:17;:46::i;:::-;54497:59;54523:7;1984::::0;2011:6;-1:-1:-1;;;;;2011:6:0;1938:87;;54523:7:::2;54533:22;:7:::0;54545:9;54533:11:::2;:22::i;:::-;54497:17;:59::i;:::-;-1:-1:-1::0;;18010:1:0::1;18964:7;:22:::0;54281:283::o;41336:177::-;41466:39;41483:4;41489:2;41493:7;41466:39;;;;;;;;;;;;:16;:39::i;53948:102::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;54027:6:::1;:15:::0;53948:102::o;52205:711::-;52366:39;;-1:-1:-1;;;52366:39:0;;-1:-1:-1;;;;;8001:32:1;;52366:39:0;;;7983:51:1;52315:7:0;;;;;;50602:42;;52366:30;;7956:18:1;;52366:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:43;52363:505;;;-1:-1:-1;52434:6:0;;52363:505;;;52462:37;;-1:-1:-1;;;52462:37:0;;-1:-1:-1;;;;;8001:32:1;;52462:37:0;;;7983:51:1;52502:1:0;;50688:42;;52462:28;;7956:18:1;;52462:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;52458:410;;;-1:-1:-1;52528:6:0;;52458:410;;;52556:37;;-1:-1:-1;;;52556:37:0;;-1:-1:-1;;;;;8001:32:1;;52556:37:0;;;7983:51:1;52596:1:0;;50774:42;;52556:28;;7956:18:1;;52556:37:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:41;52552:316;;;-1:-1:-1;52622:6:0;;52552:316;;;52650:38;;-1:-1:-1;;;52650:38:0;;-1:-1:-1;;;;;8001:32:1;;52650:38:0;;;7983:51:1;52691:1:0;;50861:42;;52650:29;;7956:18:1;;52650:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;52646:222;;;-1:-1:-1;52717:6:0;;52646:222;;;52745:33;52757:7;52766:11;;52745;:33::i;:::-;52741:127;;;-1:-1:-1;52803:6:0;;52741:127;;;-1:-1:-1;52850:6:0;;52741:127;52887:21;:5;52897:10;52887:9;:21::i;:::-;52880:28;;;52205:711;;;;;;;:::o;38474:124::-;38538:7;38565:20;38577:7;38565:11;:20::i;:::-;:25;;38474:124;-1:-1:-1;;38474:124:0:o;37202:221::-;37266:7;-1:-1:-1;;;;;37294:19:0;;37286:75;;;;-1:-1:-1;;;37286:75:0;;13512:2:1;37286:75:0;;;13494:21:1;13551:2;13531:18;;;13524:30;13590:34;13570:18;;;13563:62;-1:-1:-1;;;13641:18:1;;;13634:41;13692:19;;37286:75:0;13484:233:1;37286:75:0;-1:-1:-1;;;;;;37387:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37387:27:0;;37202:221::o;2589:103::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;2654:30:::1;2681:1;2654:18;:30::i;:::-;2589:103::o:0;54058:106::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;54132:10:::1;:24:::0;54058:106::o;54172:101::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;54246:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54172:101:::0;:::o;38834:104::-;38890:13;38923:7;38916:14;;;;;:::i;40513:288::-;-1:-1:-1;;;;;40608:24:0;;736:10;40608:24;;40600:63;;;;-1:-1:-1;;;40600:63:0;;15108:2:1;40600:63:0;;;15090:21:1;15147:2;15127:18;;;15120:30;15186:28;15166:18;;;15159:56;15232:18;;40600:63:0;15080:176:1;40600:63:0;736:10;40676:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40676:42:0;;;;;;;;;;:53;;-1:-1:-1;;40676:53:0;;;;;;;:42;-1:-1:-1;;;;;40745:48:0;;40784:8;40745:48;;;;8703:14:1;8696:22;8678:41;;8666:2;8651:18;;8633:92;40745:48:0;;;;;;;;40513:288;;:::o;53676:75::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;53727:9:::1;:16:::0;;-1:-1:-1;;53727:16:0::1;53739:4;53727:16;::::0;;53676:75::o;41584:355::-;41743:28;41753:4;41759:2;41763:7;41743:9;:28::i;:::-;41804:48;41827:4;41833:2;41837:7;41846:5;41804:22;:48::i;:::-;41782:149;;;;-1:-1:-1;;;41782:149:0;;;;;;;:::i;:::-;41584:355;;;;:::o;51153:561::-;50953:9;;;;:39;;;;;50171:4;50966:13;36753:12;;36682:91;;50966:13;:26;50953:39;50945:62;;;;-1:-1:-1;;;50945:62:0;;10504:2:1;50945:62:0;;;10486:21:1;10543:2;10523:18;;;10516:30;-1:-1:-1;;;10562:18:1;;;10555:40;10612:18;;50945:62:0;10476:160:1;50945:62:0;18054:1:::1;18652:7;;:19;;18644:63;;;::::0;-1:-1:-1;;;18644:63:0;;17855:2:1;18644:63:0::1;::::0;::::1;17837:21:1::0;17894:2;17874:18;;;17867:30;17933:33;17913:18;;;17906:61;17984:18;;18644:63:0::1;17827:181:1::0;18644:63:0::1;18054:1;18785:7;:18:::0;51285;51277:41:::2;;;::::0;-1:-1:-1;;;51277:41:0;;16705:2:1;51277:41:0::2;::::0;::::2;16687:21:1::0;16744:2;16724:18;;;16717:30;-1:-1:-1;;;16763:18:1;;;16756:40;16813:18;;51277:41:0::2;16677:160:1::0;51277:41:0::2;50226:2;51337:14;:33;;51329:73;;;::::0;-1:-1:-1;;;51329:73:0;;12034:2:1;51329:73:0::2;::::0;::::2;12016:21:1::0;12073:2;12053:18;;;12046:30;12112:29;12092:18;;;12085:57;12159:18;;51329:73:0::2;12006:177:1::0;51329:73:0::2;51439:29;51454:13;36753:12:::0;;36682:91;;51439:29:::2;51421:14;:47;;51413:75;;;::::0;-1:-1:-1;;;51413:75:0;;12390:2:1;51413:75:0::2;::::0;::::2;12372:21:1::0;12429:2;12409:18;;;12402:30;-1:-1:-1;;;12448:18:1;;;12441:45;12503:18;;51413:75:0::2;12362:165:1::0;51413:75:0::2;51509:22;51534:52;51546:14;51562:10;51574:11;;51534;:52::i;:::-;51509:77;;51618:14;51605:9;:27;;51597:59;;;::::0;-1:-1:-1;;;51597:59:0;;9338:2:1;51597:59:0::2;::::0;::::2;9320:21:1::0;9377:2;9357:18;;;9350:30;-1:-1:-1;;;9396:18:1;;;9389:49;9455:18;;51597:59:0::2;9310:169:1::0;51597:59:0::2;51669:37;51679:10;51691:14;51669:9;:37::i;:::-;-1:-1:-1::0;;18010:1:0::1;18964:7;:22:::0;-1:-1:-1;;51153:561:0:o;53318:143::-;53392:13;53430:23;53445:7;53430:14;:23::i;2847:201::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2936:22:0;::::1;2928:73;;;::::0;-1:-1:-1;;;2928:73:0;;9686:2:1;2928:73:0::1;::::0;::::1;9668:21:1::0;9725:2;9705:18;;;9698:30;9764:34;9744:18;;;9737:62;-1:-1:-1;;;9815:18:1;;;9808:36;9861:19;;2928:73:0::1;9658:228:1::0;2928:73:0::1;3012:28;3031:8;3012:18;:28::i;42194:128::-:0;42302:12;;42251:4;;42275:24;35823:5;42275:7;:24;:::i;:::-;:39;;42194:128;-1:-1:-1;;42194:128:0:o;47137:196::-;47252:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47252:29:0;-1:-1:-1;;;;;47252:29:0;;;;;;;;;47297:28;;47252:24;;47297:28;;;;;;;47137:196;;;:::o;45025:1994::-;45140:35;45178:20;45190:7;45178:11;:20::i;:::-;45253:18;;45140:58;;-1:-1:-1;45211:22:0;;-1:-1:-1;;;;;45237:34:0;736:10;-1:-1:-1;;;;;45237:34:0;;:83;;;-1:-1:-1;736:10:0;45284:20;45296:7;45284:11;:20::i;:::-;-1:-1:-1;;;;;45284:36:0;;45237:83;:146;;;-1:-1:-1;45350:18:0;;45333:50;;736:10;45370:12;656:98;45333:50;45211:173;;45405:17;45397:80;;;;-1:-1:-1;;;45397:80:0;;15463:2:1;45397:80:0;;;15445:21:1;15502:2;15482:18;;;15475:30;15541:34;15521:18;;;15514:62;-1:-1:-1;;;15592:18:1;;;15585:48;15650:19;;45397:80:0;15435:240:1;45397:80:0;45520:4;-1:-1:-1;;;;;45498:26:0;:13;:18;;;-1:-1:-1;;;;;45498:26:0;;45490:77;;;;-1:-1:-1;;;45490:77:0;;13924:2:1;45490:77:0;;;13906:21:1;13963:2;13943:18;;;13936:30;14002:34;13982:18;;;13975:62;-1:-1:-1;;;14053:18:1;;;14046:36;14099:19;;45490:77:0;13896:228:1;45490:77:0;-1:-1:-1;;;;;45586:16:0;;45578:66;;;;-1:-1:-1;;;45578:66:0;;10843:2:1;45578:66:0;;;10825:21:1;10882:2;10862:18;;;10855:30;10921:34;10901:18;;;10894:62;-1:-1:-1;;;10972:18:1;;;10965:35;11017:19;;45578:66:0;10815:227:1;45578:66:0;45765:49;45782:1;45786:7;45795:13;:18;;;45765:8;:49::i;:::-;-1:-1:-1;;;;;46110:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;46110:31:0;;;-1:-1:-1;;;;;46110:31:0;;;-1:-1:-1;;46110:31:0;;;;;;;46156:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46156:29:0;;;;;;;;;;;;;46202:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;46202:30:0;;;;-1:-1:-1;;;;46247:61:0;-1:-1:-1;;;46292:15:0;46247:61;;;;;;46582:11;;;46612:24;;;;;:29;46582:11;;46612:29;46608:295;;46680:20;46688:11;46680:7;:20::i;:::-;46676:212;;;46757:18;;;46725:24;;;:11;:24;;;;;;;;:50;;46840:28;;;;46798:70;;-1:-1:-1;;;46798:70:0;-1:-1:-1;;;;;;;;;46725:50:0;;;-1:-1:-1;;;;;;46725:50:0;;;;;;;46798:70;;;;;;;46676:212;45025:1994;46950:7;46946:2;-1:-1:-1;;;;;46931:27:0;46940:4;-1:-1:-1;;;;;46931:27:0;;;;;;;;;;;46969:42;45025:1994;;;;;:::o;19932:190::-;20057:4;20110;20081:25;20094:5;20101:4;20081:12;:25::i;:::-;:33;;19932:190;-1:-1:-1;;;;19932:190:0:o;6657:98::-;6715:7;6742:5;6746:1;6742;:5;:::i;:::-;6735:12;6657:98;-1:-1:-1;;;6657:98:0:o;42330:104::-;42399:27;42409:2;42413:8;42399:27;;;;;;;;;;;;:9;:27::i;7413:98::-;7471:7;7498:5;7502:1;7498;:5;:::i;25758:317::-;25873:6;25848:21;:31;;25840:73;;;;-1:-1:-1;;;25840:73:0;;11676:2:1;25840:73:0;;;11658:21:1;11715:2;11695:18;;;11688:30;11754:31;11734:18;;;11727:59;11803:18;;25840:73:0;11648:179:1;25840:73:0;25927:12;25945:9;-1:-1:-1;;;;;25945:14:0;25967:6;25945:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25926:52;;;25997:7;25989:78;;;;-1:-1:-1;;;25989:78:0;;11249:2:1;25989:78:0;;;11231:21:1;11288:2;11268:18;;;11261:30;11327:34;11307:18;;;11300:62;11398:28;11378:18;;;11371:56;11444:19;;25989:78:0;11221:248:1;7014:98:0;7072:7;7099:5;7103:1;7099;:5;:::i;37862:550::-;-1:-1:-1;;;;;;;;;;;;;;;;;37965:16:0;37973:7;37965;:16::i;:::-;37957:71;;;;-1:-1:-1;;;37957:71:0;;10093:2:1;37957:71:0;;;10075:21:1;10132:2;10112:18;;;10105:30;10171:34;10151:18;;;10144:62;-1:-1:-1;;;10222:18:1;;;10215:40;10272:19;;37957:71:0;10065:232:1;37957:71:0;38086:7;38066:258;35823:5;38095:4;:22;38066:258;;38146:31;38180:17;;;:11;:17;;;;;;;;;38146:51;;;;;;;;;-1:-1:-1;;;;;38146:51:0;;;;;-1:-1:-1;;;38146:51:0;;;;;;;;;;;;38220:28;38216:93;;38280:9;-1:-1:-1;38273:16:0;;-1:-1:-1;38273:16:0;38216:93;-1:-1:-1;;;38119:6:0;38066:258;;;-1:-1:-1;38347:57:0;;-1:-1:-1;;;38347:57:0;;18215:2:1;38347:57:0;;;18197:21:1;18254:2;18234:18;;;18227:30;18293:34;18273:18;;;18266:62;-1:-1:-1;;;18344:18:1;;;18337:45;18399:19;;38347:57:0;18187:237:1;3208:191:0;3282:16;3301:6;;-1:-1:-1;;;;;3318:17:0;;;-1:-1:-1;;;;;;3318:17:0;;;;;;3351:40;;3301:6;;;;;;;3351:40;;3282:16;3351:40;3208:191;;:::o;47898:804::-;48053:4;-1:-1:-1;;;;;48074:13:0;;24792:19;:23;48070:625;;48110:72;;-1:-1:-1;;;48110:72:0;;-1:-1:-1;;;;;48110:36:0;;;;;:72;;736:10;;48161:4;;48167:7;;48176:5;;48110:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48110:72:0;;;;;;;;-1:-1:-1;;48110:72:0;;;;;;;;;;;;:::i;:::-;;;48106:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48356:13:0;;48352:273;;48399:61;;-1:-1:-1;;;48399:61:0;;;;;;;:::i;48352:273::-;48575:6;48569:13;48560:6;48556:2;48552:15;48545:38;48106:534;-1:-1:-1;;;;;;48233:55:0;-1:-1:-1;;;48233:55:0;;-1:-1:-1;48226:62:0;;48070:625;-1:-1:-1;48679:4:0;48672:11;;39009:335;39082:13;39116:16;39124:7;39116;:16::i;:::-;39108:76;;;;-1:-1:-1;;;39108:76:0;;14692:2:1;39108:76:0;;;14674:21:1;14731:2;14711:18;;;14704:30;14770:34;14750:18;;;14743:62;-1:-1:-1;;;14821:18:1;;;14814:45;14876:19;;39108:76:0;14664:237:1;39108:76:0;39197:21;39221:10;:8;:10::i;:::-;39197:34;;39255:7;39249:21;39274:1;39249:26;;:87;;;;;;;;;;;;;;;;;39302:7;39311:18;:7;:16;:18::i;:::-;39285:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39242:94;39009:335;-1:-1:-1;;;39009:335:0:o;20484:675::-;20567:7;20610:4;20567:7;20625:497;20649:5;:12;20645:1;:16;20625:497;;;20683:20;20706:5;20712:1;20706:8;;;;;;-1:-1:-1;;;20706:8:0;;;;;;;;;;;;;;;20683:31;;20749:12;20733;:28;20729:382;;21235:13;21285:15;;;21321:4;21314:15;;;21368:4;21352:21;;20861:57;;20729:382;;;21235:13;21285:15;;;21321:4;21314:15;;;21368:4;21352:21;;21038:57;;20729:382;-1:-1:-1;20663:3:0;;;;:::i;:::-;;;;20625:497;;;-1:-1:-1;21139:12:0;20484:675;-1:-1:-1;;;20484:675:0:o;42797:163::-;42920:32;42926:2;42930:8;42940:5;42947:4;42920:5;:32::i;53204:106::-;53256:13;53289;53282:20;;;;;:::i;32140:723::-;32196:13;32417:10;32413:53;;-1:-1:-1;32444:10:0;;;;;;;;;;;;-1:-1:-1;;;32444:10:0;;;;;;32413:53;32491:5;32476:12;32532:78;32539:9;;32532:78;;32565:8;;;;:::i;:::-;;-1:-1:-1;32588:10:0;;-1:-1:-1;32596:2:0;32588:10;;:::i;:::-;;;32532:78;;;32620:19;32652:6;32642:17;;;;;;-1:-1:-1;;;32642:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32642:17:0;;32620:39;;32670:154;32677:10;;32670:154;;32704:11;32714:1;32704:11;;:::i;:::-;;-1:-1:-1;32773:10:0;32781:2;32773:5;:10;:::i;:::-;32760:24;;:2;:24;:::i;:::-;32747:39;;32730:6;32737;32730:14;;;;;;-1:-1:-1;;;32730:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;32730:56:0;;;;;;;;-1:-1:-1;32801:11:0;32810:2;32801:11;;:::i;:::-;;;32670:154;;43219:1552;43358:20;35823:5;43381:12;;:29;;;;:::i;:::-;43358:52;-1:-1:-1;;;;;;43429:16:0;;43421:62;;;;-1:-1:-1;;;43421:62:0;;17044:2:1;43421:62:0;;;17026:21:1;17083:2;17063:18;;;17056:30;17122:34;17102:18;;;17095:62;-1:-1:-1;;;17173:18:1;;;17166:31;17214:19;;43421:62:0;17016:223:1;43421:62:0;43502:13;43494:66;;;;-1:-1:-1;;;43494:66:0;;17446:2:1;43494:66:0;;;17428:21:1;17485:2;17465:18;;;17458:30;17524:34;17504:18;;;17497:62;-1:-1:-1;;;17575:18:1;;;17568:38;17623:19;;43494:66:0;17418:230:1;43494:66:0;-1:-1:-1;;;;;43912:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;43912:45:0;;-1:-1:-1;;;;;43912:45:0;;;;;;;;43972:50;;;-1:-1:-1;;;43972:50:0;;;;;;;;;;;;;;;44039:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44039:35:0;;;;-1:-1:-1;;;;44089:66:0;-1:-1:-1;;;44139:15:0;44089:66;;;;;;;44039:25;;44224:415;44244:8;44240:1;:12;44224:415;;;44283:38;;44308:12;;-1:-1:-1;;;;;44283:38:0;;;44300:1;;44283:38;;44300:1;;44283:38;44344:4;44340:249;;;44407:59;44438:1;44442:2;44446:12;44460:5;44407:22;:59::i;:::-;44373:196;;;;-1:-1:-1;;;44373:196:0;;;;;;;:::i;:::-;44609:14;;;;;44254:3;44224:415;;;-1:-1:-1;;44655:12:0;:24;;;;;;44703:60;41584:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:394;;;955:3;948:4;940:6;936:17;932:27;922:2;;978:6;970;963:22;922:2;-1:-1:-1;1006:20:1;;1049:18;1038:30;;1035:2;;;1088:8;1078;1071:26;1035:2;1132:4;1124:6;1120:17;1108:29;;1195:3;1188:4;1180;1172:6;1168:17;1160:6;1156:30;1152:41;1149:50;1146:2;;;1212:1;1209;1202:12;1146:2;912:310;;;;;:::o;1227:196::-;;1339:2;1327:9;1318:7;1314:23;1310:32;1307:2;;;1360:6;1352;1345:22;1307:2;1388:29;1407:9;1388:29;:::i;1428:270::-;;;1557:2;1545:9;1536:7;1532:23;1528:32;1525:2;;;1578:6;1570;1563:22;1525:2;1606:29;1625:9;1606:29;:::i;:::-;1596:39;;1654:38;1688:2;1677:9;1673:18;1654:38;:::i;:::-;1644:48;;1515:183;;;;;:::o;1703:338::-;;;;1849:2;1837:9;1828:7;1824:23;1820:32;1817:2;;;1870:6;1862;1855:22;1817:2;1898:29;1917:9;1898:29;:::i;:::-;1888:39;;1946:38;1980:2;1969:9;1965:18;1946:38;:::i;:::-;1936:48;;2031:2;2020:9;2016:18;2003:32;1993:42;;1807:234;;;;;:::o;2046:696::-;;;;;2218:3;2206:9;2197:7;2193:23;2189:33;2186:2;;;2240:6;2232;2225:22;2186:2;2268:29;2287:9;2268:29;:::i;:::-;2258:39;;2316:38;2350:2;2339:9;2335:18;2316:38;:::i;:::-;2306:48;;2401:2;2390:9;2386:18;2373:32;2363:42;;2456:2;2445:9;2441:18;2428:32;2483:18;2475:6;2472:30;2469:2;;;2520:6;2512;2505:22;2469:2;2548:22;;2601:4;2593:13;;2589:27;-1:-1:-1;2579:2:1;;2635:6;2627;2620:22;2579:2;2663:73;2728:7;2723:2;2710:16;2705:2;2701;2697:11;2663:73;:::i;:::-;2653:83;;;2176:566;;;;;;;:::o;2747:531::-;;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;;3040:2;3029:9;3025:18;3012:32;3067:18;3059:6;3056:30;3053:2;;;3104:6;3096;3089:22;3053:2;3148:70;3210:7;3201:6;3190:9;3186:22;3148:70;:::i;:::-;2869:409;;3237:8;;-1:-1:-1;3122:96:1;;-1:-1:-1;;;;2869:409:1:o;3283:367::-;;;3409:2;3397:9;3388:7;3384:23;3380:32;3377:2;;;3430:6;3422;3415:22;3377:2;3458:29;3477:9;3458:29;:::i;:::-;3448:39;;3537:2;3526:9;3522:18;3509:32;3584:5;3577:13;3570:21;3563:5;3560:32;3550:2;;3611:6;3603;3596:22;3550:2;3639:5;3629:15;;;3367:283;;;;;:::o;3655:264::-;;;3784:2;3772:9;3763:7;3759:23;3755:32;3752:2;;;3805:6;3797;3790:22;3752:2;3833:29;3852:9;3833:29;:::i;:::-;3823:39;3909:2;3894:18;;;;3881:32;;-1:-1:-1;;;3742:177:1:o;3924:190::-;;4036:2;4024:9;4015:7;4011:23;4007:32;4004:2;;;4057:6;4049;4042:22;4004:2;-1:-1:-1;4085:23:1;;3994:120;-1:-1:-1;3994:120:1:o;4119:255::-;;4230:2;4218:9;4209:7;4205:23;4201:32;4198:2;;;4251:6;4243;4236:22;4198:2;4295:9;4282:23;4314:30;4338:5;4314:30;:::i;4379:259::-;;4501:2;4489:9;4480:7;4476:23;4472:32;4469:2;;;4522:6;4514;4507:22;4469:2;4559:9;4553:16;4578:30;4602:5;4578:30;:::i;4643:480::-;;4765:2;4753:9;4744:7;4740:23;4736:32;4733:2;;;4786:6;4778;4771:22;4733:2;4831:9;4818:23;4864:18;4856:6;4853:30;4850:2;;;4901:6;4893;4886:22;4850:2;4929:22;;4982:4;4974:13;;4970:27;-1:-1:-1;4960:2:1;;5016:6;5008;5001:22;4960:2;5044:73;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5044:73;:::i;5323:194::-;;5446:2;5434:9;5425:7;5421:23;5417:32;5414:2;;;5467:6;5459;5452:22;5414:2;-1:-1:-1;5495:16:1;;5404:113;-1:-1:-1;5404:113:1:o;5522:599::-;;;;;5703:2;5691:9;5682:7;5678:23;5674:32;5671:2;;;5724:6;5716;5709:22;5671:2;5765:9;5752:23;5742:33;;5794:38;5828:2;5817:9;5813:18;5794:38;:::i;:::-;5784:48;;5883:2;5872:9;5868:18;5855:32;5910:18;5902:6;5899:30;5896:2;;;5947:6;5939;5932:22;5896:2;5991:70;6053:7;6044:6;6033:9;6029:22;5991:70;:::i;:::-;5661:460;;;;-1:-1:-1;6080:8:1;-1:-1:-1;;;;5661:460:1:o;6126:525::-;;;;6290:2;6278:9;6269:7;6265:23;6261:32;6258:2;;;6311:6;6303;6296:22;6258:2;6352:9;6339:23;6329:33;;6413:2;6402:9;6398:18;6385:32;6440:18;6432:6;6429:30;6426:2;;;6477:6;6469;6462:22;6656:257;;6735:5;6729:12;6762:6;6757:3;6750:19;6778:63;6834:6;6827:4;6822:3;6818:14;6811:4;6804:5;6800:16;6778:63;:::i;:::-;6895:2;6874:15;-1:-1:-1;;6870:29:1;6861:39;;;;6902:4;6857:50;;6705:208;-1:-1:-1;;6705:208:1:o;7152:470::-;;7369:6;7363:13;7385:53;7431:6;7426:3;7419:4;7411:6;7407:17;7385:53;:::i;:::-;7501:13;;7460:16;;;;7523:57;7501:13;7460:16;7557:4;7545:17;;7523:57;:::i;:::-;7596:20;;7339:283;-1:-1:-1;;;;7339:283:1:o;8045:488::-;-1:-1:-1;;;;;8314:15:1;;;8296:34;;8366:15;;8361:2;8346:18;;8339:43;8413:2;8398:18;;8391:34;;;8461:3;8456:2;8441:18;;8434:31;;;8045:488;;8482:45;;8507:19;;8499:6;8482:45;:::i;:::-;8474:53;8248:285;-1:-1:-1;;;;;;8248:285:1:o;8912:219::-;;9061:2;9050:9;9043:21;9081:44;9121:2;9110:9;9106:18;9098:6;9081:44;:::i;14129:356::-;14331:2;14313:21;;;14350:18;;;14343:30;14409:34;14404:2;14389:18;;14382:62;14476:2;14461:18;;14303:182::o;16083:415::-;16285:2;16267:21;;;16324:2;16304:18;;;16297:30;16363:34;16358:2;16343:18;;16336:62;-1:-1:-1;;;16429:2:1;16414:18;;16407:49;16488:3;16473:19;;16257:241::o;19025:128::-;;19096:1;19092:6;19089:1;19086:13;19083:2;;;19102:18;;:::i;:::-;-1:-1:-1;19138:9:1;;19073:80::o;19158:120::-;;19224:1;19214:2;;19229:18;;:::i;:::-;-1:-1:-1;19263:9:1;;19204:74::o;19283:168::-;;19389:1;19385;19381:6;19377:14;19374:1;19371:21;19366:1;19359:9;19352:17;19348:45;19345:2;;;19396:18;;:::i;:::-;-1:-1:-1;19436:9:1;;19335:116::o;19456:125::-;;19524:1;19521;19518:8;19515:2;;;19529:18;;:::i;:::-;-1:-1:-1;19566:9:1;;19505:76::o;19586:258::-;19658:1;19668:113;19682:6;19679:1;19676:13;19668:113;;;19758:11;;;19752:18;19739:11;;;19732:39;19704:2;19697:10;19668:113;;;19799:6;19796:1;19793:13;19790:2;;;-1:-1:-1;;19834:1:1;19816:16;;19809:27;19639:205::o;19849:380::-;19934:1;19924:12;;19981:1;19971:12;;;19992:2;;20046:4;20038:6;20034:17;20024:27;;19992:2;20099;20091:6;20088:14;20068:18;20065:38;20062:2;;;20145:10;20140:3;20136:20;20133:1;20126:31;20180:4;20177:1;20170:15;20208:4;20205:1;20198:15;20062:2;;19904:325;;;:::o;20234:135::-;;-1:-1:-1;;20294:17:1;;20291:2;;;20314:18;;:::i;:::-;-1:-1:-1;20361:1:1;20350:13;;20281:88::o;20374:112::-;;20432:1;20422:2;;20437:18;;:::i;:::-;-1:-1:-1;20471:9:1;;20412:74::o;20491:127::-;20552:10;20547:3;20543:20;20540:1;20533:31;20583:4;20580:1;20573:15;20607:4;20604:1;20597:15;20623:127;20684:10;20679:3;20675:20;20672:1;20665:31;20715:4;20712:1;20705:15;20739:4;20736:1;20729:15;20755:127;20816:10;20811:3;20807:20;20804:1;20797:31;20847:4;20844:1;20837:15;20871:4;20868:1;20861:15;20887:131;-1:-1:-1;;;;;;20961:32:1;;20951:43;;20941:2;;21008:1;21005;20998:12

Swarm Source

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