ETH Price: $3,255.39 (-0.40%)
Gas: 1 Gwei

Token

Puzzled? (CUBES)
 

Overview

Max Total Supply

578 CUBES

Holders

191

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 CUBES
0xab8039f15b87b8b4755d69ef378226b513005ea7
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Puzzled

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 20 : BigCubes.sol
// Contract based on https://docs.openzeppelin.com/contracts/3.x/erc721
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;


import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import './ERC721Tradable.sol';


contract Puzzled is ERC721Tradable {

    string private _contractURI;
    
    constructor(address _proxyRegistryAddress, string memory _cURI) ERC721Tradable("Puzzled?", "CUBES", _proxyRegistryAddress) {  _contractURI = _cURI; }
    
    using SafeMath for uint256;
    using Address for address;
    event MintCube (address indexed sender, uint256 startWith, uint256 times);

    uint public constant MAX_TOKENS = 5555;
    uint256 public price = 25000000000000000; 
    uint public MAX_FREE = 1111;

    bool public sale_active = false;    
    bool public pre_sale_active = true;                     // Change Before Mainnet Deploy
    uint256 public constant MAX_TOKENS_PER_PURCHASE = 6;  // Change Before Mainnet Deploy
    uint public constant maxNFTPerWallet = 12;             // Change Before Mainnet Deploy
    uint public constant max_wl_wallet = 2;             // Change Before Mainnet Deploy
  

    uint256 public reserved_tokens = 333;
    
    uint[] public mintedIds;
    string private base_url;
    uint256 public minted_reserved_tokens = 0;

    mapping(address => uint) public mintedNFTs;
    mapping(address => uint) public wl_mintedNFTs;



    function setBaseURI(string memory newUri) public onlyOwner {
        base_url = newUri;
    }


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

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

    // Should only be changed when there's a critical change to the contract metadata
    function setContractURI(string memory _cURI) external onlyOwner {
        _contractURI = _cURI;
    }

    function flipSaleStatus() public onlyOwner {
        sale_active = !sale_active;
        
    }

    function flipPreSaleStatus() public onlyOwner {
        pre_sale_active = !pre_sale_active;
    }

    function mintCube(uint256 _count) external payable {
        uint256 totalSupply = totalSupply();

        require(sale_active, "Sale is not active" );
        require(mintedNFTs[msg.sender] + _count <= maxNFTPerWallet, "maxNFTPerWallet constraint violation");
        require(_count > 0 && _count < MAX_TOKENS_PER_PURCHASE + 1, "Exceeds maximum tokens you can purchase in a single transaction");
        require(totalSupply + _count <= MAX_TOKENS, "Exceeds maximum tokens available for purchase");
        require(msg.value >= price.mul(_count), "Ether value sent is not correct");
        require(!_msgSender().isContract(), "Contracts are not allowed");
        emit MintCube(_msgSender(), _getNextTokenId(), _count);
        mintedNFTs[msg.sender] += _count;

        for(uint256 i=0; i < _count; i++){
            _mint(_msgSender(), _getNextTokenId());
            mintedIds.push(_getNextTokenId());
            _incrementTokenId();

        }
        

    }


    function freeMintCube(uint256 _count) external payable {
        uint256 totalSupply = totalSupply();
        
        require(sale_active, "Sale is not active" );
        require(mintedNFTs[msg.sender] + _count <= maxNFTPerWallet, "maxNFTPerWallet constraint violation");
        require(_count > 0 && _count < MAX_TOKENS_PER_PURCHASE + 1, "Exceeds maximum tokens you can purchase in a single transaction");
        require(totalSupply+_count <= MAX_FREE, "Exceeds maximum tokens available for Free");
        require(!_msgSender().isContract(), "Contracts are not allowed");
        emit MintCube(_msgSender(), _getNextTokenId(), _count);
        mintedNFTs[msg.sender] += _count;


        for(uint256 i=0; i < _count; i++){
            _mint(_msgSender(), _getNextTokenId());
            mintedIds.push(_getNextTokenId());
            _incrementTokenId();

        }
        

    }

    function  IncrementTokenEmerg () public onlyOwner {
        // Function used
        _incrementTokenId();
    }


    function mintWhitelist(uint256 _count, uint256 _timestamp, bytes memory _signature) public payable {

        
        require(pre_sale_active, "Pre-Sale is not active" );
        require(wl_mintedNFTs[msg.sender] + _count <= max_wl_wallet, "maxNFTPerWallet constraint violation");
        require(_count > 0 && _count < MAX_TOKENS_PER_PURCHASE + 1, "Exceeds maximum tokens you can purchase in a single transaction");
        require(!_msgSender().isContract(), "Contracts are not allowed");

        address wallet = _msgSender();
        address signerOwner = signatureWallet(wallet,_timestamp,_signature);
        require(signerOwner == owner(), "Not authorized to mint");

        emit MintCube(_msgSender(), _getNextTokenId(), _count);
        wl_mintedNFTs[msg.sender] += _count;


        for(uint256 i=0; i < _count; i++){
            _mint(_msgSender(), _getNextTokenId());
            mintedIds.push(_getNextTokenId());
            _incrementTokenId();

        }
        


    }

    function signatureWallet(address wallet, uint256  _timestamp, bytes memory _signature) public view returns (address){

        return ECDSA.recover(keccak256(abi.encode(wallet, _timestamp)), _signature);

    }

    function reserveTokens(address _to, uint256 _reserveAmount) public onlyOwner {   
        require(minted_reserved_tokens <= reserved_tokens, "All allocated tokens are reserved");

        for(uint256 i=0; i < _reserveAmount; i++){
            _mint(_to, _getNextTokenId());
            mintedIds.push(_getNextTokenId());
            _incrementTokenId();

        }
    }
    

    function setMaxFree(uint256 _newMax) public onlyOwner() {
        MAX_FREE = _newMax;
    }


    function get_all() public view  returns (uint[] memory) {
        return mintedIds;
    }



    function withdraw() public payable onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }




}

File 2 of 20 : NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {SafeMath} from  "@openzeppelin/contracts/utils/math/SafeMath.sol";
import {EIP712Base} from "./EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256(
        bytes(
            "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
        )
    );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

File 3 of 20 : Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

File 4 of 20 : EIP712Base.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import {Initializable} from "./Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string constant public ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256(
        bytes(
            "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
        )
    );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(
        string memory name
    )
        internal
        initializer
    {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

File 5 of 20 : ContentMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

abstract contract ContextMixin {
    function msgSender()
        internal
        view
        returns (address payable sender)
    {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 6 of 20 : ERC721Tradable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

import "./common/meta-transactions/ContentMixin.sol";
import "./common/meta-transactions/NativeMetaTransaction.sol";

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title ERC721Tradable
 * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality.
 */


abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable {
    using SafeMath for uint256;

    address proxyRegistryAddress;
    uint256 private _currentTokenId = 0;
    

    constructor(
        string memory _name,
        string memory _symbol,
        address _proxyRegistryAddress
    ) ERC721(_name, _symbol) {
        proxyRegistryAddress = _proxyRegistryAddress;
        _initializeEIP712(_name);
    }

    /**
     * @dev calculates the next token ID based on value of _currentTokenId
     * @return uint256 for the next token ID
     */
    function _getNextTokenId() internal view returns (uint256) {
        return _currentTokenId.add(1);
    }

    /**
     * @dev increments the value of _currentTokenId
     */
    function _incrementTokenId() internal {
        _currentTokenId++;
    }
    
    function isApprovedForAll(address owner, address operator)
        override
        public
        view
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }
    

    /**
     * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea.
     */
    function _msgSender()
        internal
        override
        view
        returns (address sender)
    {
        return ContextMixin.msgSender();
    }
}

File 7 of 20 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 20 : IERC165.sol
// SPDX-License-Identifier: MIT

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 9 of 20 : ERC165.sol
// SPDX-License-Identifier: MIT

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 10 of 20 : ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 11 of 20 : Strings.sol
// SPDX-License-Identifier: MIT

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 12 of 20 : Context.sol
// SPDX-License-Identifier: MIT

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 13 of 20 : Address.sol
// SPDX-License-Identifier: MIT

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 14 of 20 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 15 of 20 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 16 of 20 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 17 of 20 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 18 of 20 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 19 of 20 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 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 20 of 20 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"string","name":"_cURI","type":"string"}],"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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"MintCube","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":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IncrementTokenEmerg","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TOKENS_PER_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"freeMintCube","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"get_all","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNFTPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"max_wl_wallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintCube","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintedIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted_reserved_tokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pre_sale_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved_tokens","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":"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":[],"name":"sale_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"newUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_cURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"_timestamp","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"signatureWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wl_mintedNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600a805460ff191690556000600f8190556658d15e176280006011556104576012556013805461ffff191661010017905561014d6014556017553480156200004b57600080fd5b5060405162003d3838038062003d388339810160408190526200006e91620003bb565b6040518060400160405280600881526020016750757a7a6c65643f60c01b81525060405180604001604052806005815260200164435542455360d81b8152508382828160009080519060200190620000c892919062000315565b508051620000de90600190602084019062000315565b505050620000fb620000f56200014260201b60201c565b6200015e565b600e80546001600160a01b0319166001600160a01b0383161790556200012183620001b0565b50508151620001399150601090602084019062000315565b5050506200050e565b6000620001596200021460201b62001f011760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620001f95760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620002048162000273565b50600a805460ff19166001179055565b6000333014156200026d57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002709050565b50335b90565b6040518060800160405280604f815260200162003ce9604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b8280546200032390620004bb565b90600052602060002090601f01602090048101928262000347576000855562000392565b82601f106200036257805160ff191683800117855562000392565b8280016001018555821562000392579182015b828111156200039257825182559160200191906001019062000375565b50620003a0929150620003a4565b5090565b5b80821115620003a05760008155600101620003a5565b60008060408385031215620003cf57600080fd5b82516001600160a01b0381168114620003e757600080fd5b602084810151919350906001600160401b03808211156200040757600080fd5b818601915086601f8301126200041c57600080fd5b815181811115620004315762000431620004f8565b604051601f8201601f19908116603f011681019083821181831017156200045c576200045c620004f8565b8160405282815289868487010111156200047557600080fd5b600093505b828410156200049957848401860151818501870152928501926200047a565b82841115620004ab5760008684830101525b8096505050505050509250929050565b600181811c90821680620004d057607f821691505b60208210811415620004f257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6137cb806200051e6000396000f3fe6080604052600436106102e45760003560e01c806378cf19e911610190578063c7c5a8c0116100dc578063e619e2d911610095578063ed6661c21161006f578063ed6661c214610858578063f2fde38b1461086e578063f47c84c51461088e578063f4c04c8e146108a457600080fd5b8063e619e2d91461080d578063e8a3d48514610823578063e985e9c51461083857600080fd5b8063c7c5a8c014610776578063c87b56dd1461078b578063ce03ec93146107ab578063d755bf99146107c0578063e0df7216146107e0578063e246a997146107fa57600080fd5b8063938e3d7b11610149578063a22cb46511610123578063a22cb465146106dc578063b88d4fde146106fc578063ba060bed1461071c578063bf90b44d1461074957600080fd5b8063938e3d7b1461069157806395d89b41146106b1578063a035b1fe146106c657600080fd5b806378cf19e9146105e75780637b60fa3f14610607578063880a3c86146106275780638d294f78146106495780638da5cb5b1461065e57806390be98ec1461067c57600080fd5b80632f4b3fde1161024f5780634f6ccce7116102085780636352211e116101e25780636352211e146105725780636b2c398a1461059257806370a08231146105b2578063715018a6146105d257600080fd5b80634f6ccce71461051f57806355f804b31461053f5780635f1886321461055f57600080fd5b80632f4b3fde146104925780632f745c59146104b15780633408e470146104d15780633ccfd60b146104e457806342842e0e146104ec57806343774ebd1461050c57600080fd5b80630f7e5970116102a15780630f7e5970146103c257806310007380146103ef57806318160ddd1461041257806320379ee51461042757806323b872dd1461043c5780632d0335ab1461045c57600080fd5b806301ffc9a7146102e9578063064d86cc1461031e57806306fdde0314610335578063081812fc14610357578063095ea7b31461038f5780630c53c51c146103af575b600080fd5b3480156102f557600080fd5b50610309610304366004613191565b6108ba565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b506103336108e5565b005b34801561034157600080fd5b5061034a610954565b60405161031591906133e8565b34801561036357600080fd5b50610377610372366004613231565b6109e6565b6040516001600160a01b039091168152602001610315565b34801561039b57600080fd5b506103336103aa36600461310c565b610a7b565b61034a6103bd36600461308e565b610ba3565b3480156103ce57600080fd5b5061034a604051806040016040528060018152602001603160f81b81525081565b3480156103fb57600080fd5b50610404600681565b604051908152602001610315565b34801561041e57600080fd5b50600854610404565b34801561043357600080fd5b50600b54610404565b34801561044857600080fd5b50610333610457366004612fae565b610d8d565b34801561046857600080fd5b50610404610477366004612f58565b6001600160a01b03166000908152600c602052604090205490565b34801561049e57600080fd5b5060135461030990610100900460ff1681565b3480156104bd57600080fd5b506104046104cc36600461310c565b610dc5565b3480156104dd57600080fd5b5046610404565b610333610e5b565b3480156104f857600080fd5b50610333610507366004612fae565b610ed7565b61033361051a36600461324a565b610ef2565b34801561052b57600080fd5b5061040461053a366004613231565b61114c565b34801561054b57600080fd5b5061033361055a3660046131e8565b6111df565b61033361056d366004613231565b61123b565b34801561057e57600080fd5b5061037761058d366004613231565b6114bd565b34801561059e57600080fd5b506103776105ad366004613138565b611534565b3480156105be57600080fd5b506104046105cd366004612f58565b61157b565b3480156105de57600080fd5b50610333611602565b3480156105f357600080fd5b5061033361060236600461310c565b611657565b34801561061357600080fd5b50610404610622366004613231565b61174f565b34801561063357600080fd5b5061063c611770565b60405161031591906133a4565b34801561065557600080fd5b506103336117c7565b34801561066a57600080fd5b50600d546001600160a01b0316610377565b34801561068857600080fd5b50610404600281565b34801561069d57600080fd5b506103336106ac3660046131e8565b611818565b3480156106bd57600080fd5b5061034a611874565b3480156106d257600080fd5b5061040460115481565b3480156106e857600080fd5b506103336106f736600461305b565b611883565b34801561070857600080fd5b50610333610717366004612fef565b611985565b34801561072857600080fd5b50610404610737366004612f58565b60186020526000908152604090205481565b34801561075557600080fd5b50610404610764366004612f58565b60196020526000908152604090205481565b34801561078257600080fd5b50610404600c81565b34801561079757600080fd5b5061034a6107a6366004613231565b6119c4565b3480156107b757600080fd5b50610333611a9f565b3480156107cc57600080fd5b506103336107db366004613231565b611afc565b3480156107ec57600080fd5b506013546103099060ff1681565b610333610808366004613231565b611b4a565b34801561081957600080fd5b5061040460145481565b34801561082f57600080fd5b5061034a611d6c565b34801561084457600080fd5b50610309610853366004612f75565b611d7b565b34801561086457600080fd5b5061040460125481565b34801561087a57600080fd5b50610333610889366004612f58565b611e47565b34801561089a57600080fd5b506104046115b381565b3480156108b057600080fd5b5061040460175481565b60006001600160e01b0319821663780e9d6360e01b14806108df57506108df82611f5e565b92915050565b6108ed611fae565b6001600160a01b0316610908600d546001600160a01b031690565b6001600160a01b0316146109375760405162461bcd60e51b815260040161092e90613491565b60405180910390fd5b6013805461ff001981166101009182900460ff1615909102179055565b60606000805461096390613639565b80601f016020809104026020016040519081016040528092919081815260200182805461098f90613639565b80156109dc5780601f106109b1576101008083540402835291602001916109dc565b820191906000526020600020905b8154815290600101906020018083116109bf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a5f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161092e565b506000908152600460205260409020546001600160a01b031690565b6000610a86826114bd565b9050806001600160a01b0316836001600160a01b03161415610af45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161092e565b806001600160a01b0316610b06611fae565b6001600160a01b03161480610b225750610b2281610853611fae565b610b945760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161092e565b610b9e8383611fbd565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610be1878287878761202b565b610c375760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161092e565b6001600160a01b0387166000908152600c6020526040902054610c5b90600161211b565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610cab90899033908a90613332565b60405180910390a1600080306001600160a01b0316888a604051602001610cd39291906132cc565b60408051601f1981840301815290829052610ced916132b0565b6000604051808303816000865af19150503d8060008114610d2a576040519150601f19603f3d011682016040523d82523d6000602084013e610d2f565b606091505b509150915081610d815760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161092e565b98975050505050505050565b610d9e610d98611fae565b82612127565b610dba5760405162461bcd60e51b815260040161092e906134c6565b610b9e8383836121f6565b6000610dd08361157b565b8210610e325760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161092e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610e63611fae565b6001600160a01b0316610e7e600d546001600160a01b031690565b6001600160a01b031614610ea45760405162461bcd60e51b815260040161092e90613491565b6040514790339082156108fc029083906000818181858888f19350505050158015610ed3573d6000803e3d6000fd5b5050565b610b9e83838360405180602001604052806000815250611985565b601354610100900460ff16610f425760405162461bcd60e51b81526020600482015260166024820152755072652d53616c65206973206e6f742061637469766560501b604482015260640161092e565b33600090815260196020526040902054600290610f609085906135ab565b1115610f7e5760405162461bcd60e51b815260040161092e906133fb565b600083118015610f985750610f95600660016135ab565b83105b610fb45760405162461bcd60e51b815260040161092e90613517565b610fce610fbf611fae565b6001600160a01b03163b151590565b15610feb5760405162461bcd60e51b815260040161092e90613574565b6000610ff5611fae565b90506000611004828585611534565b9050611018600d546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146110715760405162461bcd60e51b8152602060048201526016602482015275139bdd08185d5d1a1bdc9a5e9959081d1bc81b5a5b9d60521b604482015260640161092e565b611079611fae565b6001600160a01b03167fc452169ae7edce289738719dd02b7f729e6c72125b1e3ca55cb659c0afed174a6110ab6123a1565b60408051918252602082018990520160405180910390a233600090815260196020526040812080548792906110e19084906135ab565b90915550600090505b858110156111445761110a6110fd611fae565b6111056123a1565b6123b2565b60156111146123a1565b81546001810183556000928352602090922090910155611132612500565b8061113c81613674565b9150506110ea565b505050505050565b600061115760085490565b82106111ba5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161092e565b600882815481106111cd576111cd6136fb565b90600052602060002001549050919050565b6111e7611fae565b6001600160a01b0316611202600d546001600160a01b031690565b6001600160a01b0316146112285760405162461bcd60e51b815260040161092e90613491565b8051610ed3906016906020840190612e29565b600061124660085490565b60135490915060ff166112905760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161092e565b33600090815260186020526040902054600c906112ae9084906135ab565b11156112cc5760405162461bcd60e51b815260040161092e906133fb565b6000821180156112e657506112e3600660016135ab565b82105b6113025760405162461bcd60e51b815260040161092e90613517565b6115b361130f83836135ab565b11156113735760405162461bcd60e51b815260206004820152602d60248201527f45786365656473206d6178696d756d20746f6b656e7320617661696c61626c6560448201526c20666f7220707572636861736560981b606482015260840161092e565b6011546113809083612517565b3410156113cf5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161092e565b6113da610fbf611fae565b156113f75760405162461bcd60e51b815260040161092e90613574565b6113ff611fae565b6001600160a01b03167fc452169ae7edce289738719dd02b7f729e6c72125b1e3ca55cb659c0afed174a6114316123a1565b60408051918252602082018690520160405180910390a233600090815260186020526040812080548492906114679084906135ab565b90915550600090505b82811015610b9e576114836110fd611fae565b601561148d6123a1565b815460018101835560009283526020909220909101556114ab612500565b806114b581613674565b915050611470565b6000818152600260205260408120546001600160a01b0316806108df5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161092e565b604080516001600160a01b0385166020820152908101839052600090611573906060016040516020818303038152906040528051906020012083612523565b949350505050565b60006001600160a01b0382166115e65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161092e565b506001600160a01b031660009081526003602052604090205490565b61160a611fae565b6001600160a01b0316611625600d546001600160a01b031690565b6001600160a01b03161461164b5760405162461bcd60e51b815260040161092e90613491565b6116556000612547565b565b61165f611fae565b6001600160a01b031661167a600d546001600160a01b031690565b6001600160a01b0316146116a05760405162461bcd60e51b815260040161092e90613491565b60145460175411156116fe5760405162461bcd60e51b815260206004820152602160248201527f416c6c20616c6c6f636174656420746f6b656e732061726520726573657276656044820152601960fa1b606482015260840161092e565b60005b81811015610b9e57611715836111056123a1565b601561171f6123a1565b8154600181018355600092835260209092209091015561173d612500565b8061174781613674565b915050611701565b6015818154811061175f57600080fd5b600091825260209091200154905081565b606060158054806020026020016040519081016040528092919081815260200182805480156109dc57602002820191906000526020600020905b8154815260200190600101908083116117aa575050505050905090565b6117cf611fae565b6001600160a01b03166117ea600d546001600160a01b031690565b6001600160a01b0316146118105760405162461bcd60e51b815260040161092e90613491565b611655612500565b611820611fae565b6001600160a01b031661183b600d546001600160a01b031690565b6001600160a01b0316146118615760405162461bcd60e51b815260040161092e90613491565b8051610ed3906010906020840190612e29565b60606001805461096390613639565b61188b611fae565b6001600160a01b0316826001600160a01b031614156118ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161092e565b80600560006118f9611fae565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561193d611fae565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611979911515815260200190565b60405180910390a35050565b611996611990611fae565b83612127565b6119b25760405162461bcd60e51b815260040161092e906134c6565b6119be84848484612599565b50505050565b6000818152600260205260409020546060906001600160a01b0316611a435760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161092e565b6000611a4d6125cc565b90506000815111611a6d5760405180602001604052806000815250611a98565b80611a77846125db565b604051602001611a88929190613303565b6040516020818303038152906040525b9392505050565b611aa7611fae565b6001600160a01b0316611ac2600d546001600160a01b031690565b6001600160a01b031614611ae85760405162461bcd60e51b815260040161092e90613491565b6013805460ff19811660ff90911615179055565b611b04611fae565b6001600160a01b0316611b1f600d546001600160a01b031690565b6001600160a01b031614611b455760405162461bcd60e51b815260040161092e90613491565b601255565b6000611b5560085490565b60135490915060ff16611b9f5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161092e565b33600090815260186020526040902054600c90611bbd9084906135ab565b1115611bdb5760405162461bcd60e51b815260040161092e906133fb565b600082118015611bf55750611bf2600660016135ab565b82105b611c115760405162461bcd60e51b815260040161092e90613517565b601254611c1e83836135ab565b1115611c7e5760405162461bcd60e51b815260206004820152602960248201527f45786365656473206d6178696d756d20746f6b656e7320617661696c61626c6560448201526820666f72204672656560b81b606482015260840161092e565b611c89610fbf611fae565b15611ca65760405162461bcd60e51b815260040161092e90613574565b611cae611fae565b6001600160a01b03167fc452169ae7edce289738719dd02b7f729e6c72125b1e3ca55cb659c0afed174a611ce06123a1565b60408051918252602082018690520160405180910390a23360009081526018602052604081208054849290611d169084906135ab565b90915550600090505b82811015610b9e57611d326110fd611fae565b6015611d3c6123a1565b81546001810183556000928352602090922090910155611d5a612500565b80611d6481613674565b915050611d1f565b60606010805461096390613639565b600e5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611dc857600080fd5b505afa158015611ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e0091906131cb565b6001600160a01b03161415611e195760019150506108df565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff16611573565b611e4f611fae565b6001600160a01b0316611e6a600d546001600160a01b031690565b6001600160a01b031614611e905760405162461bcd60e51b815260040161092e90613491565b6001600160a01b038116611ef55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092e565b611efe81612547565b50565b600033301415611f5857600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611f5b9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b1480611f8f57506001600160e01b03198216635b5e139f60e01b145b806108df57506301ffc9a760e01b6001600160e01b03198316146108df565b6000611fb8611f01565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ff2826114bd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166120915760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b606482015260840161092e565b60016120a461209f876126d9565b612756565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156120f2573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611a9882846135ab565b6000818152600260205260408120546001600160a01b03166121a05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161092e565b60006121ab836114bd565b9050806001600160a01b0316846001600160a01b031614806121e65750836001600160a01b03166121db846109e6565b6001600160a01b0316145b8061157357506115738185611d7b565b826001600160a01b0316612209826114bd565b6001600160a01b0316146122715760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161092e565b6001600160a01b0382166122d35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161092e565b6122de838383612786565b6122e9600082611fbd565b6001600160a01b03831660009081526003602052604081208054600192906123129084906135f6565b90915550506001600160a01b03821660009081526003602052604081208054600192906123409084906135ab565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600f54600090611fb890600161211b565b6001600160a01b0382166124085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161092e565b6000818152600260205260409020546001600160a01b03161561246d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161092e565b61247960008383612786565b6001600160a01b03821660009081526003602052604081208054600192906124a29084906135ab565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f805490600061251083613674565b9190505550565b6000611a9882846135d7565b6000806000612532858561283e565b9150915061253f816128ae565b509392505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6125a48484846121f6565b6125b084848484612a69565b6119be5760405162461bcd60e51b815260040161092e9061343f565b60606016805461096390613639565b6060816125ff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612629578061261381613674565b91506126229050600a836135c3565b9150612603565b60008167ffffffffffffffff81111561264457612644613711565b6040519080825280601f01601f19166020018201604052801561266e576020820181803683370190505b5090505b8415611573576126836001836135f6565b9150612690600a8661368f565b61269b9060306135ab565b60f81b8183815181106126b0576126b06136fb565b60200101906001600160f81b031916908160001a9053506126d2600a866135c3565b9450612672565b60006040518060800160405280604381526020016137536043913980516020918201208351848301516040808701518051908601209051612739950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612761600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201612739565b6001600160a01b0383166127e1576127dc81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612804565b816001600160a01b0316836001600160a01b031614612804576128048382612b7d565b6001600160a01b03821661281b57610b9e81612c1a565b826001600160a01b0316826001600160a01b031614610b9e57610b9e8282612cc9565b6000808251604114156128755760208301516040840151606085015160001a61286987828585612d0d565b945094505050506128a7565b82516040141561289f5760208301516040840151612894868383612dfa565b9350935050506128a7565b506000905060025b9250929050565b60008160048111156128c2576128c26136cf565b14156128cb5750565b60018160048111156128df576128df6136cf565b141561292d5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161092e565b6002816004811115612941576129416136cf565b141561298f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161092e565b60038160048111156129a3576129a36136cf565b14156129fc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161092e565b6004816004811115612a1057612a106136cf565b1415611efe5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161092e565b60006001600160a01b0384163b15612b7257836001600160a01b031663150b7a02612a92611fae565b8786866040518563ffffffff1660e01b8152600401612ab49493929190613367565b602060405180830381600087803b158015612ace57600080fd5b505af1925050508015612afe575060408051601f3d908101601f19168201909252612afb918101906131ae565b60015b612b58573d808015612b2c576040519150601f19603f3d011682016040523d82523d6000602084013e612b31565b606091505b508051612b505760405162461bcd60e51b815260040161092e9061343f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611573565b506001949350505050565b60006001612b8a8461157b565b612b9491906135f6565b600083815260076020526040902054909150808214612be7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612c2c906001906135f6565b60008381526009602052604081205460088054939450909284908110612c5457612c546136fb565b906000526020600020015490508060088381548110612c7557612c756136fb565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612cad57612cad6136e5565b6001900381819060005260206000200160009055905550505050565b6000612cd48361157b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612d445750600090506003612df1565b8460ff16601b14158015612d5c57508460ff16601c14155b15612d6d5750600090506004612df1565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612dc1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612dea57600060019250925050612df1565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01612e1b87828885612d0d565b935093505050935093915050565b828054612e3590613639565b90600052602060002090601f016020900481019282612e575760008555612e9d565b82601f10612e7057805160ff1916838001178555612e9d565b82800160010185558215612e9d579182015b82811115612e9d578251825591602001919060010190612e82565b50612ea9929150612ead565b5090565b5b80821115612ea95760008155600101612eae565b600067ffffffffffffffff80841115612edd57612edd613711565b604051601f8501601f19908116603f01168101908282118183101715612f0557612f05613711565b81604052809350858152868686011115612f1e57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612f4957600080fd5b611a9883833560208501612ec2565b600060208284031215612f6a57600080fd5b8135611a9881613727565b60008060408385031215612f8857600080fd5b8235612f9381613727565b91506020830135612fa381613727565b809150509250929050565b600080600060608486031215612fc357600080fd5b8335612fce81613727565b92506020840135612fde81613727565b929592945050506040919091013590565b6000806000806080858703121561300557600080fd5b843561301081613727565b9350602085013561302081613727565b925060408501359150606085013567ffffffffffffffff81111561304357600080fd5b61304f87828801612f38565b91505092959194509250565b6000806040838503121561306e57600080fd5b823561307981613727565b915060208301358015158114612fa357600080fd5b600080600080600060a086880312156130a657600080fd5b85356130b181613727565b9450602086013567ffffffffffffffff8111156130cd57600080fd5b6130d988828901612f38565b9450506040860135925060608601359150608086013560ff811681146130fe57600080fd5b809150509295509295909350565b6000806040838503121561311f57600080fd5b823561312a81613727565b946020939093013593505050565b60008060006060848603121561314d57600080fd5b833561315881613727565b925060208401359150604084013567ffffffffffffffff81111561317b57600080fd5b61318786828701612f38565b9150509250925092565b6000602082840312156131a357600080fd5b8135611a988161373c565b6000602082840312156131c057600080fd5b8151611a988161373c565b6000602082840312156131dd57600080fd5b8151611a9881613727565b6000602082840312156131fa57600080fd5b813567ffffffffffffffff81111561321157600080fd5b8201601f8101841361322257600080fd5b61157384823560208401612ec2565b60006020828403121561324357600080fd5b5035919050565b60008060006060848603121561325f57600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561317b57600080fd5b6000815180845261329c81602086016020860161360d565b601f01601f19169290920160200192915050565b600082516132c281846020870161360d565b9190910192915050565b600083516132de81846020880161360d565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6000835161331581846020880161360d565b83519083019061332981836020880161360d565b01949350505050565b6001600160a01b0384811682528316602082015260606040820181905260009061335e90830184613284565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061339a90830184613284565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133dc578351835292840192918401916001016133c0565b50909695505050505050565b602081526000611a986020830184613284565b60208082526024908201527f6d61784e465450657257616c6c657420636f6e73747261696e742076696f6c616040820152633a34b7b760e11b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252603f908201527f45786365656473206d6178696d756d20746f6b656e7320796f752063616e207060408201527f7572636861736520696e20612073696e676c65207472616e73616374696f6e00606082015260800190565b60208082526019908201527f436f6e74726163747320617265206e6f7420616c6c6f77656400000000000000604082015260600190565b600082198211156135be576135be6136a3565b500190565b6000826135d2576135d26136b9565b500490565b60008160001904831182151516156135f1576135f16136a3565b500290565b600082821015613608576136086136a3565b500390565b60005b83811015613628578181015183820152602001613610565b838111156119be5750506000910152565b600181811c9082168061364d57607f821691505b6020821081141561366e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613688576136886136a3565b5060010190565b60008261369e5761369e6136b9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611efe57600080fd5b6001600160e01b031981168114611efe57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122058208eabed2045686c991505e1c394e3357fa27f7c8e6e52f1d78d77370b3b9e64736f6c63430008060033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f74686570757a7a6c65642e636c75622f6170692f636f6e747261637400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c806378cf19e911610190578063c7c5a8c0116100dc578063e619e2d911610095578063ed6661c21161006f578063ed6661c214610858578063f2fde38b1461086e578063f47c84c51461088e578063f4c04c8e146108a457600080fd5b8063e619e2d91461080d578063e8a3d48514610823578063e985e9c51461083857600080fd5b8063c7c5a8c014610776578063c87b56dd1461078b578063ce03ec93146107ab578063d755bf99146107c0578063e0df7216146107e0578063e246a997146107fa57600080fd5b8063938e3d7b11610149578063a22cb46511610123578063a22cb465146106dc578063b88d4fde146106fc578063ba060bed1461071c578063bf90b44d1461074957600080fd5b8063938e3d7b1461069157806395d89b41146106b1578063a035b1fe146106c657600080fd5b806378cf19e9146105e75780637b60fa3f14610607578063880a3c86146106275780638d294f78146106495780638da5cb5b1461065e57806390be98ec1461067c57600080fd5b80632f4b3fde1161024f5780634f6ccce7116102085780636352211e116101e25780636352211e146105725780636b2c398a1461059257806370a08231146105b2578063715018a6146105d257600080fd5b80634f6ccce71461051f57806355f804b31461053f5780635f1886321461055f57600080fd5b80632f4b3fde146104925780632f745c59146104b15780633408e470146104d15780633ccfd60b146104e457806342842e0e146104ec57806343774ebd1461050c57600080fd5b80630f7e5970116102a15780630f7e5970146103c257806310007380146103ef57806318160ddd1461041257806320379ee51461042757806323b872dd1461043c5780632d0335ab1461045c57600080fd5b806301ffc9a7146102e9578063064d86cc1461031e57806306fdde0314610335578063081812fc14610357578063095ea7b31461038f5780630c53c51c146103af575b600080fd5b3480156102f557600080fd5b50610309610304366004613191565b6108ba565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b506103336108e5565b005b34801561034157600080fd5b5061034a610954565b60405161031591906133e8565b34801561036357600080fd5b50610377610372366004613231565b6109e6565b6040516001600160a01b039091168152602001610315565b34801561039b57600080fd5b506103336103aa36600461310c565b610a7b565b61034a6103bd36600461308e565b610ba3565b3480156103ce57600080fd5b5061034a604051806040016040528060018152602001603160f81b81525081565b3480156103fb57600080fd5b50610404600681565b604051908152602001610315565b34801561041e57600080fd5b50600854610404565b34801561043357600080fd5b50600b54610404565b34801561044857600080fd5b50610333610457366004612fae565b610d8d565b34801561046857600080fd5b50610404610477366004612f58565b6001600160a01b03166000908152600c602052604090205490565b34801561049e57600080fd5b5060135461030990610100900460ff1681565b3480156104bd57600080fd5b506104046104cc36600461310c565b610dc5565b3480156104dd57600080fd5b5046610404565b610333610e5b565b3480156104f857600080fd5b50610333610507366004612fae565b610ed7565b61033361051a36600461324a565b610ef2565b34801561052b57600080fd5b5061040461053a366004613231565b61114c565b34801561054b57600080fd5b5061033361055a3660046131e8565b6111df565b61033361056d366004613231565b61123b565b34801561057e57600080fd5b5061037761058d366004613231565b6114bd565b34801561059e57600080fd5b506103776105ad366004613138565b611534565b3480156105be57600080fd5b506104046105cd366004612f58565b61157b565b3480156105de57600080fd5b50610333611602565b3480156105f357600080fd5b5061033361060236600461310c565b611657565b34801561061357600080fd5b50610404610622366004613231565b61174f565b34801561063357600080fd5b5061063c611770565b60405161031591906133a4565b34801561065557600080fd5b506103336117c7565b34801561066a57600080fd5b50600d546001600160a01b0316610377565b34801561068857600080fd5b50610404600281565b34801561069d57600080fd5b506103336106ac3660046131e8565b611818565b3480156106bd57600080fd5b5061034a611874565b3480156106d257600080fd5b5061040460115481565b3480156106e857600080fd5b506103336106f736600461305b565b611883565b34801561070857600080fd5b50610333610717366004612fef565b611985565b34801561072857600080fd5b50610404610737366004612f58565b60186020526000908152604090205481565b34801561075557600080fd5b50610404610764366004612f58565b60196020526000908152604090205481565b34801561078257600080fd5b50610404600c81565b34801561079757600080fd5b5061034a6107a6366004613231565b6119c4565b3480156107b757600080fd5b50610333611a9f565b3480156107cc57600080fd5b506103336107db366004613231565b611afc565b3480156107ec57600080fd5b506013546103099060ff1681565b610333610808366004613231565b611b4a565b34801561081957600080fd5b5061040460145481565b34801561082f57600080fd5b5061034a611d6c565b34801561084457600080fd5b50610309610853366004612f75565b611d7b565b34801561086457600080fd5b5061040460125481565b34801561087a57600080fd5b50610333610889366004612f58565b611e47565b34801561089a57600080fd5b506104046115b381565b3480156108b057600080fd5b5061040460175481565b60006001600160e01b0319821663780e9d6360e01b14806108df57506108df82611f5e565b92915050565b6108ed611fae565b6001600160a01b0316610908600d546001600160a01b031690565b6001600160a01b0316146109375760405162461bcd60e51b815260040161092e90613491565b60405180910390fd5b6013805461ff001981166101009182900460ff1615909102179055565b60606000805461096390613639565b80601f016020809104026020016040519081016040528092919081815260200182805461098f90613639565b80156109dc5780601f106109b1576101008083540402835291602001916109dc565b820191906000526020600020905b8154815290600101906020018083116109bf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a5f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161092e565b506000908152600460205260409020546001600160a01b031690565b6000610a86826114bd565b9050806001600160a01b0316836001600160a01b03161415610af45760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161092e565b806001600160a01b0316610b06611fae565b6001600160a01b03161480610b225750610b2281610853611fae565b610b945760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161092e565b610b9e8383611fbd565b505050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610be1878287878761202b565b610c375760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b606482015260840161092e565b6001600160a01b0387166000908152600c6020526040902054610c5b90600161211b565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610cab90899033908a90613332565b60405180910390a1600080306001600160a01b0316888a604051602001610cd39291906132cc565b60408051601f1981840301815290829052610ced916132b0565b6000604051808303816000865af19150503d8060008114610d2a576040519150601f19603f3d011682016040523d82523d6000602084013e610d2f565b606091505b509150915081610d815760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c00000000604482015260640161092e565b98975050505050505050565b610d9e610d98611fae565b82612127565b610dba5760405162461bcd60e51b815260040161092e906134c6565b610b9e8383836121f6565b6000610dd08361157b565b8210610e325760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161092e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610e63611fae565b6001600160a01b0316610e7e600d546001600160a01b031690565b6001600160a01b031614610ea45760405162461bcd60e51b815260040161092e90613491565b6040514790339082156108fc029083906000818181858888f19350505050158015610ed3573d6000803e3d6000fd5b5050565b610b9e83838360405180602001604052806000815250611985565b601354610100900460ff16610f425760405162461bcd60e51b81526020600482015260166024820152755072652d53616c65206973206e6f742061637469766560501b604482015260640161092e565b33600090815260196020526040902054600290610f609085906135ab565b1115610f7e5760405162461bcd60e51b815260040161092e906133fb565b600083118015610f985750610f95600660016135ab565b83105b610fb45760405162461bcd60e51b815260040161092e90613517565b610fce610fbf611fae565b6001600160a01b03163b151590565b15610feb5760405162461bcd60e51b815260040161092e90613574565b6000610ff5611fae565b90506000611004828585611534565b9050611018600d546001600160a01b031690565b6001600160a01b0316816001600160a01b0316146110715760405162461bcd60e51b8152602060048201526016602482015275139bdd08185d5d1a1bdc9a5e9959081d1bc81b5a5b9d60521b604482015260640161092e565b611079611fae565b6001600160a01b03167fc452169ae7edce289738719dd02b7f729e6c72125b1e3ca55cb659c0afed174a6110ab6123a1565b60408051918252602082018990520160405180910390a233600090815260196020526040812080548792906110e19084906135ab565b90915550600090505b858110156111445761110a6110fd611fae565b6111056123a1565b6123b2565b60156111146123a1565b81546001810183556000928352602090922090910155611132612500565b8061113c81613674565b9150506110ea565b505050505050565b600061115760085490565b82106111ba5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161092e565b600882815481106111cd576111cd6136fb565b90600052602060002001549050919050565b6111e7611fae565b6001600160a01b0316611202600d546001600160a01b031690565b6001600160a01b0316146112285760405162461bcd60e51b815260040161092e90613491565b8051610ed3906016906020840190612e29565b600061124660085490565b60135490915060ff166112905760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161092e565b33600090815260186020526040902054600c906112ae9084906135ab565b11156112cc5760405162461bcd60e51b815260040161092e906133fb565b6000821180156112e657506112e3600660016135ab565b82105b6113025760405162461bcd60e51b815260040161092e90613517565b6115b361130f83836135ab565b11156113735760405162461bcd60e51b815260206004820152602d60248201527f45786365656473206d6178696d756d20746f6b656e7320617661696c61626c6560448201526c20666f7220707572636861736560981b606482015260840161092e565b6011546113809083612517565b3410156113cf5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161092e565b6113da610fbf611fae565b156113f75760405162461bcd60e51b815260040161092e90613574565b6113ff611fae565b6001600160a01b03167fc452169ae7edce289738719dd02b7f729e6c72125b1e3ca55cb659c0afed174a6114316123a1565b60408051918252602082018690520160405180910390a233600090815260186020526040812080548492906114679084906135ab565b90915550600090505b82811015610b9e576114836110fd611fae565b601561148d6123a1565b815460018101835560009283526020909220909101556114ab612500565b806114b581613674565b915050611470565b6000818152600260205260408120546001600160a01b0316806108df5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161092e565b604080516001600160a01b0385166020820152908101839052600090611573906060016040516020818303038152906040528051906020012083612523565b949350505050565b60006001600160a01b0382166115e65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161092e565b506001600160a01b031660009081526003602052604090205490565b61160a611fae565b6001600160a01b0316611625600d546001600160a01b031690565b6001600160a01b03161461164b5760405162461bcd60e51b815260040161092e90613491565b6116556000612547565b565b61165f611fae565b6001600160a01b031661167a600d546001600160a01b031690565b6001600160a01b0316146116a05760405162461bcd60e51b815260040161092e90613491565b60145460175411156116fe5760405162461bcd60e51b815260206004820152602160248201527f416c6c20616c6c6f636174656420746f6b656e732061726520726573657276656044820152601960fa1b606482015260840161092e565b60005b81811015610b9e57611715836111056123a1565b601561171f6123a1565b8154600181018355600092835260209092209091015561173d612500565b8061174781613674565b915050611701565b6015818154811061175f57600080fd5b600091825260209091200154905081565b606060158054806020026020016040519081016040528092919081815260200182805480156109dc57602002820191906000526020600020905b8154815260200190600101908083116117aa575050505050905090565b6117cf611fae565b6001600160a01b03166117ea600d546001600160a01b031690565b6001600160a01b0316146118105760405162461bcd60e51b815260040161092e90613491565b611655612500565b611820611fae565b6001600160a01b031661183b600d546001600160a01b031690565b6001600160a01b0316146118615760405162461bcd60e51b815260040161092e90613491565b8051610ed3906010906020840190612e29565b60606001805461096390613639565b61188b611fae565b6001600160a01b0316826001600160a01b031614156118ec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161092e565b80600560006118f9611fae565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561193d611fae565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611979911515815260200190565b60405180910390a35050565b611996611990611fae565b83612127565b6119b25760405162461bcd60e51b815260040161092e906134c6565b6119be84848484612599565b50505050565b6000818152600260205260409020546060906001600160a01b0316611a435760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161092e565b6000611a4d6125cc565b90506000815111611a6d5760405180602001604052806000815250611a98565b80611a77846125db565b604051602001611a88929190613303565b6040516020818303038152906040525b9392505050565b611aa7611fae565b6001600160a01b0316611ac2600d546001600160a01b031690565b6001600160a01b031614611ae85760405162461bcd60e51b815260040161092e90613491565b6013805460ff19811660ff90911615179055565b611b04611fae565b6001600160a01b0316611b1f600d546001600160a01b031690565b6001600160a01b031614611b455760405162461bcd60e51b815260040161092e90613491565b601255565b6000611b5560085490565b60135490915060ff16611b9f5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161092e565b33600090815260186020526040902054600c90611bbd9084906135ab565b1115611bdb5760405162461bcd60e51b815260040161092e906133fb565b600082118015611bf55750611bf2600660016135ab565b82105b611c115760405162461bcd60e51b815260040161092e90613517565b601254611c1e83836135ab565b1115611c7e5760405162461bcd60e51b815260206004820152602960248201527f45786365656473206d6178696d756d20746f6b656e7320617661696c61626c6560448201526820666f72204672656560b81b606482015260840161092e565b611c89610fbf611fae565b15611ca65760405162461bcd60e51b815260040161092e90613574565b611cae611fae565b6001600160a01b03167fc452169ae7edce289738719dd02b7f729e6c72125b1e3ca55cb659c0afed174a611ce06123a1565b60408051918252602082018690520160405180910390a23360009081526018602052604081208054849290611d169084906135ab565b90915550600090505b82811015610b9e57611d326110fd611fae565b6015611d3c6123a1565b81546001810183556000928352602090922090910155611d5a612500565b80611d6481613674565b915050611d1f565b60606010805461096390613639565b600e5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611dc857600080fd5b505afa158015611ddc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e0091906131cb565b6001600160a01b03161415611e195760019150506108df565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff16611573565b611e4f611fae565b6001600160a01b0316611e6a600d546001600160a01b031690565b6001600160a01b031614611e905760405162461bcd60e51b815260040161092e90613491565b6001600160a01b038116611ef55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092e565b611efe81612547565b50565b600033301415611f5857600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150611f5b9050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b1480611f8f57506001600160e01b03198216635b5e139f60e01b145b806108df57506301ffc9a760e01b6001600160e01b03198316146108df565b6000611fb8611f01565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611ff2826114bd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b0386166120915760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b606482015260840161092e565b60016120a461209f876126d9565b612756565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156120f2573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611a9882846135ab565b6000818152600260205260408120546001600160a01b03166121a05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161092e565b60006121ab836114bd565b9050806001600160a01b0316846001600160a01b031614806121e65750836001600160a01b03166121db846109e6565b6001600160a01b0316145b8061157357506115738185611d7b565b826001600160a01b0316612209826114bd565b6001600160a01b0316146122715760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161092e565b6001600160a01b0382166122d35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161092e565b6122de838383612786565b6122e9600082611fbd565b6001600160a01b03831660009081526003602052604081208054600192906123129084906135f6565b90915550506001600160a01b03821660009081526003602052604081208054600192906123409084906135ab565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600f54600090611fb890600161211b565b6001600160a01b0382166124085760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161092e565b6000818152600260205260409020546001600160a01b03161561246d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161092e565b61247960008383612786565b6001600160a01b03821660009081526003602052604081208054600192906124a29084906135ab565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f805490600061251083613674565b9190505550565b6000611a9882846135d7565b6000806000612532858561283e565b9150915061253f816128ae565b509392505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6125a48484846121f6565b6125b084848484612a69565b6119be5760405162461bcd60e51b815260040161092e9061343f565b60606016805461096390613639565b6060816125ff5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612629578061261381613674565b91506126229050600a836135c3565b9150612603565b60008167ffffffffffffffff81111561264457612644613711565b6040519080825280601f01601f19166020018201604052801561266e576020820181803683370190505b5090505b8415611573576126836001836135f6565b9150612690600a8661368f565b61269b9060306135ab565b60f81b8183815181106126b0576126b06136fb565b60200101906001600160f81b031916908160001a9053506126d2600a866135c3565b9450612672565b60006040518060800160405280604381526020016137536043913980516020918201208351848301516040808701518051908601209051612739950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612761600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201612739565b6001600160a01b0383166127e1576127dc81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612804565b816001600160a01b0316836001600160a01b031614612804576128048382612b7d565b6001600160a01b03821661281b57610b9e81612c1a565b826001600160a01b0316826001600160a01b031614610b9e57610b9e8282612cc9565b6000808251604114156128755760208301516040840151606085015160001a61286987828585612d0d565b945094505050506128a7565b82516040141561289f5760208301516040840151612894868383612dfa565b9350935050506128a7565b506000905060025b9250929050565b60008160048111156128c2576128c26136cf565b14156128cb5750565b60018160048111156128df576128df6136cf565b141561292d5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604482015260640161092e565b6002816004811115612941576129416136cf565b141561298f5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604482015260640161092e565b60038160048111156129a3576129a36136cf565b14156129fc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b606482015260840161092e565b6004816004811115612a1057612a106136cf565b1415611efe5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b606482015260840161092e565b60006001600160a01b0384163b15612b7257836001600160a01b031663150b7a02612a92611fae565b8786866040518563ffffffff1660e01b8152600401612ab49493929190613367565b602060405180830381600087803b158015612ace57600080fd5b505af1925050508015612afe575060408051601f3d908101601f19168201909252612afb918101906131ae565b60015b612b58573d808015612b2c576040519150601f19603f3d011682016040523d82523d6000602084013e612b31565b606091505b508051612b505760405162461bcd60e51b815260040161092e9061343f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611573565b506001949350505050565b60006001612b8a8461157b565b612b9491906135f6565b600083815260076020526040902054909150808214612be7576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612c2c906001906135f6565b60008381526009602052604081205460088054939450909284908110612c5457612c546136fb565b906000526020600020015490508060088381548110612c7557612c756136fb565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612cad57612cad6136e5565b6001900381819060005260206000200160009055905550505050565b6000612cd48361157b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612d445750600090506003612df1565b8460ff16601b14158015612d5c57508460ff16601c14155b15612d6d5750600090506004612df1565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612dc1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612dea57600060019250925050612df1565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01612e1b87828885612d0d565b935093505050935093915050565b828054612e3590613639565b90600052602060002090601f016020900481019282612e575760008555612e9d565b82601f10612e7057805160ff1916838001178555612e9d565b82800160010185558215612e9d579182015b82811115612e9d578251825591602001919060010190612e82565b50612ea9929150612ead565b5090565b5b80821115612ea95760008155600101612eae565b600067ffffffffffffffff80841115612edd57612edd613711565b604051601f8501601f19908116603f01168101908282118183101715612f0557612f05613711565b81604052809350858152868686011115612f1e57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612f4957600080fd5b611a9883833560208501612ec2565b600060208284031215612f6a57600080fd5b8135611a9881613727565b60008060408385031215612f8857600080fd5b8235612f9381613727565b91506020830135612fa381613727565b809150509250929050565b600080600060608486031215612fc357600080fd5b8335612fce81613727565b92506020840135612fde81613727565b929592945050506040919091013590565b6000806000806080858703121561300557600080fd5b843561301081613727565b9350602085013561302081613727565b925060408501359150606085013567ffffffffffffffff81111561304357600080fd5b61304f87828801612f38565b91505092959194509250565b6000806040838503121561306e57600080fd5b823561307981613727565b915060208301358015158114612fa357600080fd5b600080600080600060a086880312156130a657600080fd5b85356130b181613727565b9450602086013567ffffffffffffffff8111156130cd57600080fd5b6130d988828901612f38565b9450506040860135925060608601359150608086013560ff811681146130fe57600080fd5b809150509295509295909350565b6000806040838503121561311f57600080fd5b823561312a81613727565b946020939093013593505050565b60008060006060848603121561314d57600080fd5b833561315881613727565b925060208401359150604084013567ffffffffffffffff81111561317b57600080fd5b61318786828701612f38565b9150509250925092565b6000602082840312156131a357600080fd5b8135611a988161373c565b6000602082840312156131c057600080fd5b8151611a988161373c565b6000602082840312156131dd57600080fd5b8151611a9881613727565b6000602082840312156131fa57600080fd5b813567ffffffffffffffff81111561321157600080fd5b8201601f8101841361322257600080fd5b61157384823560208401612ec2565b60006020828403121561324357600080fd5b5035919050565b60008060006060848603121561325f57600080fd5b8335925060208401359150604084013567ffffffffffffffff81111561317b57600080fd5b6000815180845261329c81602086016020860161360d565b601f01601f19169290920160200192915050565b600082516132c281846020870161360d565b9190910192915050565b600083516132de81846020880161360d565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b6000835161331581846020880161360d565b83519083019061332981836020880161360d565b01949350505050565b6001600160a01b0384811682528316602082015260606040820181905260009061335e90830184613284565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061339a90830184613284565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156133dc578351835292840192918401916001016133c0565b50909695505050505050565b602081526000611a986020830184613284565b60208082526024908201527f6d61784e465450657257616c6c657420636f6e73747261696e742076696f6c616040820152633a34b7b760e11b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252603f908201527f45786365656473206d6178696d756d20746f6b656e7320796f752063616e207060408201527f7572636861736520696e20612073696e676c65207472616e73616374696f6e00606082015260800190565b60208082526019908201527f436f6e74726163747320617265206e6f7420616c6c6f77656400000000000000604082015260600190565b600082198211156135be576135be6136a3565b500190565b6000826135d2576135d26136b9565b500490565b60008160001904831182151516156135f1576135f16136a3565b500290565b600082821015613608576136086136a3565b500390565b60005b83811015613628578181015183820152602001613610565b838111156119be5750506000910152565b600181811c9082168061364d57607f821691505b6020821081141561366e57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613688576136886136a3565b5060010190565b60008261369e5761369e6136b9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114611efe57600080fd5b6001600160e01b031981168114611efe57600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122058208eabed2045686c991505e1c394e3357fa27f7c8e6e52f1d78d77370b3b9e64736f6c63430008060033

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

000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f74686570757a7a6c65642e636c75622f6170692f636f6e747261637400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [1] : _cURI (string): https://thepuzzled.club/api/contract

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [3] : 68747470733a2f2f74686570757a7a6c65642e636c75622f6170692f636f6e74
Arg [4] : 7261637400000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.