ETH Price: $3,604.70 (+4.41%)
 

Overview

Max Total Supply

0 PIGGY

Holders

84

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vinegaroon.eth
Balance
1 PIGGY
0x9de913b2e5b0f3986bffa510201107d8a07cd542
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:
PiggyCrew

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : PiggyCrew.sol
// SPDX-License-Identifier: MIT
/*
    ▄█▀▀▀█▄█    ▄█▀▀▀█▄█
    ██    ▀██   ██    ▀█
    ██     ██   ██
    █▀████▀     ██
    ██          ██    ▄█
    ██          ▀█▄▄▄█▀█

    PiggyCrew / 2021 / V1.0
*/

pragma solidity 0.8.6;

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/utils/cryptography/SignatureChecker.sol';
import '@openzeppelin/contracts/utils/cryptography/ECDSA.sol';
import './PiggyStorageV0.sol';

contract PiggyCrew is ERC721, Ownable, PiggyStorageV0 {
    using ECDSA for bytes32;
    using Counters for Counters.Counter;
    using SignatureChecker for address;

    // reserve batch size
    uint256 public constant reserveBatchNum = 1;

    // withdraw ETH address
    address public t1;

    modifier onlyOwnerOrAdmin {
        require(msg.sender == owner() || msg.sender == whitelistSigner, "onlyOwnerOrAdmin: sender have not access");
        _;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri,
        uint256 _price,
        uint256 _whitelistPrice,
        uint256 _maxPurchaseNum,
        uint256 _maxSupply,
        uint256 _reserveNum,
        address _signer
    ) ERC721(_name, _symbol) {
        baseURI = _uri;
        price = _price;
        whitelistPrice = _whitelistPrice;
        t1 = msg.sender;
        maxPurchaseNum = _maxPurchaseNum;
        maxSupply = _maxSupply;
        reserveNum = _reserveNum;
        whitelistSigner = _signer;
    }

    /**
     * @dev Override _baseURI, so that tokenURI could use it as base.
     */
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    /**
     * @dev withdraw eth paid in mint and presale
     */
    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(t1).transfer(balance);
    }

    /**
     * @dev give away NFTs
     */
    function giveAway(address _to, uint256 _amount) external onlyOwnerOrAdmin {
        for (uint256 i; i < _amount; i++) {
            if (id.current() < maxSupply) {
                uint256 id = _nextId();
                _safeMint(_to, id);
            }
        }
    }
    /**
     * @dev reserve some NFTs aside
     */
    function reserve() public onlyOwner {
        uint256 toReserve = reserveNum - mintedReserveNum;
        uint256 batch = reserveBatchNum < toReserve ? reserveBatchNum : toReserve;
        uint256 beforeReserve = id.current();
        require(beforeReserve + batch <= maxSupply, "Reserving would exceed max supply");
        for (uint256 i = 0; i < batch; i++) {
            _mint();
        }
        uint256 afterReserve = id.current();
        mintedReserveNum += afterReserve - beforeReserve;
    }

    function setMintingState(bool _value) external onlyOwnerOrAdmin {
        isMintingActive = _value;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

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

    function setOwner(address _owner) external onlyOwner {
        transferOwnership(_owner);
    }

    function setSigner(address _signer) external onlyOwner {
        whitelistSigner = _signer;
    }

    function setWithdrawAddress(address _owner) external onlyOwner {
        t1 = _owner;
    }

    /**
     * @dev mint multiple
     */
    function mint(uint256 _num) external payable {
        require(isMintingActive, "mint: Minting must be active");
        require(_num <= maxPurchaseNum, "mint: Cannot mint this many at a time");
        require(id.current() + _num <= maxSupply, "mint: Minting would exceed max supply");
        require(price * _num <= msg.value, "mint: Ether value sent is not correct");

        for (uint i = 0; i < _num; i++) {
            _mint();
        }
    }

    /**
     * @dev whitelist claim
     */
    function whitelistMint(uint256 _whitelistID, bytes calldata _signature, uint256 _num) external payable {
        require(id.current() + _num <= maxSupply, "whitelistMint: Minting would exceed max supply");
        require(_num <= maxPurchaseNum, "whitelistMint: Cannot mint this many at a time");
        require(whitelistPrice * _num <= msg.value, "whitelistMint: Ether value sent is not correct");

        require(!hasMinted[_whitelistID], "whitelistMint: Whitelist already claimed");

        for (uint i = 0; i < _num; i++) {
            require(_verify(getMessageHash(_msgSender(), _whitelistID), _signature), "whitelistMint: Invalid Signature");
            hasMinted[_whitelistID] = true;
            _mint();
        }
    }

    /**
     * @dev set base URI
     */
    function setBaseURI(string memory _uri) public onlyOwner {
        baseURI = _uri;
    }

    function _nextId() internal returns (uint256) {
        id.increment();
        return id.current();
    }

    function _mint() internal {
        if (id.current() < maxSupply) {
            uint256 id = _nextId();
            _safeMint(_msgSender(), id);
        }
    }

    function getMessageHash(
        address _account,
        uint256 _whitelistID
    ) public pure returns (bytes32) {
        return keccak256(abi.encodePacked(_account, _whitelistID));
    }

    function _verify(bytes32 hash, bytes calldata signature) internal view returns (bool) {
        return whitelistSigner.isValidSignatureNow(hash.toEthSignedMessageHash(), signature);
    }
}

File 2 of 16 : PiggyStorageV0.sol
// SPDX-License-Identifier: MIT

pragma solidity 0.8.6;

import '@openzeppelin/contracts/utils/Counters.sol';

contract PiggyStorageV0 {
    /**
     * @dev mint price
     */
    uint256 public price;

    /**
     * @dev whitelist price
     */
    uint256 public whitelistPrice;

    /*
     * @dev maxPurchaseNum
     */
    uint256 public maxPurchaseNum;

    /**
     * @dev maxSupply
     */
    uint256 public maxSupply;

    /**
     * @dev baseURI
     */
    string public baseURI;

    /**
     * @dev number of total reserved NFTs
     */
    uint256 public reserveNum;

    /**
     * @dev number of reserved NFTs minted
     */
    uint256 public mintedReserveNum;

    /**
     * @dev The current id of NFTs. Auto increment.
     */
    Counters.Counter public id;

    /**
     * @dev is minting active.
     */
    bool public isMintingActive = false;

    /**
     * @dev signer for whitelist sale
     */
    address public whitelistSigner;

    /**
     * @dev hasMinted stores all the whitelist sale result
     */
    mapping(uint256 => bool) public hasMinted;
}

File 3 of 16 : 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 4 of 16 : 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 5 of 16 : SignatureChecker.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ECDSA.sol";
import "../Address.sol";
import "../../interfaces/IERC1271.sol";

/**
 * @dev Signature verification helper: Provide a single mechanism to verify both private-key (EOA) ECDSA signature and
 * ERC1271 contract sigantures. Using this instead of ECDSA.recover in your contract will make them compatible with
 * smart contract wallets such as Argent and Gnosis.
 *
 * Note: unlike ECDSA signatures, contract signature's are revocable, and the outcome of this function can thus change
 * through time. It could return true at block N and false at block N+1 (or the opposite).
 *
 * _Available since v4.1._
 */
library SignatureChecker {
    function isValidSignatureNow(
        address signer,
        bytes32 hash,
        bytes memory signature
    ) internal view returns (bool) {
        if (Address.isContract(signer)) {
            try IERC1271(signer).isValidSignature(hash, signature) returns (bytes4 magicValue) {
                return magicValue == IERC1271(signer).isValidSignature.selector;
            } catch {
                return false;
            }
        } else {
            return ECDSA.recover(hash, signature) == signer;
        }
    }
}

File 6 of 16 : 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 {
    /**
     * @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.
     *
     * 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]
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        // 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 recover(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 recover(hash, r, vs);
        } else {
            revert("ECDSA: invalid signature length");
        }
    }

    /**
     * @dev Overload of {ECDSA-recover} 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.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return recover(hash, v, r, s);
    }

    /**
     * @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) {
        // 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 (281): 0 < s < secp256k1n ÷ 2 + 1, and for v in (282): 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.
        require(
            uint256(s) <= 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0,
            "ECDSA: invalid signature 's' value"
        );
        require(v == 27 || v == 28, "ECDSA: invalid signature 'v' value");

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        require(signer != address(0), "ECDSA: invalid signature");

        return signer;
    }

    /**
     * @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 7 of 16 : 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 8 of 16 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 9 of 16 : 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 10 of 16 : 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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 11 of 16 : 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 12 of 16 : 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 13 of 16 : 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 14 of 16 : 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(to).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 15 of 16 : IERC1271.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC1271 standard signature validation method for
 * contracts as defined in https://eips.ethereum.org/EIPS/eip-1271[ERC-1271].
 *
 * _Available since v4.1._
 */
interface IERC1271 {
    /**
     * @dev Should return whether the signature provided is valid for the provided data
     * @param hash      Hash of the data to be signed
     * @param signature Signature byte array associated with _data
     */
    function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue);
}

File 16 of 16 : 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":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"uint256","name":"_price","type":"uint256"},{"internalType":"uint256","name":"_whitelistPrice","type":"uint256"},{"internalType":"uint256","name":"_maxPurchaseNum","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_reserveNum","type":"uint256"},{"internalType":"address","name":"_signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_whitelistID","type":"uint256"}],"name":"getMessageHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"id","outputs":[{"internalType":"uint256","name":"_value","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":"isMintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPurchaseNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedReserveNum","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveBatchNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveNum","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setMintingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistPrice","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setWithdrawAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistID","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600f805460ff191690553480156200001b57600080fd5b5060405162002d6738038062002d678339810160408190526200003e91620002cb565b8851899089906200005790600090602085019062000151565b5080516200006d90600190602084019062000151565b5050506200008a62000084620000fb60201b60201c565b620000ff565b86516200009f90600b9060208a019062000151565b50600795909555600893909355601180546001600160a01b03191633179055600991909155600a55600c55600f80546001600160a01b039290921661010002610100600160a81b031990921691909117905550620003f3915050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015f90620003a0565b90600052602060002090601f016020900481019282620001835760008555620001ce565b82601f106200019e57805160ff1916838001178555620001ce565b82800160010185558215620001ce579182015b82811115620001ce578251825591602001919060010190620001b1565b50620001dc929150620001e0565b5090565b5b80821115620001dc5760008155600101620001e1565b80516001600160a01b03811681146200020f57600080fd5b919050565b600082601f8301126200022657600080fd5b81516001600160401b0380821115620002435762000243620003dd565b604051601f8301601f19908116603f011681019082821181831017156200026e576200026e620003dd565b816040528381526020925086838588010111156200028b57600080fd5b600091505b83821015620002af578582018301518183018401529082019062000290565b83821115620002c15760008385830101525b9695505050505050565b60008060008060008060008060006101208a8c031215620002eb57600080fd5b89516001600160401b03808211156200030357600080fd5b620003118d838e0162000214565b9a5060208c01519150808211156200032857600080fd5b620003368d838e0162000214565b995060408c01519150808211156200034d57600080fd5b506200035c8c828d0162000214565b97505060608a0151955060808a0151945060a08a0151935060c08a0151925060e08a01519150620003916101008b01620001f7565b90509295985092959850929598565b600181811c90821680620003b557607f821691505b60208210811415620003d757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61296480620004036000396000f3fe6080604052600436106102515760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063e5b955951161007a578063e5b9559514610676578063e985e9c5146106a6578063ef81b4d4146106ef578063f2fde38b14610714578063fb5343f314610734578063fc1a1c361461075457600080fd5b8063b88d4fde146105eb578063c87b56dd1461060b578063ca8001441461062b578063cd3293de1461064b578063d5abeb011461066057600080fd5b80639bbf8325116100fd5780639bbf83251461056b578063a035b1fe1461058b578063a0712d68146105a1578063a22cb465146105b4578063af640d0f146105d457600080fd5b80638da5cb5b146104ec57806391b7f5ed1461050a578063925b8e021461052a57806392a046211461054057806395d89b411461055657600080fd5b806342842e0e116101d25780636ac437b0116101965780636ac437b0146104485780636c0360eb146104625780636c19e7831461047757806370a0823114610497578063715018a6146104b7578063717d57d3146104cc57600080fd5b806342842e0e146103b55780634c6ce5bc146103d5578063512c91df146103e857806355f804b3146104085780636352211e1461042857600080fd5b8063123fecf811610219578063123fecf81461032b57806313af40351461034057806323b872dd146103605780633ab1a494146103805780633ccfd60b146103a057600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e55780630a32c27614610307575b600080fd5b34801561026257600080fd5b506102766102713660046124d0565b61076a565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107bc565b6040516102829190612695565b3480156102b957600080fd5b506102cd6102c8366004612553565b61084e565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b5061030561030036600461248b565b6108e8565b005b34801561031357600080fd5b5061031d600c5481565b604051908152602001610282565b34801561033757600080fd5b5061031d600181565b34801561034c57600080fd5b5061030561035b36600461235b565b6109fe565b34801561036c57600080fd5b5061030561037b3660046123a9565b610a34565b34801561038c57600080fd5b5061030561039b36600461235b565b610a65565b3480156103ac57600080fd5b50610305610ab1565b3480156103c157600080fd5b506103056103d03660046123a9565b610b19565b6103056103e336600461256c565b610b34565b3480156103f457600080fd5b5061031d61040336600461248b565b610da2565b34801561041457600080fd5b5061030561042336600461250a565b610de9565b34801561043457600080fd5b506102cd610443366004612553565b610e26565b34801561045457600080fd5b50600f546102769060ff1681565b34801561046e57600080fd5b506102a0610e9d565b34801561048357600080fd5b5061030561049236600461235b565b610f2b565b3480156104a357600080fd5b5061031d6104b236600461235b565b610f7d565b3480156104c357600080fd5b50610305611004565b3480156104d857600080fd5b506103056104e7366004612553565b61103a565b3480156104f857600080fd5b506006546001600160a01b03166102cd565b34801561051657600080fd5b50610305610525366004612553565b611069565b34801561053657600080fd5b5061031d600d5481565b34801561054c57600080fd5b5061031d60095481565b34801561056257600080fd5b506102a0611098565b34801561057757600080fd5b506103056105863660046124b5565b6110a7565b34801561059757600080fd5b5061031d60075481565b6103056105af366004612553565b6110fe565b3480156105c057600080fd5b506103056105cf366004612461565b6112b3565b3480156105e057600080fd5b50600e5461031d9081565b3480156105f757600080fd5b506103056106063660046123e5565b611378565b34801561061757600080fd5b506102a0610626366004612553565b6113b0565b34801561063757600080fd5b5061030561064636600461248b565b61148b565b34801561065757600080fd5b50610305611510565b34801561066c57600080fd5b5061031d600a5481565b34801561068257600080fd5b50610276610691366004612553565b60106020526000908152604090205460ff1681565b3480156106b257600080fd5b506102766106c1366004612376565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106fb57600080fd5b50600f546102cd9061010090046001600160a01b031681565b34801561072057600080fd5b5061030561072f36600461235b565b61162f565b34801561074057600080fd5b506011546102cd906001600160a01b031681565b34801561076057600080fd5b5061031d60085481565b60006001600160e01b031982166380ac58cd60e01b148061079b57506001600160e01b03198216635b5e139f60e01b145b806107b657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107cb90612856565b80601f01602080910402602001604051908101604052809291908181526020018280546107f790612856565b80156108445780601f1061081957610100808354040283529160200191610844565b820191906000526020600020905b81548152906001019060200180831161082757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108f382610e26565b9050806001600160a01b0316836001600160a01b031614156109615760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c3565b336001600160a01b038216148061097d575061097d81336106c1565b6109ef5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c3565b6109f983836116c7565b505050565b6006546001600160a01b03163314610a285760405162461bcd60e51b81526004016108c390612742565b610a318161162f565b50565b610a3e3382611735565b610a5a5760405162461bcd60e51b81526004016108c390612777565b6109f983838361182c565b6006546001600160a01b03163314610a8f5760405162461bcd60e51b81526004016108c390612742565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610adb5760405162461bcd60e51b81526004016108c390612742565b60115460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610b15573d6000803e3d6000fd5b5050565b6109f983838360405180602001604052806000815250611378565b600a5481610b41600e5490565b610b4b91906127c8565b1115610bb05760405162461bcd60e51b815260206004820152602e60248201527f77686974656c6973744d696e743a204d696e74696e6720776f756c642065786360448201526d656564206d617820737570706c7960901b60648201526084016108c3565b600954811115610c195760405162461bcd60e51b815260206004820152602e60248201527f77686974656c6973744d696e743a2043616e6e6f74206d696e7420746869732060448201526d6d616e7920617420612074696d6560901b60648201526084016108c3565b3481600854610c2891906127f4565b1115610c8d5760405162461bcd60e51b815260206004820152602e60248201527f77686974656c6973744d696e743a2045746865722076616c75652073656e742060448201526d1a5cc81b9bdd0818dbdc9c9958dd60921b60648201526084016108c3565b60008481526010602052604090205460ff1615610cfd5760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a2057686974656c69737420616c72656164796044820152670818db185a5b595960c21b60648201526084016108c3565b60005b81811015610d9b57610d1c610d153387610da2565b85856119cc565b610d685760405162461bcd60e51b815260206004820181905260248201527f77686974656c6973744d696e743a20496e76616c6964205369676e617475726560448201526064016108c3565b6000858152601060205260409020805460ff19166001179055610d89611a78565b80610d9381612891565b915050610d00565b5050505050565b6040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b6006546001600160a01b03163314610e135760405162461bcd60e51b81526004016108c390612742565b8051610b1590600b906020840190612220565b6000818152600260205260408120546001600160a01b0316806107b65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c3565b600b8054610eaa90612856565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed690612856565b8015610f235780601f10610ef857610100808354040283529160200191610f23565b820191906000526020600020905b815481529060010190602001808311610f0657829003601f168201915b505050505081565b6006546001600160a01b03163314610f555760405162461bcd60e51b81526004016108c390612742565b600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006001600160a01b038216610fe85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c3565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461102e5760405162461bcd60e51b81526004016108c390612742565b6110386000611a9a565b565b6006546001600160a01b031633146110645760405162461bcd60e51b81526004016108c390612742565b600855565b6006546001600160a01b031633146110935760405162461bcd60e51b81526004016108c390612742565b600755565b6060600180546107cb90612856565b6006546001600160a01b03163314806110cf5750600f5461010090046001600160a01b031633145b6110eb5760405162461bcd60e51b81526004016108c3906126a8565b600f805460ff1916911515919091179055565b600f5460ff166111505760405162461bcd60e51b815260206004820152601c60248201527f6d696e743a204d696e74696e67206d757374206265206163746976650000000060448201526064016108c3565b6009548111156111b05760405162461bcd60e51b815260206004820152602560248201527f6d696e743a2043616e6e6f74206d696e742074686973206d616e7920617420616044820152642074696d6560d81b60648201526084016108c3565b600a54816111bd600e5490565b6111c791906127c8565b11156112235760405162461bcd60e51b815260206004820152602560248201527f6d696e743a204d696e74696e6720776f756c6420657863656564206d617820736044820152647570706c7960d81b60648201526084016108c3565b348160075461123291906127f4565b111561128e5760405162461bcd60e51b815260206004820152602560248201527f6d696e743a2045746865722076616c75652073656e74206973206e6f7420636f6044820152641c9c9958dd60da1b60648201526084016108c3565b60005b81811015610b15576112a1611a78565b806112ab81612891565b915050611291565b6001600160a01b03821633141561130c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113823383611735565b61139e5760405162461bcd60e51b81526004016108c390612777565b6113aa84848484611aec565b50505050565b6000818152600260205260409020546060906001600160a01b031661142f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c3565b6000611439611b1f565b905060008151116114595760405180602001604052806000815250611484565b8061146384611b2e565b60405160200161147492919061261a565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314806114b35750600f5461010090046001600160a01b031633145b6114cf5760405162461bcd60e51b81526004016108c3906126a8565b60005b818110156109f957600a54600e5410156114fe5760006114f0611c2c565b90506114fc8482611c43565b505b8061150881612891565b9150506114d2565b6006546001600160a01b0316331461153a5760405162461bcd60e51b81526004016108c390612742565b6000600d54600c5461154c9190612813565b905060008160011061155e5781611561565b60015b9050600061156e600e5490565b600a5490915061157e83836127c8565b11156115d65760405162461bcd60e51b815260206004820152602160248201527f526573657276696e6720776f756c6420657863656564206d617820737570706c6044820152607960f81b60648201526084016108c3565b60005b828110156115fb576115e9611a78565b806115f381612891565b9150506115d9565b506000611607600e5490565b90506116138282612813565b600d600082825461162491906127c8565b909155505050505050565b6006546001600160a01b031633146116595760405162461bcd60e51b81526004016108c390612742565b6001600160a01b0381166116be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c3565b610a3181611a9a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116fc82610e26565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c3565b60006117b983610e26565b9050806001600160a01b0316846001600160a01b031614806117f45750836001600160a01b03166117e98461084e565b6001600160a01b0316145b8061182457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661183f82610e26565b6001600160a01b0316146118a75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108c3565b6001600160a01b0382166119095760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c3565b6119146000826116c7565b6001600160a01b038316600090815260036020526040812080546001929061193d908490612813565b90915550506001600160a01b038216600090815260036020526040812080546001929061196b9084906127c8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611824611a28856040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050600f546001600160a01b03610100909104169392915050611c5d565b600a54600e541015611038576000611a8e611c2c565b9050610a313382611c43565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611af784848461182c565b611b0384848484611d27565b6113aa5760405162461bcd60e51b81526004016108c3906126f0565b6060600b80546107cb90612856565b606081611b525750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b7c5780611b6681612891565b9150611b759050600a836127e0565b9150611b56565b60008167ffffffffffffffff811115611b9757611b97612902565b6040519080825280601f01601f191660200182016040528015611bc1576020820181803683370190505b5090505b841561182457611bd6600183612813565b9150611be3600a866128ac565b611bee9060306127c8565b60f81b818381518110611c0357611c036128ec565b60200101906001600160f81b031916908160001a905350611c25600a866127e0565b9450611bc5565b6000611c3c600e80546001019055565b50600e5490565b610b15828260405180602001604052806000815250611e34565b6000833b15611d0257604051630b135d3f60e11b81526001600160a01b03851690631626ba7e90611c94908690869060040161267c565b60206040518083038186803b158015611cac57600080fd5b505afa925050508015611cdc575060408051601f3d908101601f19168201909252611cd9918101906124ed565b60015b611ce857506000611484565b6001600160e01b031916630b135d3f60e11b149050611484565b836001600160a01b0316611d168484611e67565b6001600160a01b0316149050611484565b60006001600160a01b0384163b15611e2957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d6b903390899088908890600401612649565b602060405180830381600087803b158015611d8557600080fd5b505af1925050508015611db5575060408051601f3d908101601f19168201909252611db2918101906124ed565b60015b611e0f573d808015611de3576040519150601f19603f3d011682016040523d82523d6000602084013e611de8565b606091505b508051611e075760405162461bcd60e51b81526004016108c3906126f0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611824565b506001949350505050565b611e3e8383611f0b565b611e4b6000848484611d27565b6109f95760405162461bcd60e51b81526004016108c3906126f0565b6000815160411415611e9b5760208201516040830151606084015160001a611e918682858561204d565b93505050506107b6565b815160401415611ec35760208201516040830151611eba8583836121f6565b925050506107b6565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108c3565b6001600160a01b038216611f615760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c3565b6000818152600260205260409020546001600160a01b031615611fc65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c3565b6001600160a01b0382166000908152600360205260408120805460019290611fef9084906127c8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156120ca5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108c3565b8360ff16601b14806120df57508360ff16601c145b6121365760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108c3565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa15801561218a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166121ed5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108c3565b95945050505050565b60006001600160ff1b03821660ff83901c601b016122168682878561204d565b9695505050505050565b82805461222c90612856565b90600052602060002090601f01602090048101928261224e5760008555612294565b82601f1061226757805160ff1916838001178555612294565b82800160010185558215612294579182015b82811115612294578251825591602001919060010190612279565b506122a09291506122a4565b5090565b5b808211156122a057600081556001016122a5565b600067ffffffffffffffff808411156122d4576122d4612902565b604051601f8501601f19908116603f011681019082821181831017156122fc576122fc612902565b8160405280935085815286868601111561231557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461234657600080fd5b919050565b8035801515811461234657600080fd5b60006020828403121561236d57600080fd5b6114848261232f565b6000806040838503121561238957600080fd5b6123928361232f565b91506123a06020840161232f565b90509250929050565b6000806000606084860312156123be57600080fd5b6123c78461232f565b92506123d56020850161232f565b9150604084013590509250925092565b600080600080608085870312156123fb57600080fd5b6124048561232f565b93506124126020860161232f565b925060408501359150606085013567ffffffffffffffff81111561243557600080fd5b8501601f8101871361244657600080fd5b612455878235602084016122b9565b91505092959194509250565b6000806040838503121561247457600080fd5b61247d8361232f565b91506123a06020840161234b565b6000806040838503121561249e57600080fd5b6124a78361232f565b946020939093013593505050565b6000602082840312156124c757600080fd5b6114848261234b565b6000602082840312156124e257600080fd5b813561148481612918565b6000602082840312156124ff57600080fd5b815161148481612918565b60006020828403121561251c57600080fd5b813567ffffffffffffffff81111561253357600080fd5b8201601f8101841361254457600080fd5b611824848235602084016122b9565b60006020828403121561256557600080fd5b5035919050565b6000806000806060858703121561258257600080fd5b84359350602085013567ffffffffffffffff808211156125a157600080fd5b818701915087601f8301126125b557600080fd5b8135818111156125c457600080fd5b8860208285010111156125d657600080fd5b95986020929092019750949560400135945092505050565b6000815180845261260681602086016020860161282a565b601f01601f19169290920160200192915050565b6000835161262c81846020880161282a565b83519083019061264081836020880161282a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612216908301846125ee565b82815260406020820152600061182460408301846125ee565b60208152600061148460208301846125ee565b60208082526028908201527f6f6e6c794f776e65724f7241646d696e3a2073656e6465722068617665206e6f604082015267742061636365737360c01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156127db576127db6128c0565b500190565b6000826127ef576127ef6128d6565b500490565b600081600019048311821515161561280e5761280e6128c0565b500290565b600082821015612825576128256128c0565b500390565b60005b8381101561284557818101518382015260200161282d565b838111156113aa5750506000910152565b600181811c9082168061286a57607f821691505b6020821081141561288b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128a5576128a56128c0565b5060010190565b6000826128bb576128bb6128d6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a3157600080fdfea26469706673582212203a427e1778b935757f83e374c5c7bb2e32ee790774396b04ad6d72728ff82a0464736f6c634300080600330000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000f8b0a10e47000000000000000000000000000000000000000000000000000000f8b0a10e470000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000050000000000000000000000006dd6261ef780632034d4818662fe15a1bfe99f5400000000000000000000000000000000000000000000000000000000000000095069676779437265770000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000550494747590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063e5b955951161007a578063e5b9559514610676578063e985e9c5146106a6578063ef81b4d4146106ef578063f2fde38b14610714578063fb5343f314610734578063fc1a1c361461075457600080fd5b8063b88d4fde146105eb578063c87b56dd1461060b578063ca8001441461062b578063cd3293de1461064b578063d5abeb011461066057600080fd5b80639bbf8325116100fd5780639bbf83251461056b578063a035b1fe1461058b578063a0712d68146105a1578063a22cb465146105b4578063af640d0f146105d457600080fd5b80638da5cb5b146104ec57806391b7f5ed1461050a578063925b8e021461052a57806392a046211461054057806395d89b411461055657600080fd5b806342842e0e116101d25780636ac437b0116101965780636ac437b0146104485780636c0360eb146104625780636c19e7831461047757806370a0823114610497578063715018a6146104b7578063717d57d3146104cc57600080fd5b806342842e0e146103b55780634c6ce5bc146103d5578063512c91df146103e857806355f804b3146104085780636352211e1461042857600080fd5b8063123fecf811610219578063123fecf81461032b57806313af40351461034057806323b872dd146103605780633ab1a494146103805780633ccfd60b146103a057600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e55780630a32c27614610307575b600080fd5b34801561026257600080fd5b506102766102713660046124d0565b61076a565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107bc565b6040516102829190612695565b3480156102b957600080fd5b506102cd6102c8366004612553565b61084e565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b5061030561030036600461248b565b6108e8565b005b34801561031357600080fd5b5061031d600c5481565b604051908152602001610282565b34801561033757600080fd5b5061031d600181565b34801561034c57600080fd5b5061030561035b36600461235b565b6109fe565b34801561036c57600080fd5b5061030561037b3660046123a9565b610a34565b34801561038c57600080fd5b5061030561039b36600461235b565b610a65565b3480156103ac57600080fd5b50610305610ab1565b3480156103c157600080fd5b506103056103d03660046123a9565b610b19565b6103056103e336600461256c565b610b34565b3480156103f457600080fd5b5061031d61040336600461248b565b610da2565b34801561041457600080fd5b5061030561042336600461250a565b610de9565b34801561043457600080fd5b506102cd610443366004612553565b610e26565b34801561045457600080fd5b50600f546102769060ff1681565b34801561046e57600080fd5b506102a0610e9d565b34801561048357600080fd5b5061030561049236600461235b565b610f2b565b3480156104a357600080fd5b5061031d6104b236600461235b565b610f7d565b3480156104c357600080fd5b50610305611004565b3480156104d857600080fd5b506103056104e7366004612553565b61103a565b3480156104f857600080fd5b506006546001600160a01b03166102cd565b34801561051657600080fd5b50610305610525366004612553565b611069565b34801561053657600080fd5b5061031d600d5481565b34801561054c57600080fd5b5061031d60095481565b34801561056257600080fd5b506102a0611098565b34801561057757600080fd5b506103056105863660046124b5565b6110a7565b34801561059757600080fd5b5061031d60075481565b6103056105af366004612553565b6110fe565b3480156105c057600080fd5b506103056105cf366004612461565b6112b3565b3480156105e057600080fd5b50600e5461031d9081565b3480156105f757600080fd5b506103056106063660046123e5565b611378565b34801561061757600080fd5b506102a0610626366004612553565b6113b0565b34801561063757600080fd5b5061030561064636600461248b565b61148b565b34801561065757600080fd5b50610305611510565b34801561066c57600080fd5b5061031d600a5481565b34801561068257600080fd5b50610276610691366004612553565b60106020526000908152604090205460ff1681565b3480156106b257600080fd5b506102766106c1366004612376565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106fb57600080fd5b50600f546102cd9061010090046001600160a01b031681565b34801561072057600080fd5b5061030561072f36600461235b565b61162f565b34801561074057600080fd5b506011546102cd906001600160a01b031681565b34801561076057600080fd5b5061031d60085481565b60006001600160e01b031982166380ac58cd60e01b148061079b57506001600160e01b03198216635b5e139f60e01b145b806107b657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107cb90612856565b80601f01602080910402602001604051908101604052809291908181526020018280546107f790612856565b80156108445780601f1061081957610100808354040283529160200191610844565b820191906000526020600020905b81548152906001019060200180831161082757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108cc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108f382610e26565b9050806001600160a01b0316836001600160a01b031614156109615760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c3565b336001600160a01b038216148061097d575061097d81336106c1565b6109ef5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c3565b6109f983836116c7565b505050565b6006546001600160a01b03163314610a285760405162461bcd60e51b81526004016108c390612742565b610a318161162f565b50565b610a3e3382611735565b610a5a5760405162461bcd60e51b81526004016108c390612777565b6109f983838361182c565b6006546001600160a01b03163314610a8f5760405162461bcd60e51b81526004016108c390612742565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314610adb5760405162461bcd60e51b81526004016108c390612742565b60115460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610b15573d6000803e3d6000fd5b5050565b6109f983838360405180602001604052806000815250611378565b600a5481610b41600e5490565b610b4b91906127c8565b1115610bb05760405162461bcd60e51b815260206004820152602e60248201527f77686974656c6973744d696e743a204d696e74696e6720776f756c642065786360448201526d656564206d617820737570706c7960901b60648201526084016108c3565b600954811115610c195760405162461bcd60e51b815260206004820152602e60248201527f77686974656c6973744d696e743a2043616e6e6f74206d696e7420746869732060448201526d6d616e7920617420612074696d6560901b60648201526084016108c3565b3481600854610c2891906127f4565b1115610c8d5760405162461bcd60e51b815260206004820152602e60248201527f77686974656c6973744d696e743a2045746865722076616c75652073656e742060448201526d1a5cc81b9bdd0818dbdc9c9958dd60921b60648201526084016108c3565b60008481526010602052604090205460ff1615610cfd5760405162461bcd60e51b815260206004820152602860248201527f77686974656c6973744d696e743a2057686974656c69737420616c72656164796044820152670818db185a5b595960c21b60648201526084016108c3565b60005b81811015610d9b57610d1c610d153387610da2565b85856119cc565b610d685760405162461bcd60e51b815260206004820181905260248201527f77686974656c6973744d696e743a20496e76616c6964205369676e617475726560448201526064016108c3565b6000858152601060205260409020805460ff19166001179055610d89611a78565b80610d9381612891565b915050610d00565b5050505050565b6040516bffffffffffffffffffffffff19606084901b1660208201526034810182905260009060540160405160208183030381529060405280519060200120905092915050565b6006546001600160a01b03163314610e135760405162461bcd60e51b81526004016108c390612742565b8051610b1590600b906020840190612220565b6000818152600260205260408120546001600160a01b0316806107b65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c3565b600b8054610eaa90612856565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed690612856565b8015610f235780601f10610ef857610100808354040283529160200191610f23565b820191906000526020600020905b815481529060010190602001808311610f0657829003601f168201915b505050505081565b6006546001600160a01b03163314610f555760405162461bcd60e51b81526004016108c390612742565b600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006001600160a01b038216610fe85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c3565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461102e5760405162461bcd60e51b81526004016108c390612742565b6110386000611a9a565b565b6006546001600160a01b031633146110645760405162461bcd60e51b81526004016108c390612742565b600855565b6006546001600160a01b031633146110935760405162461bcd60e51b81526004016108c390612742565b600755565b6060600180546107cb90612856565b6006546001600160a01b03163314806110cf5750600f5461010090046001600160a01b031633145b6110eb5760405162461bcd60e51b81526004016108c3906126a8565b600f805460ff1916911515919091179055565b600f5460ff166111505760405162461bcd60e51b815260206004820152601c60248201527f6d696e743a204d696e74696e67206d757374206265206163746976650000000060448201526064016108c3565b6009548111156111b05760405162461bcd60e51b815260206004820152602560248201527f6d696e743a2043616e6e6f74206d696e742074686973206d616e7920617420616044820152642074696d6560d81b60648201526084016108c3565b600a54816111bd600e5490565b6111c791906127c8565b11156112235760405162461bcd60e51b815260206004820152602560248201527f6d696e743a204d696e74696e6720776f756c6420657863656564206d617820736044820152647570706c7960d81b60648201526084016108c3565b348160075461123291906127f4565b111561128e5760405162461bcd60e51b815260206004820152602560248201527f6d696e743a2045746865722076616c75652073656e74206973206e6f7420636f6044820152641c9c9958dd60da1b60648201526084016108c3565b60005b81811015610b15576112a1611a78565b806112ab81612891565b915050611291565b6001600160a01b03821633141561130c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113823383611735565b61139e5760405162461bcd60e51b81526004016108c390612777565b6113aa84848484611aec565b50505050565b6000818152600260205260409020546060906001600160a01b031661142f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c3565b6000611439611b1f565b905060008151116114595760405180602001604052806000815250611484565b8061146384611b2e565b60405160200161147492919061261a565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314806114b35750600f5461010090046001600160a01b031633145b6114cf5760405162461bcd60e51b81526004016108c3906126a8565b60005b818110156109f957600a54600e5410156114fe5760006114f0611c2c565b90506114fc8482611c43565b505b8061150881612891565b9150506114d2565b6006546001600160a01b0316331461153a5760405162461bcd60e51b81526004016108c390612742565b6000600d54600c5461154c9190612813565b905060008160011061155e5781611561565b60015b9050600061156e600e5490565b600a5490915061157e83836127c8565b11156115d65760405162461bcd60e51b815260206004820152602160248201527f526573657276696e6720776f756c6420657863656564206d617820737570706c6044820152607960f81b60648201526084016108c3565b60005b828110156115fb576115e9611a78565b806115f381612891565b9150506115d9565b506000611607600e5490565b90506116138282612813565b600d600082825461162491906127c8565b909155505050505050565b6006546001600160a01b031633146116595760405162461bcd60e51b81526004016108c390612742565b6001600160a01b0381166116be5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c3565b610a3181611a9a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116fc82610e26565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c3565b60006117b983610e26565b9050806001600160a01b0316846001600160a01b031614806117f45750836001600160a01b03166117e98461084e565b6001600160a01b0316145b8061182457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661183f82610e26565b6001600160a01b0316146118a75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108c3565b6001600160a01b0382166119095760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c3565b6119146000826116c7565b6001600160a01b038316600090815260036020526040812080546001929061193d908490612813565b90915550506001600160a01b038216600090815260036020526040812080546001929061196b9084906127c8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611824611a28856040517f19457468657265756d205369676e6564204d6573736167653a0a3332000000006020820152603c8101829052600090605c01604051602081830303815290604052805190602001209050919050565b84848080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050600f546001600160a01b03610100909104169392915050611c5d565b600a54600e541015611038576000611a8e611c2c565b9050610a313382611c43565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611af784848461182c565b611b0384848484611d27565b6113aa5760405162461bcd60e51b81526004016108c3906126f0565b6060600b80546107cb90612856565b606081611b525750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b7c5780611b6681612891565b9150611b759050600a836127e0565b9150611b56565b60008167ffffffffffffffff811115611b9757611b97612902565b6040519080825280601f01601f191660200182016040528015611bc1576020820181803683370190505b5090505b841561182457611bd6600183612813565b9150611be3600a866128ac565b611bee9060306127c8565b60f81b818381518110611c0357611c036128ec565b60200101906001600160f81b031916908160001a905350611c25600a866127e0565b9450611bc5565b6000611c3c600e80546001019055565b50600e5490565b610b15828260405180602001604052806000815250611e34565b6000833b15611d0257604051630b135d3f60e11b81526001600160a01b03851690631626ba7e90611c94908690869060040161267c565b60206040518083038186803b158015611cac57600080fd5b505afa925050508015611cdc575060408051601f3d908101601f19168201909252611cd9918101906124ed565b60015b611ce857506000611484565b6001600160e01b031916630b135d3f60e11b149050611484565b836001600160a01b0316611d168484611e67565b6001600160a01b0316149050611484565b60006001600160a01b0384163b15611e2957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d6b903390899088908890600401612649565b602060405180830381600087803b158015611d8557600080fd5b505af1925050508015611db5575060408051601f3d908101601f19168201909252611db2918101906124ed565b60015b611e0f573d808015611de3576040519150601f19603f3d011682016040523d82523d6000602084013e611de8565b606091505b508051611e075760405162461bcd60e51b81526004016108c3906126f0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611824565b506001949350505050565b611e3e8383611f0b565b611e4b6000848484611d27565b6109f95760405162461bcd60e51b81526004016108c3906126f0565b6000815160411415611e9b5760208201516040830151606084015160001a611e918682858561204d565b93505050506107b6565b815160401415611ec35760208201516040830151611eba8583836121f6565b925050506107b6565b60405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108c3565b6001600160a01b038216611f615760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c3565b6000818152600260205260409020546001600160a01b031615611fc65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c3565b6001600160a01b0382166000908152600360205260408120805460019290611fef9084906127c8565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60007f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08211156120ca5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108c3565b8360ff16601b14806120df57508360ff16601c145b6121365760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108c3565b6040805160008082526020820180845288905260ff871692820192909252606081018590526080810184905260019060a0016020604051602081039080840390855afa15801561218a573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166121ed5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108c3565b95945050505050565b60006001600160ff1b03821660ff83901c601b016122168682878561204d565b9695505050505050565b82805461222c90612856565b90600052602060002090601f01602090048101928261224e5760008555612294565b82601f1061226757805160ff1916838001178555612294565b82800160010185558215612294579182015b82811115612294578251825591602001919060010190612279565b506122a09291506122a4565b5090565b5b808211156122a057600081556001016122a5565b600067ffffffffffffffff808411156122d4576122d4612902565b604051601f8501601f19908116603f011681019082821181831017156122fc576122fc612902565b8160405280935085815286868601111561231557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461234657600080fd5b919050565b8035801515811461234657600080fd5b60006020828403121561236d57600080fd5b6114848261232f565b6000806040838503121561238957600080fd5b6123928361232f565b91506123a06020840161232f565b90509250929050565b6000806000606084860312156123be57600080fd5b6123c78461232f565b92506123d56020850161232f565b9150604084013590509250925092565b600080600080608085870312156123fb57600080fd5b6124048561232f565b93506124126020860161232f565b925060408501359150606085013567ffffffffffffffff81111561243557600080fd5b8501601f8101871361244657600080fd5b612455878235602084016122b9565b91505092959194509250565b6000806040838503121561247457600080fd5b61247d8361232f565b91506123a06020840161234b565b6000806040838503121561249e57600080fd5b6124a78361232f565b946020939093013593505050565b6000602082840312156124c757600080fd5b6114848261234b565b6000602082840312156124e257600080fd5b813561148481612918565b6000602082840312156124ff57600080fd5b815161148481612918565b60006020828403121561251c57600080fd5b813567ffffffffffffffff81111561253357600080fd5b8201601f8101841361254457600080fd5b611824848235602084016122b9565b60006020828403121561256557600080fd5b5035919050565b6000806000806060858703121561258257600080fd5b84359350602085013567ffffffffffffffff808211156125a157600080fd5b818701915087601f8301126125b557600080fd5b8135818111156125c457600080fd5b8860208285010111156125d657600080fd5b95986020929092019750949560400135945092505050565b6000815180845261260681602086016020860161282a565b601f01601f19169290920160200192915050565b6000835161262c81846020880161282a565b83519083019061264081836020880161282a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612216908301846125ee565b82815260406020820152600061182460408301846125ee565b60208152600061148460208301846125ee565b60208082526028908201527f6f6e6c794f776e65724f7241646d696e3a2073656e6465722068617665206e6f604082015267742061636365737360c01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156127db576127db6128c0565b500190565b6000826127ef576127ef6128d6565b500490565b600081600019048311821515161561280e5761280e6128c0565b500290565b600082821015612825576128256128c0565b500390565b60005b8381101561284557818101518382015260200161282d565b838111156113aa5750506000910152565b600181811c9082168061286a57607f821691505b6020821081141561288b57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128a5576128a56128c0565b5060010190565b6000826128bb576128bb6128d6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a3157600080fdfea26469706673582212203a427e1778b935757f83e374c5c7bb2e32ee790774396b04ad6d72728ff82a0464736f6c63430008060033

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

0000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000f8b0a10e47000000000000000000000000000000000000000000000000000000f8b0a10e470000000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000000050000000000000000000000006dd6261ef780632034d4818662fe15a1bfe99f5400000000000000000000000000000000000000000000000000000000000000095069676779437265770000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000550494747590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): PiggyCrew
Arg [1] : _symbol (string): PIGGY
Arg [2] : _uri (string):
Arg [3] : _price (uint256): 70000000000000000
Arg [4] : _whitelistPrice (uint256): 70000000000000000
Arg [5] : _maxPurchaseNum (uint256): 10
Arg [6] : _maxSupply (uint256): 10000
Arg [7] : _reserveNum (uint256): 5
Arg [8] : _signer (address): 0x6dd6261eF780632034D4818662fE15a1BFe99f54

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [3] : 00000000000000000000000000000000000000000000000000f8b0a10e470000
Arg [4] : 00000000000000000000000000000000000000000000000000f8b0a10e470000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 0000000000000000000000006dd6261ef780632034d4818662fe15a1bfe99f54
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [10] : 5069676779437265770000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [12] : 5049474759000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000


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.