ETH Price: $2,506.18 (-0.48%)

Token

CULTandRAIN DROP 001 (CnR001)
 

Overview

Max Total Supply

228 CnR001

Holders

135

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CnR001
0xd965c0bE4403D0301fE15b3e0b16c7FB9E82072f
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Physical Jacket redemption window is now CLOSED. No more Physical Jackets can be claimed, regardless of NFT claim status. CULT&RAIN, a luxury fashion house born from Web3, launches NOVA 4, a limited edition DROP 001 collection, comprising of 228 3D animated NFT’s matched ...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CnRDrop001

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : CnRDrop001.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract CnRDrop001 is ERC721, Ownable {

    using Strings for uint256;
    using Counters for Counters.Counter;
    using MerkleProof for bytes32[];

    Counters.Counter private _tokenIdCounter;

    uint256 public constant MAX_MINT = 1000;
    uint256 public PRICE = 0.375 ether;
    uint256 public MAX_RESERVE = 44;

    bool public isActive = false;
    bool public isAllowListActive = true;
    bool public isRedeemable = false;

    uint256 public purchaseLimit = 1;
    uint256 public totalPublicSupply;

    bytes32 private merkleRoot;
    mapping(address => uint256) private _claimed;
    mapping(uint256 => address) private _redeemed;

    uint256[] private _gifted;

    string private _contractURI = "";
    string private _tokenBaseURI = "";

    constructor(bytes32 initialRoot) ERC721("CULTandRAIN DROP 001", "CnR001") {
        merkleRoot = initialRoot;
    }

    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory ownerTokens)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 totalTkns = totalSupply();
            uint256 resultIndex = 0;
            uint256 tnkId;

            for (tnkId = 1; tnkId <= totalTkns; tnkId++) {
                if (ownerOf(tnkId) == _owner) {
                    result[resultIndex] = tnkId;
                    resultIndex++;
                }
            }

            return result;
        }
    }

    function howManyClaimed(address _address) external view returns (uint256) {
        return _claimed[_address];
    }

    function onAllowList(address addr,bytes32[] calldata _merkleProof) external view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(addr));
        return MerkleProof.verify(_merkleProof,merkleRoot,leaf);
    }

    function buyNFT(bytes32[] calldata _merkleProof) external payable {
        require(isActive, "Contract is not active");

        require(totalSupply() < MAX_MINT, "All tokens have been minted");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        require(
            isAllowListActive ? MerkleProof.verify(_merkleProof,merkleRoot,leaf) : true,
            "You are not on the Allow List"
        );

        require(
            msg.value > 0 && msg.value % PRICE == 0,
            "Amount must be a multiple of price"
        );

        uint256 amount = msg.value / PRICE;
        require(
            amount >= 1 && amount <= purchaseLimit,
            "Amount should be at least 1"
        );

        require(
            (_claimed[msg.sender] + amount) <= purchaseLimit,
            "Purchase exceeds purchase limit"
        );

        uint256 reached = amount + _tokenIdCounter.current();
        require(
            reached <= (MAX_MINT - MAX_RESERVE),
            "Purchase would exceed public supply"
        );

        _claimed[msg.sender] += amount;

        totalPublicSupply += amount;

        for (uint256 i = 0; i < amount; i++) {
            _tokenIdCounter.increment();
            uint256 newTokenId = _tokenIdCounter.current();
            _mint(msg.sender, newTokenId);
        }
    }

    function gift(address to) external onlyOwner {
        require(totalSupply() < MAX_MINT, "All tokens have been minted");

        require(_gifted.length < MAX_RESERVE, "Max reserve reached");

        _tokenIdCounter.increment();
        uint256 newTokenId = _tokenIdCounter.current();
        _gifted.push(newTokenId);
        _mint(to, newTokenId);
    }

    function setIsActive(bool _isActive) external onlyOwner {
        isActive = _isActive;
    }

    function setNewPrice(uint256 _newPrice) external onlyOwner {
        PRICE = _newPrice;
    }

    function setIsAllowListActive(bool _isAllowListActive) external onlyOwner {
        isAllowListActive = _isAllowListActive;
    }

    function setPurchaseLimit(uint256 newLimit) external onlyOwner {
        require(
            newLimit > 0 && newLimit < MAX_MINT,
            "New reserve must be greater than zero"
        );
        purchaseLimit = newLimit;
    }

    function setMaxReserve(uint256 newReserve) external onlyOwner {
        MAX_RESERVE = newReserve;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Nothing to witdraw!");
        payable(msg.sender).transfer(balance);
    }

    function totalSupply() public view returns (uint256) {
        return _tokenIdCounter.current();
    }

    function publicSupply() external view returns (uint256) {
        return totalPublicSupply;
    }

    function redeem(uint256 _tokenId) external returns (bool) {
        require(isRedeemable, "Redeeming not available");
        require(ownerOf(_tokenId) == msg.sender, "You must own the NFT");
        require(_redeemed[_tokenId] == address(0), "You already redeemed the NFT");
        _redeemed[_tokenId] = msg.sender;
        return true;
    }

    function setRedeemable(bool _redeemable) external onlyOwner {
        isRedeemable = _redeemable;
    }

    function whoRedeemed(uint256 _tokenId) external view returns (address) {
        return _redeemed[_tokenId];
    }

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

    function setContractURI(string calldata URI) external onlyOwner {
        _contractURI = URI;
    }

    function setBaseURI(string calldata URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    function getGiftedTokens() public view returns (uint256[] memory) {
        return _gifted;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist");
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }
}

File 2 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// 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 3 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 13 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// 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 5 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// 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 6 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 7 of 13 : Context.sol
// 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 8 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// 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 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 10 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// 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 11 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @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 12 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 13 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"initialRoot","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_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","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":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"buyNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGiftedTokens","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"howManyClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRedeemable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"publicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchaseLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newReserve","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setNewPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setPurchaseLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_redeemable","type":"bool"}],"name":"setRedeemable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"whoRedeemed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

67053444835ec58000600855602c600955600a805462ffffff19166101001790556001600b5560a0604081905260006080819052620000419160119162000188565b50604080516020810191829052600090819052620000629160129162000188565b503480156200007057600080fd5b5060405162002b9738038062002b9783398101604081905262000093916200022e565b604080518082018252601481527f43554c54616e645241494e2044524f5020303031000000000000000000000000602080830191825283518085019094526006845265436e5230303160d01b908401528151919291620000f69160009162000188565b5080516200010c90600190602084019062000188565b50505062000129620001236200013260201b60201c565b62000136565b600d5562000285565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001969062000248565b90600052602060002090601f016020900481019282620001ba576000855562000205565b82601f10620001d557805160ff191683800117855562000205565b8280016001018555821562000205579182015b8281111562000205578251825591602001919060010190620001e8565b506200021392915062000217565b5090565b5b8082111562000213576000815560010162000218565b6000602082840312156200024157600080fd5b5051919050565b600181811c908216806200025d57607f821691505b602082108114156200027f57634e487b7160e01b600052602260045260246000fd5b50919050565b61290280620002956000396000f3fe6080604052600436106102725760003560e01c80637cb647591161014f578063c87b56dd116100c1578063e985e9c51161007a578063e985e9c514610759578063ee8cdd4e146107a2578063eff31e9e146107c2578063f0292a03146107d8578063f2fde38b146107ee578063f38cfa731461080e57600080fd5b8063c87b56dd146106bb578063cbfc4bce146106db578063cef220a3146106fb578063db006a751461070e578063e6a5931e1461072e578063e8a3d4851461074457600080fd5b8063938e3d7b11610113578063938e3d7b1461060657806395d89b4114610626578063a22cb4651461063b578063af9205821461065b578063b32c56801461067b578063b88d4fde1461069b57600080fd5b80637cb647591461054f5780638462151c1461056f578063894589161461059c5780638d859f3e146105d25780638da5cb5b146105e857600080fd5b806338907118116101e85780635e84d723116101ac5780635e84d723146104a55780636352211e146104ba5780636edc4388146104da57806370a08231146104fa578063715018a61461051a578063718bc4af1461052f57600080fd5b806338907118146104105780633ccfd60b1461043057806342842e0e1461044557806355f804b31461046557806356a87caa1461048557600080fd5b806318160ddd1161023a57806318160ddd1461035e578063188866571461038157806322f3e2d41461039757806323b872dd146103b15780632750fc78146103d157806329fc6bae146103f157600080fd5b806301ffc9a714610277578063057c3c83146102ac57806306fdde03146102fa578063081812fc1461031c578063095ea7b31461033c575b600080fd5b34801561028357600080fd5b506102976102923660046121a1565b610823565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102e26102c73660046121c5565b6000908152600f60205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016102a3565b34801561030657600080fd5b5061030f610875565b6040516102a39190612236565b34801561032857600080fd5b506102e26103373660046121c5565b610907565b34801561034857600080fd5b5061035c610357366004612265565b6109a1565b005b34801561036a57600080fd5b50610373610ab7565b6040519081526020016102a3565b34801561038d57600080fd5b50610373600b5481565b3480156103a357600080fd5b50600a546102979060ff1681565b3480156103bd57600080fd5b5061035c6103cc36600461228f565b610ac7565b3480156103dd57600080fd5b5061035c6103ec3660046122db565b610af8565b3480156103fd57600080fd5b50600a5461029790610100900460ff1681565b34801561041c57600080fd5b5061035c61042b3660046122db565b610b35565b34801561043c57600080fd5b5061035c610b7b565b34801561045157600080fd5b5061035c61046036600461228f565b610c1a565b34801561047157600080fd5b5061035c6104803660046122f6565b610c35565b34801561049157600080fd5b5061035c6104a03660046121c5565b610c6b565b3480156104b157600080fd5b50600c54610373565b3480156104c657600080fd5b506102e26104d53660046121c5565b610c9a565b3480156104e657600080fd5b5061035c6104f53660046121c5565b610d11565b34801561050657600080fd5b50610373610515366004612368565b610dab565b34801561052657600080fd5b5061035c610e32565b34801561053b57600080fd5b5061035c61054a3660046122db565b610e68565b34801561055b57600080fd5b5061035c61056a3660046121c5565b610eac565b34801561057b57600080fd5b5061058f61058a366004612368565b610edb565b6040516102a39190612383565b3480156105a857600080fd5b506103736105b7366004612368565b6001600160a01b03166000908152600e602052604090205490565b3480156105de57600080fd5b5061037360085481565b3480156105f457600080fd5b506006546001600160a01b03166102e2565b34801561061257600080fd5b5061035c6106213660046122f6565b610fd9565b34801561063257600080fd5b5061030f61100f565b34801561064757600080fd5b5061035c6106563660046123c7565b61101e565b34801561066757600080fd5b50600a546102979062010000900460ff1681565b34801561068757600080fd5b50610297610696366004612446565b611029565b3480156106a757600080fd5b5061035c6106b63660046124af565b6110af565b3480156106c757600080fd5b5061030f6106d63660046121c5565b6110e7565b3480156106e757600080fd5b5061035c6106f6366004612368565b611177565b61035c61070936600461258b565b61129c565b34801561071a57600080fd5b506102976107293660046121c5565b611672565b34801561073a57600080fd5b50610373600c5481565b34801561075057600080fd5b5061030f6117ad565b34801561076557600080fd5b506102976107743660046125cd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ae57600080fd5b5061035c6107bd3660046121c5565b6117bc565b3480156107ce57600080fd5b5061037360095481565b3480156107e457600080fd5b506103736103e881565b3480156107fa57600080fd5b5061035c610809366004612368565b6117eb565b34801561081a57600080fd5b5061058f611886565b60006001600160e01b031982166380ac58cd60e01b148061085457506001600160e01b03198216635b5e139f60e01b145b8061086f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610884906125f7565b80601f01602080910402602001604051908101604052809291908181526020018280546108b0906125f7565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109ac82610c9a565b9050806001600160a01b0316836001600160a01b03161415610a1a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097c565b336001600160a01b0382161480610a365750610a368133610774565b610aa85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097c565b610ab283836118dd565b505050565b6000610ac260075490565b905090565b610ad1338261194b565b610aed5760405162461bcd60e51b815260040161097c9061262c565b610ab2838383611a42565b6006546001600160a01b03163314610b225760405162461bcd60e51b815260040161097c9061267d565b600a805460ff1916911515919091179055565b6006546001600160a01b03163314610b5f5760405162461bcd60e51b815260040161097c9061267d565b600a8054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610ba55760405162461bcd60e51b815260040161097c9061267d565b4780610be95760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974647261772160681b604482015260640161097c565b604051339082156108fc029083906000818181858888f19350505050158015610c16573d6000803e3d6000fd5b5050565b610ab2838383604051806020016040528060008152506110af565b6006546001600160a01b03163314610c5f5760405162461bcd60e51b815260040161097c9061267d565b610ab2601283836120f2565b6006546001600160a01b03163314610c955760405162461bcd60e51b815260040161097c9061267d565b600955565b6000818152600260205260408120546001600160a01b03168061086f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097c565b6006546001600160a01b03163314610d3b5760405162461bcd60e51b815260040161097c9061267d565b600081118015610d4c57506103e881105b610da65760405162461bcd60e51b815260206004820152602560248201527f4e65772072657365727665206d7573742062652067726561746572207468616e604482015264207a65726f60d81b606482015260840161097c565b600b55565b60006001600160a01b038216610e165760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e5c5760405162461bcd60e51b815260040161097c9061267d565b610e666000611bde565b565b6006546001600160a01b03163314610e925760405162461bcd60e51b815260040161097c9061267d565b600a80549115156101000261ff0019909216919091179055565b6006546001600160a01b03163314610ed65760405162461bcd60e51b815260040161097c9061267d565b600d55565b60606000610ee883610dab565b905080610f095760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610f2457610f24612499565b604051908082528060200260200182016040528015610f4d578160200160208202803683370190505b5090506000610f5a610ab7565b9050600060015b828111610fc857866001600160a01b0316610f7b82610c9a565b6001600160a01b03161415610fb65780848381518110610f9d57610f9d6126b2565b602090810291909101015281610fb2816126de565b9250505b80610fc0816126de565b915050610f61565b509195945050505050565b50919050565b6006546001600160a01b031633146110035760405162461bcd60e51b815260040161097c9061267d565b610ab2601183836120f2565b606060018054610884906125f7565b610c16338383611c30565b6040516bffffffffffffffffffffffff19606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506110a684848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611cff565b95945050505050565b6110b9338361194b565b6110d55760405162461bcd60e51b815260040161097c9061262c565b6110e184848484611d15565b50505050565b6000818152600260205260409020546060906001600160a01b03166111455760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161097c565b601261115083611d48565b604051602001611161929190612715565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146111a15760405162461bcd60e51b815260040161097c9061267d565b6103e86111ac610ab7565b106111f95760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161097c565b600954601054106112425760405162461bcd60e51b815260206004820152601360248201527213585e081c995cd95c9d99481c995858da1959606a1b604482015260640161097c565b611250600780546001019055565b600061125b60075490565b601080546001810182556000919091527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672018190559050610c168282611e46565b600a5460ff166112e75760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161097c565b6103e86112f2610ab7565b1061133f5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161097c565b604080516bffffffffffffffffffffffff193360601b166020808301919091528251808303601401815260349092019092528051910120600a54610100900460ff1661138c5760016113cd565b6113cd83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611cff565b6114195760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604482015260640161097c565b600034118015611433575060085461143190346127c9565b155b61148a5760405162461bcd60e51b815260206004820152602260248201527f416d6f756e74206d7573742062652061206d756c7469706c65206f6620707269604482015261636560f01b606482015260840161097c565b60006008543461149a91906127dd565b9050600181101580156114af5750600b548111155b6114fb5760405162461bcd60e51b815260206004820152601b60248201527f416d6f756e742073686f756c64206265206174206c6561737420310000000000604482015260640161097c565b600b54336000908152600e60205260409020546115199083906127f1565b11156115675760405162461bcd60e51b815260206004820152601f60248201527f50757263686173652065786365656473207075726368617365206c696d697400604482015260640161097c565b600061157260075490565b61157c90836127f1565b90506009546103e861158e9190612809565b8111156115e95760405162461bcd60e51b815260206004820152602360248201527f507572636861736520776f756c6420657863656564207075626c696320737570604482015262706c7960e81b606482015260840161097c565b336000908152600e6020526040812080548492906116089084906127f1565b9250508190555081600c600082825461162191906127f1565b90915550600090505b8281101561166a57611640600780546001019055565b600061164b60075490565b90506116573382611e46565b5080611662816126de565b91505061162a565b505050505050565b600a5460009062010000900460ff166116cd5760405162461bcd60e51b815260206004820152601760248201527f52656465656d696e67206e6f7420617661696c61626c65000000000000000000604482015260640161097c565b336116d783610c9a565b6001600160a01b0316146117245760405162461bcd60e51b8152602060048201526014602482015273165bdd481b5d5cdd081bdddb881d1a194813919560621b604482015260640161097c565b6000828152600f60205260409020546001600160a01b0316156117895760405162461bcd60e51b815260206004820152601c60248201527f596f7520616c72656164792072656465656d656420746865204e465400000000604482015260640161097c565b506000908152600f6020526040902080546001600160a01b03191633179055600190565b606060118054610884906125f7565b6006546001600160a01b031633146117e65760405162461bcd60e51b815260040161097c9061267d565b600855565b6006546001600160a01b031633146118155760405162461bcd60e51b815260040161097c9061267d565b6001600160a01b03811661187a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097c565b61188381611bde565b50565b606060108054806020026020016040519081016040528092919081815260200182805480156108fd57602002820191906000526020600020905b8154815260200190600101908083116118c0575050505050905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061191282610c9a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097c565b60006119cf83610c9a565b9050806001600160a01b0316846001600160a01b03161480611a0a5750836001600160a01b03166119ff84610907565b6001600160a01b0316145b80611a3a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a5582610c9a565b6001600160a01b031614611ab95760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161097c565b6001600160a01b038216611b1b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097c565b611b266000826118dd565b6001600160a01b0383166000908152600360205260408120805460019290611b4f908490612809565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b7d9084906127f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c925760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082611d0c8584611f88565b14949350505050565b611d20848484611a42565b611d2c84848484611ff4565b6110e15760405162461bcd60e51b815260040161097c90612820565b606081611d6c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d965780611d80816126de565b9150611d8f9050600a836127dd565b9150611d70565b60008167ffffffffffffffff811115611db157611db1612499565b6040519080825280601f01601f191660200182016040528015611ddb576020820181803683370190505b5090505b8415611a3a57611df0600183612809565b9150611dfd600a866127c9565b611e089060306127f1565b60f81b818381518110611e1d57611e1d6126b2565b60200101906001600160f81b031916908160001a905350611e3f600a866127dd565b9450611ddf565b6001600160a01b038216611e9c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097c565b6000818152600260205260409020546001600160a01b031615611f015760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097c565b6001600160a01b0382166000908152600360205260408120805460019290611f2a9084906127f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015610f01576000858281518110611faa57611faa6126b2565b60200260200101519050808311611fd05760008381526020829052604090209250611fe1565b600081815260208490526040902092505b5080611fec816126de565b915050611f8d565b60006001600160a01b0384163b156120e757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612038903390899088908890600401612872565b6020604051808303816000875af1925050508015612073575060408051601f3d908101601f19168201909252612070918101906128af565b60015b6120cd573d8080156120a1576040519150601f19603f3d011682016040523d82523d6000602084013e6120a6565b606091505b5080516120c55760405162461bcd60e51b815260040161097c90612820565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a3a565b506001949350505050565b8280546120fe906125f7565b90600052602060002090601f0160209004810192826121205760008555612166565b82601f106121395782800160ff19823516178555612166565b82800160010185558215612166579182015b8281111561216657823582559160200191906001019061214b565b50612172929150612176565b5090565b5b808211156121725760008155600101612177565b6001600160e01b03198116811461188357600080fd5b6000602082840312156121b357600080fd5b81356121be8161218b565b9392505050565b6000602082840312156121d757600080fd5b5035919050565b60005b838110156121f95781810151838201526020016121e1565b838111156110e15750506000910152565b600081518084526122228160208601602086016121de565b601f01601f19169290920160200192915050565b6020815260006121be602083018461220a565b80356001600160a01b038116811461226057600080fd5b919050565b6000806040838503121561227857600080fd5b61228183612249565b946020939093013593505050565b6000806000606084860312156122a457600080fd5b6122ad84612249565b92506122bb60208501612249565b9150604084013590509250925092565b8035801515811461226057600080fd5b6000602082840312156122ed57600080fd5b6121be826122cb565b6000806020838503121561230957600080fd5b823567ffffffffffffffff8082111561232157600080fd5b818501915085601f83011261233557600080fd5b81358181111561234457600080fd5b86602082850101111561235657600080fd5b60209290920196919550909350505050565b60006020828403121561237a57600080fd5b6121be82612249565b6020808252825182820181905260009190848201906040850190845b818110156123bb5783518352928401929184019160010161239f565b50909695505050505050565b600080604083850312156123da57600080fd5b6123e383612249565b91506123f1602084016122cb565b90509250929050565b60008083601f84011261240c57600080fd5b50813567ffffffffffffffff81111561242457600080fd5b6020830191508360208260051b850101111561243f57600080fd5b9250929050565b60008060006040848603121561245b57600080fd5b61246484612249565b9250602084013567ffffffffffffffff81111561248057600080fd5b61248c868287016123fa565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156124c557600080fd5b6124ce85612249565b93506124dc60208601612249565b925060408501359150606085013567ffffffffffffffff8082111561250057600080fd5b818701915087601f83011261251457600080fd5b81358181111561252657612526612499565b604051601f8201601f19908116603f0116810190838211818310171561254e5761254e612499565b816040528281528a602084870101111561256757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806020838503121561259e57600080fd5b823567ffffffffffffffff8111156125b557600080fd5b6125c1858286016123fa565b90969095509350505050565b600080604083850312156125e057600080fd5b6125e983612249565b91506123f160208401612249565b600181811c9082168061260b57607f821691505b60208210811415610fd357634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156126f2576126f26126c8565b5060010190565b6000815161270b8185602086016121de565b9290920192915050565b600080845481600182811c91508083168061273157607f831692505b602080841082141561275157634e487b7160e01b86526022600452602486fd5b8180156127655760018114612776576127a3565b60ff198616895284890196506127a3565b60008b81526020902060005b8681101561279b5781548b820152908501908301612782565b505084890196505b5050505050506110a681856126f9565b634e487b7160e01b600052601260045260246000fd5b6000826127d8576127d86127b3565b500690565b6000826127ec576127ec6127b3565b500490565b60008219821115612804576128046126c8565b500190565b60008282101561281b5761281b6126c8565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a59083018461220a565b9695505050505050565b6000602082840312156128c157600080fd5b81516121be8161218b56fea2646970667358221220e0445af6a37249bd01a4c1906cb6103b36dfa3e3811ca601ab62988013ca65ea64736f6c634300080a00337a7d53d49380e66e6e4499853f61109a1c4ef0c5cccc4a7d668760def8b94784

Deployed Bytecode

0x6080604052600436106102725760003560e01c80637cb647591161014f578063c87b56dd116100c1578063e985e9c51161007a578063e985e9c514610759578063ee8cdd4e146107a2578063eff31e9e146107c2578063f0292a03146107d8578063f2fde38b146107ee578063f38cfa731461080e57600080fd5b8063c87b56dd146106bb578063cbfc4bce146106db578063cef220a3146106fb578063db006a751461070e578063e6a5931e1461072e578063e8a3d4851461074457600080fd5b8063938e3d7b11610113578063938e3d7b1461060657806395d89b4114610626578063a22cb4651461063b578063af9205821461065b578063b32c56801461067b578063b88d4fde1461069b57600080fd5b80637cb647591461054f5780638462151c1461056f578063894589161461059c5780638d859f3e146105d25780638da5cb5b146105e857600080fd5b806338907118116101e85780635e84d723116101ac5780635e84d723146104a55780636352211e146104ba5780636edc4388146104da57806370a08231146104fa578063715018a61461051a578063718bc4af1461052f57600080fd5b806338907118146104105780633ccfd60b1461043057806342842e0e1461044557806355f804b31461046557806356a87caa1461048557600080fd5b806318160ddd1161023a57806318160ddd1461035e578063188866571461038157806322f3e2d41461039757806323b872dd146103b15780632750fc78146103d157806329fc6bae146103f157600080fd5b806301ffc9a714610277578063057c3c83146102ac57806306fdde03146102fa578063081812fc1461031c578063095ea7b31461033c575b600080fd5b34801561028357600080fd5b506102976102923660046121a1565b610823565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102e26102c73660046121c5565b6000908152600f60205260409020546001600160a01b031690565b6040516001600160a01b0390911681526020016102a3565b34801561030657600080fd5b5061030f610875565b6040516102a39190612236565b34801561032857600080fd5b506102e26103373660046121c5565b610907565b34801561034857600080fd5b5061035c610357366004612265565b6109a1565b005b34801561036a57600080fd5b50610373610ab7565b6040519081526020016102a3565b34801561038d57600080fd5b50610373600b5481565b3480156103a357600080fd5b50600a546102979060ff1681565b3480156103bd57600080fd5b5061035c6103cc36600461228f565b610ac7565b3480156103dd57600080fd5b5061035c6103ec3660046122db565b610af8565b3480156103fd57600080fd5b50600a5461029790610100900460ff1681565b34801561041c57600080fd5b5061035c61042b3660046122db565b610b35565b34801561043c57600080fd5b5061035c610b7b565b34801561045157600080fd5b5061035c61046036600461228f565b610c1a565b34801561047157600080fd5b5061035c6104803660046122f6565b610c35565b34801561049157600080fd5b5061035c6104a03660046121c5565b610c6b565b3480156104b157600080fd5b50600c54610373565b3480156104c657600080fd5b506102e26104d53660046121c5565b610c9a565b3480156104e657600080fd5b5061035c6104f53660046121c5565b610d11565b34801561050657600080fd5b50610373610515366004612368565b610dab565b34801561052657600080fd5b5061035c610e32565b34801561053b57600080fd5b5061035c61054a3660046122db565b610e68565b34801561055b57600080fd5b5061035c61056a3660046121c5565b610eac565b34801561057b57600080fd5b5061058f61058a366004612368565b610edb565b6040516102a39190612383565b3480156105a857600080fd5b506103736105b7366004612368565b6001600160a01b03166000908152600e602052604090205490565b3480156105de57600080fd5b5061037360085481565b3480156105f457600080fd5b506006546001600160a01b03166102e2565b34801561061257600080fd5b5061035c6106213660046122f6565b610fd9565b34801561063257600080fd5b5061030f61100f565b34801561064757600080fd5b5061035c6106563660046123c7565b61101e565b34801561066757600080fd5b50600a546102979062010000900460ff1681565b34801561068757600080fd5b50610297610696366004612446565b611029565b3480156106a757600080fd5b5061035c6106b63660046124af565b6110af565b3480156106c757600080fd5b5061030f6106d63660046121c5565b6110e7565b3480156106e757600080fd5b5061035c6106f6366004612368565b611177565b61035c61070936600461258b565b61129c565b34801561071a57600080fd5b506102976107293660046121c5565b611672565b34801561073a57600080fd5b50610373600c5481565b34801561075057600080fd5b5061030f6117ad565b34801561076557600080fd5b506102976107743660046125cd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ae57600080fd5b5061035c6107bd3660046121c5565b6117bc565b3480156107ce57600080fd5b5061037360095481565b3480156107e457600080fd5b506103736103e881565b3480156107fa57600080fd5b5061035c610809366004612368565b6117eb565b34801561081a57600080fd5b5061058f611886565b60006001600160e01b031982166380ac58cd60e01b148061085457506001600160e01b03198216635b5e139f60e01b145b8061086f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610884906125f7565b80601f01602080910402602001604051908101604052809291908181526020018280546108b0906125f7565b80156108fd5780601f106108d2576101008083540402835291602001916108fd565b820191906000526020600020905b8154815290600101906020018083116108e057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109ac82610c9a565b9050806001600160a01b0316836001600160a01b03161415610a1a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097c565b336001600160a01b0382161480610a365750610a368133610774565b610aa85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097c565b610ab283836118dd565b505050565b6000610ac260075490565b905090565b610ad1338261194b565b610aed5760405162461bcd60e51b815260040161097c9061262c565b610ab2838383611a42565b6006546001600160a01b03163314610b225760405162461bcd60e51b815260040161097c9061267d565b600a805460ff1916911515919091179055565b6006546001600160a01b03163314610b5f5760405162461bcd60e51b815260040161097c9061267d565b600a8054911515620100000262ff000019909216919091179055565b6006546001600160a01b03163314610ba55760405162461bcd60e51b815260040161097c9061267d565b4780610be95760405162461bcd60e51b81526020600482015260136024820152724e6f7468696e6720746f20776974647261772160681b604482015260640161097c565b604051339082156108fc029083906000818181858888f19350505050158015610c16573d6000803e3d6000fd5b5050565b610ab2838383604051806020016040528060008152506110af565b6006546001600160a01b03163314610c5f5760405162461bcd60e51b815260040161097c9061267d565b610ab2601283836120f2565b6006546001600160a01b03163314610c955760405162461bcd60e51b815260040161097c9061267d565b600955565b6000818152600260205260408120546001600160a01b03168061086f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097c565b6006546001600160a01b03163314610d3b5760405162461bcd60e51b815260040161097c9061267d565b600081118015610d4c57506103e881105b610da65760405162461bcd60e51b815260206004820152602560248201527f4e65772072657365727665206d7573742062652067726561746572207468616e604482015264207a65726f60d81b606482015260840161097c565b600b55565b60006001600160a01b038216610e165760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097c565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e5c5760405162461bcd60e51b815260040161097c9061267d565b610e666000611bde565b565b6006546001600160a01b03163314610e925760405162461bcd60e51b815260040161097c9061267d565b600a80549115156101000261ff0019909216919091179055565b6006546001600160a01b03163314610ed65760405162461bcd60e51b815260040161097c9061267d565b600d55565b60606000610ee883610dab565b905080610f095760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610f2457610f24612499565b604051908082528060200260200182016040528015610f4d578160200160208202803683370190505b5090506000610f5a610ab7565b9050600060015b828111610fc857866001600160a01b0316610f7b82610c9a565b6001600160a01b03161415610fb65780848381518110610f9d57610f9d6126b2565b602090810291909101015281610fb2816126de565b9250505b80610fc0816126de565b915050610f61565b509195945050505050565b50919050565b6006546001600160a01b031633146110035760405162461bcd60e51b815260040161097c9061267d565b610ab2601183836120f2565b606060018054610884906125f7565b610c16338383611c30565b6040516bffffffffffffffffffffffff19606085901b16602082015260009081906034016040516020818303038152906040528051906020012090506110a684848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611cff565b95945050505050565b6110b9338361194b565b6110d55760405162461bcd60e51b815260040161097c9061262c565b6110e184848484611d15565b50505050565b6000818152600260205260409020546060906001600160a01b03166111455760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161097c565b601261115083611d48565b604051602001611161929190612715565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146111a15760405162461bcd60e51b815260040161097c9061267d565b6103e86111ac610ab7565b106111f95760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161097c565b600954601054106112425760405162461bcd60e51b815260206004820152601360248201527213585e081c995cd95c9d99481c995858da1959606a1b604482015260640161097c565b611250600780546001019055565b600061125b60075490565b601080546001810182556000919091527f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae672018190559050610c168282611e46565b600a5460ff166112e75760405162461bcd60e51b8152602060048201526016602482015275436f6e7472616374206973206e6f742061637469766560501b604482015260640161097c565b6103e86112f2610ab7565b1061133f5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604482015260640161097c565b604080516bffffffffffffffffffffffff193360601b166020808301919091528251808303601401815260349092019092528051910120600a54610100900460ff1661138c5760016113cd565b6113cd83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600d549150849050611cff565b6114195760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604482015260640161097c565b600034118015611433575060085461143190346127c9565b155b61148a5760405162461bcd60e51b815260206004820152602260248201527f416d6f756e74206d7573742062652061206d756c7469706c65206f6620707269604482015261636560f01b606482015260840161097c565b60006008543461149a91906127dd565b9050600181101580156114af5750600b548111155b6114fb5760405162461bcd60e51b815260206004820152601b60248201527f416d6f756e742073686f756c64206265206174206c6561737420310000000000604482015260640161097c565b600b54336000908152600e60205260409020546115199083906127f1565b11156115675760405162461bcd60e51b815260206004820152601f60248201527f50757263686173652065786365656473207075726368617365206c696d697400604482015260640161097c565b600061157260075490565b61157c90836127f1565b90506009546103e861158e9190612809565b8111156115e95760405162461bcd60e51b815260206004820152602360248201527f507572636861736520776f756c6420657863656564207075626c696320737570604482015262706c7960e81b606482015260840161097c565b336000908152600e6020526040812080548492906116089084906127f1565b9250508190555081600c600082825461162191906127f1565b90915550600090505b8281101561166a57611640600780546001019055565b600061164b60075490565b90506116573382611e46565b5080611662816126de565b91505061162a565b505050505050565b600a5460009062010000900460ff166116cd5760405162461bcd60e51b815260206004820152601760248201527f52656465656d696e67206e6f7420617661696c61626c65000000000000000000604482015260640161097c565b336116d783610c9a565b6001600160a01b0316146117245760405162461bcd60e51b8152602060048201526014602482015273165bdd481b5d5cdd081bdddb881d1a194813919560621b604482015260640161097c565b6000828152600f60205260409020546001600160a01b0316156117895760405162461bcd60e51b815260206004820152601c60248201527f596f7520616c72656164792072656465656d656420746865204e465400000000604482015260640161097c565b506000908152600f6020526040902080546001600160a01b03191633179055600190565b606060118054610884906125f7565b6006546001600160a01b031633146117e65760405162461bcd60e51b815260040161097c9061267d565b600855565b6006546001600160a01b031633146118155760405162461bcd60e51b815260040161097c9061267d565b6001600160a01b03811661187a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097c565b61188381611bde565b50565b606060108054806020026020016040519081016040528092919081815260200182805480156108fd57602002820191906000526020600020905b8154815260200190600101908083116118c0575050505050905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061191282610c9a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097c565b60006119cf83610c9a565b9050806001600160a01b0316846001600160a01b03161480611a0a5750836001600160a01b03166119ff84610907565b6001600160a01b0316145b80611a3a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a5582610c9a565b6001600160a01b031614611ab95760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161097c565b6001600160a01b038216611b1b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097c565b611b266000826118dd565b6001600160a01b0383166000908152600360205260408120805460019290611b4f908490612809565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b7d9084906127f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c925760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b600082611d0c8584611f88565b14949350505050565b611d20848484611a42565b611d2c84848484611ff4565b6110e15760405162461bcd60e51b815260040161097c90612820565b606081611d6c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d965780611d80816126de565b9150611d8f9050600a836127dd565b9150611d70565b60008167ffffffffffffffff811115611db157611db1612499565b6040519080825280601f01601f191660200182016040528015611ddb576020820181803683370190505b5090505b8415611a3a57611df0600183612809565b9150611dfd600a866127c9565b611e089060306127f1565b60f81b818381518110611e1d57611e1d6126b2565b60200101906001600160f81b031916908160001a905350611e3f600a866127dd565b9450611ddf565b6001600160a01b038216611e9c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097c565b6000818152600260205260409020546001600160a01b031615611f015760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097c565b6001600160a01b0382166000908152600360205260408120805460019290611f2a9084906127f1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015610f01576000858281518110611faa57611faa6126b2565b60200260200101519050808311611fd05760008381526020829052604090209250611fe1565b600081815260208490526040902092505b5080611fec816126de565b915050611f8d565b60006001600160a01b0384163b156120e757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612038903390899088908890600401612872565b6020604051808303816000875af1925050508015612073575060408051601f3d908101601f19168201909252612070918101906128af565b60015b6120cd573d8080156120a1576040519150601f19603f3d011682016040523d82523d6000602084013e6120a6565b606091505b5080516120c55760405162461bcd60e51b815260040161097c90612820565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a3a565b506001949350505050565b8280546120fe906125f7565b90600052602060002090601f0160209004810192826121205760008555612166565b82601f106121395782800160ff19823516178555612166565b82800160010185558215612166579182015b8281111561216657823582559160200191906001019061214b565b50612172929150612176565b5090565b5b808211156121725760008155600101612177565b6001600160e01b03198116811461188357600080fd5b6000602082840312156121b357600080fd5b81356121be8161218b565b9392505050565b6000602082840312156121d757600080fd5b5035919050565b60005b838110156121f95781810151838201526020016121e1565b838111156110e15750506000910152565b600081518084526122228160208601602086016121de565b601f01601f19169290920160200192915050565b6020815260006121be602083018461220a565b80356001600160a01b038116811461226057600080fd5b919050565b6000806040838503121561227857600080fd5b61228183612249565b946020939093013593505050565b6000806000606084860312156122a457600080fd5b6122ad84612249565b92506122bb60208501612249565b9150604084013590509250925092565b8035801515811461226057600080fd5b6000602082840312156122ed57600080fd5b6121be826122cb565b6000806020838503121561230957600080fd5b823567ffffffffffffffff8082111561232157600080fd5b818501915085601f83011261233557600080fd5b81358181111561234457600080fd5b86602082850101111561235657600080fd5b60209290920196919550909350505050565b60006020828403121561237a57600080fd5b6121be82612249565b6020808252825182820181905260009190848201906040850190845b818110156123bb5783518352928401929184019160010161239f565b50909695505050505050565b600080604083850312156123da57600080fd5b6123e383612249565b91506123f1602084016122cb565b90509250929050565b60008083601f84011261240c57600080fd5b50813567ffffffffffffffff81111561242457600080fd5b6020830191508360208260051b850101111561243f57600080fd5b9250929050565b60008060006040848603121561245b57600080fd5b61246484612249565b9250602084013567ffffffffffffffff81111561248057600080fd5b61248c868287016123fa565b9497909650939450505050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156124c557600080fd5b6124ce85612249565b93506124dc60208601612249565b925060408501359150606085013567ffffffffffffffff8082111561250057600080fd5b818701915087601f83011261251457600080fd5b81358181111561252657612526612499565b604051601f8201601f19908116603f0116810190838211818310171561254e5761254e612499565b816040528281528a602084870101111561256757600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806020838503121561259e57600080fd5b823567ffffffffffffffff8111156125b557600080fd5b6125c1858286016123fa565b90969095509350505050565b600080604083850312156125e057600080fd5b6125e983612249565b91506123f160208401612249565b600181811c9082168061260b57607f821691505b60208210811415610fd357634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156126f2576126f26126c8565b5060010190565b6000815161270b8185602086016121de565b9290920192915050565b600080845481600182811c91508083168061273157607f831692505b602080841082141561275157634e487b7160e01b86526022600452602486fd5b8180156127655760018114612776576127a3565b60ff198616895284890196506127a3565b60008b81526020902060005b8681101561279b5781548b820152908501908301612782565b505084890196505b5050505050506110a681856126f9565b634e487b7160e01b600052601260045260246000fd5b6000826127d8576127d86127b3565b500690565b6000826127ec576127ec6127b3565b500490565b60008219821115612804576128046126c8565b500190565b60008282101561281b5761281b6126c8565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128a59083018461220a565b9695505050505050565b6000602082840312156128c157600080fd5b81516121be8161218b56fea2646970667358221220e0445af6a37249bd01a4c1906cb6103b36dfa3e3811ca601ab62988013ca65ea64736f6c634300080a0033

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

7a7d53d49380e66e6e4499853f61109a1c4ef0c5cccc4a7d668760def8b94784

-----Decoded View---------------
Arg [0] : initialRoot (bytes32): 0x7a7d53d49380e66e6e4499853f61109a1c4ef0c5cccc4a7d668760def8b94784

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


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.