ETH Price: $2,303.64 (+0.93%)

Token

EZSwapPioneer (EZP)
 

Overview

Max Total Supply

0 EZP

Holders

214

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
niconiconi.eth
Balance
1 EZP
0xcdd70a07cac954ae3aad44a49c56c3e6f6f9d0ab
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:
EZSwapPioneer

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 19 : EZSwapPioneer.sol
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13; 

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

import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/security/Pausable.sol";

import {RevokableOperatorFilterer} from "./RevokableOperatorFilterer.sol";
import {RevokableDefaultOperatorFilterer} from "./RevokableDefaultOperatorFilterer.sol";

contract EZSwapPioneer is ERC721, RevokableDefaultOperatorFilterer, ReentrancyGuard, Ownable, Pausable {

    using ECDSA for bytes32;
    using Counters for Counters.Counter;

    uint256 public constant MAX_SUPPLY = 333;
    Counters.Counter private _tokenIds;

    mapping(address => bool) public isMinted;
    address public signer;
    string public baseURI;

    constructor(string memory baseURI_) ERC721("EZSwapPioneer", "EZP") {
        baseURI = baseURI_;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function pause() external onlyOwner whenNotPaused {
        _pause();
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function unpause() external onlyOwner whenPaused {
        _unpause();
    }

    function mintedIds() public view returns (uint256) {
        return _tokenIds.current();
    }

    function setSigner(address signer_) external onlyOwner {
        signer = signer_;
    }

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

    function setBaseURI(string memory baseURI_) public onlyOwner {
        baseURI = baseURI_;
    } 

    function hashTransaction (address sender, address address_) internal pure returns (bytes32) {
        bytes32 hash = keccak256(abi.encodePacked(
            "\x19Ethereum Signed Message:\n32",
            keccak256(abi.encodePacked(sender, address_))
        ));
         return hash;
    }

    function isWhitelistAddress(bytes memory signature) internal view returns (bool) {
        bytes32 msgHash = hashTransaction(msg.sender, address(this));
        return msgHash.recover(signature) == signer;
    }

    function mint(bytes memory signature) public nonReentrant whenNotPaused {
        require(_tokenIds.current() < MAX_SUPPLY, "mint would exceed max supply");
        require(!isMinted[msg.sender],"already minted");
        require(isWhitelistAddress(signature), "caller is not in whitelist");

        _tokenIds.increment();
        isMinted[msg.sender] = true;
        _safeMint(msg.sender, _tokenIds.current());
    }

    function batchMint() external onlyOwner nonReentrant {
        while (_tokenIds.current() < MAX_SUPPLY) {
            _tokenIds.increment();
            _safeMint(msg.sender, _tokenIds.current());
        }
    }

    ///////////////////////////////////////////////////////////////////////////
    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function owner() public view virtual override (Ownable, RevokableOperatorFilterer) returns (address) {
        return Ownable.owner();
    }
    ///////////////////////////////////////////////////////////////////////////
}

File 2 of 19 : RevokableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

/**
 * @title  RevokableOperatorFilterer
 * @notice This contract is meant to allow contracts to permanently opt out of the OperatorFilterRegistry. The Registry
 *         itself has an "unregister" function, but if the contract is ownable, the owner can re-register at any point.
 *         As implemented, this abstract contract allows the contract owner to toggle the
 *         isOperatorFilterRegistryRevoked flag in order to permanently bypass the OperatorFilterRegistry checks.
 */
abstract contract RevokableOperatorFilterer is OperatorFilterer {
    error OnlyOwner();
    error AlreadyRevoked();

    bool private _isOperatorFilterRegistryRevoked;

    modifier onlyAllowedOperator(address from) override {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (!_isOperatorFilterRegistryRevoked && address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) override {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (!_isOperatorFilterRegistryRevoked && address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }

    /**
     * @notice Disable the isOperatorFilterRegistryRevoked flag. OnlyOwner.
     */
    function revokeOperatorFilterRegistry() external {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        if (_isOperatorFilterRegistryRevoked) {
            revert AlreadyRevoked();
        }
        _isOperatorFilterRegistryRevoked = true;
    }

    function isOperatorFilterRegistryRevoked() public view returns (bool) {
        return _isOperatorFilterRegistryRevoked;
    }

    /**
     * @dev assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract
     */
    function owner() public view virtual returns (address);
}

File 3 of 19 : RevokableDefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {RevokableOperatorFilterer} from "./RevokableOperatorFilterer.sol";
import {OperatorFilterer} from "./OperatorFilterer.sol";

/**
 * @title  RevokableDefaultOperatorFilterer
 * @notice Inherits from RevokableOperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract RevokableDefaultOperatorFilterer is RevokableOperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 6 of 19 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 7 of 19 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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 8 of 19 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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 9 of 19 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

File 10 of 19 : OperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

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

/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant OPERATOR_FILTER_REGISTRY =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

File 11 of 19 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 12 of 19 : 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 13 of 19 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 14 of 19 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 15 of 19 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 16 of 19 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 17 of 19 : 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 18 of 19 : 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 19 of 19 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyRevoked","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperatorFilterRegistryRevoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintedIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeOperatorFilterRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer_","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002e3a38038062002e3a8339810160408190526200003491620003a0565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020016c22ad29bbb0b82834b7b732b2b960991b815250604051806040016040528060038152602001620455a560ec1b81525081600090816200009e9190620004e3565b506001620000ad8282620004e3565b5050506daaeb6d7670e522a718067333cd4e3b15620001e95780156200013c57604051633e9f1edf60e11b81526daaeb6d7670e522a718067333cd4e90637d3e3dbe90620001029030908690600401620005d6565b600060405180830381600087803b1580156200011d57600080fd5b505af115801562000132573d6000803e3d6000fd5b50505050620001e9565b6001600160a01b03821615620001815760405163a0af290360e01b81526daaeb6d7670e522a718067333cd4e9063a0af290390620001029030908690600401620005d6565b604051632210724360e11b81526daaeb6d7670e522a718067333cd4e90634420e48690620001b4903090600401620005fc565b600060405180830381600087803b158015620001cf57600080fd5b505af1158015620001e4573d6000803e3d6000fd5b505050505b50506001600755620001fb336200021e565b6008805460ff60a01b19169055600c620002168282620004e3565b50506200060c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b601f19601f83011681018181106001600160401b0382111715620002ae57620002ae62000270565b6040525050565b6000620002c160405190565b9050620002cf828262000286565b919050565b60006001600160401b03821115620002f057620002f062000270565b601f19601f83011660200192915050565b60005b838110156200031e57818101518382015260200162000304565b50506000910152565b60006200033e6200033884620002d4565b620002b5565b9050828152602081018484840111156200035b576200035b600080fd5b6200036884828562000301565b509392505050565b600082601f830112620003865762000386600080fd5b81516200039884826020860162000327565b949350505050565b600060208284031215620003b757620003b7600080fd5b81516001600160401b03811115620003d257620003d2600080fd5b620003988482850162000370565b634e487b7160e01b600052602260045260246000fd5b6002810460018216806200040b57607f821691505b602082108103620004205762000420620003e0565b50919050565b600062000437620004348381565b90565b92915050565b620004488362000426565b81546008840282811b60001990911b908116901990911617825550505050565b6000620004778184846200043d565b505050565b818110156200049b576200049260008262000468565b6001016200047c565b5050565b601f82111562000477576000818152602090206020601f85010481016020851015620004c85750805b620004dc6020601f8601048301826200047c565b5050505050565b81516001600160401b03811115620004ff57620004ff62000270565b6200050b8254620003f6565b620005188282856200049f565b6020601f8311600181146200054f5760008415620005365750858201515b600019600886021c1981166002860217865550620005ab565b600085815260208120601f198616915b828110156200058157888501518255602094850194600190920191016200055f565b868310156200059e5784890151600019601f89166008021c191682555b6001600288020188555050505b505050505050565b60006001600160a01b03821662000437565b620005d081620005b3565b82525050565b60408101620005e68285620005c5565b620005f56020830184620005c5565b9392505050565b60208101620004378284620005c5565b61281e806200061c6000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a22cb465116100a2578063e985e9c511610071578063e985e9c514610393578063ecba222a146103a6578063f2fde38b146103b1578063f9f2a7ce146103c457600080fd5b8063a22cb46514610352578063b88d4fde14610365578063c87b56dd14610378578063e3424c931461038b57600080fd5b80637ba0e2e7116100de5780637ba0e2e7146103275780638456cb591461033a5780638da5cb5b1461034257806395d89b411461034a57600080fd5b806370a0823114610304578063715018a6146103175780637a4675981461031f57600080fd5b80633f4ba83a1161017c5780635ef9432a1161014b5780635ef9432a146102ce5780636352211e146102d65780636c0360eb146102e95780636c19e783146102f157600080fd5b80633f4ba83a1461028e57806342842e0e1461029657806355f804b3146102a95780635c975abb146102bc57600080fd5b8063095ea7b3116101b8578063095ea7b31461023d578063238ac9331461025257806323b872dd1461026557806332cb6b0c1461027857600080fd5b806301ffc9a7146101df57806306fdde0314610208578063081812fc1461021d575b600080fd5b6101f26101ed366004611925565b6103e7565b6040516101ff9190611950565b60405180910390f35b610210610439565b6040516101ff91906119b4565b61023061022b3660046119d6565b6104cb565b6040516101ff9190611a11565b61025061024b366004611a33565b6104f2565b005b600b54610230906001600160a01b031681565b610250610273366004611a70565b6105c5565b61028161014d81565b6040516101ff9190611ac6565b6102506106b1565b6102506102a4366004611a70565b6106cb565b6102506102b7366004611bc7565b6107ac565b600854600160a01b900460ff166101f2565b6102506107c4565b6102306102e43660046119d6565b610830565b610210610865565b6102506102ff366004611c02565b6108f3565b610281610312366004611c02565b61091d565b610250610961565b610281610973565b610250610335366004611bc7565b610983565b610250610a72565b610230610a8a565b610210610a9e565b610250610360366004611c36565b610aad565b610250610373366004611c69565b610b72565b6102106103863660046119d6565b610c61565b610250610cc8565b6101f26103a1366004611ce8565b610d31565b60065460ff166101f2565b6102506103bf366004611c02565b610d5f565b6101f26103d2366004611c02565b600a6020526000908152604090205460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061041857506001600160e01b03198216635b5e139f60e01b145b8061043357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461044890611d31565b80601f016020809104026020016040519081016040528092919081815260200182805461047490611d31565b80156104c15780601f10610496576101008083540402835291602001916104c1565b820191906000526020600020905b8154815290600101906020018083116104a457829003601f168201915b5050505050905090565b60006104d682610d99565b506000908152600460205260409020546001600160a01b031690565b600654829060ff1615801561051557506daaeb6d7670e522a718067333cd4e3b15155b156105b657604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c61711349061054d9030908590600401611d5d565b602060405180830381865afa15801561056a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058e9190611d83565b6105b65780604051633b79c77360e21b81526004016105ad9190611a11565b60405180910390fd5b6105c08383610dcd565b505050565b600654839060ff161580156105e857506daaeb6d7670e522a718067333cd4e3b15155b156106a057336001600160a01b0382160361060d57610608848484610e4d565b6106ab565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906106409030903390600401611d5d565b602060405180830381865afa15801561065d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106819190611d83565b6106a05733604051633b79c77360e21b81526004016105ad9190611a11565b6106ab848484610e4d565b50505050565b6106b9610e7e565b6106c1610ead565b6106c9610ed6565b565b600654839060ff161580156106ee57506daaeb6d7670e522a718067333cd4e3b15155b156107a157336001600160a01b0382160361070e57610608848484610f25565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906107419030903390600401611d5d565b602060405180830381865afa15801561075e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107829190611d83565b6107a15733604051633b79c77360e21b81526004016105ad9190611a11565b6106ab848484610f25565b6107b4610e7e565b600c6107c08282611e3d565b5050565b6107cc610a8a565b6001600160a01b0316336001600160a01b0316146107fd57604051635fc483c560e01b815260040160405180910390fd5b60065460ff16156108215760405163905e710760e01b815260040160405180910390fd5b6006805460ff19166001179055565b6000818152600260205260408120546001600160a01b0316806104335760405162461bcd60e51b81526004016105ad90611f38565b600c805461087290611d31565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90611d31565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b505050505081565b6108fb610e7e565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166109455760405162461bcd60e51b81526004016105ad90611f91565b506001600160a01b031660009081526003602052604090205490565b610969610e7e565b6106c96000610f40565b600061097e60095490565b905090565b6002600754036109a55760405162461bcd60e51b81526004016105ad90611fd5565b60026007556109b2610f92565b61014d6109be60095490565b106109db5760405162461bcd60e51b81526004016105ad90612019565b336000908152600a602052604090205460ff1615610a0b5760405162461bcd60e51b81526004016105ad9061204e565b610a1481610fbc565b610a305760405162461bcd60e51b81526004016105ad90612092565b610a3e600980546001019055565b336000818152600a60205260409020805460ff19166001179055610a6a90610a6560095490565b610ff3565b506001600755565b610a7a610e7e565b610a82610f92565b6106c961100d565b600061097e6008546001600160a01b031690565b60606001805461044890611d31565b600654829060ff16158015610ad057506daaeb6d7670e522a718067333cd4e3b15155b15610b6857604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c617113490610b089030908590600401611d5d565b602060405180830381865afa158015610b25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b499190611d83565b610b685780604051633b79c77360e21b81526004016105ad9190611a11565b6105c08383611050565b600654849060ff16158015610b9557506daaeb6d7670e522a718067333cd4e3b15155b15610c4e57336001600160a01b03821603610bbb57610bb68585858561105b565b610c5a565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c617113490610bee9030903390600401611d5d565b602060405180830381865afa158015610c0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2f9190611d83565b610c4e5733604051633b79c77360e21b81526004016105ad9190611a11565b610c5a8585858561105b565b5050505050565b6060610c6c82610d99565b6000610c7661108d565b90506000815111610c965760405180602001604052806000815250610cc1565b80610ca08461109c565b604051602001610cb19291906120c4565b6040516020818303038152906040525b9392505050565b610cd0610e7e565b600260075403610cf25760405162461bcd60e51b81526004016105ad90611fd5565b60026007555b61014d610d0460095490565b1015610d2a57610d18600980546001019055565b610d2533610a6560095490565b610cf8565b6001600755565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610d67610e7e565b6001600160a01b038116610d8d5760405162461bcd60e51b81526004016105ad9061211f565b610d9681610f40565b50565b6000818152600260205260409020546001600160a01b0316610d965760405162461bcd60e51b81526004016105ad90611f38565b6000610dd882610830565b9050806001600160a01b0316836001600160a01b031603610e0b5760405162461bcd60e51b81526004016105ad9061216d565b336001600160a01b0382161480610e275750610e278133610d31565b610e435760405162461bcd60e51b81526004016105ad906121d7565b6105c083836111a5565b610e573382611213565b610e735760405162461bcd60e51b81526004016105ad90612232565b6105c0838383611271565b33610e87610a8a565b6001600160a01b0316146106c95760405162461bcd60e51b81526004016105ad90612274565b600854600160a01b900460ff166106c95760405162461bcd60e51b81526004016105ad906122af565b610ede610ead565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b604051610f1b9190611a11565b60405180910390a1565b6105c083838360405180602001604052806000815250610b72565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff16156106c95760405162461bcd60e51b81526004016105ad906122e6565b600080610fc93330611393565b600b549091506001600160a01b0316610fe282856113ef565b6001600160a01b0316149392505050565b6107c0828260405180602001604052806000815250611413565b611015610f92565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f0e3390565b6107c0338383611446565b6110653383611213565b6110815760405162461bcd60e51b81526004016105ad90612232565b6106ab848484846114e8565b6060600c805461044890611d31565b6060816000036110c35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110ed57806110d78161230c565b91506110e69050600a8361233c565b91506110c7565b60008167ffffffffffffffff81111561110857611108611ad4565b6040519080825280601f01601f191660200182016040528015611132576020820181803683370190505b5090505b841561119d57611147600183612350565b9150611154600a86612363565b61115f906030612377565b60f81b8183815181106111745761117461238a565b60200101906001600160f81b031916908160001a905350611196600a8661233c565b9450611136565b949350505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111da82610830565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061121f83610830565b9050806001600160a01b0316846001600160a01b0316148061124657506112468185610d31565b8061119d5750836001600160a01b031661125f846104cb565b6001600160a01b031614949350505050565b826001600160a01b031661128482610830565b6001600160a01b0316146112aa5760405162461bcd60e51b81526004016105ad906123e2565b6001600160a01b0382166112d05760405162461bcd60e51b81526004016105ad90612433565b6112db6000826111a5565b6001600160a01b0383166000908152600360205260408120805460019290611304908490612350565b90915550506001600160a01b0382166000908152600360205260408120805460019290611332908490612377565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008083836040516020016113a992919061246b565b604051602081830303815290604052805190602001206040516020016113cf9190612491565b60408051808303601f190181529190528051602090910120949350505050565b60008060006113fe858561151b565b9150915061140b81611560565b509392505050565b61141d8383611640565b61142a6000848484611722565b6105c05760405162461bcd60e51b81526004016105ad9061251b565b816001600160a01b0316836001600160a01b0316036114775760405162461bcd60e51b81526004016105ad9061255f565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906114db908590611950565b60405180910390a3505050565b6114f3848484611271565b6114ff84848484611722565b6106ab5760405162461bcd60e51b81526004016105ad9061251b565b60008082516041036115515760208301516040840151606085015160001a61154587828585611823565b94509450505050611559565b506000905060025b9250929050565b60008160048111156115745761157461256f565b0361157c5750565b60018160048111156115905761159061256f565b036115ad5760405162461bcd60e51b81526004016105ad906125b9565b60028160048111156115c1576115c161256f565b036115de5760405162461bcd60e51b81526004016105ad906125fd565b60038160048111156115f2576115f261256f565b0361160f5760405162461bcd60e51b81526004016105ad9061264c565b60048160048111156116235761162361256f565b03610d965760405162461bcd60e51b81526004016105ad9061269b565b6001600160a01b0382166116665760405162461bcd60e51b81526004016105ad906126dd565b6000818152600260205260409020546001600160a01b03161561169b5760405162461bcd60e51b81526004016105ad90612721565b6001600160a01b03821660009081526003602052604081208054600192906116c4908490612377565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561181857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611766903390899088908890600401612731565b6020604051808303816000875af19250505080156117a1575060408051601f3d908101601f1916820190925261179e91810190612780565b60015b6117fe573d8080156117cf576040519150601f19603f3d011682016040523d82523d6000602084013e6117d4565b606091505b5080516000036117f65760405162461bcd60e51b81526004016105ad9061251b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061119d565b506001949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561185a57506000905060036118fa565b8460ff16601b1415801561187257508460ff16601c14155b1561188357506000905060046118fa565b6000600187878787604051600081526020016040526040516118a894939291906127aa565b6020604051602081039080840390855afa1580156118ca573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166118f3576000600192509250506118fa565b9150600090505b94509492505050565b6001600160e01b031981165b8114610d9657600080fd5b803561043381611903565b60006020828403121561193a5761193a600080fd5b600061119d848461191a565b8015155b82525050565b602081016104338284611946565b60005b83811015611979578181015183820152602001611961565b50506000910152565b600061198c825190565b8084526020840193506119a381856020860161195e565b601f01601f19169290920192915050565b60208082528101610cc18184611982565b8061190f565b8035610433816119c5565b6000602082840312156119eb576119eb600080fd5b600061119d84846119cb565b60006001600160a01b038216610433565b61194a816119f7565b602081016104338284611a08565b61190f816119f7565b803561043381611a1f565b60008060408385031215611a4957611a49600080fd5b6000611a558585611a28565b9250506020611a66858286016119cb565b9150509250929050565b600080600060608486031215611a8857611a88600080fd5b6000611a948686611a28565b9350506020611aa586828701611a28565b9250506040611ab6868287016119cb565b9150509250925092565b8061194a565b602081016104338284611ac0565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715611b1057611b10611ad4565b6040525050565b6000611b2260405190565b9050611b2e8282611aea565b919050565b600067ffffffffffffffff821115611b4d57611b4d611ad4565b601f19601f83011660200192915050565b82818337506000910152565b6000611b7d611b7884611b33565b611b17565b905082815260208101848484011115611b9857611b98600080fd5b61140b848285611b5e565b600082601f830112611bb757611bb7600080fd5b813561119d848260208601611b6a565b600060208284031215611bdc57611bdc600080fd5b813567ffffffffffffffff811115611bf657611bf6600080fd5b61119d84828501611ba3565b600060208284031215611c1757611c17600080fd5b600061119d8484611a28565b80151561190f565b803561043381611c23565b60008060408385031215611c4c57611c4c600080fd5b6000611c588585611a28565b9250506020611a6685828601611c2b565b60008060008060808587031215611c8257611c82600080fd5b6000611c8e8787611a28565b9450506020611c9f87828801611a28565b9350506040611cb0878288016119cb565b925050606085013567ffffffffffffffff811115611cd057611cd0600080fd5b611cdc87828801611ba3565b91505092959194509250565b60008060408385031215611cfe57611cfe600080fd5b6000611d0a8585611a28565b9250506020611a6685828601611a28565b634e487b7160e01b600052602260045260246000fd5b600281046001821680611d4557607f821691505b602082108103611d5757611d57611d1b565b50919050565b60408101611d6b8285611a08565b610cc16020830184611a08565b805161043381611c23565b600060208284031215611d9857611d98600080fd5b600061119d8484611d78565b6000610433611db08381565b90565b611dbc83611da4565b81546008840282811b60001990911b908116901990911617825550505050565b60006105c0818484611db3565b818110156107c057611dfc600082611ddc565b600101611de9565b601f8211156105c0576000818152602090206020601f85010481016020851015611e2b5750805b610c5a6020601f860104830182611de9565b815167ffffffffffffffff811115611e5757611e57611ad4565b611e618254611d31565b611e6c828285611e04565b6020601f831160018114611ea05760008415611e885750858201515b600019600886021c1981166002860217865550611ef9565b600085815260208120601f198616915b82811015611ed05788850151825560209485019460019092019101611eb0565b86831015611eec5784890151600019601f89166008021c191682555b6001600288020188555050505b505050505050565b601881526000602082017f4552433732313a20696e76616c696420746f6b656e2049440000000000000000815291505b5060200190565b6020808252810161043381611f01565b602981526000602082017f4552433732313a2061646472657373207a65726f206973206e6f7420612076618152683634b21037bbb732b960b91b602082015291505b5060400190565b6020808252810161043381611f48565b601f81526000602082017f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081529150611f31565b6020808252810161043381611fa1565b601c81526000602082017f6d696e7420776f756c6420657863656564206d617820737570706c790000000081529150611f31565b6020808252810161043381611fe5565b600e81526000602082016d185b1c9958591e481b5a5b9d195960921b81529150611f31565b6020808252810161043381612029565b601a81526000602082017f63616c6c6572206973206e6f7420696e2077686974656c69737400000000000081529150611f31565b602080825281016104338161205e565b60006120ac825190565b6120ba81856020860161195e565b9290920192915050565b60006120d082856120a2565b915061119d82846120a2565b602681526000602082017f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b60208201529150611f8a565b60208082528101610433816120dc565b602181526000602082017f4552433732313a20617070726f76616c20746f2063757272656e74206f776e658152603960f91b60208201529150611f8a565b602080825281016104338161212f565b603e81526000602082017f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f81527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060208201529150611f8a565b602080825281016104338161217d565b602e81526000602082017f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6581526d1c881b9bdc88185c1c1c9bdd995960921b60208201529150611f8a565b60208082528101610433816121e7565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657291019081526000611f31565b6020808252810161043381612242565b601481526000602082017314185d5cd8589b194e881b9bdd081c185d5cd95960621b81529150611f31565b6020808252810161043381612284565b601081526000602082016f14185d5cd8589b194e881c185d5cd95960821b81529150611f31565b60208082528101610433816122bf565b634e487b7160e01b600052601160045260246000fd5b6000600019820361231f5761231f6122f6565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261234b5761234b612326565b500490565b81810381811115610433576104336122f6565b60008261237257612372612326565b500690565b80820180821115610433576104336122f6565b634e487b7160e01b600052603260045260246000fd5b602581526000602082017f4552433732313a207472616e736665722066726f6d20696e636f72726563742081526437bbb732b960d91b60208201529150611f8a565b60208082528101610433816123a0565b602481526000602082017f4552433732313a207472616e7366657220746f20746865207a65726f206164648152637265737360e01b60208201529150611f8a565b60208082528101610433816123f2565b60006104338260601b90565b600061043382612443565b61194a612466826119f7565b61244f565b6000612477828561245a565b601482019150612487828461245a565b5060140192915050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c0160006124c38284611ac0565b50602001919050565b603281526000602082017f4552433732313a207472616e7366657220746f206e6f6e20455243373231526581527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60208201529150611f8a565b60208082528101610433816124cc565b601981526000602082017f4552433732313a20617070726f766520746f2063616c6c65720000000000000081529150611f31565b602080825281016104338161252b565b634e487b7160e01b600052602160045260246000fd5b601881526000602082017f45434453413a20696e76616c6964207369676e6174757265000000000000000081529150611f31565b6020808252810161043381612585565b601f81526000602082017f45434453413a20696e76616c6964207369676e6174757265206c656e6774680081529150611f31565b60208082528101610433816125c9565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202773272076616c815261756560f01b60208201529150611f8a565b602080825281016104338161260d565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202776272076616c815261756560f01b60208201529150611f8a565b602080825281016104338161265c565b60208082527f4552433732313a206d696e7420746f20746865207a65726f206164647265737391019081526000611f31565b60208082528101610433816126ab565b601c81526000602082017f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081529150611f31565b60208082528101610433816126ed565b6080810161273f8287611a08565b61274c6020830186611a08565b6127596040830185611ac0565b818103606083015261276b8184611982565b9695505050505050565b805161043381611903565b60006020828403121561279557612795600080fd5b600061119d8484612775565b60ff811661194a565b608081016127b88287611ac0565b6127c560208301866127a1565b6127d26040830185611ac0565b6127df6060830184611ac0565b9594505050505056fea2646970667358221220e6412084fa5f1b4d38bd8dce8282ff6345af1c547e45a7abeb2493188f352adf64736f6c634300081100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001568747470733a2f2f697066732e696f2f697066732f0000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a22cb465116100a2578063e985e9c511610071578063e985e9c514610393578063ecba222a146103a6578063f2fde38b146103b1578063f9f2a7ce146103c457600080fd5b8063a22cb46514610352578063b88d4fde14610365578063c87b56dd14610378578063e3424c931461038b57600080fd5b80637ba0e2e7116100de5780637ba0e2e7146103275780638456cb591461033a5780638da5cb5b1461034257806395d89b411461034a57600080fd5b806370a0823114610304578063715018a6146103175780637a4675981461031f57600080fd5b80633f4ba83a1161017c5780635ef9432a1161014b5780635ef9432a146102ce5780636352211e146102d65780636c0360eb146102e95780636c19e783146102f157600080fd5b80633f4ba83a1461028e57806342842e0e1461029657806355f804b3146102a95780635c975abb146102bc57600080fd5b8063095ea7b3116101b8578063095ea7b31461023d578063238ac9331461025257806323b872dd1461026557806332cb6b0c1461027857600080fd5b806301ffc9a7146101df57806306fdde0314610208578063081812fc1461021d575b600080fd5b6101f26101ed366004611925565b6103e7565b6040516101ff9190611950565b60405180910390f35b610210610439565b6040516101ff91906119b4565b61023061022b3660046119d6565b6104cb565b6040516101ff9190611a11565b61025061024b366004611a33565b6104f2565b005b600b54610230906001600160a01b031681565b610250610273366004611a70565b6105c5565b61028161014d81565b6040516101ff9190611ac6565b6102506106b1565b6102506102a4366004611a70565b6106cb565b6102506102b7366004611bc7565b6107ac565b600854600160a01b900460ff166101f2565b6102506107c4565b6102306102e43660046119d6565b610830565b610210610865565b6102506102ff366004611c02565b6108f3565b610281610312366004611c02565b61091d565b610250610961565b610281610973565b610250610335366004611bc7565b610983565b610250610a72565b610230610a8a565b610210610a9e565b610250610360366004611c36565b610aad565b610250610373366004611c69565b610b72565b6102106103863660046119d6565b610c61565b610250610cc8565b6101f26103a1366004611ce8565b610d31565b60065460ff166101f2565b6102506103bf366004611c02565b610d5f565b6101f26103d2366004611c02565b600a6020526000908152604090205460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061041857506001600160e01b03198216635b5e139f60e01b145b8061043357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461044890611d31565b80601f016020809104026020016040519081016040528092919081815260200182805461047490611d31565b80156104c15780601f10610496576101008083540402835291602001916104c1565b820191906000526020600020905b8154815290600101906020018083116104a457829003601f168201915b5050505050905090565b60006104d682610d99565b506000908152600460205260409020546001600160a01b031690565b600654829060ff1615801561051557506daaeb6d7670e522a718067333cd4e3b15155b156105b657604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c61711349061054d9030908590600401611d5d565b602060405180830381865afa15801561056a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058e9190611d83565b6105b65780604051633b79c77360e21b81526004016105ad9190611a11565b60405180910390fd5b6105c08383610dcd565b505050565b600654839060ff161580156105e857506daaeb6d7670e522a718067333cd4e3b15155b156106a057336001600160a01b0382160361060d57610608848484610e4d565b6106ab565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906106409030903390600401611d5d565b602060405180830381865afa15801561065d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106819190611d83565b6106a05733604051633b79c77360e21b81526004016105ad9190611a11565b6106ab848484610e4d565b50505050565b6106b9610e7e565b6106c1610ead565b6106c9610ed6565b565b600654839060ff161580156106ee57506daaeb6d7670e522a718067333cd4e3b15155b156107a157336001600160a01b0382160361070e57610608848484610f25565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c6171134906107419030903390600401611d5d565b602060405180830381865afa15801561075e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107829190611d83565b6107a15733604051633b79c77360e21b81526004016105ad9190611a11565b6106ab848484610f25565b6107b4610e7e565b600c6107c08282611e3d565b5050565b6107cc610a8a565b6001600160a01b0316336001600160a01b0316146107fd57604051635fc483c560e01b815260040160405180910390fd5b60065460ff16156108215760405163905e710760e01b815260040160405180910390fd5b6006805460ff19166001179055565b6000818152600260205260408120546001600160a01b0316806104335760405162461bcd60e51b81526004016105ad90611f38565b600c805461087290611d31565b80601f016020809104026020016040519081016040528092919081815260200182805461089e90611d31565b80156108eb5780601f106108c0576101008083540402835291602001916108eb565b820191906000526020600020905b8154815290600101906020018083116108ce57829003601f168201915b505050505081565b6108fb610e7e565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382166109455760405162461bcd60e51b81526004016105ad90611f91565b506001600160a01b031660009081526003602052604090205490565b610969610e7e565b6106c96000610f40565b600061097e60095490565b905090565b6002600754036109a55760405162461bcd60e51b81526004016105ad90611fd5565b60026007556109b2610f92565b61014d6109be60095490565b106109db5760405162461bcd60e51b81526004016105ad90612019565b336000908152600a602052604090205460ff1615610a0b5760405162461bcd60e51b81526004016105ad9061204e565b610a1481610fbc565b610a305760405162461bcd60e51b81526004016105ad90612092565b610a3e600980546001019055565b336000818152600a60205260409020805460ff19166001179055610a6a90610a6560095490565b610ff3565b506001600755565b610a7a610e7e565b610a82610f92565b6106c961100d565b600061097e6008546001600160a01b031690565b60606001805461044890611d31565b600654829060ff16158015610ad057506daaeb6d7670e522a718067333cd4e3b15155b15610b6857604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c617113490610b089030908590600401611d5d565b602060405180830381865afa158015610b25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b499190611d83565b610b685780604051633b79c77360e21b81526004016105ad9190611a11565b6105c08383611050565b600654849060ff16158015610b9557506daaeb6d7670e522a718067333cd4e3b15155b15610c4e57336001600160a01b03821603610bbb57610bb68585858561105b565b610c5a565b604051633185c44d60e21b81526daaeb6d7670e522a718067333cd4e9063c617113490610bee9030903390600401611d5d565b602060405180830381865afa158015610c0b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c2f9190611d83565b610c4e5733604051633b79c77360e21b81526004016105ad9190611a11565b610c5a8585858561105b565b5050505050565b6060610c6c82610d99565b6000610c7661108d565b90506000815111610c965760405180602001604052806000815250610cc1565b80610ca08461109c565b604051602001610cb19291906120c4565b6040516020818303038152906040525b9392505050565b610cd0610e7e565b600260075403610cf25760405162461bcd60e51b81526004016105ad90611fd5565b60026007555b61014d610d0460095490565b1015610d2a57610d18600980546001019055565b610d2533610a6560095490565b610cf8565b6001600755565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610d67610e7e565b6001600160a01b038116610d8d5760405162461bcd60e51b81526004016105ad9061211f565b610d9681610f40565b50565b6000818152600260205260409020546001600160a01b0316610d965760405162461bcd60e51b81526004016105ad90611f38565b6000610dd882610830565b9050806001600160a01b0316836001600160a01b031603610e0b5760405162461bcd60e51b81526004016105ad9061216d565b336001600160a01b0382161480610e275750610e278133610d31565b610e435760405162461bcd60e51b81526004016105ad906121d7565b6105c083836111a5565b610e573382611213565b610e735760405162461bcd60e51b81526004016105ad90612232565b6105c0838383611271565b33610e87610a8a565b6001600160a01b0316146106c95760405162461bcd60e51b81526004016105ad90612274565b600854600160a01b900460ff166106c95760405162461bcd60e51b81526004016105ad906122af565b610ede610ead565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b604051610f1b9190611a11565b60405180910390a1565b6105c083838360405180602001604052806000815250610b72565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff16156106c95760405162461bcd60e51b81526004016105ad906122e6565b600080610fc93330611393565b600b549091506001600160a01b0316610fe282856113ef565b6001600160a01b0316149392505050565b6107c0828260405180602001604052806000815250611413565b611015610f92565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f0e3390565b6107c0338383611446565b6110653383611213565b6110815760405162461bcd60e51b81526004016105ad90612232565b6106ab848484846114e8565b6060600c805461044890611d31565b6060816000036110c35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156110ed57806110d78161230c565b91506110e69050600a8361233c565b91506110c7565b60008167ffffffffffffffff81111561110857611108611ad4565b6040519080825280601f01601f191660200182016040528015611132576020820181803683370190505b5090505b841561119d57611147600183612350565b9150611154600a86612363565b61115f906030612377565b60f81b8183815181106111745761117461238a565b60200101906001600160f81b031916908160001a905350611196600a8661233c565b9450611136565b949350505050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111da82610830565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061121f83610830565b9050806001600160a01b0316846001600160a01b0316148061124657506112468185610d31565b8061119d5750836001600160a01b031661125f846104cb565b6001600160a01b031614949350505050565b826001600160a01b031661128482610830565b6001600160a01b0316146112aa5760405162461bcd60e51b81526004016105ad906123e2565b6001600160a01b0382166112d05760405162461bcd60e51b81526004016105ad90612433565b6112db6000826111a5565b6001600160a01b0383166000908152600360205260408120805460019290611304908490612350565b90915550506001600160a01b0382166000908152600360205260408120805460019290611332908490612377565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008083836040516020016113a992919061246b565b604051602081830303815290604052805190602001206040516020016113cf9190612491565b60408051808303601f190181529190528051602090910120949350505050565b60008060006113fe858561151b565b9150915061140b81611560565b509392505050565b61141d8383611640565b61142a6000848484611722565b6105c05760405162461bcd60e51b81526004016105ad9061251b565b816001600160a01b0316836001600160a01b0316036114775760405162461bcd60e51b81526004016105ad9061255f565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31906114db908590611950565b60405180910390a3505050565b6114f3848484611271565b6114ff84848484611722565b6106ab5760405162461bcd60e51b81526004016105ad9061251b565b60008082516041036115515760208301516040840151606085015160001a61154587828585611823565b94509450505050611559565b506000905060025b9250929050565b60008160048111156115745761157461256f565b0361157c5750565b60018160048111156115905761159061256f565b036115ad5760405162461bcd60e51b81526004016105ad906125b9565b60028160048111156115c1576115c161256f565b036115de5760405162461bcd60e51b81526004016105ad906125fd565b60038160048111156115f2576115f261256f565b0361160f5760405162461bcd60e51b81526004016105ad9061264c565b60048160048111156116235761162361256f565b03610d965760405162461bcd60e51b81526004016105ad9061269b565b6001600160a01b0382166116665760405162461bcd60e51b81526004016105ad906126dd565b6000818152600260205260409020546001600160a01b03161561169b5760405162461bcd60e51b81526004016105ad90612721565b6001600160a01b03821660009081526003602052604081208054600192906116c4908490612377565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561181857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611766903390899088908890600401612731565b6020604051808303816000875af19250505080156117a1575060408051601f3d908101601f1916820190925261179e91810190612780565b60015b6117fe573d8080156117cf576040519150601f19603f3d011682016040523d82523d6000602084013e6117d4565b606091505b5080516000036117f65760405162461bcd60e51b81526004016105ad9061251b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061119d565b506001949350505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561185a57506000905060036118fa565b8460ff16601b1415801561187257508460ff16601c14155b1561188357506000905060046118fa565b6000600187878787604051600081526020016040526040516118a894939291906127aa565b6020604051602081039080840390855afa1580156118ca573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166118f3576000600192509250506118fa565b9150600090505b94509492505050565b6001600160e01b031981165b8114610d9657600080fd5b803561043381611903565b60006020828403121561193a5761193a600080fd5b600061119d848461191a565b8015155b82525050565b602081016104338284611946565b60005b83811015611979578181015183820152602001611961565b50506000910152565b600061198c825190565b8084526020840193506119a381856020860161195e565b601f01601f19169290920192915050565b60208082528101610cc18184611982565b8061190f565b8035610433816119c5565b6000602082840312156119eb576119eb600080fd5b600061119d84846119cb565b60006001600160a01b038216610433565b61194a816119f7565b602081016104338284611a08565b61190f816119f7565b803561043381611a1f565b60008060408385031215611a4957611a49600080fd5b6000611a558585611a28565b9250506020611a66858286016119cb565b9150509250929050565b600080600060608486031215611a8857611a88600080fd5b6000611a948686611a28565b9350506020611aa586828701611a28565b9250506040611ab6868287016119cb565b9150509250925092565b8061194a565b602081016104338284611ac0565b634e487b7160e01b600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff82111715611b1057611b10611ad4565b6040525050565b6000611b2260405190565b9050611b2e8282611aea565b919050565b600067ffffffffffffffff821115611b4d57611b4d611ad4565b601f19601f83011660200192915050565b82818337506000910152565b6000611b7d611b7884611b33565b611b17565b905082815260208101848484011115611b9857611b98600080fd5b61140b848285611b5e565b600082601f830112611bb757611bb7600080fd5b813561119d848260208601611b6a565b600060208284031215611bdc57611bdc600080fd5b813567ffffffffffffffff811115611bf657611bf6600080fd5b61119d84828501611ba3565b600060208284031215611c1757611c17600080fd5b600061119d8484611a28565b80151561190f565b803561043381611c23565b60008060408385031215611c4c57611c4c600080fd5b6000611c588585611a28565b9250506020611a6685828601611c2b565b60008060008060808587031215611c8257611c82600080fd5b6000611c8e8787611a28565b9450506020611c9f87828801611a28565b9350506040611cb0878288016119cb565b925050606085013567ffffffffffffffff811115611cd057611cd0600080fd5b611cdc87828801611ba3565b91505092959194509250565b60008060408385031215611cfe57611cfe600080fd5b6000611d0a8585611a28565b9250506020611a6685828601611a28565b634e487b7160e01b600052602260045260246000fd5b600281046001821680611d4557607f821691505b602082108103611d5757611d57611d1b565b50919050565b60408101611d6b8285611a08565b610cc16020830184611a08565b805161043381611c23565b600060208284031215611d9857611d98600080fd5b600061119d8484611d78565b6000610433611db08381565b90565b611dbc83611da4565b81546008840282811b60001990911b908116901990911617825550505050565b60006105c0818484611db3565b818110156107c057611dfc600082611ddc565b600101611de9565b601f8211156105c0576000818152602090206020601f85010481016020851015611e2b5750805b610c5a6020601f860104830182611de9565b815167ffffffffffffffff811115611e5757611e57611ad4565b611e618254611d31565b611e6c828285611e04565b6020601f831160018114611ea05760008415611e885750858201515b600019600886021c1981166002860217865550611ef9565b600085815260208120601f198616915b82811015611ed05788850151825560209485019460019092019101611eb0565b86831015611eec5784890151600019601f89166008021c191682555b6001600288020188555050505b505050505050565b601881526000602082017f4552433732313a20696e76616c696420746f6b656e2049440000000000000000815291505b5060200190565b6020808252810161043381611f01565b602981526000602082017f4552433732313a2061646472657373207a65726f206973206e6f7420612076618152683634b21037bbb732b960b91b602082015291505b5060400190565b6020808252810161043381611f48565b601f81526000602082017f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081529150611f31565b6020808252810161043381611fa1565b601c81526000602082017f6d696e7420776f756c6420657863656564206d617820737570706c790000000081529150611f31565b6020808252810161043381611fe5565b600e81526000602082016d185b1c9958591e481b5a5b9d195960921b81529150611f31565b6020808252810161043381612029565b601a81526000602082017f63616c6c6572206973206e6f7420696e2077686974656c69737400000000000081529150611f31565b602080825281016104338161205e565b60006120ac825190565b6120ba81856020860161195e565b9290920192915050565b60006120d082856120a2565b915061119d82846120a2565b602681526000602082017f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b60208201529150611f8a565b60208082528101610433816120dc565b602181526000602082017f4552433732313a20617070726f76616c20746f2063757272656e74206f776e658152603960f91b60208201529150611f8a565b602080825281016104338161212f565b603e81526000602082017f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f81527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060208201529150611f8a565b602080825281016104338161217d565b602e81526000602082017f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6581526d1c881b9bdc88185c1c1c9bdd995960921b60208201529150611f8a565b60208082528101610433816121e7565b60208082527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657291019081526000611f31565b6020808252810161043381612242565b601481526000602082017314185d5cd8589b194e881b9bdd081c185d5cd95960621b81529150611f31565b6020808252810161043381612284565b601081526000602082016f14185d5cd8589b194e881c185d5cd95960821b81529150611f31565b60208082528101610433816122bf565b634e487b7160e01b600052601160045260246000fd5b6000600019820361231f5761231f6122f6565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261234b5761234b612326565b500490565b81810381811115610433576104336122f6565b60008261237257612372612326565b500690565b80820180821115610433576104336122f6565b634e487b7160e01b600052603260045260246000fd5b602581526000602082017f4552433732313a207472616e736665722066726f6d20696e636f72726563742081526437bbb732b960d91b60208201529150611f8a565b60208082528101610433816123a0565b602481526000602082017f4552433732313a207472616e7366657220746f20746865207a65726f206164648152637265737360e01b60208201529150611f8a565b60208082528101610433816123f2565b60006104338260601b90565b600061043382612443565b61194a612466826119f7565b61244f565b6000612477828561245a565b601482019150612487828461245a565b5060140192915050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c0160006124c38284611ac0565b50602001919050565b603281526000602082017f4552433732313a207472616e7366657220746f206e6f6e20455243373231526581527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60208201529150611f8a565b60208082528101610433816124cc565b601981526000602082017f4552433732313a20617070726f766520746f2063616c6c65720000000000000081529150611f31565b602080825281016104338161252b565b634e487b7160e01b600052602160045260246000fd5b601881526000602082017f45434453413a20696e76616c6964207369676e6174757265000000000000000081529150611f31565b6020808252810161043381612585565b601f81526000602082017f45434453413a20696e76616c6964207369676e6174757265206c656e6774680081529150611f31565b60208082528101610433816125c9565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202773272076616c815261756560f01b60208201529150611f8a565b602080825281016104338161260d565b602281526000602082017f45434453413a20696e76616c6964207369676e6174757265202776272076616c815261756560f01b60208201529150611f8a565b602080825281016104338161265c565b60208082527f4552433732313a206d696e7420746f20746865207a65726f206164647265737391019081526000611f31565b60208082528101610433816126ab565b601c81526000602082017f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000081529150611f31565b60208082528101610433816126ed565b6080810161273f8287611a08565b61274c6020830186611a08565b6127596040830185611ac0565b818103606083015261276b8184611982565b9695505050505050565b805161043381611903565b60006020828403121561279557612795600080fd5b600061119d8484612775565b60ff811661194a565b608081016127b88287611ac0565b6127c560208301866127a1565b6127d26040830185611ac0565b6127df6060830184611ac0565b9594505050505056fea2646970667358221220e6412084fa5f1b4d38bd8dce8282ff6345af1c547e45a7abeb2493188f352adf64736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001568747470733a2f2f697066732e696f2f697066732f0000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI_ (string): https://ipfs.io/ipfs/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f0000000000000000000000


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.