ETH Price: $2,907.79 (-0.10%)
Gas: 3 Gwei

Token

ALPACADABRAZ 3D (PACA 3D)
 

Overview

Max Total Supply

19,969 PACA 3D

Holders

7,864

Market

Volume (24H)

0.0015 ETH

Min Price (24H)

$4.36 @ 0.001500 ETH

Max Price (24H)

$4.36 @ 0.001500 ETH

Other Info

Balance
1 PACA 3D
0x0305dc19ae24847bcc15c9cfd29ae1d067fb72d9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

This is our 3D Collection - to visit our Genesis Collection .3D Pacas are ticket to the upcoming PacaVerse.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Alpacadabraz_3D

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
File 1 of 12 : Alpacadabraz_3D.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.9;

import "Ownable.sol";
import "ERC721.sol";
import "MerkleProof.sol";

contract Alpacadabraz_3D is ERC721, Ownable {

    bytes32 public merkleRoot = ""; // Construct this from (address, amount) tuple elements for whitelisted mints
    bytes32 public freeMintMerkleRoot = ""; // Construct this from (address, amount) tuple elements for free mints
    mapping(address => uint) public whitelistRemaining; // Maps user address to their remaining mints if they have minted some but not all of their allocation
    mapping(address => bool) public whitelistUsed; // Maps user address to bool, true if user has minted
    mapping(address => uint) public freeMintsRemaining; // Maps user address to their remaining free mints if they have minted some but not all of their allocation
    mapping(address => bool) public freeMintUsed; // Maps user address to bool, true if user has used a free mint

    uint public mintPrice = 0.296 ether;
    uint public whitelistPrice = 0.96 ether;
    uint public maxItems = 19969;
    uint public totalSupply = 0;
    uint public maxPublicMint = 4700;
    uint public publicMinted = 0;
    uint public maxItemsPerTx = 50;
    uint public maxItemsPerPublicMint = 10;
    address public recipient;
    string public _baseTokenURI;
    uint public startTimestamp;

    event Mint(address indexed owner, uint indexed tokenId);

    constructor(address _recipient) ERC721("ALPACADABRAZ 3D", "PACA 3D") {
        recipient = _recipient;
    }

    modifier mintingOpen() {
        require(startTimestamp != 0, "Start timestamp not set");
        require(block.timestamp >= startTimestamp, "Not open yet");
        _;
    }

    function ownerMint(uint amount) external onlyOwner {
        _mintWithoutValidation(msg.sender, amount);
    }

    function publicMint(uint amount) external payable mintingOpen {
        // Require nonzero amount
        require(amount > 0, "Can't mint zero");

        // Check proper amount sent
        require(msg.value == amount * mintPrice, "Send proper ETH amount");

        // Check max items per public mint
        require(amount <= maxItemsPerPublicMint, "publicMint: Surpasses maxItemsPerPublicMint");

        // Check public mint supply cap
        require(publicMinted + amount <= maxPublicMint, "publicMint: Sold out");
        publicMinted += amount;

        _mintWithoutValidation(msg.sender, amount);
    }

    function whitelistMint(uint amount, uint totalAllocation, bytes32 leaf, bytes32[] memory proof) external payable mintingOpen {
        // Verify that (leaf, proof) matches the Merkle root
        require(verify(merkleRoot, leaf, proof), "Not a valid leaf in the Merkle tree");

        // Verify that (msg.sender, amount) correspond to Merkle leaf
        require(keccak256(abi.encodePacked(msg.sender, totalAllocation)) == leaf, "Sender and amount don't match Merkle leaf");

        // Create storage element tracking user mints if this is the first mint for them
        if (!whitelistUsed[msg.sender]) {
            whitelistUsed[msg.sender] = true;
            whitelistRemaining[msg.sender] = totalAllocation;
        } else if (whitelistRemaining[msg.sender] > totalAllocation){
            whitelistRemaining[msg.sender] = totalAllocation;
        }

        // Require nonzero amount
        require(amount > 0, "Can't mint zero");

        // Check proper amount sent
        require(msg.value == amount * whitelistPrice, "Send proper ETH amount");

        require(whitelistRemaining[msg.sender] >= amount, "Can't mint more than remaining allocation");

        whitelistRemaining[msg.sender] -= amount;
        _mintWithoutValidation(msg.sender, amount);
    }

    function freeMint(uint amount, uint totalAllocation, bytes32 leaf, bytes32[] memory proof) external payable {
        // Verify that (leaf, proof) matches the Merkle root
        require(verify(freeMintMerkleRoot, leaf, proof), "Not a valid leaf in the Merkle tree");

        // Verify that (msg.sender, amount) correspond to Merkle leaf
        require(keccak256(abi.encodePacked(msg.sender, totalAllocation)) == leaf, "Sender and amount don't match Merkle leaf");

        // Create storage element tracking user mints if this is the first mint for them
        if (!freeMintUsed[msg.sender]) {        
            freeMintUsed[msg.sender] = true;
            freeMintsRemaining[msg.sender] = totalAllocation;
        } else if (freeMintsRemaining[msg.sender] > totalAllocation){
            freeMintsRemaining[msg.sender] = totalAllocation;
        }

        // Require nonzero amount
        require(amount > 0, "Can't mint zero");

        // Check proper amount sent
        require(msg.value == 0, "Send proper ETH amount");

        require(freeMintsRemaining[msg.sender] >= amount, "Can't mint more than remaining allocation");

        freeMintsRemaining[msg.sender] -= amount;
        _mintWithoutValidation(msg.sender, amount);
    }

    function _mintWithoutValidation(address to, uint amount) internal {
        require(totalSupply + amount <= maxItems, "mintWithoutValidation: Sold out");
        require(amount <= maxItemsPerTx, "mintWithoutValidation: Surpasses maxItemsPerTx");
        for (uint i = 0; i < amount; i++) {
            _mint(to, totalSupply);
            emit Mint(to, totalSupply);
            totalSupply += 1;
        }
    }

    function verify(bytes32 root, bytes32 leaf, bytes32[] memory proof) public pure returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    // ADMIN FUNCTIONALITY

    function setMintPrice(uint _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setWhitelistPrice(uint _whitelistPrice) external onlyOwner {
        whitelistPrice = _whitelistPrice;
    }

    function setMaxPublicMint(uint _maxPublicMint) external onlyOwner {
        maxPublicMint = _maxPublicMint;
    }

    function setRecipient(address _recipient) external onlyOwner {
        recipient = _recipient;
    }

    function setStartTimestamp(uint _startTimestamp) external onlyOwner {
        startTimestamp = _startTimestamp;
    }

    function setBaseTokenURI(string memory __baseTokenURI) public onlyOwner {
        _baseTokenURI = __baseTokenURI;
    }

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

    function setFreeMintMerkleRoot(bytes32 _freeMintMerkleRoot) public onlyOwner {
        freeMintMerkleRoot = _freeMintMerkleRoot;
    }

    // WITHDRAWAL FUNCTIONALITY

    /**
     * @dev Withdraw the contract balance to the recipient address
     */
    function withdraw() external {
        uint amount = address(this).balance;
        (bool success,) = recipient.call{value: amount}("");
        require(success, "Failed to send ether");
    }

    // METADATA FUNCTIONALITY

    /**
     * @dev Returns a URI for a given token ID's metadata
     */
    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(_baseTokenURI, Strings.toString(_tokenId)));
    }

}

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

pragma solidity ^0.8.0;

import "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);
    }
}

File 3 of 12 : 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 4 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "IERC721.sol";
import "IERC721Receiver.sol";
import "IERC721Metadata.sol";
import "Address.sol";
import "Context.sol";
import "Strings.sol";
import "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);
    }

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

    /**
     * @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 of token that is not own");
        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);
    }

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

File 5 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "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 6 of 12 : 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 7 of 12 : 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 8 of 12 : 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 9 of 12 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 10 of 12 : 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 11 of 12 : 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 12 of 12 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"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":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","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":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"totalAllocation","type":"uint256"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeMintMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintsRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItems","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItemsPerPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItemsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_freeMintMerkleRoot","type":"bytes32"}],"name":"setFreeMintMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicMint","type":"uint256"}],"name":"setMaxPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"setRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTimestamp","type":"uint256"}],"name":"setStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistPrice","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"totalAllocation","type":"uint256"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600755600060085567041b9a6e85840000600d55670d529ae9e8600000600e55614e01600f55600060105561125c60115560006012556032601355600a6014553480156200005357600080fd5b5060405162002b8038038062002b80833981016040819052620000769162000221565b604080518082018252600f81526e1053141050d0511050949056880cd1608a1b602080830191825283518085019094526007845266141050d0480cd160ca1b908401528151919291620000cc916000916200017b565b508051620000e29060019060208401906200017b565b505050620000ff620000f96200012560201b60201c565b62000129565b601580546001600160a01b0319166001600160a01b039290921691909117905562000290565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001899062000253565b90600052602060002090601f016020900481019282620001ad5760008555620001f8565b82601f10620001c857805160ff1916838001178555620001f8565b82800160010185558215620001f8579182015b82811115620001f8578251825591602001919060010190620001db565b50620002069291506200020a565b5090565b5b808211156200020657600081556001016200020b565b6000602082840312156200023457600080fd5b81516001600160a01b03811681146200024c57600080fd5b9392505050565b600181811c908216806200026857607f821691505b602082108114156200028a57634e487b7160e01b600052602260045260246000fd5b50919050565b6128e080620002a06000396000f3fe6080604052600436106102885760003560e01c806368963df01161015a578063c87b56dd116100c1578063e6fd48bc1161007a578063e6fd48bc14610777578063e985e9c51461078d578063f19e75d4146107d6578063f2fde38b146107f6578063f4a0a52814610816578063fc1a1c361461083657600080fd5b8063c87b56dd146106b2578063c9aef534146106d2578063cabadaa0146106ff578063cfc86f7b14610715578063dde44b891461072a578063e63ec9471461074a57600080fd5b806395d89b411161011357806395d89b4114610614578063a22cb46514610629578063a4f4f8af14610649578063b88d4fde1461065f578063bf235bf41461067f578063c44bef751461069257600080fd5b806368963df01461056b57806370a0823114610581578063715018a6146105a1578063717d57d3146105b65780637cb64759146105d65780638da5cb5b146105f657600080fd5b806330666a4d116101fe57806342842e0e116101b757806342842e0e146104b2578063456cc814146104d25780635bfe024d146105025780636352211e1461051557806366d003ac146105355780636817c76c1461055557600080fd5b806330666a4d1461041b5780633423e54814610431578063393fbdd9146104515780633bbed4a0146104675780633c010a3e146104875780633ccfd60b1461049d57600080fd5b806321328f9e1161025057806321328f9e1461036257806323b872dd14610392578063270ab52c146103b25780632db11544146103d25780632eb4a7ab146103e557806330176e13146103fb57600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c57806318160ddd1461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612043565b61084c565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d761089e565b6040516102b991906120bf565b3480156102f057600080fd5b506103046102ff3660046120d2565b610930565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612107565b6109ca565b005b34801561034a57600080fd5b5061035460105481565b6040519081526020016102b9565b34801561036e57600080fd5b506102ad61037d366004612131565b600a6020526000908152604090205460ff1681565b34801561039e57600080fd5b5061033c6103ad36600461214c565b610ae0565b3480156103be57600080fd5b5061033c6103cd3660046120d2565b610b11565b61033c6103e03660046120d2565b610b40565b3480156103f157600080fd5b5061035460075481565b34801561040757600080fd5b5061033c610416366004612227565b610cf6565b34801561042757600080fd5b5061035460135481565b34801561043d57600080fd5b506102ad61044c3660046122f0565b610d37565b34801561045d57600080fd5b5061035460145481565b34801561047357600080fd5b5061033c610482366004612131565b610d4c565b34801561049357600080fd5b50610354600f5481565b3480156104a957600080fd5b5061033c610d98565b3480156104be57600080fd5b5061033c6104cd36600461214c565b610e36565b3480156104de57600080fd5b506102ad6104ed366004612131565b600c6020526000908152604090205460ff1681565b61033c610510366004612340565b610e51565b34801561052157600080fd5b506103046105303660046120d2565b61107a565b34801561054157600080fd5b50601554610304906001600160a01b031681565b34801561056157600080fd5b50610354600d5481565b34801561057757600080fd5b5061035460085481565b34801561058d57600080fd5b5061035461059c366004612131565b6110f1565b3480156105ad57600080fd5b5061033c611178565b3480156105c257600080fd5b5061033c6105d13660046120d2565b6111ae565b3480156105e257600080fd5b5061033c6105f13660046120d2565b6111dd565b34801561060257600080fd5b506006546001600160a01b0316610304565b34801561062057600080fd5b506102d761120c565b34801561063557600080fd5b5061033c61064436600461239a565b61121b565b34801561065557600080fd5b5061035460125481565b34801561066b57600080fd5b5061033c61067a3660046123d6565b611226565b61033c61068d366004612340565b611258565b34801561069e57600080fd5b5061033c6106ad3660046120d2565b6113d4565b3480156106be57600080fd5b506102d76106cd3660046120d2565b611403565b3480156106de57600080fd5b506103546106ed366004612131565b600b6020526000908152604090205481565b34801561070b57600080fd5b5061035460115481565b34801561072157600080fd5b506102d7611437565b34801561073657600080fd5b5061033c6107453660046120d2565b6114c5565b34801561075657600080fd5b50610354610765366004612131565b60096020526000908152604090205481565b34801561078357600080fd5b5061035460175481565b34801561079957600080fd5b506102ad6107a8366004612446565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107e257600080fd5b5061033c6107f13660046120d2565b6114f4565b34801561080257600080fd5b5061033c610811366004612131565b611528565b34801561082257600080fd5b5061033c6108313660046120d2565b6115c0565b34801561084257600080fd5b50610354600e5481565b60006001600160e01b031982166380ac58cd60e01b148061087d57506001600160e01b03198216635b5e139f60e01b145b8061089857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108ad90612479565b80601f01602080910402602001604051908101604052809291908181526020018280546108d990612479565b80156109265780601f106108fb57610100808354040283529160200191610926565b820191906000526020600020905b81548152906001019060200180831161090957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109d58261107a565b9050806001600160a01b0316836001600160a01b03161415610a435760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109a5565b336001600160a01b0382161480610a5f5750610a5f81336107a8565b610ad15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a5565b610adb83836115ef565b505050565b610aea338261165d565b610b065760405162461bcd60e51b81526004016109a5906124b4565b610adb838383611750565b6006546001600160a01b03163314610b3b5760405162461bcd60e51b81526004016109a590612505565b601155565b601754610b895760405162461bcd60e51b815260206004820152601760248201527614dd185c9d081d1a5b595cdd185b5c081b9bdd081cd95d604a1b60448201526064016109a5565b601754421015610bca5760405162461bcd60e51b815260206004820152600c60248201526b139bdd081bdc195b881e595d60a21b60448201526064016109a5565b60008111610bea5760405162461bcd60e51b81526004016109a59061253a565b600d54610bf79082612579565b3414610c155760405162461bcd60e51b81526004016109a590612598565b601454811115610c7b5760405162461bcd60e51b815260206004820152602b60248201527f7075626c69634d696e743a20537572706173736573206d61784974656d73506560448201526a1c941d589b1a58d35a5b9d60aa1b60648201526084016109a5565b60115481601254610c8c91906125c8565b1115610cd15760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d0e8814dbdb19081bdd5d60621b60448201526064016109a5565b8060126000828254610ce391906125c8565b90915550610cf3905033826118f0565b50565b6006546001600160a01b03163314610d205760405162461bcd60e51b81526004016109a590612505565b8051610d33906016906020840190611f94565b5050565b6000610d44828585611a31565b949350505050565b6006546001600160a01b03163314610d765760405162461bcd60e51b81526004016109a590612505565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b60155460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114610de9576040519150601f19603f3d011682016040523d82523d6000602084013e610dee565b606091505b5050905080610d335760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321032ba3432b960611b60448201526064016109a5565b610adb83838360405180602001604052806000815250611226565b601754610e9a5760405162461bcd60e51b815260206004820152601760248201527614dd185c9d081d1a5b595cdd185b5c081b9bdd081cd95d604a1b60448201526064016109a5565b601754421015610edb5760405162461bcd60e51b815260206004820152600c60248201526b139bdd081bdc195b881e595d60a21b60448201526064016109a5565b610ee86007548383610d37565b610f045760405162461bcd60e51b81526004016109a5906125e0565b6040516bffffffffffffffffffffffff193360601b1660208201526034810184905282906054016040516020818303038152906040528051906020012014610f5e5760405162461bcd60e51b81526004016109a590612623565b336000908152600a602052604090205460ff16610fa157336000908152600a60209081526040808320805460ff1916600117905560099091529020839055610fcb565b33600090815260096020526040902054831015610fcb573360009081526009602052604090208390555b60008411610feb5760405162461bcd60e51b81526004016109a59061253a565b600e54610ff89085612579565b34146110165760405162461bcd60e51b81526004016109a590612598565b336000908152600960205260409020548411156110455760405162461bcd60e51b81526004016109a59061266c565b33600090815260096020526040812080548692906110649084906126b5565b90915550611074905033856118f0565b50505050565b6000818152600260205260408120546001600160a01b0316806108985760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109a5565b60006001600160a01b03821661115c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109a5565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111a25760405162461bcd60e51b81526004016109a590612505565b6111ac6000611a47565b565b6006546001600160a01b031633146111d85760405162461bcd60e51b81526004016109a590612505565b600e55565b6006546001600160a01b031633146112075760405162461bcd60e51b81526004016109a590612505565b600755565b6060600180546108ad90612479565b610d33338383611a99565b611230338361165d565b61124c5760405162461bcd60e51b81526004016109a5906124b4565b61107484848484611b68565b6112656008548383610d37565b6112815760405162461bcd60e51b81526004016109a5906125e0565b6040516bffffffffffffffffffffffff193360601b16602082015260348101849052829060540160405160208183030381529060405280519060200120146112db5760405162461bcd60e51b81526004016109a590612623565b336000908152600c602052604090205460ff1661131e57336000908152600c60209081526040808320805460ff19166001179055600b9091529020839055611348565b336000908152600b602052604090205483101561134857336000908152600b602052604090208390555b600084116113685760405162461bcd60e51b81526004016109a59061253a565b34156113865760405162461bcd60e51b81526004016109a590612598565b336000908152600b60205260409020548411156113b55760405162461bcd60e51b81526004016109a59061266c565b336000908152600b6020526040812080548692906110649084906126b5565b6006546001600160a01b031633146113fe5760405162461bcd60e51b81526004016109a590612505565b601755565b6060601661141083611b9b565b6040516020016114219291906126e8565b6040516020818303038152906040529050919050565b6016805461144490612479565b80601f016020809104026020016040519081016040528092919081815260200182805461147090612479565b80156114bd5780601f10611492576101008083540402835291602001916114bd565b820191906000526020600020905b8154815290600101906020018083116114a057829003601f168201915b505050505081565b6006546001600160a01b031633146114ef5760405162461bcd60e51b81526004016109a590612505565b600855565b6006546001600160a01b0316331461151e5760405162461bcd60e51b81526004016109a590612505565b610cf333826118f0565b6006546001600160a01b031633146115525760405162461bcd60e51b81526004016109a590612505565b6001600160a01b0381166115b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a5565b610cf381611a47565b6006546001600160a01b031633146115ea5760405162461bcd60e51b81526004016109a590612505565b600d55565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116248261107a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a5565b60006116e18361107a565b9050806001600160a01b0316846001600160a01b0316148061171c5750836001600160a01b031661171184610930565b6001600160a01b0316145b80610d4457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610d44565b826001600160a01b03166117638261107a565b6001600160a01b0316146117cb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109a5565b6001600160a01b03821661182d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109a5565b6118386000826115ef565b6001600160a01b03831660009081526003602052604081208054600192906118619084906126b5565b90915550506001600160a01b038216600090815260036020526040812080546001929061188f9084906125c8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600f548160105461190191906125c8565b111561194f5760405162461bcd60e51b815260206004820152601f60248201527f6d696e74576974686f757456616c69646174696f6e3a20536f6c64206f75740060448201526064016109a5565b6013548111156119b85760405162461bcd60e51b815260206004820152602e60248201527f6d696e74576974686f757456616c69646174696f6e3a2053757270617373657360448201526d040dac2f092e8cadae6a0cae4a8f60931b60648201526084016109a5565b60005b81811015610adb576119cf83601054611c99565b6010546040516001600160a01b038516907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a3600160106000828254611a1991906125c8565b90915550819050611a298161278f565b9150506119bb565b600082611a3e8584611ddb565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611afb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b73848484611750565b611b7f84848484611e87565b6110745760405162461bcd60e51b81526004016109a5906127aa565b606081611bbf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611be95780611bd38161278f565b9150611be29050600a83612812565b9150611bc3565b60008167ffffffffffffffff811115611c0457611c04612188565b6040519080825280601f01601f191660200182016040528015611c2e576020820181803683370190505b5090505b8415610d4457611c436001836126b5565b9150611c50600a86612826565b611c5b9060306125c8565b60f81b818381518110611c7057611c7061283a565b60200101906001600160f81b031916908160001a905350611c92600a86612812565b9450611c32565b6001600160a01b038216611cef5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a5565b6000818152600260205260409020546001600160a01b031615611d545760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109a5565b6001600160a01b0382166000908152600360205260408120805460019290611d7d9084906125c8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015611e7f576000858281518110611dfd57611dfd61283a565b60200260200101519050808311611e3f576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611e6c565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611e778161278f565b915050611de0565b509392505050565b60006001600160a01b0384163b15611f8957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ecb903390899088908890600401612850565b602060405180830381600087803b158015611ee557600080fd5b505af1925050508015611f15575060408051601f3d908101601f19168201909252611f129181019061288d565b60015b611f6f573d808015611f43576040519150601f19603f3d011682016040523d82523d6000602084013e611f48565b606091505b508051611f675760405162461bcd60e51b81526004016109a5906127aa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d44565b506001949350505050565b828054611fa090612479565b90600052602060002090601f016020900481019282611fc25760008555612008565b82601f10611fdb57805160ff1916838001178555612008565b82800160010185558215612008579182015b82811115612008578251825591602001919060010190611fed565b50612014929150612018565b5090565b5b808211156120145760008155600101612019565b6001600160e01b031981168114610cf357600080fd5b60006020828403121561205557600080fd5b81356120608161202d565b9392505050565b60005b8381101561208257818101518382015260200161206a565b838111156110745750506000910152565b600081518084526120ab816020860160208601612067565b601f01601f19169290920160200192915050565b6020815260006120606020830184612093565b6000602082840312156120e457600080fd5b5035919050565b80356001600160a01b038116811461210257600080fd5b919050565b6000806040838503121561211a57600080fd5b612123836120eb565b946020939093013593505050565b60006020828403121561214357600080fd5b612060826120eb565b60008060006060848603121561216157600080fd5b61216a846120eb565b9250612178602085016120eb565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156121c7576121c7612188565b604052919050565b600067ffffffffffffffff8311156121e9576121e9612188565b6121fc601f8401601f191660200161219e565b905082815283838301111561221057600080fd5b828260208301376000602084830101529392505050565b60006020828403121561223957600080fd5b813567ffffffffffffffff81111561225057600080fd5b8201601f8101841361226157600080fd5b610d44848235602084016121cf565b600082601f83011261228157600080fd5b8135602067ffffffffffffffff82111561229d5761229d612188565b8160051b6122ac82820161219e565b92835284810182019282810190878511156122c657600080fd5b83870192505b848310156122e5578235825291830191908301906122cc565b979650505050505050565b60008060006060848603121561230557600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561232a57600080fd5b61233686828701612270565b9150509250925092565b6000806000806080858703121561235657600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff81111561238257600080fd5b61238e87828801612270565b91505092959194509250565b600080604083850312156123ad57600080fd5b6123b6836120eb565b9150602083013580151581146123cb57600080fd5b809150509250929050565b600080600080608085870312156123ec57600080fd5b6123f5856120eb565b9350612403602086016120eb565b925060408501359150606085013567ffffffffffffffff81111561242657600080fd5b8501601f8101871361243757600080fd5b61238e878235602084016121cf565b6000806040838503121561245957600080fd5b612462836120eb565b9150612470602084016120eb565b90509250929050565b600181811c9082168061248d57607f821691505b602082108114156124ae57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600f908201526e43616e2774206d696e74207a65726f60881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561259357612593612563565b500290565b60208082526016908201527514d95b99081c1c9bdc195c8811551208185b5bdd5b9d60521b604082015260600190565b600082198211156125db576125db612563565b500190565b60208082526023908201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460408201526272656560e81b606082015260800190565b60208082526029908201527f53656e64657220616e6420616d6f756e7420646f6e2774206d61746368204d656040820152683935b632903632b0b360b91b606082015260800190565b60208082526029908201527f43616e2774206d696e74206d6f7265207468616e2072656d61696e696e672061604082015268363637b1b0ba34b7b760b91b606082015260800190565b6000828210156126c7576126c7612563565b500390565b600081516126de818560208601612067565b9290920192915050565b600080845481600182811c91508083168061270457607f831692505b602080841082141561272457634e487b7160e01b86526022600452602486fd5b818015612738576001811461274957612776565b60ff19861689528489019650612776565b60008b81526020902060005b8681101561276e5781548b820152908501908301612755565b505084890196505b50505050505061278681856126cc565b95945050505050565b60006000198214156127a3576127a3612563565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612821576128216127fc565b500490565b600082612835576128356127fc565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061288390830184612093565b9695505050505050565b60006020828403121561289f57600080fd5b81516120608161202d56fea26469706673582212206e2394e3314e57200162aeb7edda3e02614dc4bf93d1df4f7a72e2cfd0e2531f64736f6c63430008090033000000000000000000000000f8346c663ddf9a8b1afdcc3bf53a6a8845b1b55a

Deployed Bytecode

0x6080604052600436106102885760003560e01c806368963df01161015a578063c87b56dd116100c1578063e6fd48bc1161007a578063e6fd48bc14610777578063e985e9c51461078d578063f19e75d4146107d6578063f2fde38b146107f6578063f4a0a52814610816578063fc1a1c361461083657600080fd5b8063c87b56dd146106b2578063c9aef534146106d2578063cabadaa0146106ff578063cfc86f7b14610715578063dde44b891461072a578063e63ec9471461074a57600080fd5b806395d89b411161011357806395d89b4114610614578063a22cb46514610629578063a4f4f8af14610649578063b88d4fde1461065f578063bf235bf41461067f578063c44bef751461069257600080fd5b806368963df01461056b57806370a0823114610581578063715018a6146105a1578063717d57d3146105b65780637cb64759146105d65780638da5cb5b146105f657600080fd5b806330666a4d116101fe57806342842e0e116101b757806342842e0e146104b2578063456cc814146104d25780635bfe024d146105025780636352211e1461051557806366d003ac146105355780636817c76c1461055557600080fd5b806330666a4d1461041b5780633423e54814610431578063393fbdd9146104515780633bbed4a0146104675780633c010a3e146104875780633ccfd60b1461049d57600080fd5b806321328f9e1161025057806321328f9e1461036257806323b872dd14610392578063270ab52c146103b25780632db11544146103d25780632eb4a7ab146103e557806330176e13146103fb57600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c57806318160ddd1461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612043565b61084c565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d761089e565b6040516102b991906120bf565b3480156102f057600080fd5b506103046102ff3660046120d2565b610930565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c610337366004612107565b6109ca565b005b34801561034a57600080fd5b5061035460105481565b6040519081526020016102b9565b34801561036e57600080fd5b506102ad61037d366004612131565b600a6020526000908152604090205460ff1681565b34801561039e57600080fd5b5061033c6103ad36600461214c565b610ae0565b3480156103be57600080fd5b5061033c6103cd3660046120d2565b610b11565b61033c6103e03660046120d2565b610b40565b3480156103f157600080fd5b5061035460075481565b34801561040757600080fd5b5061033c610416366004612227565b610cf6565b34801561042757600080fd5b5061035460135481565b34801561043d57600080fd5b506102ad61044c3660046122f0565b610d37565b34801561045d57600080fd5b5061035460145481565b34801561047357600080fd5b5061033c610482366004612131565b610d4c565b34801561049357600080fd5b50610354600f5481565b3480156104a957600080fd5b5061033c610d98565b3480156104be57600080fd5b5061033c6104cd36600461214c565b610e36565b3480156104de57600080fd5b506102ad6104ed366004612131565b600c6020526000908152604090205460ff1681565b61033c610510366004612340565b610e51565b34801561052157600080fd5b506103046105303660046120d2565b61107a565b34801561054157600080fd5b50601554610304906001600160a01b031681565b34801561056157600080fd5b50610354600d5481565b34801561057757600080fd5b5061035460085481565b34801561058d57600080fd5b5061035461059c366004612131565b6110f1565b3480156105ad57600080fd5b5061033c611178565b3480156105c257600080fd5b5061033c6105d13660046120d2565b6111ae565b3480156105e257600080fd5b5061033c6105f13660046120d2565b6111dd565b34801561060257600080fd5b506006546001600160a01b0316610304565b34801561062057600080fd5b506102d761120c565b34801561063557600080fd5b5061033c61064436600461239a565b61121b565b34801561065557600080fd5b5061035460125481565b34801561066b57600080fd5b5061033c61067a3660046123d6565b611226565b61033c61068d366004612340565b611258565b34801561069e57600080fd5b5061033c6106ad3660046120d2565b6113d4565b3480156106be57600080fd5b506102d76106cd3660046120d2565b611403565b3480156106de57600080fd5b506103546106ed366004612131565b600b6020526000908152604090205481565b34801561070b57600080fd5b5061035460115481565b34801561072157600080fd5b506102d7611437565b34801561073657600080fd5b5061033c6107453660046120d2565b6114c5565b34801561075657600080fd5b50610354610765366004612131565b60096020526000908152604090205481565b34801561078357600080fd5b5061035460175481565b34801561079957600080fd5b506102ad6107a8366004612446565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107e257600080fd5b5061033c6107f13660046120d2565b6114f4565b34801561080257600080fd5b5061033c610811366004612131565b611528565b34801561082257600080fd5b5061033c6108313660046120d2565b6115c0565b34801561084257600080fd5b50610354600e5481565b60006001600160e01b031982166380ac58cd60e01b148061087d57506001600160e01b03198216635b5e139f60e01b145b8061089857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108ad90612479565b80601f01602080910402602001604051908101604052809291908181526020018280546108d990612479565b80156109265780601f106108fb57610100808354040283529160200191610926565b820191906000526020600020905b81548152906001019060200180831161090957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006109d58261107a565b9050806001600160a01b0316836001600160a01b03161415610a435760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109a5565b336001600160a01b0382161480610a5f5750610a5f81336107a8565b610ad15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a5565b610adb83836115ef565b505050565b610aea338261165d565b610b065760405162461bcd60e51b81526004016109a5906124b4565b610adb838383611750565b6006546001600160a01b03163314610b3b5760405162461bcd60e51b81526004016109a590612505565b601155565b601754610b895760405162461bcd60e51b815260206004820152601760248201527614dd185c9d081d1a5b595cdd185b5c081b9bdd081cd95d604a1b60448201526064016109a5565b601754421015610bca5760405162461bcd60e51b815260206004820152600c60248201526b139bdd081bdc195b881e595d60a21b60448201526064016109a5565b60008111610bea5760405162461bcd60e51b81526004016109a59061253a565b600d54610bf79082612579565b3414610c155760405162461bcd60e51b81526004016109a590612598565b601454811115610c7b5760405162461bcd60e51b815260206004820152602b60248201527f7075626c69634d696e743a20537572706173736573206d61784974656d73506560448201526a1c941d589b1a58d35a5b9d60aa1b60648201526084016109a5565b60115481601254610c8c91906125c8565b1115610cd15760405162461bcd60e51b81526020600482015260146024820152731c1d589b1a58d35a5b9d0e8814dbdb19081bdd5d60621b60448201526064016109a5565b8060126000828254610ce391906125c8565b90915550610cf3905033826118f0565b50565b6006546001600160a01b03163314610d205760405162461bcd60e51b81526004016109a590612505565b8051610d33906016906020840190611f94565b5050565b6000610d44828585611a31565b949350505050565b6006546001600160a01b03163314610d765760405162461bcd60e51b81526004016109a590612505565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b60155460405147916000916001600160a01b039091169083908381818185875af1925050503d8060008114610de9576040519150601f19603f3d011682016040523d82523d6000602084013e610dee565b606091505b5050905080610d335760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321032ba3432b960611b60448201526064016109a5565b610adb83838360405180602001604052806000815250611226565b601754610e9a5760405162461bcd60e51b815260206004820152601760248201527614dd185c9d081d1a5b595cdd185b5c081b9bdd081cd95d604a1b60448201526064016109a5565b601754421015610edb5760405162461bcd60e51b815260206004820152600c60248201526b139bdd081bdc195b881e595d60a21b60448201526064016109a5565b610ee86007548383610d37565b610f045760405162461bcd60e51b81526004016109a5906125e0565b6040516bffffffffffffffffffffffff193360601b1660208201526034810184905282906054016040516020818303038152906040528051906020012014610f5e5760405162461bcd60e51b81526004016109a590612623565b336000908152600a602052604090205460ff16610fa157336000908152600a60209081526040808320805460ff1916600117905560099091529020839055610fcb565b33600090815260096020526040902054831015610fcb573360009081526009602052604090208390555b60008411610feb5760405162461bcd60e51b81526004016109a59061253a565b600e54610ff89085612579565b34146110165760405162461bcd60e51b81526004016109a590612598565b336000908152600960205260409020548411156110455760405162461bcd60e51b81526004016109a59061266c565b33600090815260096020526040812080548692906110649084906126b5565b90915550611074905033856118f0565b50505050565b6000818152600260205260408120546001600160a01b0316806108985760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109a5565b60006001600160a01b03821661115c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109a5565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111a25760405162461bcd60e51b81526004016109a590612505565b6111ac6000611a47565b565b6006546001600160a01b031633146111d85760405162461bcd60e51b81526004016109a590612505565b600e55565b6006546001600160a01b031633146112075760405162461bcd60e51b81526004016109a590612505565b600755565b6060600180546108ad90612479565b610d33338383611a99565b611230338361165d565b61124c5760405162461bcd60e51b81526004016109a5906124b4565b61107484848484611b68565b6112656008548383610d37565b6112815760405162461bcd60e51b81526004016109a5906125e0565b6040516bffffffffffffffffffffffff193360601b16602082015260348101849052829060540160405160208183030381529060405280519060200120146112db5760405162461bcd60e51b81526004016109a590612623565b336000908152600c602052604090205460ff1661131e57336000908152600c60209081526040808320805460ff19166001179055600b9091529020839055611348565b336000908152600b602052604090205483101561134857336000908152600b602052604090208390555b600084116113685760405162461bcd60e51b81526004016109a59061253a565b34156113865760405162461bcd60e51b81526004016109a590612598565b336000908152600b60205260409020548411156113b55760405162461bcd60e51b81526004016109a59061266c565b336000908152600b6020526040812080548692906110649084906126b5565b6006546001600160a01b031633146113fe5760405162461bcd60e51b81526004016109a590612505565b601755565b6060601661141083611b9b565b6040516020016114219291906126e8565b6040516020818303038152906040529050919050565b6016805461144490612479565b80601f016020809104026020016040519081016040528092919081815260200182805461147090612479565b80156114bd5780601f10611492576101008083540402835291602001916114bd565b820191906000526020600020905b8154815290600101906020018083116114a057829003601f168201915b505050505081565b6006546001600160a01b031633146114ef5760405162461bcd60e51b81526004016109a590612505565b600855565b6006546001600160a01b0316331461151e5760405162461bcd60e51b81526004016109a590612505565b610cf333826118f0565b6006546001600160a01b031633146115525760405162461bcd60e51b81526004016109a590612505565b6001600160a01b0381166115b75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a5565b610cf381611a47565b6006546001600160a01b031633146115ea5760405162461bcd60e51b81526004016109a590612505565b600d55565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116248261107a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116d65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a5565b60006116e18361107a565b9050806001600160a01b0316846001600160a01b0316148061171c5750836001600160a01b031661171184610930565b6001600160a01b0316145b80610d4457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610d44565b826001600160a01b03166117638261107a565b6001600160a01b0316146117cb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109a5565b6001600160a01b03821661182d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109a5565b6118386000826115ef565b6001600160a01b03831660009081526003602052604081208054600192906118619084906126b5565b90915550506001600160a01b038216600090815260036020526040812080546001929061188f9084906125c8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600f548160105461190191906125c8565b111561194f5760405162461bcd60e51b815260206004820152601f60248201527f6d696e74576974686f757456616c69646174696f6e3a20536f6c64206f75740060448201526064016109a5565b6013548111156119b85760405162461bcd60e51b815260206004820152602e60248201527f6d696e74576974686f757456616c69646174696f6e3a2053757270617373657360448201526d040dac2f092e8cadae6a0cae4a8f60931b60648201526084016109a5565b60005b81811015610adb576119cf83601054611c99565b6010546040516001600160a01b038516907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a3600160106000828254611a1991906125c8565b90915550819050611a298161278f565b9150506119bb565b600082611a3e8584611ddb565b14949350505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611afb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a5565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b73848484611750565b611b7f84848484611e87565b6110745760405162461bcd60e51b81526004016109a5906127aa565b606081611bbf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611be95780611bd38161278f565b9150611be29050600a83612812565b9150611bc3565b60008167ffffffffffffffff811115611c0457611c04612188565b6040519080825280601f01601f191660200182016040528015611c2e576020820181803683370190505b5090505b8415610d4457611c436001836126b5565b9150611c50600a86612826565b611c5b9060306125c8565b60f81b818381518110611c7057611c7061283a565b60200101906001600160f81b031916908160001a905350611c92600a86612812565b9450611c32565b6001600160a01b038216611cef5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a5565b6000818152600260205260409020546001600160a01b031615611d545760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109a5565b6001600160a01b0382166000908152600360205260408120805460019290611d7d9084906125c8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081815b8451811015611e7f576000858281518110611dfd57611dfd61283a565b60200260200101519050808311611e3f576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611e6c565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611e778161278f565b915050611de0565b509392505050565b60006001600160a01b0384163b15611f8957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ecb903390899088908890600401612850565b602060405180830381600087803b158015611ee557600080fd5b505af1925050508015611f15575060408051601f3d908101601f19168201909252611f129181019061288d565b60015b611f6f573d808015611f43576040519150601f19603f3d011682016040523d82523d6000602084013e611f48565b606091505b508051611f675760405162461bcd60e51b81526004016109a5906127aa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610d44565b506001949350505050565b828054611fa090612479565b90600052602060002090601f016020900481019282611fc25760008555612008565b82601f10611fdb57805160ff1916838001178555612008565b82800160010185558215612008579182015b82811115612008578251825591602001919060010190611fed565b50612014929150612018565b5090565b5b808211156120145760008155600101612019565b6001600160e01b031981168114610cf357600080fd5b60006020828403121561205557600080fd5b81356120608161202d565b9392505050565b60005b8381101561208257818101518382015260200161206a565b838111156110745750506000910152565b600081518084526120ab816020860160208601612067565b601f01601f19169290920160200192915050565b6020815260006120606020830184612093565b6000602082840312156120e457600080fd5b5035919050565b80356001600160a01b038116811461210257600080fd5b919050565b6000806040838503121561211a57600080fd5b612123836120eb565b946020939093013593505050565b60006020828403121561214357600080fd5b612060826120eb565b60008060006060848603121561216157600080fd5b61216a846120eb565b9250612178602085016120eb565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156121c7576121c7612188565b604052919050565b600067ffffffffffffffff8311156121e9576121e9612188565b6121fc601f8401601f191660200161219e565b905082815283838301111561221057600080fd5b828260208301376000602084830101529392505050565b60006020828403121561223957600080fd5b813567ffffffffffffffff81111561225057600080fd5b8201601f8101841361226157600080fd5b610d44848235602084016121cf565b600082601f83011261228157600080fd5b8135602067ffffffffffffffff82111561229d5761229d612188565b8160051b6122ac82820161219e565b92835284810182019282810190878511156122c657600080fd5b83870192505b848310156122e5578235825291830191908301906122cc565b979650505050505050565b60008060006060848603121561230557600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561232a57600080fd5b61233686828701612270565b9150509250925092565b6000806000806080858703121561235657600080fd5b843593506020850135925060408501359150606085013567ffffffffffffffff81111561238257600080fd5b61238e87828801612270565b91505092959194509250565b600080604083850312156123ad57600080fd5b6123b6836120eb565b9150602083013580151581146123cb57600080fd5b809150509250929050565b600080600080608085870312156123ec57600080fd5b6123f5856120eb565b9350612403602086016120eb565b925060408501359150606085013567ffffffffffffffff81111561242657600080fd5b8501601f8101871361243757600080fd5b61238e878235602084016121cf565b6000806040838503121561245957600080fd5b612462836120eb565b9150612470602084016120eb565b90509250929050565b600181811c9082168061248d57607f821691505b602082108114156124ae57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600f908201526e43616e2774206d696e74207a65726f60881b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561259357612593612563565b500290565b60208082526016908201527514d95b99081c1c9bdc195c8811551208185b5bdd5b9d60521b604082015260600190565b600082198211156125db576125db612563565b500190565b60208082526023908201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460408201526272656560e81b606082015260800190565b60208082526029908201527f53656e64657220616e6420616d6f756e7420646f6e2774206d61746368204d656040820152683935b632903632b0b360b91b606082015260800190565b60208082526029908201527f43616e2774206d696e74206d6f7265207468616e2072656d61696e696e672061604082015268363637b1b0ba34b7b760b91b606082015260800190565b6000828210156126c7576126c7612563565b500390565b600081516126de818560208601612067565b9290920192915050565b600080845481600182811c91508083168061270457607f831692505b602080841082141561272457634e487b7160e01b86526022600452602486fd5b818015612738576001811461274957612776565b60ff19861689528489019650612776565b60008b81526020902060005b8681101561276e5781548b820152908501908301612755565b505084890196505b50505050505061278681856126cc565b95945050505050565b60006000198214156127a3576127a3612563565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612821576128216127fc565b500490565b600082612835576128356127fc565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061288390830184612093565b9695505050505050565b60006020828403121561289f57600080fd5b81516120608161202d56fea26469706673582212206e2394e3314e57200162aeb7edda3e02614dc4bf93d1df4f7a72e2cfd0e2531f64736f6c63430008090033

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

000000000000000000000000f8346c663ddf9a8b1afdcc3bf53a6a8845b1b55a

-----Decoded View---------------
Arg [0] : _recipient (address): 0xf8346c663dDF9A8b1aFDcC3BF53A6A8845B1b55A

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


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.