ETH Price: $3,482.92 (+0.62%)
Gas: 6 Gwei

Token

Retrievers (RETR)
 

Overview

Max Total Supply

5,555 RETR

Holders

926

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 RETR
0xb7f6d100609d46473a173ac6d113b234c02a539f
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:
Retrievers

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
Yes with 20000 runs

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

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

contract Retrievers is ERC721Royalty, Ownable, ReentrancyGuard {
  // Smart contract status
  enum Status {
    CLOSED,
    LIST,
    PUBLIC
  }
  Status public status = Status.CLOSED;

  // Params
  string private _baseTokenURI;
  uint256 public supply = 5555;
  uint256 public price = 0.055 ether;
  uint256[2] public maxPerTxList = [3, 1];
  uint256 public maxPerTxPublic = 6;
  address public teamWalletAddress;

  // Total supply counter
  uint256 private _totalSupply = 0;

  // Mappings
  mapping(address => bool) private hasMintedList;
  mapping(address => bool) private hasMintedPublic;

  // Merkle tree
  bytes32[2] public merkleRoots;

  // Event declaration
  event ChangedStatusEvent(uint256 newStatus);
  event ChangedBaseURIEvent(string newURI);
  event ChangedMerkleRoot(uint256 list, bytes32 newMerkleRoot);
  event ChangedTeamWallet(address newAddress);

  // Modifier
  modifier checkSupply(uint256 _qty) {
    require(_totalSupply + _qty <= supply, "Quantity not available");
    _;
  }

  // Contructor
  constructor(string memory _URI) ERC721("Retrievers", "RETR") {
    setBaseURI(_URI);
  }

  // Mint
  function mint(uint256 _qty, bytes32[] calldata _proof) external payable nonReentrant checkSupply(_qty) {
    require(tx.origin == msg.sender, "Smart contract interactions disabled");
    require(status != Status.CLOSED, "Contract closed");
    require(_qty > 0, "Quantity must be greater than zero");
    require(msg.value == price * _qty, "Price not matched");

    if (status == Status.LIST) {
      uint256 _maxQuantity = getMaxQuantity(_proof);
      require(_maxQuantity > 0, "Not allowed");
      require(_qty <= _maxQuantity, "Quantity not allowed");
      require(!hasMintedList[msg.sender], "Already minted");
      hasMintedList[msg.sender] = true;
    } else {
      require(_qty <= maxPerTxPublic, "Quantity not allowed");
      require(!hasMintedPublic[msg.sender], "Already minted");
      hasMintedPublic[msg.sender] = true;
    }

    privateMint(_qty);
  }

  function teamMint(uint256 _qty) external nonReentrant checkSupply(_qty) {
    require(teamWalletAddress != address(0), "No team wallet address found");
    require(msg.sender == teamWalletAddress, "Not allowed");
    privateMint(_qty);
  }

  function privateMint(uint256 _qty) private {
    uint256 tmpIndex = _totalSupply;
    _totalSupply += _qty;
    for (uint256 i = 0; i < _qty; ++i) {
      _mint(msg.sender, tmpIndex + i);
    }
  }

  // Get maxQuantity
  function getMaxQuantity(bytes32[] calldata _proof) private view returns (uint256) {
    for (uint256 i = 0; i < merkleRoots.length; ++i) {
      if (checkProof(_proof, merkleRoots[i])) {
        return maxPerTxList[i];
      }
    }
    return 0;
  }

  // Merkle Proof validation
  function checkProof(bytes32[] calldata _proof, bytes32 _merkleRoot) private view returns (bool) {
    return MerkleProof.verify(_proof, _merkleRoot, keccak256(abi.encodePacked(msg.sender)));
  }

  // Getters
  function _baseURI() internal view override returns (string memory) {
    return _baseTokenURI;
  }

  function tokenExists(uint256 _id) public view returns (bool) {
    return _exists(_id);
  }

  function getHasMinted(address _address) public view returns (bool) {
    if (status == Status.LIST) {
      return hasMintedList[_address];
    } else {
      return hasMintedPublic[_address];
    }
  }

  function totalSupply() public view returns (uint256) {
    return _totalSupply;
  }

  // Setters
  function setBaseURI(string memory _URI) public onlyOwner {
    _baseTokenURI = _URI;
    emit ChangedBaseURIEvent(_URI);
  }

  function setTeamWalletAddress(address _address) external onlyOwner {
    teamWalletAddress = _address;
    emit ChangedTeamWallet(_address);
  }

  function setStatus(uint256 _status) external onlyOwner {
    // _status -> 0: CLOSED, 1: LIST, 2: PUBLIC
    require(_status >= 0 && _status <= 2, "Mint status must be between 0 and 2");
    status = Status(_status);
    emit ChangedStatusEvent(_status);
  }

  function setMerkleRoots(bytes32[2] calldata _merkleRoots) external onlyOwner {
    for (uint256 i = 0; i < merkleRoots.length; i++) {
      merkleRoots[i] = _merkleRoots[i];
      emit ChangedMerkleRoot(i, _merkleRoots[i]);
    }
  }

  function setDefaultRoyalty(address receiver, uint96 feeNumerator) external onlyOwner {
    _setDefaultRoyalty(receiver, feeNumerator);
  }

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

  // Withdraw
  function withdraw(address payable withdrawAddress) external payable nonReentrant onlyOwner {
    require(withdrawAddress != address(0), "Withdraw address cannot be zero");
    require(address(this).balance >= 0, "Not enough eth");
    payable(withdrawAddress).transfer(address(this).balance);
  }
}

File 2 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 3 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 4 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 5 of 17 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 6 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 7 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 8 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 9 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 10 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 11 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 12 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 13 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 14 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 15 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 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": 20000
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newURI","type":"string"}],"name":"ChangedBaseURIEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"list","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"ChangedMerkleRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newStatus","type":"uint256"}],"name":"ChangedStatusEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newAddress","type":"address"}],"name":"ChangedTeamWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getHasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxPerTxList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"merkleRoots","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"mint","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":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[2]","name":"_merkleRoots","type":"bytes32[2]"}],"name":"setMerkleRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_status","type":"uint256"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setTeamWalletAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum Retrievers.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supply","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":"_qty","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"withdrawAddress","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

600a805460ff191690556115b3600c5566c3663566a58000600d5560c060405260036080908152600160a0526200003b90600e90600262000215565b50600660105560006012553480156200005357600080fd5b506040516200392d3803806200392d83398101604081905262000076916200033a565b604080518082018252600a8152695265747269657665727360b01b6020808301918252835180850190945260048452632922aa2960e11b908401528151919291620000c4916002916200025d565b508051620000da9060039060208401906200025d565b505050620000f7620000f16200010e60201b60201c565b62000112565b6001600955620001078162000164565b5062000463565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001c35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001d890600b9060208401906200025d565b507f744d1924de3e532e3230010491d50f9d3a13f8cf2f675452046ec3cee64a02dd816040516200020a9190620003f2565b60405180910390a150565b82600281019282156200024b579160200282015b828111156200024b578251829060ff1690559160200191906001019062000229565b5062000259929150620002da565b5090565b8280546200026b9062000427565b90600052602060002090601f0160209004810192826200028f57600085556200024b565b82601f10620002aa57805160ff19168380011785556200024b565b828001600101855582156200024b579182015b828111156200024b578251825591602001919060010190620002bd565b5b80821115620002595760008155600101620002db565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620003245781810151838201526020016200030a565b8381111562000334576000848401525b50505050565b6000602082840312156200034d57600080fd5b81516001600160401b03808211156200036557600080fd5b818401915084601f8301126200037a57600080fd5b8151818111156200038f576200038f620002f1565b604051601f8201601f19908116603f01168101908382118183101715620003ba57620003ba620002f1565b81604052828152876020848701011115620003d457600080fd5b620003e783602083016020880162000307565b979650505050505050565b60208152600082518060208401526200041381604085016020870162000307565b601f01601f19169190910160400192915050565b600181811c908216806200043c57607f821691505b6020821081036200045d57634e487b7160e01b600052602260045260246000fd5b50919050565b6134ba80620004736000396000f3fe60806040526004361061024e5760003560e01c80635360c5bd1161013857806395d89b41116100b0578063b88d4fde1161007f578063c87b56dd11610064578063c87b56dd146106b1578063e985e9c5146106d1578063f2fde38b1461072757600080fd5b8063b88d4fde1461067e578063ba41b0c61461069e57600080fd5b806395d89b411461061d5780639943770d14610632578063a035b1fe14610648578063a22cb4651461065e57600080fd5b806370a082311161010757806371c5ecb1116100ec57806371c5ecb1146105b25780638da5cb5b146105d257806391b7f5ed146105fd57600080fd5b806370a082311461057d578063715018a61461059d57600080fd5b80635360c5bd146104fd57806355f804b31461051d5780636352211e1461053d57806369ba1a751461055d57600080fd5b80631c443ab0116101cb5780632c4b23341161019a57806340e3c2a31161017f57806340e3c2a3146104aa57806342842e0e146104ca57806351cff8d9146104ea57600080fd5b80632c4b23341461046a5780632fbba1151461048a57600080fd5b80631c443ab0146103b7578063200d2ed2146103d757806323b872dd146103fe5780632a55205a1461041e57600080fd5b806306fdde0311610222578063095ea7b311610207578063095ea7b3146103555780631245e3471461037557806318160ddd146103a257600080fd5b806306fdde03146102ee578063081812fc1461031057600080fd5b8062923f9e1461025357806301ffc9a71461028857806304634d8d146102a8578063047fc9aa146102ca575b600080fd5b34801561025f57600080fd5b5061027361026e366004612d40565b610747565b60405190151581526020015b60405180910390f35b34801561029457600080fd5b506102736102a3366004612d87565b610775565b3480156102b457600080fd5b506102c86102c3366004612dc6565b610780565b005b3480156102d657600080fd5b506102e0600c5481565b60405190815260200161027f565b3480156102fa57600080fd5b506103036107fa565b60405161027f9190612e86565b34801561031c57600080fd5b5061033061032b366004612d40565b61088c565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161027f565b34801561036157600080fd5b506102c8610370366004612e99565b61094c565b34801561038157600080fd5b506011546103309073ffffffffffffffffffffffffffffffffffffffff1681565b3480156103ae57600080fd5b506012546102e0565b3480156103c357600080fd5b506102e06103d2366004612d40565b610acf565b3480156103e357600080fd5b50600a546103f19060ff1681565b60405161027f9190612ef4565b34801561040a57600080fd5b506102c8610419366004612f35565b610ae6565b34801561042a57600080fd5b5061043e610439366004612f76565b610b6d565b6040805173ffffffffffffffffffffffffffffffffffffffff909316835260208301919091520161027f565b34801561047657600080fd5b506102c8610485366004612f98565b610c64565b34801561049657600080fd5b506102c86104a5366004612d40565b610d45565b3480156104b657600080fd5b506102736104c5366004612f98565b610edc565b3480156104d657600080fd5b506102c86104e5366004612f35565b610f54565b6102c86104f8366004612f98565b610f6f565b34801561050957600080fd5b506102c8610518366004612fb5565b6110d2565b34801561052957600080fd5b506102c86105383660046130a0565b6111db565b34801561054957600080fd5b50610330610558366004612d40565b611285565b34801561056957600080fd5b506102c8610578366004612d40565b61131d565b34801561058957600080fd5b506102e0610598366004612f98565b61147c565b3480156105a957600080fd5b506102c8611530565b3480156105be57600080fd5b506102e06105cd366004612d40565b6115a3565b3480156105de57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff16610330565b34801561060957600080fd5b506102c8610618366004612d40565b6115b3565b34801561062957600080fd5b5061030361161f565b34801561063e57600080fd5b506102e060105481565b34801561065457600080fd5b506102e0600d5481565b34801561066a57600080fd5b506102c86106793660046130e9565b61162e565b34801561068a57600080fd5b506102c861069936600461311c565b611639565b6102c86106ac36600461319c565b6116c7565b3480156106bd57600080fd5b506103036106cc366004612d40565b611b95565b3480156106dd57600080fd5b506102736106ec36600461321b565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073357600080fd5b506102c8610742366004612f98565b611c8b565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff1615155b92915050565b600061076f82611d87565b60085473ffffffffffffffffffffffffffffffffffffffff1633146107ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6107f68282611e29565b5050565b60606002805461080990613249565b80601f016020809104026020016040519081016040528092919081815260200182805461083590613249565b80156108825780601f1061085757610100808354040283529160200191610882565b820191906000526020600020905b81548152906001019060200180831161086557829003601f168201915b5050505050905090565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff166109235760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107e3565b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061095782611285565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016107e3565b3373ffffffffffffffffffffffffffffffffffffffff82161480610a4e575073ffffffffffffffffffffffffffffffffffffffff8116600090815260076020908152604080832033845290915290205460ff165b610ac05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e3565b610aca8383611f6e565b505050565b600e8160028110610adf57600080fd5b0154905081565b610af0338261200e565b610b625760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107e3565b610aca838383612164565b600082815260016020908152604080832081518083019092525473ffffffffffffffffffffffffffffffffffffffff8116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff16928201929092528291610c2857506040805180820190915260005473ffffffffffffffffffffffffffffffffffffffff811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090610c4c906bffffffffffffffffffffffff16876132c5565b610c569190613331565b915196919550909350505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610ccb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b601180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527ff61d1153d29048c2237241f477f5e22a9ec268b07657816f076903faf9274ffd906020015b60405180910390a150565b600260095403610d975760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e3565b6002600955600c54601254829190610db0908390613345565b1115610dfe5760405162461bcd60e51b815260206004820152601660248201527f5175616e74697479206e6f7420617661696c61626c650000000000000000000060448201526064016107e3565b60115473ffffffffffffffffffffffffffffffffffffffff16610e635760405162461bcd60e51b815260206004820152601c60248201527f4e6f207465616d2077616c6c6574206164647265737320666f756e640000000060448201526064016107e3565b60115473ffffffffffffffffffffffffffffffffffffffff163314610eca5760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f77656400000000000000000000000000000000000000000060448201526064016107e3565b610ed382612397565b50506001600955565b60006001600a5460ff166002811115610ef757610ef7612ec5565b03610f28575073ffffffffffffffffffffffffffffffffffffffff1660009081526013602052604090205460ff1690565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526014602052604090205460ff1690565b610aca83838360405180602001604052806000815250611639565b600260095403610fc15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e3565b600260095560085473ffffffffffffffffffffffffffffffffffffffff16331461102d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b73ffffffffffffffffffffffffffffffffffffffff81166110905760405162461bcd60e51b815260206004820152601f60248201527f576974686472617720616464726573732063616e6e6f74206265207a65726f0060448201526064016107e3565b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f19350505050158015610ed3573d6000803e3d6000fd5b60085473ffffffffffffffffffffffffffffffffffffffff1633146111395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b60005b60028110156107f6578181600281106111575761115761335d565b60200201356015826002811061116f5761116f61335d565b01557fa7a8372e3e36c75896eb420e70b6ee2814e6c5a740914f72dc3e54be6a06d178818381600281106111a5576111a561335d565b60200201356040516111c1929190918252602082015260400190565b60405180910390a1806111d38161338c565b91505061113c565b60085473ffffffffffffffffffffffffffffffffffffffff1633146112425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b805161125590600b906020840190612ca7565b507f744d1924de3e532e3230010491d50f9d3a13f8cf2f675452046ec3cee64a02dd81604051610d3a9190612e86565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff168061076f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016107e3565b60085473ffffffffffffffffffffffffffffffffffffffff1633146113845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b60028111156113fb5760405162461bcd60e51b815260206004820152602360248201527f4d696e7420737461747573206d757374206265206265747765656e203020616e60448201527f642032000000000000000000000000000000000000000000000000000000000060648201526084016107e3565b80600281111561140d5761140d612ec5565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600183600281111561144757611447612ec5565b02179055506040518181527f4cc5ea37df50e6ca53a9b0b7897785aac7fbd6e69b095d62b7df79f291a0a67890602001610d3a565b600073ffffffffffffffffffffffffffffffffffffffff82166115075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016107e3565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205490565b60085473ffffffffffffffffffffffffffffffffffffffff1633146115975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b6115a160006123de565b565b60158160028110610adf57600080fd5b60085473ffffffffffffffffffffffffffffffffffffffff16331461161a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b600d55565b60606003805461080990613249565b6107f6338383612455565b611643338361200e565b6116b55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107e3565b6116c184848484612568565b50505050565b6002600954036117195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e3565b6002600955600c54601254849190611732908390613345565b11156117805760405162461bcd60e51b815260206004820152601660248201527f5175616e74697479206e6f7420617661696c61626c650000000000000000000060448201526064016107e3565b3233146117f45760405162461bcd60e51b8152602060048201526024808201527f536d61727420636f6e747261637420696e746572616374696f6e73206469736160448201527f626c65640000000000000000000000000000000000000000000000000000000060648201526084016107e3565b6000600a5460ff16600281111561180d5761180d612ec5565b0361185a5760405162461bcd60e51b815260206004820152600f60248201527f436f6e747261637420636c6f736564000000000000000000000000000000000060448201526064016107e3565b600084116118d05760405162461bcd60e51b815260206004820152602260248201527f5175616e74697479206d7573742062652067726561746572207468616e207a6560448201527f726f00000000000000000000000000000000000000000000000000000000000060648201526084016107e3565b83600d546118de91906132c5565b341461192c5760405162461bcd60e51b815260206004820152601160248201527f5072696365206e6f74206d61746368656400000000000000000000000000000060448201526064016107e3565b6001600a5460ff16600281111561194557611945612ec5565b03611a9657600061195684846125f1565b9050600081116119a85760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f77656400000000000000000000000000000000000000000060448201526064016107e3565b808511156119f85760405162461bcd60e51b815260206004820152601460248201527f5175616e74697479206e6f7420616c6c6f77656400000000000000000000000060448201526064016107e3565b3360009081526013602052604090205460ff1615611a585760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e74656400000000000000000000000000000000000060448201526064016107e3565b5033600090815260136020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611b81565b601054841115611ae85760405162461bcd60e51b815260206004820152601460248201527f5175616e74697479206e6f7420616c6c6f77656400000000000000000000000060448201526064016107e3565b3360009081526014602052604090205460ff1615611b485760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e74656400000000000000000000000000000000000060448201526064016107e3565b33600090815260146020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b611b8a84612397565b505060016009555050565b60008181526004602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611c2f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107e3565b6000611c39612659565b90506000815111611c595760405180602001604052806000815250611c84565b80611c6384612668565b604051602001611c749291906133c4565b6040516020818303038152906040525b9392505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611cf25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b73ffffffffffffffffffffffffffffffffffffffff8116611d7b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107e3565b611d84816123de565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611e1a57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061076f575061076f8261279d565b6127106bffffffffffffffffffffffff82161115611eaf5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c6550726963650000000000000000000000000000000000000000000060648201526084016107e3565b73ffffffffffffffffffffffffffffffffffffffff8216611f125760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016107e3565b6040805180820190915273ffffffffffffffffffffffffffffffffffffffff9092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600055565b600081815260066020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611fc882611285565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff166120a55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107e3565b60006120b083611285565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061211f57508373ffffffffffffffffffffffffffffffffffffffff166121078461088c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061215c575073ffffffffffffffffffffffffffffffffffffffff80821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661218482611285565b73ffffffffffffffffffffffffffffffffffffffff161461220d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016107e3565b73ffffffffffffffffffffffffffffffffffffffff82166122955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107e3565b6122a0600082611f6e565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604081208054600192906122d69084906133f3565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600560205260408120805460019290612311908490613345565b909155505060008181526004602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6012805490829060006123aa8385613345565b90915550600090505b82811015610aca576123ce336123c98385613345565b612834565b6123d78161338c565b90506123b3565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124d05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e3565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526007602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612573848484612164565b61257f848484846129c2565b6116c15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107e3565b6000805b600281101561264f5761261d8484601584600281106126165761261661335d565b0154612b9b565b1561263f57600e81600281106126355761263561335d565b015491505061076f565b6126488161338c565b90506125f5565b5060009392505050565b6060600b805461080990613249565b6060816000036126ab57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156126d557806126bf8161338c565b91506126ce9050600a83613331565b91506126af565b60008167ffffffffffffffff8111156126f0576126f0612fdd565b6040519080825280601f01601f19166020018201604052801561271a576020820181803683370190505b5090505b841561215c5761272f6001836133f3565b915061273c600a8661340a565b612747906030613345565b60f81b81838151811061275c5761275c61335d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612796600a86613331565b945061271e565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000148061076f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461076f565b73ffffffffffffffffffffffffffffffffffffffff82166128975760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e3565b60008181526004602052604090205473ffffffffffffffffffffffffffffffffffffffff16156129095760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e3565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260056020526040812080546001929061293f908490613345565b909155505060008181526004602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612b90576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612a3990339089908890889060040161341e565b6020604051808303816000875af1925050508015612a92575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612a8f91810190613467565b60015b612b45573d808015612ac0576040519150601f19603f3d011682016040523d82523d6000602084013e612ac5565b606091505b508051600003612b3d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107e3565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a020000000000000000000000000000000000000000000000000000000014905061215c565b506001949350505050565b600061215c848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b166020820152869250603401905060405160208183030381529060405280519060200120600082612c2a8584612c33565b14949350505050565b600081815b8451811015612c9f576000858281518110612c5557612c5561335d565b60200260200101519050808311612c7b5760008381526020829052604090209250612c8c565b600081815260208490526040902092505b5080612c978161338c565b915050612c38565b509392505050565b828054612cb390613249565b90600052602060002090601f016020900481019282612cd55760008555612d1b565b82601f10612cee57805160ff1916838001178555612d1b565b82800160010185558215612d1b579182015b82811115612d1b578251825591602001919060010190612d00565b50612d27929150612d2b565b5090565b5b80821115612d275760008155600101612d2c565b600060208284031215612d5257600080fd5b5035919050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611d8457600080fd5b600060208284031215612d9957600080fd5b8135611c8481612d59565b73ffffffffffffffffffffffffffffffffffffffff81168114611d8457600080fd5b60008060408385031215612dd957600080fd5b8235612de481612da4565b915060208301356bffffffffffffffffffffffff81168114612e0557600080fd5b809150509250929050565b60005b83811015612e2b578181015183820152602001612e13565b838111156116c15750506000910152565b60008151808452612e54816020860160208601612e10565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611c846020830184612e3c565b60008060408385031215612eac57600080fd5b8235612eb781612da4565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6020810160038310612f2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b600080600060608486031215612f4a57600080fd5b8335612f5581612da4565b92506020840135612f6581612da4565b929592945050506040919091013590565b60008060408385031215612f8957600080fd5b50508035926020909101359150565b600060208284031215612faa57600080fd5b8135611c8481612da4565b600060408284031215612fc757600080fd5b82604083011115612fd757600080fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561302757613027612fdd565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561306d5761306d612fdd565b8160405280935085815286868601111561308657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156130b257600080fd5b813567ffffffffffffffff8111156130c957600080fd5b8201601f810184136130da57600080fd5b61215c8482356020840161300c565b600080604083850312156130fc57600080fd5b823561310781612da4565b915060208301358015158114612e0557600080fd5b6000806000806080858703121561313257600080fd5b843561313d81612da4565b9350602085013561314d81612da4565b925060408501359150606085013567ffffffffffffffff81111561317057600080fd5b8501601f8101871361318157600080fd5b6131908782356020840161300c565b91505092959194509250565b6000806000604084860312156131b157600080fd5b83359250602084013567ffffffffffffffff808211156131d057600080fd5b818601915086601f8301126131e457600080fd5b8135818111156131f357600080fd5b8760208260051b850101111561320857600080fd5b6020830194508093505050509250925092565b6000806040838503121561322e57600080fd5b823561323981612da4565b91506020830135612e0581612da4565b600181811c9082168061325d57607f821691505b602082108103612fd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132fd576132fd613296565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261334057613340613302565b500490565b6000821982111561335857613358613296565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133bd576133bd613296565b5060010190565b600083516133d6818460208801612e10565b8351908301906133ea818360208801612e10565b01949350505050565b60008282101561340557613405613296565b500390565b60008261341957613419613302565b500690565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261345d6080830184612e3c565b9695505050505050565b60006020828403121561347957600080fd5b8151611c8481612d5956fea2646970667358221220779133f9e47f8ba6e19702d5f14c4c4307250bf23595336c6139f7341d16559164736f6c634300080e00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f6d696e742e726574726965766572732e6170702f6170692f6d657461646174612f0000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061024e5760003560e01c80635360c5bd1161013857806395d89b41116100b0578063b88d4fde1161007f578063c87b56dd11610064578063c87b56dd146106b1578063e985e9c5146106d1578063f2fde38b1461072757600080fd5b8063b88d4fde1461067e578063ba41b0c61461069e57600080fd5b806395d89b411461061d5780639943770d14610632578063a035b1fe14610648578063a22cb4651461065e57600080fd5b806370a082311161010757806371c5ecb1116100ec57806371c5ecb1146105b25780638da5cb5b146105d257806391b7f5ed146105fd57600080fd5b806370a082311461057d578063715018a61461059d57600080fd5b80635360c5bd146104fd57806355f804b31461051d5780636352211e1461053d57806369ba1a751461055d57600080fd5b80631c443ab0116101cb5780632c4b23341161019a57806340e3c2a31161017f57806340e3c2a3146104aa57806342842e0e146104ca57806351cff8d9146104ea57600080fd5b80632c4b23341461046a5780632fbba1151461048a57600080fd5b80631c443ab0146103b7578063200d2ed2146103d757806323b872dd146103fe5780632a55205a1461041e57600080fd5b806306fdde0311610222578063095ea7b311610207578063095ea7b3146103555780631245e3471461037557806318160ddd146103a257600080fd5b806306fdde03146102ee578063081812fc1461031057600080fd5b8062923f9e1461025357806301ffc9a71461028857806304634d8d146102a8578063047fc9aa146102ca575b600080fd5b34801561025f57600080fd5b5061027361026e366004612d40565b610747565b60405190151581526020015b60405180910390f35b34801561029457600080fd5b506102736102a3366004612d87565b610775565b3480156102b457600080fd5b506102c86102c3366004612dc6565b610780565b005b3480156102d657600080fd5b506102e0600c5481565b60405190815260200161027f565b3480156102fa57600080fd5b506103036107fa565b60405161027f9190612e86565b34801561031c57600080fd5b5061033061032b366004612d40565b61088c565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161027f565b34801561036157600080fd5b506102c8610370366004612e99565b61094c565b34801561038157600080fd5b506011546103309073ffffffffffffffffffffffffffffffffffffffff1681565b3480156103ae57600080fd5b506012546102e0565b3480156103c357600080fd5b506102e06103d2366004612d40565b610acf565b3480156103e357600080fd5b50600a546103f19060ff1681565b60405161027f9190612ef4565b34801561040a57600080fd5b506102c8610419366004612f35565b610ae6565b34801561042a57600080fd5b5061043e610439366004612f76565b610b6d565b6040805173ffffffffffffffffffffffffffffffffffffffff909316835260208301919091520161027f565b34801561047657600080fd5b506102c8610485366004612f98565b610c64565b34801561049657600080fd5b506102c86104a5366004612d40565b610d45565b3480156104b657600080fd5b506102736104c5366004612f98565b610edc565b3480156104d657600080fd5b506102c86104e5366004612f35565b610f54565b6102c86104f8366004612f98565b610f6f565b34801561050957600080fd5b506102c8610518366004612fb5565b6110d2565b34801561052957600080fd5b506102c86105383660046130a0565b6111db565b34801561054957600080fd5b50610330610558366004612d40565b611285565b34801561056957600080fd5b506102c8610578366004612d40565b61131d565b34801561058957600080fd5b506102e0610598366004612f98565b61147c565b3480156105a957600080fd5b506102c8611530565b3480156105be57600080fd5b506102e06105cd366004612d40565b6115a3565b3480156105de57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff16610330565b34801561060957600080fd5b506102c8610618366004612d40565b6115b3565b34801561062957600080fd5b5061030361161f565b34801561063e57600080fd5b506102e060105481565b34801561065457600080fd5b506102e0600d5481565b34801561066a57600080fd5b506102c86106793660046130e9565b61162e565b34801561068a57600080fd5b506102c861069936600461311c565b611639565b6102c86106ac36600461319c565b6116c7565b3480156106bd57600080fd5b506103036106cc366004612d40565b611b95565b3480156106dd57600080fd5b506102736106ec36600461321b565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561073357600080fd5b506102c8610742366004612f98565b611c8b565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff1615155b92915050565b600061076f82611d87565b60085473ffffffffffffffffffffffffffffffffffffffff1633146107ec5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6107f68282611e29565b5050565b60606002805461080990613249565b80601f016020809104026020016040519081016040528092919081815260200182805461083590613249565b80156108825780601f1061085757610100808354040283529160200191610882565b820191906000526020600020905b81548152906001019060200180831161086557829003601f168201915b5050505050905090565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff166109235760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107e3565b5060009081526006602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b600061095782611285565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016107e3565b3373ffffffffffffffffffffffffffffffffffffffff82161480610a4e575073ffffffffffffffffffffffffffffffffffffffff8116600090815260076020908152604080832033845290915290205460ff165b610ac05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e3565b610aca8383611f6e565b505050565b600e8160028110610adf57600080fd5b0154905081565b610af0338261200e565b610b625760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107e3565b610aca838383612164565b600082815260016020908152604080832081518083019092525473ffffffffffffffffffffffffffffffffffffffff8116808352740100000000000000000000000000000000000000009091046bffffffffffffffffffffffff16928201929092528291610c2857506040805180820190915260005473ffffffffffffffffffffffffffffffffffffffff811682527401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1660208201525b602081015160009061271090610c4c906bffffffffffffffffffffffff16876132c5565b610c569190613331565b915196919550909350505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314610ccb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b601180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527ff61d1153d29048c2237241f477f5e22a9ec268b07657816f076903faf9274ffd906020015b60405180910390a150565b600260095403610d975760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e3565b6002600955600c54601254829190610db0908390613345565b1115610dfe5760405162461bcd60e51b815260206004820152601660248201527f5175616e74697479206e6f7420617661696c61626c650000000000000000000060448201526064016107e3565b60115473ffffffffffffffffffffffffffffffffffffffff16610e635760405162461bcd60e51b815260206004820152601c60248201527f4e6f207465616d2077616c6c6574206164647265737320666f756e640000000060448201526064016107e3565b60115473ffffffffffffffffffffffffffffffffffffffff163314610eca5760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f77656400000000000000000000000000000000000000000060448201526064016107e3565b610ed382612397565b50506001600955565b60006001600a5460ff166002811115610ef757610ef7612ec5565b03610f28575073ffffffffffffffffffffffffffffffffffffffff1660009081526013602052604090205460ff1690565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526014602052604090205460ff1690565b610aca83838360405180602001604052806000815250611639565b600260095403610fc15760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e3565b600260095560085473ffffffffffffffffffffffffffffffffffffffff16331461102d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b73ffffffffffffffffffffffffffffffffffffffff81166110905760405162461bcd60e51b815260206004820152601f60248201527f576974686472617720616464726573732063616e6e6f74206265207a65726f0060448201526064016107e3565b60405173ffffffffffffffffffffffffffffffffffffffff8216904780156108fc02916000818181858888f19350505050158015610ed3573d6000803e3d6000fd5b60085473ffffffffffffffffffffffffffffffffffffffff1633146111395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b60005b60028110156107f6578181600281106111575761115761335d565b60200201356015826002811061116f5761116f61335d565b01557fa7a8372e3e36c75896eb420e70b6ee2814e6c5a740914f72dc3e54be6a06d178818381600281106111a5576111a561335d565b60200201356040516111c1929190918252602082015260400190565b60405180910390a1806111d38161338c565b91505061113c565b60085473ffffffffffffffffffffffffffffffffffffffff1633146112425760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b805161125590600b906020840190612ca7565b507f744d1924de3e532e3230010491d50f9d3a13f8cf2f675452046ec3cee64a02dd81604051610d3a9190612e86565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff168061076f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016107e3565b60085473ffffffffffffffffffffffffffffffffffffffff1633146113845760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b60028111156113fb5760405162461bcd60e51b815260206004820152602360248201527f4d696e7420737461747573206d757374206265206265747765656e203020616e60448201527f642032000000000000000000000000000000000000000000000000000000000060648201526084016107e3565b80600281111561140d5761140d612ec5565b600a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600183600281111561144757611447612ec5565b02179055506040518181527f4cc5ea37df50e6ca53a9b0b7897785aac7fbd6e69b095d62b7df79f291a0a67890602001610d3a565b600073ffffffffffffffffffffffffffffffffffffffff82166115075760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016107e3565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526005602052604090205490565b60085473ffffffffffffffffffffffffffffffffffffffff1633146115975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b6115a160006123de565b565b60158160028110610adf57600080fd5b60085473ffffffffffffffffffffffffffffffffffffffff16331461161a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b600d55565b60606003805461080990613249565b6107f6338383612455565b611643338361200e565b6116b55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107e3565b6116c184848484612568565b50505050565b6002600954036117195760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107e3565b6002600955600c54601254849190611732908390613345565b11156117805760405162461bcd60e51b815260206004820152601660248201527f5175616e74697479206e6f7420617661696c61626c650000000000000000000060448201526064016107e3565b3233146117f45760405162461bcd60e51b8152602060048201526024808201527f536d61727420636f6e747261637420696e746572616374696f6e73206469736160448201527f626c65640000000000000000000000000000000000000000000000000000000060648201526084016107e3565b6000600a5460ff16600281111561180d5761180d612ec5565b0361185a5760405162461bcd60e51b815260206004820152600f60248201527f436f6e747261637420636c6f736564000000000000000000000000000000000060448201526064016107e3565b600084116118d05760405162461bcd60e51b815260206004820152602260248201527f5175616e74697479206d7573742062652067726561746572207468616e207a6560448201527f726f00000000000000000000000000000000000000000000000000000000000060648201526084016107e3565b83600d546118de91906132c5565b341461192c5760405162461bcd60e51b815260206004820152601160248201527f5072696365206e6f74206d61746368656400000000000000000000000000000060448201526064016107e3565b6001600a5460ff16600281111561194557611945612ec5565b03611a9657600061195684846125f1565b9050600081116119a85760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f77656400000000000000000000000000000000000000000060448201526064016107e3565b808511156119f85760405162461bcd60e51b815260206004820152601460248201527f5175616e74697479206e6f7420616c6c6f77656400000000000000000000000060448201526064016107e3565b3360009081526013602052604090205460ff1615611a585760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e74656400000000000000000000000000000000000060448201526064016107e3565b5033600090815260136020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611b81565b601054841115611ae85760405162461bcd60e51b815260206004820152601460248201527f5175616e74697479206e6f7420616c6c6f77656400000000000000000000000060448201526064016107e3565b3360009081526014602052604090205460ff1615611b485760405162461bcd60e51b815260206004820152600e60248201527f416c7265616479206d696e74656400000000000000000000000000000000000060448201526064016107e3565b33600090815260146020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790555b611b8a84612397565b505060016009555050565b60008181526004602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611c2f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107e3565b6000611c39612659565b90506000815111611c595760405180602001604052806000815250611c84565b80611c6384612668565b604051602001611c749291906133c4565b6040516020818303038152906040525b9392505050565b60085473ffffffffffffffffffffffffffffffffffffffff163314611cf25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107e3565b73ffffffffffffffffffffffffffffffffffffffff8116611d7b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107e3565b611d84816123de565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480611e1a57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061076f575061076f8261279d565b6127106bffffffffffffffffffffffff82161115611eaf5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c2065786365656460448201527f2073616c6550726963650000000000000000000000000000000000000000000060648201526084016107e3565b73ffffffffffffffffffffffffffffffffffffffff8216611f125760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016107e3565b6040805180820190915273ffffffffffffffffffffffffffffffffffffffff9092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600055565b600081815260066020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611fc882611285565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008181526004602052604081205473ffffffffffffffffffffffffffffffffffffffff166120a55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016107e3565b60006120b083611285565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061211f57508373ffffffffffffffffffffffffffffffffffffffff166121078461088c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061215c575073ffffffffffffffffffffffffffffffffffffffff80821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff1661218482611285565b73ffffffffffffffffffffffffffffffffffffffff161461220d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e657200000000000000000000000000000000000000000000000000000060648201526084016107e3565b73ffffffffffffffffffffffffffffffffffffffff82166122955760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107e3565b6122a0600082611f6e565b73ffffffffffffffffffffffffffffffffffffffff831660009081526005602052604081208054600192906122d69084906133f3565b909155505073ffffffffffffffffffffffffffffffffffffffff82166000908152600560205260408120805460019290612311908490613345565b909155505060008181526004602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6012805490829060006123aa8385613345565b90915550600090505b82811015610aca576123ce336123c98385613345565b612834565b6123d78161338c565b90506123b3565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124d05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e3565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526007602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612573848484612164565b61257f848484846129c2565b6116c15760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107e3565b6000805b600281101561264f5761261d8484601584600281106126165761261661335d565b0154612b9b565b1561263f57600e81600281106126355761263561335d565b015491505061076f565b6126488161338c565b90506125f5565b5060009392505050565b6060600b805461080990613249565b6060816000036126ab57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156126d557806126bf8161338c565b91506126ce9050600a83613331565b91506126af565b60008167ffffffffffffffff8111156126f0576126f0612fdd565b6040519080825280601f01601f19166020018201604052801561271a576020820181803683370190505b5090505b841561215c5761272f6001836133f3565b915061273c600a8661340a565b612747906030613345565b60f81b81838151811061275c5761275c61335d565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612796600a86613331565b945061271e565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000148061076f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461076f565b73ffffffffffffffffffffffffffffffffffffffff82166128975760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e3565b60008181526004602052604090205473ffffffffffffffffffffffffffffffffffffffff16156129095760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e3565b73ffffffffffffffffffffffffffffffffffffffff8216600090815260056020526040812080546001929061293f908490613345565b909155505060008181526004602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612b90576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612a3990339089908890889060040161341e565b6020604051808303816000875af1925050508015612a92575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612a8f91810190613467565b60015b612b45573d808015612ac0576040519150601f19603f3d011682016040523d82523d6000602084013e612ac5565b606091505b508051600003612b3d5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107e3565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a020000000000000000000000000000000000000000000000000000000014905061215c565b506001949350505050565b600061215c848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506040517fffffffffffffffffffffffffffffffffffffffff0000000000000000000000003360601b166020820152869250603401905060405160208183030381529060405280519060200120600082612c2a8584612c33565b14949350505050565b600081815b8451811015612c9f576000858281518110612c5557612c5561335d565b60200260200101519050808311612c7b5760008381526020829052604090209250612c8c565b600081815260208490526040902092505b5080612c978161338c565b915050612c38565b509392505050565b828054612cb390613249565b90600052602060002090601f016020900481019282612cd55760008555612d1b565b82601f10612cee57805160ff1916838001178555612d1b565b82800160010185558215612d1b579182015b82811115612d1b578251825591602001919060010190612d00565b50612d27929150612d2b565b5090565b5b80821115612d275760008155600101612d2c565b600060208284031215612d5257600080fd5b5035919050565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611d8457600080fd5b600060208284031215612d9957600080fd5b8135611c8481612d59565b73ffffffffffffffffffffffffffffffffffffffff81168114611d8457600080fd5b60008060408385031215612dd957600080fd5b8235612de481612da4565b915060208301356bffffffffffffffffffffffff81168114612e0557600080fd5b809150509250929050565b60005b83811015612e2b578181015183820152602001612e13565b838111156116c15750506000910152565b60008151808452612e54816020860160208601612e10565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611c846020830184612e3c565b60008060408385031215612eac57600080fd5b8235612eb781612da4565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6020810160038310612f2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b91905290565b600080600060608486031215612f4a57600080fd5b8335612f5581612da4565b92506020840135612f6581612da4565b929592945050506040919091013590565b60008060408385031215612f8957600080fd5b50508035926020909101359150565b600060208284031215612faa57600080fd5b8135611c8481612da4565b600060408284031215612fc757600080fd5b82604083011115612fd757600080fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561302757613027612fdd565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190828211818310171561306d5761306d612fdd565b8160405280935085815286868601111561308657600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156130b257600080fd5b813567ffffffffffffffff8111156130c957600080fd5b8201601f810184136130da57600080fd5b61215c8482356020840161300c565b600080604083850312156130fc57600080fd5b823561310781612da4565b915060208301358015158114612e0557600080fd5b6000806000806080858703121561313257600080fd5b843561313d81612da4565b9350602085013561314d81612da4565b925060408501359150606085013567ffffffffffffffff81111561317057600080fd5b8501601f8101871361318157600080fd5b6131908782356020840161300c565b91505092959194509250565b6000806000604084860312156131b157600080fd5b83359250602084013567ffffffffffffffff808211156131d057600080fd5b818601915086601f8301126131e457600080fd5b8135818111156131f357600080fd5b8760208260051b850101111561320857600080fd5b6020830194508093505050509250925092565b6000806040838503121561322e57600080fd5b823561323981612da4565b91506020830135612e0581612da4565b600181811c9082168061325d57607f821691505b602082108103612fd7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132fd576132fd613296565b500290565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60008261334057613340613302565b500490565b6000821982111561335857613358613296565b500190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036133bd576133bd613296565b5060010190565b600083516133d6818460208801612e10565b8351908301906133ea818360208801612e10565b01949350505050565b60008282101561340557613405613296565b500390565b60008261341957613419613302565b500690565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261345d6080830184612e3c565b9695505050505050565b60006020828403121561347957600080fd5b8151611c8481612d5956fea2646970667358221220779133f9e47f8ba6e19702d5f14c4c4307250bf23595336c6139f7341d16559164736f6c634300080e0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002968747470733a2f2f6d696e742e726574726965766572732e6170702f6170692f6d657461646174612f0000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _URI (string): https://mint.retrievers.app/api/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000029
Arg [2] : 68747470733a2f2f6d696e742e726574726965766572732e6170702f6170692f
Arg [3] : 6d657461646174612f0000000000000000000000000000000000000000000000


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.