ETH Price: $3,502.59 (-0.20%)
Gas: 3 Gwei

Token

GalaKnights (KNIGHT)
 

Overview

Max Total Supply

777 KNIGHT

Holders

171

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 KNIGHT
0x3fce0fb365a770390afd4fe6aba327eb0d92c415
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:
GalaKnights

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : GalaKnights.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./openzeppelin/contracts/token/ERC721/ERC721.sol";
import "./openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol";
import "./openzeppelin/contracts/access/Ownable.sol";
import "./openzeppelin/contracts/security/ReentrancyGuard.sol";
import "./openzeppelin/contracts/utils/Counters.sol";

contract GalaKnights is ERC721, ERC721Royalty, Ownable, ReentrancyGuard {

    using Counters for Counters.Counter;

    // Constants

    uint128 public constant MAX_PURCHASE_AMOUNT = 10;
    uint128 public constant MAX_SUPPLY = 5000;
    string public constant PROVENANCE_HASH = "b5df6f6d2763ca8444168bb863612e11714af14ba8f085ed047562b06dee473a";
    uint256 public constant TOKEN_PRICE = 0.05 ether;

    // Public variables

    bool public isOnSale = false;
    string public baseTokenURI;
    uint256 public revealTimestamp;
    uint256 public startingIndex;
    uint256 public startingIndexBlock;
    address public withdrawalAddress;
    
    // Private variables

    string private _contractURI;
    Counters.Counter private _currentTokenId;

    // Constructor

    constructor(address _withdrawalAddress,
                uint96 royaltyFee,
                uint256 _revealTimestamp,
                string memory _baseTokenURI,
                string memory _initialContractURI) ERC721("GalaKnights", "KNIGHT") {
        withdrawalAddress = _withdrawalAddress;
        baseTokenURI = _baseTokenURI;
        _contractURI = _initialContractURI;
        _setDefaultRoyalty(_withdrawalAddress, royaltyFee);
        revealTimestamp = _revealTimestamp;
    }

    // Accessors

    function setIsOnSale(bool _isOnSale) public onlyOwner {
        isOnSale = _isOnSale;
    }

    function setWithdrawalAddress(address _withdrawalAddress) public onlyOwner {
        withdrawalAddress = _withdrawalAddress;
    }

    function setRevealTimestamp(uint256 _revealTimestamp) public onlyOwner {
        revealTimestamp = _revealTimestamp;
    }

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

    // Metadata

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

    function setBaseURI(string memory uri) public onlyOwner {
        baseTokenURI = uri;
    }

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

    function setContractURI(string memory uri) public onlyOwner {
        _contractURI = uri;
    }

    // Minting

    function mintToken(uint256 tokenCount) public payable nonReentrant {
        address sender = _msgSender();

        require(isOnSale, "Not on sale");
        uint256 senderBalance = balanceOf(sender);
        require(tokenCount <= MAX_PURCHASE_AMOUNT - senderBalance, "No mints remaining");
        uint256 totalCost = TOKEN_PRICE * tokenCount;
        require(totalCost == msg.value, "Not the right amount of ether");

        _finalMint(sender, tokenCount);
    }

	function ownerMintToken(uint256 tokenCount) public onlyOwner {
    	_finalMint(_msgSender(), tokenCount);
  	}

    function _finalMint(address to, uint256 tokenCount) private {
        require(_currentTokenId.current() + tokenCount <= MAX_SUPPLY, "Will exceed maximum supply");

        for (uint256 i = 1; i <= tokenCount; i++) {
            _currentTokenId.increment();
            _safeMint(to, _currentTokenId.current());
        }

		if (startingIndexBlock == 0 && (_currentTokenId.current() == MAX_SUPPLY || block.timestamp >= revealTimestamp)) {
            startingIndexBlock = block.number;
        }
    }

    // Starting Index

    function setStartingIndex() public {
        require(startingIndex == 0, "Starting index is already set");
        require(startingIndexBlock != 0, "Starting index block must be set");
        
        // Just in case this function is called late (EVM only stores last 256 block hashes)
        if ((block.number - startingIndexBlock) > 255) {
            startingIndex = uint(blockhash(block.number - 1)) % MAX_SUPPLY;
        }
        else {
            startingIndex = uint(blockhash(startingIndexBlock)) % MAX_SUPPLY;
        }
        // Prevent default sequence
        if (startingIndex == 0 || startingIndex == 1) {
            startingIndex = startingIndex + 2;
        }
    }

    // In case startingIndex was not set automatically
    function emergencySetStartingIndexBlock() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        
        startingIndexBlock = block.number;
    }

    // Withdraw

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        payable(withdrawalAddress).transfer(balance);
	}

    // Royalties

    function setRoyalties(address recipient, uint96 fraction) external onlyOwner {
        _setDefaultRoyalty(recipient, fraction);
    }

    // ERC721Royalty overrides

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Royalty) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    function _burn(uint256 tokenId) internal override(ERC721, ERC721Royalty) {
        super._burn(tokenId);
    }
}

File 2 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

File 3 of 17 : ERC721Royalty.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/ERC721Royalty.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../../common/ERC2981.sol";
import "../../../utils/introspection/ERC165.sol";

/**
 * @dev Extension of ERC721 with the ERC2981 NFT Royalty Standard, a standardized way to retrieve royalty payment
 * information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC721Royalty is ERC2981, ERC721 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {ERC721-_burn}. This override additionally clears the royalty information for the token.
     */
    function _burn(uint256 tokenId) internal virtual override {
        super._burn(tokenId);
        _resetTokenRoyalty(tokenId);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 17 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 6 of 17 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 9 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 12 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 13 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 14 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 15 of 17 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 16 of 17 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 17 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_withdrawalAddress","type":"address"},{"internalType":"uint96","name":"royaltyFee","type":"uint96"},{"internalType":"uint256","name":"_revealTimestamp","type":"uint256"},{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"string","name":"_initialContractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PURCHASE_AMOUNT","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOnSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenCount","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","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":"tokenCount","type":"uint256"}],"name":"ownerMintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOnSale","type":"bool"}],"name":"setIsOnSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revealTimestamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint96","name":"fraction","type":"uint96"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_withdrawalAddress","type":"address"}],"name":"setWithdrawalAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052600a805460ff191690553480156200001b57600080fd5b5060405162002a2338038062002a238339810160408190526200003e91620003f6565b604080518082018252600b81526a47616c614b6e696768747360a81b60208083019182528351808501909452600684526512d39251d21560d21b9084015281519192916200008f9160029162000283565b508051620000a590600390602084019062000283565b505050620000c2620000bc6200012860201b60201c565b6200012c565b6001600955600f80546001600160a01b0319166001600160a01b0387161790558151620000f790600b90602085019062000283565b5080516200010d90601090602084019062000283565b506200011a85856200017e565b5050600c5550620004e89050565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620001f25760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b0382166200024a5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401620001e9565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b8280546200029190620004ab565b90600052602060002090601f016020900481019282620002b5576000855562000300565b82601f10620002d057805160ff191683800117855562000300565b8280016001018555821562000300579182015b8281111562000300578251825591602001919060010190620002e3565b506200030e92915062000312565b5090565b5b808211156200030e576000815560010162000313565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200035157600080fd5b81516001600160401b03808211156200036e576200036e62000329565b604051601f8301601f19908116603f0116810190828211818310171562000399576200039962000329565b81604052838152602092508683858801011115620003b657600080fd5b600091505b83821015620003da5785820183015181830184015290820190620003bb565b83821115620003ec5760008385830101525b9695505050505050565b600080600080600060a086880312156200040f57600080fd5b85516001600160a01b03811681146200042757600080fd5b60208701519095506001600160601b03811681146200044557600080fd5b6040870151606088015191955093506001600160401b03808211156200046a57600080fd5b6200047889838a016200033f565b935060808801519150808211156200048f57600080fd5b506200049e888289016200033f565b9150509295509295909350565b600181811c90821680620004c057607f821691505b60208210811415620004e257634e487b7160e01b600052602260045260246000fd5b50919050565b61252b80620004f86000396000f3fe60806040526004361061023b5760003560e01c8063938e3d7b1161012e578063e2676829116100ab578063f2bcd0221161006f578063f2bcd022146106ad578063f2fde38b146106cd578063f62f3c11146106ed578063fd57fca514610703578063ff1b65561461072357600080fd5b8063e267682914610604578063e36d649814610624578063e8a3d4851461063a578063e985e9c51461064f578063e98665501461069857600080fd5b8063c634d032116100f2578063c634d0321461058b578063c87b56dd1461059e578063cb774d47146105be578063d2d8cb67146105d4578063d547cfb7146105ef57600080fd5b8063938e3d7b146104f657806395d89b4114610516578063a22cb4651461052b578063b88d4fde1461054b578063c21b471b1461056b57600080fd5b80633ccfd60b116101bc57806370a082311161018057806370a0823114610474578063715018a6146104945780637d17fcbe146104a9578063890e839f146104be5780638da5cb5b146104d857600080fd5b80633ccfd60b146103ea57806342842e0e146103ff57806355f804b31461041f57806360a09a0d1461043f5780636352211e1461045457600080fd5b806318160ddd1161020357806318160ddd1461031157806321b8092e1461033457806323b872dd146103545780632a55205a1461037457806332cb6b0c146103b357600080fd5b8063018a2c371461024057806301ffc9a71461026257806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611eb4565b610738565b005b34801561026e57600080fd5b5061028261027d366004611ee3565b610770565b60405190151581526020015b60405180910390f35b3480156102a357600080fd5b506102ac61079b565b60405161028e9190611f58565b3480156102c557600080fd5b506102d96102d4366004611eb4565b61082d565b6040516001600160a01b03909116815260200161028e565b3480156102fd57600080fd5b5061026061030c366004611f87565b6108c2565b34801561031d57600080fd5b506103266109d8565b60405190815260200161028e565b34801561034057600080fd5b5061026061034f366004611fb1565b6109e8565b34801561036057600080fd5b5061026061036f366004611fcc565b610a34565b34801561038057600080fd5b5061039461038f366004612008565b610a65565b604080516001600160a01b03909316835260208301919091520161028e565b3480156103bf57600080fd5b506103c961138881565b6040516fffffffffffffffffffffffffffffffff909116815260200161028e565b3480156103f657600080fd5b50610260610b11565b34801561040b57600080fd5b5061026061041a366004611fcc565b610bd6565b34801561042b57600080fd5b5061026061043a3660046120b6565b610bf1565b34801561044b57600080fd5b506103c9600a81565b34801561046057600080fd5b506102d961046f366004611eb4565b610c32565b34801561048057600080fd5b5061032661048f366004611fb1565b610ca9565b3480156104a057600080fd5b50610260610d30565b3480156104b557600080fd5b50610260610d66565b3480156104ca57600080fd5b50600a546102829060ff1681565b3480156104e457600080fd5b506008546001600160a01b03166102d9565b34801561050257600080fd5b506102606105113660046120b6565b610de6565b34801561052257600080fd5b506102ac610e23565b34801561053757600080fd5b5061026061054636600461210f565b610e32565b34801561055757600080fd5b50610260610566366004612142565b610e3d565b34801561057757600080fd5b506102606105863660046121be565b610e75565b610260610599366004611eb4565b610ea9565b3480156105aa57600080fd5b506102ac6105b9366004611eb4565b611018565b3480156105ca57600080fd5b50610326600d5481565b3480156105e057600080fd5b5061032666b1a2bc2ec5000081565b3480156105fb57600080fd5b506102ac6110f3565b34801561061057600080fd5b5061026061061f366004611eb4565b611181565b34801561063057600080fd5b50610326600e5481565b34801561064657600080fd5b506102ac6111b8565b34801561065b57600080fd5b5061028261066a366004612201565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a457600080fd5b506102606111c7565b3480156106b957600080fd5b50600f546102d9906001600160a01b031681565b3480156106d957600080fd5b506102606106e8366004611fb1565b6112db565b3480156106f957600080fd5b50610326600c5481565b34801561070f57600080fd5b5061026061071e36600461222b565b611373565b34801561072f57600080fd5b506102ac6113b0565b6008546001600160a01b0316331461076b5760405162461bcd60e51b815260040161076290612246565b60405180910390fd5b600c55565b60006001600160e01b0319821663152a902d60e11b14806107955750610795826113cc565b92915050565b6060600280546107aa9061227b565b80601f01602080910402602001604051908101604052809291908181526020018280546107d69061227b565b80156108235780601f106107f857610100808354040283529160200191610823565b820191906000526020600020905b81548152906001019060200180831161080657829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166108a65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610762565b506000908152600660205260409020546001600160a01b031690565b60006108cd82610c32565b9050806001600160a01b0316836001600160a01b0316141561093b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610762565b336001600160a01b03821614806109575750610957813361066a565b6109c95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610762565b6109d383836113d7565b505050565b60006109e360115490565b905090565b6008546001600160a01b03163314610a125760405162461bcd60e51b815260040161076290612246565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b610a3e3382611445565b610a5a5760405162461bcd60e51b8152600401610762906122b6565b6109d383838361153c565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610ada5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610af9906001600160601b03168761231d565b610b039190612352565b915196919550909350505050565b6008546001600160a01b03163314610b3b5760405162461bcd60e51b815260040161076290612246565b60026009541415610b8e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610762565b6002600955600f5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610bcd573d6000803e3d6000fd5b50506001600955565b6109d383838360405180602001604052806000815250610e3d565b6008546001600160a01b03163314610c1b5760405162461bcd60e51b815260040161076290612246565b8051610c2e90600b906020840190611e1b565b5050565b6000818152600460205260408120546001600160a01b0316806107955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610762565b60006001600160a01b038216610d145760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610762565b506001600160a01b031660009081526005602052604090205490565b6008546001600160a01b03163314610d5a5760405162461bcd60e51b815260040161076290612246565b610d6460006116d8565b565b6008546001600160a01b03163314610d905760405162461bcd60e51b815260040161076290612246565b600d5415610de05760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610762565b43600e55565b6008546001600160a01b03163314610e105760405162461bcd60e51b815260040161076290612246565b8051610c2e906010906020840190611e1b565b6060600380546107aa9061227b565b610c2e33838361172a565b610e473383611445565b610e635760405162461bcd60e51b8152600401610762906122b6565b610e6f848484846117f9565b50505050565b6008546001600160a01b03163314610e9f5760405162461bcd60e51b815260040161076290612246565b610c2e828261182c565b60026009541415610efc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610762565b6002600955600a54339060ff16610f435760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206f6e2073616c6560a81b6044820152606401610762565b6000610f4e82610ca9565b9050610f5b81600a612366565b831115610f9f5760405162461bcd60e51b81526020600482015260126024820152714e6f206d696e74732072656d61696e696e6760701b6044820152606401610762565b6000610fb28466b1a2bc2ec5000061231d565b90503481146110035760405162461bcd60e51b815260206004820152601d60248201527f4e6f742074686520726967687420616d6f756e74206f662065746865720000006044820152606401610762565b61100d8385611929565b505060016009555050565b6000818152600460205260409020546060906001600160a01b03166110975760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610762565b60006110a16119fd565b905060008151116110c157604051806020016040528060008152506110ec565b806110cb84611a0c565b6040516020016110dc92919061237d565b6040516020818303038152906040525b9392505050565b600b80546111009061227b565b80601f016020809104026020016040519081016040528092919081815260200182805461112c9061227b565b80156111795780601f1061114e57610100808354040283529160200191611179565b820191906000526020600020905b81548152906001019060200180831161115c57829003601f168201915b505050505081565b6008546001600160a01b031633146111ab5760405162461bcd60e51b815260040161076290612246565b6111b53382611929565b50565b6060601080546107aa9061227b565b600d54156112175760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610762565b600e546112665760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d757374206265207365746044820152606401610762565b60ff600e54436112769190612366565b111561129d5761138861128a600143612366565b6112959190406123ac565b600d556112b2565b600e546112ae9061138890406123ac565b600d555b600d5415806112c35750600d546001145b15610d6457600d546112d69060026123c0565b600d55565b6008546001600160a01b031633146113055760405162461bcd60e51b815260040161076290612246565b6001600160a01b03811661136a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610762565b6111b5816116d8565b6008546001600160a01b0316331461139d5760405162461bcd60e51b815260040161076290612246565b600a805460ff1916911515919091179055565b6040518060600160405280604081526020016124b66040913981565b600061079582611b0a565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061140c82610c32565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b03166114be5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610762565b60006114c983610c32565b9050806001600160a01b0316846001600160a01b031614806115045750836001600160a01b03166114f98461082d565b6001600160a01b0316145b8061153457506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661154f82610c32565b6001600160a01b0316146115b35760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610762565b6001600160a01b0382166116155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610762565b6116206000826113d7565b6001600160a01b0383166000908152600560205260408120805460019290611649908490612366565b90915550506001600160a01b03821660009081526005602052604081208054600192906116779084906123c0565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561178c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610762565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61180484848461153c565b61181084848484611b4a565b610e6f5760405162461bcd60e51b8152600401610762906123d8565b6127106001600160601b038216111561189a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610762565b6001600160a01b0382166118f05760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610762565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b6113888161193660115490565b61194091906123c0565b111561198e5760405162461bcd60e51b815260206004820152601a60248201527f57696c6c20657863656564206d6178696d756d20737570706c790000000000006044820152606401610762565b60015b8181116119ca576119a6601180546001019055565b6119b8836119b360115490565b611c57565b806119c28161242a565b915050611991565b50600e541580156119f057506113886119e260115490565b14806119f05750600c544210155b15610c2e5743600e555050565b6060600b80546107aa9061227b565b606081611a305750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a5a5780611a448161242a565b9150611a539050600a83612352565b9150611a34565b60008167ffffffffffffffff811115611a7557611a7561202a565b6040519080825280601f01601f191660200182016040528015611a9f576020820181803683370190505b5090505b841561153457611ab4600183612366565b9150611ac1600a866123ac565b611acc9060306123c0565b60f81b818381518110611ae157611ae1612445565b60200101906001600160f81b031916908160001a905350611b03600a86612352565b9450611aa3565b60006001600160e01b031982166380ac58cd60e01b1480611b3b57506001600160e01b03198216635b5e139f60e01b145b80610795575061079582611c71565b60006001600160a01b0384163b15611c4c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b8e90339089908890889060040161245b565b602060405180830381600087803b158015611ba857600080fd5b505af1925050508015611bd8575060408051601f3d908101601f19168201909252611bd591810190612498565b60015b611c32573d808015611c06576040519150601f19603f3d011682016040523d82523d6000602084013e611c0b565b606091505b508051611c2a5760405162461bcd60e51b8152600401610762906123d8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611534565b506001949350505050565b610c2e828260405180602001604052806000815250611ca6565b60006001600160e01b0319821663152a902d60e11b148061079557506301ffc9a760e01b6001600160e01b0319831614610795565b611cb08383611cd9565b611cbd6000848484611b4a565b6109d35760405162461bcd60e51b8152600401610762906123d8565b6001600160a01b038216611d2f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610762565b6000818152600460205260409020546001600160a01b031615611d945760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610762565b6001600160a01b0382166000908152600560205260408120805460019290611dbd9084906123c0565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e279061227b565b90600052602060002090601f016020900481019282611e495760008555611e8f565b82601f10611e6257805160ff1916838001178555611e8f565b82800160010185558215611e8f579182015b82811115611e8f578251825591602001919060010190611e74565b50611e9b929150611e9f565b5090565b5b80821115611e9b5760008155600101611ea0565b600060208284031215611ec657600080fd5b5035919050565b6001600160e01b0319811681146111b557600080fd5b600060208284031215611ef557600080fd5b81356110ec81611ecd565b60005b83811015611f1b578181015183820152602001611f03565b83811115610e6f5750506000910152565b60008151808452611f44816020860160208601611f00565b601f01601f19169290920160200192915050565b6020815260006110ec6020830184611f2c565b80356001600160a01b0381168114611f8257600080fd5b919050565b60008060408385031215611f9a57600080fd5b611fa383611f6b565b946020939093013593505050565b600060208284031215611fc357600080fd5b6110ec82611f6b565b600080600060608486031215611fe157600080fd5b611fea84611f6b565b9250611ff860208501611f6b565b9150604084013590509250925092565b6000806040838503121561201b57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561205b5761205b61202a565b604051601f8501601f19908116603f011681019082821181831017156120835761208361202a565b8160405280935085815286868601111561209c57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120c857600080fd5b813567ffffffffffffffff8111156120df57600080fd5b8201601f810184136120f057600080fd5b61153484823560208401612040565b80358015158114611f8257600080fd5b6000806040838503121561212257600080fd5b61212b83611f6b565b9150612139602084016120ff565b90509250929050565b6000806000806080858703121561215857600080fd5b61216185611f6b565b935061216f60208601611f6b565b925060408501359150606085013567ffffffffffffffff81111561219257600080fd5b8501601f810187136121a357600080fd5b6121b287823560208401612040565b91505092959194509250565b600080604083850312156121d157600080fd5b6121da83611f6b565b915060208301356001600160601b03811681146121f657600080fd5b809150509250929050565b6000806040838503121561221457600080fd5b61221d83611f6b565b915061213960208401611f6b565b60006020828403121561223d57600080fd5b6110ec826120ff565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061228f57607f821691505b602082108114156122b057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561233757612337612307565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826123615761236161233c565b500490565b60008282101561237857612378612307565b500390565b6000835161238f818460208801611f00565b8351908301906123a3818360208801611f00565b01949350505050565b6000826123bb576123bb61233c565b500690565b600082198211156123d3576123d3612307565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060001982141561243e5761243e612307565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061248e90830184611f2c565b9695505050505050565b6000602082840312156124aa57600080fd5b81516110ec81611ecd56fe62356466366636643237363363613834343431363862623836333631326531313731346166313462613866303835656430343735363262303664656534373361a264697066735822122098199b10ae8f812e161134046b4ebe0bf8d67334b08567a4f9bcee042e7d8c0264736f6c63430008090033000000000000000000000000c970d150e79dfe672332d4af0902ef23955a189b00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000064d80ef000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d524c7558783273736e5072646d756b4e79316b6a63633848656e3743476b546542764c4374374c41317661742f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d51443666726b5235763669444c75474e635a37777832703972535143547770687751726b576d35674d3945510000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063938e3d7b1161012e578063e2676829116100ab578063f2bcd0221161006f578063f2bcd022146106ad578063f2fde38b146106cd578063f62f3c11146106ed578063fd57fca514610703578063ff1b65561461072357600080fd5b8063e267682914610604578063e36d649814610624578063e8a3d4851461063a578063e985e9c51461064f578063e98665501461069857600080fd5b8063c634d032116100f2578063c634d0321461058b578063c87b56dd1461059e578063cb774d47146105be578063d2d8cb67146105d4578063d547cfb7146105ef57600080fd5b8063938e3d7b146104f657806395d89b4114610516578063a22cb4651461052b578063b88d4fde1461054b578063c21b471b1461056b57600080fd5b80633ccfd60b116101bc57806370a082311161018057806370a0823114610474578063715018a6146104945780637d17fcbe146104a9578063890e839f146104be5780638da5cb5b146104d857600080fd5b80633ccfd60b146103ea57806342842e0e146103ff57806355f804b31461041f57806360a09a0d1461043f5780636352211e1461045457600080fd5b806318160ddd1161020357806318160ddd1461031157806321b8092e1461033457806323b872dd146103545780632a55205a1461037457806332cb6b0c146103b357600080fd5b8063018a2c371461024057806301ffc9a71461026257806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611eb4565b610738565b005b34801561026e57600080fd5b5061028261027d366004611ee3565b610770565b60405190151581526020015b60405180910390f35b3480156102a357600080fd5b506102ac61079b565b60405161028e9190611f58565b3480156102c557600080fd5b506102d96102d4366004611eb4565b61082d565b6040516001600160a01b03909116815260200161028e565b3480156102fd57600080fd5b5061026061030c366004611f87565b6108c2565b34801561031d57600080fd5b506103266109d8565b60405190815260200161028e565b34801561034057600080fd5b5061026061034f366004611fb1565b6109e8565b34801561036057600080fd5b5061026061036f366004611fcc565b610a34565b34801561038057600080fd5b5061039461038f366004612008565b610a65565b604080516001600160a01b03909316835260208301919091520161028e565b3480156103bf57600080fd5b506103c961138881565b6040516fffffffffffffffffffffffffffffffff909116815260200161028e565b3480156103f657600080fd5b50610260610b11565b34801561040b57600080fd5b5061026061041a366004611fcc565b610bd6565b34801561042b57600080fd5b5061026061043a3660046120b6565b610bf1565b34801561044b57600080fd5b506103c9600a81565b34801561046057600080fd5b506102d961046f366004611eb4565b610c32565b34801561048057600080fd5b5061032661048f366004611fb1565b610ca9565b3480156104a057600080fd5b50610260610d30565b3480156104b557600080fd5b50610260610d66565b3480156104ca57600080fd5b50600a546102829060ff1681565b3480156104e457600080fd5b506008546001600160a01b03166102d9565b34801561050257600080fd5b506102606105113660046120b6565b610de6565b34801561052257600080fd5b506102ac610e23565b34801561053757600080fd5b5061026061054636600461210f565b610e32565b34801561055757600080fd5b50610260610566366004612142565b610e3d565b34801561057757600080fd5b506102606105863660046121be565b610e75565b610260610599366004611eb4565b610ea9565b3480156105aa57600080fd5b506102ac6105b9366004611eb4565b611018565b3480156105ca57600080fd5b50610326600d5481565b3480156105e057600080fd5b5061032666b1a2bc2ec5000081565b3480156105fb57600080fd5b506102ac6110f3565b34801561061057600080fd5b5061026061061f366004611eb4565b611181565b34801561063057600080fd5b50610326600e5481565b34801561064657600080fd5b506102ac6111b8565b34801561065b57600080fd5b5061028261066a366004612201565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a457600080fd5b506102606111c7565b3480156106b957600080fd5b50600f546102d9906001600160a01b031681565b3480156106d957600080fd5b506102606106e8366004611fb1565b6112db565b3480156106f957600080fd5b50610326600c5481565b34801561070f57600080fd5b5061026061071e36600461222b565b611373565b34801561072f57600080fd5b506102ac6113b0565b6008546001600160a01b0316331461076b5760405162461bcd60e51b815260040161076290612246565b60405180910390fd5b600c55565b60006001600160e01b0319821663152a902d60e11b14806107955750610795826113cc565b92915050565b6060600280546107aa9061227b565b80601f01602080910402602001604051908101604052809291908181526020018280546107d69061227b565b80156108235780601f106107f857610100808354040283529160200191610823565b820191906000526020600020905b81548152906001019060200180831161080657829003601f168201915b5050505050905090565b6000818152600460205260408120546001600160a01b03166108a65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610762565b506000908152600660205260409020546001600160a01b031690565b60006108cd82610c32565b9050806001600160a01b0316836001600160a01b0316141561093b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610762565b336001600160a01b03821614806109575750610957813361066a565b6109c95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610762565b6109d383836113d7565b505050565b60006109e360115490565b905090565b6008546001600160a01b03163314610a125760405162461bcd60e51b815260040161076290612246565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b610a3e3382611445565b610a5a5760405162461bcd60e51b8152600401610762906122b6565b6109d383838361153c565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610ada5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610af9906001600160601b03168761231d565b610b039190612352565b915196919550909350505050565b6008546001600160a01b03163314610b3b5760405162461bcd60e51b815260040161076290612246565b60026009541415610b8e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610762565b6002600955600f5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610bcd573d6000803e3d6000fd5b50506001600955565b6109d383838360405180602001604052806000815250610e3d565b6008546001600160a01b03163314610c1b5760405162461bcd60e51b815260040161076290612246565b8051610c2e90600b906020840190611e1b565b5050565b6000818152600460205260408120546001600160a01b0316806107955760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610762565b60006001600160a01b038216610d145760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610762565b506001600160a01b031660009081526005602052604090205490565b6008546001600160a01b03163314610d5a5760405162461bcd60e51b815260040161076290612246565b610d6460006116d8565b565b6008546001600160a01b03163314610d905760405162461bcd60e51b815260040161076290612246565b600d5415610de05760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610762565b43600e55565b6008546001600160a01b03163314610e105760405162461bcd60e51b815260040161076290612246565b8051610c2e906010906020840190611e1b565b6060600380546107aa9061227b565b610c2e33838361172a565b610e473383611445565b610e635760405162461bcd60e51b8152600401610762906122b6565b610e6f848484846117f9565b50505050565b6008546001600160a01b03163314610e9f5760405162461bcd60e51b815260040161076290612246565b610c2e828261182c565b60026009541415610efc5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610762565b6002600955600a54339060ff16610f435760405162461bcd60e51b815260206004820152600b60248201526a4e6f74206f6e2073616c6560a81b6044820152606401610762565b6000610f4e82610ca9565b9050610f5b81600a612366565b831115610f9f5760405162461bcd60e51b81526020600482015260126024820152714e6f206d696e74732072656d61696e696e6760701b6044820152606401610762565b6000610fb28466b1a2bc2ec5000061231d565b90503481146110035760405162461bcd60e51b815260206004820152601d60248201527f4e6f742074686520726967687420616d6f756e74206f662065746865720000006044820152606401610762565b61100d8385611929565b505060016009555050565b6000818152600460205260409020546060906001600160a01b03166110975760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610762565b60006110a16119fd565b905060008151116110c157604051806020016040528060008152506110ec565b806110cb84611a0c565b6040516020016110dc92919061237d565b6040516020818303038152906040525b9392505050565b600b80546111009061227b565b80601f016020809104026020016040519081016040528092919081815260200182805461112c9061227b565b80156111795780601f1061114e57610100808354040283529160200191611179565b820191906000526020600020905b81548152906001019060200180831161115c57829003601f168201915b505050505081565b6008546001600160a01b031633146111ab5760405162461bcd60e51b815260040161076290612246565b6111b53382611929565b50565b6060601080546107aa9061227b565b600d54156112175760405162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c7265616479207365740000006044820152606401610762565b600e546112665760405162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d757374206265207365746044820152606401610762565b60ff600e54436112769190612366565b111561129d5761138861128a600143612366565b6112959190406123ac565b600d556112b2565b600e546112ae9061138890406123ac565b600d555b600d5415806112c35750600d546001145b15610d6457600d546112d69060026123c0565b600d55565b6008546001600160a01b031633146113055760405162461bcd60e51b815260040161076290612246565b6001600160a01b03811661136a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610762565b6111b5816116d8565b6008546001600160a01b0316331461139d5760405162461bcd60e51b815260040161076290612246565b600a805460ff1916911515919091179055565b6040518060600160405280604081526020016124b66040913981565b600061079582611b0a565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061140c82610c32565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600460205260408120546001600160a01b03166114be5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610762565b60006114c983610c32565b9050806001600160a01b0316846001600160a01b031614806115045750836001600160a01b03166114f98461082d565b6001600160a01b0316145b8061153457506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661154f82610c32565b6001600160a01b0316146115b35760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610762565b6001600160a01b0382166116155760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610762565b6116206000826113d7565b6001600160a01b0383166000908152600560205260408120805460019290611649908490612366565b90915550506001600160a01b03821660009081526005602052604081208054600192906116779084906123c0565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561178c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610762565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61180484848461153c565b61181084848484611b4a565b610e6f5760405162461bcd60e51b8152600401610762906123d8565b6127106001600160601b038216111561189a5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610762565b6001600160a01b0382166118f05760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610762565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b6113888161193660115490565b61194091906123c0565b111561198e5760405162461bcd60e51b815260206004820152601a60248201527f57696c6c20657863656564206d6178696d756d20737570706c790000000000006044820152606401610762565b60015b8181116119ca576119a6601180546001019055565b6119b8836119b360115490565b611c57565b806119c28161242a565b915050611991565b50600e541580156119f057506113886119e260115490565b14806119f05750600c544210155b15610c2e5743600e555050565b6060600b80546107aa9061227b565b606081611a305750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a5a5780611a448161242a565b9150611a539050600a83612352565b9150611a34565b60008167ffffffffffffffff811115611a7557611a7561202a565b6040519080825280601f01601f191660200182016040528015611a9f576020820181803683370190505b5090505b841561153457611ab4600183612366565b9150611ac1600a866123ac565b611acc9060306123c0565b60f81b818381518110611ae157611ae1612445565b60200101906001600160f81b031916908160001a905350611b03600a86612352565b9450611aa3565b60006001600160e01b031982166380ac58cd60e01b1480611b3b57506001600160e01b03198216635b5e139f60e01b145b80610795575061079582611c71565b60006001600160a01b0384163b15611c4c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b8e90339089908890889060040161245b565b602060405180830381600087803b158015611ba857600080fd5b505af1925050508015611bd8575060408051601f3d908101601f19168201909252611bd591810190612498565b60015b611c32573d808015611c06576040519150601f19603f3d011682016040523d82523d6000602084013e611c0b565b606091505b508051611c2a5760405162461bcd60e51b8152600401610762906123d8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611534565b506001949350505050565b610c2e828260405180602001604052806000815250611ca6565b60006001600160e01b0319821663152a902d60e11b148061079557506301ffc9a760e01b6001600160e01b0319831614610795565b611cb08383611cd9565b611cbd6000848484611b4a565b6109d35760405162461bcd60e51b8152600401610762906123d8565b6001600160a01b038216611d2f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610762565b6000818152600460205260409020546001600160a01b031615611d945760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610762565b6001600160a01b0382166000908152600560205260408120805460019290611dbd9084906123c0565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611e279061227b565b90600052602060002090601f016020900481019282611e495760008555611e8f565b82601f10611e6257805160ff1916838001178555611e8f565b82800160010185558215611e8f579182015b82811115611e8f578251825591602001919060010190611e74565b50611e9b929150611e9f565b5090565b5b80821115611e9b5760008155600101611ea0565b600060208284031215611ec657600080fd5b5035919050565b6001600160e01b0319811681146111b557600080fd5b600060208284031215611ef557600080fd5b81356110ec81611ecd565b60005b83811015611f1b578181015183820152602001611f03565b83811115610e6f5750506000910152565b60008151808452611f44816020860160208601611f00565b601f01601f19169290920160200192915050565b6020815260006110ec6020830184611f2c565b80356001600160a01b0381168114611f8257600080fd5b919050565b60008060408385031215611f9a57600080fd5b611fa383611f6b565b946020939093013593505050565b600060208284031215611fc357600080fd5b6110ec82611f6b565b600080600060608486031215611fe157600080fd5b611fea84611f6b565b9250611ff860208501611f6b565b9150604084013590509250925092565b6000806040838503121561201b57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561205b5761205b61202a565b604051601f8501601f19908116603f011681019082821181831017156120835761208361202a565b8160405280935085815286868601111561209c57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120c857600080fd5b813567ffffffffffffffff8111156120df57600080fd5b8201601f810184136120f057600080fd5b61153484823560208401612040565b80358015158114611f8257600080fd5b6000806040838503121561212257600080fd5b61212b83611f6b565b9150612139602084016120ff565b90509250929050565b6000806000806080858703121561215857600080fd5b61216185611f6b565b935061216f60208601611f6b565b925060408501359150606085013567ffffffffffffffff81111561219257600080fd5b8501601f810187136121a357600080fd5b6121b287823560208401612040565b91505092959194509250565b600080604083850312156121d157600080fd5b6121da83611f6b565b915060208301356001600160601b03811681146121f657600080fd5b809150509250929050565b6000806040838503121561221457600080fd5b61221d83611f6b565b915061213960208401611f6b565b60006020828403121561223d57600080fd5b6110ec826120ff565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061228f57607f821691505b602082108114156122b057634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561233757612337612307565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826123615761236161233c565b500490565b60008282101561237857612378612307565b500390565b6000835161238f818460208801611f00565b8351908301906123a3818360208801611f00565b01949350505050565b6000826123bb576123bb61233c565b500690565b600082198211156123d3576123d3612307565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060001982141561243e5761243e612307565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061248e90830184611f2c565b9695505050505050565b6000602082840312156124aa57600080fd5b81516110ec81611ecd56fe62356466366636643237363363613834343431363862623836333631326531313731346166313462613866303835656430343735363262303664656534373361a264697066735822122098199b10ae8f812e161134046b4ebe0bf8d67334b08567a4f9bcee042e7d8c0264736f6c63430008090033

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

000000000000000000000000c970d150e79dfe672332d4af0902ef23955a189b00000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000064d80ef000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d524c7558783273736e5072646d756b4e79316b6a63633848656e3743476b546542764c4374374c41317661742f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d51443666726b5235763669444c75474e635a37777832703972535143547770687751726b576d35674d3945510000000000000000000000

-----Decoded View---------------
Arg [0] : _withdrawalAddress (address): 0xc970d150e79Dfe672332d4AF0902ef23955A189b
Arg [1] : royaltyFee (uint96): 1000
Arg [2] : _revealTimestamp (uint256): 1691881200
Arg [3] : _baseTokenURI (string): ipfs://QmRLuXx2ssnPrdmukNy1kjcc8Hen7CGkTeBvLCt7LA1vat/
Arg [4] : _initialContractURI (string): ipfs://QmQD6frkR5v6iDLuGNcZ7wx2p9rSQCTwphwQrkWm5gM9EQ

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000c970d150e79dfe672332d4af0902ef23955a189b
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [2] : 0000000000000000000000000000000000000000000000000000000064d80ef0
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d524c7558783273736e5072646d756b4e79316b6a636338
Arg [7] : 48656e3743476b546542764c4374374c41317661742f00000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [9] : 697066733a2f2f516d51443666726b5235763669444c75474e635a3777783270
Arg [10] : 3972535143547770687751726b576d35674d3945510000000000000000000000


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.