ETH Price: $3,441.20 (-1.14%)
Gas: 10 Gwei

Token

99 Originals (99ORIG)
 

Overview

Max Total Supply

0 99ORIG

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 99ORIG
0xE25f6e746a094828be128dC301be2A7d2cB3b336
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A Collection Of 99 Original Polaroids Taken Over The Course Of 99 Days by Logan Paul. Holder receives physical 1/1 Polaroid, slabbed & authenticated by PSA. 1 NFT = 1 Originals DAO Vote

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Originals99

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 99 runs

Other Settings:
default evmVersion
File 1 of 15 : Originals99.sol
// SPDX-License-Identifier: MIT

/*

  ░█████╗░░█████╗░    ░█████╗░██████╗░██╗░██████╗░██╗███╗░░██╗░█████╗░██╗░░░░░░██████╗
  ██╔══██╗██╔══██╗    ██╔══██╗██╔══██╗██║██╔════╝░██║████╗░██║██╔══██╗██║░░░░░██╔════╝
  ╚██████║╚██████║    ██║░░██║██████╔╝██║██║░░██╗░██║██╔██╗██║███████║██║░░░░░╚█████╗░
  ░╚═══██║░╚═══██║    ██║░░██║██╔══██╗██║██║░░╚██╗██║██║╚████║██╔══██║██║░░░░░░╚═══██╗
  ░█████╔╝░█████╔╝    ╚█████╔╝██║░░██║██║╚██████╔╝██║██║░╚███║██║░░██║███████╗██████╔╝
  ░╚════╝░░╚════╝░    ░╚════╝░╚═╝░░╚═╝╚═╝░╚═════╝░╚═╝╚═╝░░╚══╝╚═╝░░╚═╝╚══════╝╚═════╝░

*/

pragma solidity ^0.8.0;

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

contract Originals99 is ERC721Royalty, Ownable, ReentrancyGuard {
    using Strings for uint256;

    // ============ Constants ============

    uint256 private constant DURATION = 24 hours;
    uint256 private constant DURATION_EXTENSION = 15 minutes;
    uint256 private constant DURATION_EXTENSION_ALLOWED_BEFORE_END = 15 minutes;
    uint256 private constant TOTAL_SUPPLY = 99;
    uint256 private constant PRICE_INITIAL = 0.1 ether;
    uint256 private constant MAX_BPS = 10_000; // = 100%
    uint256 private constant MIN_BID_INCREASE_BPS = 1000; // = 10%
    uint96 private constant ROYALTIES_BPS = 700; // = 7%

    address private constant ROYALTIES_RECEIVER = 0xdC62Bd9feF08B47094Fd4b0AE9cBFDF05272f63B;

    // withdrawal accounts
    address private constant FUNDS_RECEIVER_50 = 0xD50c2a4Faa066763127cAc3Ba46fE4817906a9c0; // DAO wallet
    address private constant FUNDS_RECEIVER_45 = 0xc938C5f20aa151ccc854B7C0438e387394Ed4Cb2;
    address private constant FUNDS_RECEIVER_5 = 0x1ABC492f34839d3204D9f1d1078528Ad4611962A;

    // ============ Variables ============

    mapping(uint256 => bool) private soldTokenIds;
    address private winningBidder = address(0);
    uint256 private auctionedTokenId = 0;
    uint256 private currentPrice = 0;
    mapping(uint256 => string) private tokenURIs;
    uint256 private auctionEndTime;

    // ============ Modifiers ============

    modifier onlyActiveAuction() {
        require(auctionedTokenId != 0, "Auction not active");
        _;
    }

    // ============ Events ============

    event AuctionStarted(uint256 tokenId, uint256 endTime);
    event AuctionBidPlaced(uint256 tokenId, address bidder, uint256 bid, uint256 endTime);
    event AuctionFinalized(uint256 tokenId, address winner);

    // ============ Methods ============

    constructor() ERC721("99 Originals", "99ORIG") {
        _setDefaultRoyalty(ROYALTIES_RECEIVER, ROYALTIES_BPS);
    }

    function getAuctionEndTime() public view onlyActiveAuction returns (uint256) {
        return auctionEndTime;
    }

    function getSmallestAllowedBid() public view onlyActiveAuction returns (uint256) {
        if (winningBidder == address(0)) {
            return PRICE_INITIAL;
        }

        return currentPrice + ((currentPrice * MIN_BID_INCREASE_BPS) / MAX_BPS);
    }

    function getInitialPrice() public view onlyActiveAuction returns (uint256) {
        return PRICE_INITIAL;
    }

    function getCurrentPrice() public view onlyActiveAuction returns (uint256) {
        return currentPrice;
    }

    function getWinningBidder() public view onlyActiveAuction returns (address) {
        return winningBidder;
    }

    function getAuctionedTokenId() public view returns (uint256) {
        return auctionedTokenId;
    }

    function isSold(uint256 tokenId) public view returns (bool) {
        return soldTokenIds[tokenId];
    }

    function isAuctionEnd() public view onlyActiveAuction returns (bool) {
        return auctionEndTime <= block.timestamp;
    }

    function setTokenURI(uint256 tokenId, string memory tokenURI_) public onlyOwner {
        require(bytes(tokenURI_).length > 0, "Token URI is mandatory");
        require(tokenId > 0 && tokenId <= TOTAL_SUPPLY, "Invalid token ID");

        tokenURIs[tokenId] = tokenURI_;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return tokenURIs[tokenId];
    }

    function isTokenURISetUp(uint256 tokenId) public view returns (bool) {
        require(tokenId > 0 && tokenId <= TOTAL_SUPPLY, "Invalid token ID");

        return bytes(tokenURIs[tokenId]).length != 0;
    }

    function mint(uint256 tokenId, address to) external onlyOwner {
        require(auctionedTokenId == 0, "Current auction is not finalized");
        require(tokenId > 0 && tokenId <= TOTAL_SUPPLY, "Invalid token ID");
        require(!soldTokenIds[tokenId], "Token ID already sold");
        require(bytes(tokenURIs[tokenId]).length > 0, "Token URI not set up");

        soldTokenIds[tokenId] = true;

        _safeMint(to, tokenId);
    }

    function startAuction(uint256 tokenId) external onlyOwner {
        require(auctionedTokenId == 0, "Current auction is not finalized");
        require(tokenId > 0 && tokenId <= TOTAL_SUPPLY, "Invalid token ID");
        require(!soldTokenIds[tokenId], "Token ID already sold");
        require(bytes(tokenURIs[tokenId]).length > 0, "Token URI not set up");

        auctionedTokenId = tokenId;
        auctionEndTime = block.timestamp + DURATION;
        currentPrice = PRICE_INITIAL;

        emit AuctionStarted(tokenId, auctionEndTime);
    }

    function placeBid() external payable onlyActiveAuction nonReentrant {
        require(tx.origin == msg.sender, "Caller cannot be contract");
        require(msg.value >= getSmallestAllowedBid(), "Too small bid");
        require(!isAuctionEnd(), "Auction ended");

        if (block.timestamp + DURATION_EXTENSION_ALLOWED_BEFORE_END >= auctionEndTime) {
            auctionEndTime = block.timestamp + DURATION_EXTENSION;
        }

        if (winningBidder != address(0)) {
            (bool success, ) = winningBidder.call{value: currentPrice}("");
            require(success, "Returning escrowed funds failed");
        }

        currentPrice = msg.value;
        winningBidder = _msgSender();

        emit AuctionBidPlaced(auctionedTokenId, _msgSender(), msg.value, auctionEndTime);
    }

    function finalizeAuction() external onlyActiveAuction onlyOwner {
        require(isAuctionEnd(), "Auction not ended");

        if (winningBidder != address(0)) {
            soldTokenIds[auctionedTokenId] = true;
            _safeMint(winningBidder, auctionedTokenId);
        }

        emit AuctionFinalized(auctionedTokenId, winningBidder);

        currentPrice = 0;
        auctionedTokenId = 0;
        winningBidder = address(0);
    }

    function withdraw() external onlyOwner {
        require(auctionedTokenId == 0, "Withdraw during active auction not allowed");
        require(address(this).balance > 0, "No funds");

        uint256 balance = address(this).balance;

        // 50%
        uint256 split1 = (balance / 100) * 50;
        (bool success1, ) = FUNDS_RECEIVER_50.call{value: split1}("");
        require(success1, "Withdraw transaction #1 failed");

        // 45%
        uint256 split2 = (balance / 100) * 45;
        (bool success2, ) = FUNDS_RECEIVER_45.call{value: split2}("");
        require(success2, "Withdraw transaction #2 failed");

        // 5%
        uint256 split3 = address(this).balance;
        (bool success3, ) = FUNDS_RECEIVER_5.call{value: split3}("");
        require(success3, "Withdraw transaction #3 failed");
    }
}

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

pragma solidity ^0.8.0;

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

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

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

File 3 of 15 : 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 4 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 15 : 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 6 of 15 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

        return (royalty.receiver, royaltyAmount);
    }

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

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

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

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

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

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

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

File 7 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be 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 owner nor approved for all"
        );

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || 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 a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

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

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

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

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

File 8 of 15 : 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 9 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 10 of 15 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 13 of 15 : 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 14 of 15 : 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 15 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"bidder","type":"address"},{"indexed":false,"internalType":"uint256","name":"bid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"AuctionBidPlaced","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"winner","type":"address"}],"name":"AuctionFinalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"AuctionStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalizeAuction","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":[],"name":"getAuctionEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAuctionedTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getInitialPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSmallestAllowedBid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWinningBidder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAuctionEnd","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isSold","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isTokenURISetUp","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"placeBid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI_","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"startAuction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b80546001600160a01b03191690556000600c819055600d553480156200002b57600080fd5b50604080518082018252600c81526b3939204f726967696e616c7360a01b60208083019182528351808501909452600684526539394f52494760d01b9084015281519192916200007e9160029162000239565b5080516200009490600390602084019062000239565b505050620000b1620000ab620000de60201b60201c565b620000e2565b6001600955620000d873dc62bd9fef08b47094fd4b0ae9cbfdf05272f63b6102bc62000134565b6200031c565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382161115620001a85760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620002005760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c69642072656365697665720000000000000060448201526064016200019f565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600055565b8280546200024790620002df565b90600052602060002090601f0160209004810192826200026b5760008555620002b6565b82601f106200028657805160ff1916838001178555620002b6565b82800160010185558215620002b6579182015b82811115620002b657825182559160200191906001019062000299565b50620002c4929150620002c8565b5090565b5b80821115620002c45760008155600101620002c9565b600181811c90821680620002f457607f821691505b602082108114156200031657634e487b7160e01b600052602260045260246000fd5b50919050565b612630806200032c6000396000f3fe6080604052600436106101a35760003560e01c8063715018a6116100e2578063b88d4fde11610085578063b88d4fde146104b3578063c87b56dd146104d3578063dadf960e146104f3578063e985e9c514610508578063eb91d37e14610528578063ecfc7ecc1461053d578063f2fde38b14610545578063f77282ab1461056557600080fd5b8063715018a6146103ea578063787c0a6c146103ff5780637f84d1bd146104145780638da5cb5b1461043457806394bf804d1461044957806395d89b41146104695780639ea6acf51461047e578063a22cb4651461049357600080fd5b806318916f9b1161014a57806318916f9b146102ec57806323b872dd146103015780632a55205a146103215780633ccfd60b1461036057806342842e0e14610375578063588fd2f3146103955780636352211e146103aa57806370a08231146103ca57600080fd5b80630110a176146101a857806301ffc9a7146101ed578063065de74c1461020d57806306f660ef1461022f57806306fdde0314610252578063081812fc14610274578063095ea7b3146102ac578063162094c4146102cc575b600080fd5b3480156101b457600080fd5b506101d86101c33660046121f7565b6000908152600a602052604090205460ff1690565b60405190151581526020015b60405180910390f35b3480156101f957600080fd5b506101d86102083660046121bd565b61057a565b34801561021957600080fd5b5061022d6102283660046121f7565b61058b565b005b34801561023b57600080fd5b506102446106d7565b6040519081526020016101e4565b34801561025e57600080fd5b50610267610709565b6040516101e4919061233a565b34801561028057600080fd5b5061029461028f3660046121f7565b61079b565b6040516001600160a01b0390911681526020016101e4565b3480156102b857600080fd5b5061022d6102c7366004612193565b610823565b3480156102d857600080fd5b5061022d6102e7366004612233565b610934565b3480156102f857600080fd5b506101d86109f9565b34801561030d57600080fd5b5061022d61031c36600461209f565b610a29565b34801561032d57600080fd5b5061034161033c36600461228e565b610a5a565b604080516001600160a01b0390931683526020830191909152016101e4565b34801561036c57600080fd5b5061022d610b06565b34801561038157600080fd5b5061022d61039036600461209f565b610e19565b3480156103a157600080fd5b50610294610e34565b3480156103b657600080fd5b506102946103c53660046121f7565b610e69565b3480156103d657600080fd5b506102446103e536600461204a565b610ee0565b3480156103f657600080fd5b5061022d610f67565b34801561040b57600080fd5b50610244610fa2565b34801561042057600080fd5b506101d861042f3660046121f7565b610fce565b34801561044057600080fd5b5061029461101e565b34801561045557600080fd5b5061022d610464366004612210565b61102d565b34801561047557600080fd5b50610267611137565b34801561048a57600080fd5b50600c54610244565b34801561049f57600080fd5b5061022d6104ae366004612157565b611146565b3480156104bf57600080fd5b5061022d6104ce3660046120db565b611151565b3480156104df57600080fd5b506102676104ee3660046121f7565b611189565b3480156104ff57600080fd5b50610244611296565b34801561051457600080fd5b506101d861052336600461206c565b611307565b34801561053457600080fd5b50610244611335565b61022d611361565b34801561055157600080fd5b5061022d61056036600461204a565b6115fc565b34801561057157600080fd5b5061022d61169c565b6000610585826117dc565b92915050565b3361059461101e565b6001600160a01b0316146105c35760405162461bcd60e51b81526004016105ba9061245d565b60405180910390fd5b600c54156105e35760405162461bcd60e51b81526004016105ba9061239f565b6000811180156105f4575060638111155b6106105760405162461bcd60e51b81526004016105ba90612492565b6000818152600a602052604090205460ff161561063f5760405162461bcd60e51b81526004016105ba9061242e565b6000818152600e6020526040812080546106589061257d565b9050116106775760405162461bcd60e51b81526004016105ba90612400565b600c819055610689620151804261250d565b600f81905567016345785d8a0000600d556040805183815260208101929092527ff8910119ddbef5440c54532457dfe8250a10ed39e583292818f44724b9e1344c910160405180910390a150565b6000600c54600014156106fc5760405162461bcd60e51b81526004016105ba906123d4565b5067016345785d8a000090565b6060600280546107189061257d565b80601f01602080910402602001604051908101604052809291908181526020018280546107449061257d565b80156107915780601f1061076657610100808354040283529160200191610791565b820191906000526020600020905b81548152906001019060200180831161077457829003601f168201915b5050505050905090565b60006107a68261181c565b6108075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ba565b506000908152600660205260409020546001600160a01b031690565b600061082e82610e69565b9050806001600160a01b0316836001600160a01b0316141561089c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105ba565b336001600160a01b03821614806108b857506108b88133611307565b6109255760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016105ba565b61092f8383611839565b505050565b3361093d61101e565b6001600160a01b0316146109635760405162461bcd60e51b81526004016105ba9061245d565b60008151116109ad5760405162461bcd60e51b8152602060048201526016602482015275546f6b656e20555249206973206d616e6461746f727960501b60448201526064016105ba565b6000821180156109be575060638211155b6109da5760405162461bcd60e51b81526004016105ba90612492565b6000828152600e60209081526040909120825161092f92840190611f1f565b6000600c5460001415610a1e5760405162461bcd60e51b81526004016105ba906123d4565b42600f541115905090565b610a3333826118a7565b610a4f5760405162461bcd60e51b81526004016105ba906124bc565b61092f838383611971565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610acf5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610aee906001600160601b031687612547565b610af89190612525565b915196919550909350505050565b33610b0f61101e565b6001600160a01b031614610b355760405162461bcd60e51b81526004016105ba9061245d565b600c5415610b985760405162461bcd60e51b815260206004820152602a60248201527f576974686472617720647572696e67206163746976652061756374696f6e206e6044820152691bdd08185b1b1bddd95960b21b60648201526084016105ba565b60004711610bd35760405162461bcd60e51b81526020600482015260086024820152674e6f2066756e647360c01b60448201526064016105ba565b476000610be1606483612525565b610bec906032612547565b60405190915060009073d50c2a4faa066763127cac3ba46fe4817906a9c09083908381818185875af1925050503d8060008114610c45576040519150601f19603f3d011682016040523d82523d6000602084013e610c4a565b606091505b5050905080610c9b5760405162461bcd60e51b815260206004820152601e60248201527f5769746864726177207472616e73616374696f6e202331206661696c6564000060448201526064016105ba565b6000610ca8606485612525565b610cb390602d612547565b60405190915060009073c938c5f20aa151ccc854b7c0438e387394ed4cb29083908381818185875af1925050503d8060008114610d0c576040519150601f19603f3d011682016040523d82523d6000602084013e610d11565b606091505b5050905080610d625760405162461bcd60e51b815260206004820152601e60248201527f5769746864726177207472616e73616374696f6e202332206661696c6564000060448201526064016105ba565b6040514790600090731abc492f34839d3204d9f1d1078528ad4611962a9083908381818185875af1925050503d8060008114610dba576040519150601f19603f3d011682016040523d82523d6000602084013e610dbf565b606091505b5050905080610e105760405162461bcd60e51b815260206004820152601e60248201527f5769746864726177207472616e73616374696f6e202333206661696c6564000060448201526064016105ba565b50505050505050565b61092f83838360405180602001604052806000815250611151565b6000600c5460001415610e595760405162461bcd60e51b81526004016105ba906123d4565b50600b546001600160a01b031690565b6000818152600460205260408120546001600160a01b0316806105855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105ba565b60006001600160a01b038216610f4b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105ba565b506001600160a01b031660009081526005602052604090205490565b33610f7061101e565b6001600160a01b031614610f965760405162461bcd60e51b81526004016105ba9061245d565b610fa06000611b0d565b565b6000600c5460001415610fc75760405162461bcd60e51b81526004016105ba906123d4565b50600f5490565b60008082118015610fe0575060638211155b610ffc5760405162461bcd60e51b81526004016105ba90612492565b6000828152600e6020526040902080546110159061257d565b15159392505050565b6008546001600160a01b031690565b3361103661101e565b6001600160a01b03161461105c5760405162461bcd60e51b81526004016105ba9061245d565b600c541561107c5760405162461bcd60e51b81526004016105ba9061239f565b60008211801561108d575060638211155b6110a95760405162461bcd60e51b81526004016105ba90612492565b6000828152600a602052604090205460ff16156110d85760405162461bcd60e51b81526004016105ba9061242e565b6000828152600e6020526040812080546110f19061257d565b9050116111105760405162461bcd60e51b81526004016105ba90612400565b6000828152600a60205260409020805460ff191660011790556111338183611b5f565b5050565b6060600380546107189061257d565b611133338383611b79565b61115b33836118a7565b6111775760405162461bcd60e51b81526004016105ba906124bc565b61118384848484611c44565b50505050565b60606111948261181c565b6111f85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ba565b6000828152600e6020526040902080546112119061257d565b80601f016020809104026020016040519081016040528092919081815260200182805461123d9061257d565b801561128a5780601f1061125f5761010080835404028352916020019161128a565b820191906000526020600020905b81548152906001019060200180831161126d57829003601f168201915b50505050509050919050565b6000600c54600014156112bb5760405162461bcd60e51b81526004016105ba906123d4565b600b546001600160a01b03166112d8575067016345785d8a000090565b6127106103e8600d546112eb9190612547565b6112f59190612525565b600d54611302919061250d565b905090565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000600c546000141561135a5760405162461bcd60e51b81526004016105ba906123d4565b50600d5490565b600c546113805760405162461bcd60e51b81526004016105ba906123d4565b600260095414156113d35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105ba565b60026009553233146114235760405162461bcd60e51b815260206004820152601960248201527810d85b1b195c8818d85b9b9bdd0818994818dbdb9d1c9858dd603a1b60448201526064016105ba565b61142b611296565b34101561146a5760405162461bcd60e51b815260206004820152600d60248201526c151bdbc81cdb585b1b08189a59609a1b60448201526064016105ba565b6114726109f9565b156114af5760405162461bcd60e51b815260206004820152600d60248201526c105d58dd1a5bdb88195b991959609a1b60448201526064016105ba565b600f546114be6103844261250d565b106114d3576114cf6103844261250d565b600f555b600b546001600160a01b03161561158b57600b54600d546040516000926001600160a01b031691908381818185875af1925050503d8060008114611533576040519150601f19603f3d011682016040523d82523d6000602084013e611538565b606091505b50509050806115895760405162461bcd60e51b815260206004820152601f60248201527f52657475726e696e6720657363726f7765642066756e6473206661696c65640060448201526064016105ba565b505b34600d819055600b80546001600160a01b03191633908117909155600c54600f54604080519283526020830193909352818301939093526060810192909252517f250f632c81f23de9a99ce68c28fd43382e6bbf1cb9b546f87549feff5df76c809181900360800190a16001600955565b3361160561101e565b6001600160a01b03161461162b5760405162461bcd60e51b81526004016105ba9061245d565b6001600160a01b0381166116905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ba565b61169981611b0d565b50565b600c546116bb5760405162461bcd60e51b81526004016105ba906123d4565b336116c461101e565b6001600160a01b0316146116ea5760405162461bcd60e51b81526004016105ba9061245d565b6116f26109f9565b6117325760405162461bcd60e51b8152602060048201526011602482015270105d58dd1a5bdb881b9bdd08195b991959607a1b60448201526064016105ba565b600b546001600160a01b03161561177857600c80546000908152600a60205260409020805460ff19166001179055600b549054611778916001600160a01b031690611b5f565b600c54600b54604080519283526001600160a01b0390911660208301527f95b73f79c6d7b09d4dd9a323589aec50a424621f53a70ece1cc21aa75554b519910160405180910390a16000600d819055600c55600b80546001600160a01b0319169055565b60006001600160e01b031982166380ac58cd60e01b148061180d57506001600160e01b03198216635b5e139f60e01b145b80610585575061058582611c77565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061186e82610e69565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118b28261181c565b6119135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ba565b600061191e83610e69565b9050806001600160a01b0316846001600160a01b0316148061194557506119458185611307565b806119695750836001600160a01b031661195e8461079b565b6001600160a01b0316145b949350505050565b826001600160a01b031661198482610e69565b6001600160a01b0316146119e85760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105ba565b6001600160a01b038216611a4a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ba565b611a55600082611839565b6001600160a01b0383166000908152600560205260408120805460019290611a7e908490612566565b90915550506001600160a01b0382166000908152600560205260408120805460019290611aac90849061250d565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611133828260405180602001604052806000815250611cac565b816001600160a01b0316836001600160a01b03161415611bd75760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016105ba565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c4f848484611971565b611c5b84848484611cdf565b6111835760405162461bcd60e51b81526004016105ba9061234d565b60006001600160e01b0319821663152a902d60e11b148061058557506301ffc9a760e01b6001600160e01b0319831614610585565b611cb68383611dec565b611cc36000848484611cdf565b61092f5760405162461bcd60e51b81526004016105ba9061234d565b60006001600160a01b0384163b15611de157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d239033908990889088906004016122fd565b602060405180830381600087803b158015611d3d57600080fd5b505af1925050508015611d6d575060408051601f3d908101601f19168201909252611d6a918101906121da565b60015b611dc7573d808015611d9b576040519150601f19603f3d011682016040523d82523d6000602084013e611da0565b606091505b508051611dbf5760405162461bcd60e51b81526004016105ba9061234d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611969565b506001949350505050565b6001600160a01b038216611e425760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ba565b611e4b8161181c565b15611e985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ba565b6001600160a01b0382166000908152600560205260408120805460019290611ec190849061250d565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f2b9061257d565b90600052602060002090601f016020900481019282611f4d5760008555611f93565b82601f10611f6657805160ff1916838001178555611f93565b82800160010185558215611f93579182015b82811115611f93578251825591602001919060010190611f78565b50611f9f929150611fa3565b5090565b5b80821115611f9f5760008155600101611fa4565b600067ffffffffffffffff80841115611fd357611fd36125ce565b604051601f8501601f19908116603f01168101908282118183101715611ffb57611ffb6125ce565b8160405280935085815286868601111561201457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461204557600080fd5b919050565b60006020828403121561205c57600080fd5b6120658261202e565b9392505050565b6000806040838503121561207f57600080fd5b6120888361202e565b91506120966020840161202e565b90509250929050565b6000806000606084860312156120b457600080fd5b6120bd8461202e565b92506120cb6020850161202e565b9150604084013590509250925092565b600080600080608085870312156120f157600080fd5b6120fa8561202e565b93506121086020860161202e565b925060408501359150606085013567ffffffffffffffff81111561212b57600080fd5b8501601f8101871361213c57600080fd5b61214b87823560208401611fb8565b91505092959194509250565b6000806040838503121561216a57600080fd5b6121738361202e565b91506020830135801515811461218857600080fd5b809150509250929050565b600080604083850312156121a657600080fd5b6121af8361202e565b946020939093013593505050565b6000602082840312156121cf57600080fd5b8135612065816125e4565b6000602082840312156121ec57600080fd5b8151612065816125e4565b60006020828403121561220957600080fd5b5035919050565b6000806040838503121561222357600080fd5b823591506120966020840161202e565b6000806040838503121561224657600080fd5b82359150602083013567ffffffffffffffff81111561226457600080fd5b8301601f8101851361227557600080fd5b61228485823560208401611fb8565b9150509250929050565b600080604083850312156122a157600080fd5b50508035926020909101359150565b6000815180845260005b818110156122d6576020818501810151868301820152016122ba565b818111156122e8576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612330908301846122b0565b9695505050505050565b60208152600061206560208301846122b0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f43757272656e742061756374696f6e206973206e6f742066696e616c697a6564604082015260600190565b60208082526012908201527141756374696f6e206e6f742061637469766560701b604082015260600190565b6020808252601490820152730546f6b656e20555249206e6f74207365742075760641b604082015260600190565b602080825260159082015274151bdad95b88125108185b1c9958591e481cdbdb19605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f125b9d985b1a59081d1bdad95b88125160821b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612520576125206125b8565b500190565b60008261254257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612561576125616125b8565b500290565b600082821015612578576125786125b8565b500390565b600181811c9082168061259157607f821691505b602082108114156125b257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461169957600080fdfea26469706673582212202a199f78bbea10e2548e1f974dadd7d7fef60342271a6d198ce4f21b9c032eee64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101a35760003560e01c8063715018a6116100e2578063b88d4fde11610085578063b88d4fde146104b3578063c87b56dd146104d3578063dadf960e146104f3578063e985e9c514610508578063eb91d37e14610528578063ecfc7ecc1461053d578063f2fde38b14610545578063f77282ab1461056557600080fd5b8063715018a6146103ea578063787c0a6c146103ff5780637f84d1bd146104145780638da5cb5b1461043457806394bf804d1461044957806395d89b41146104695780639ea6acf51461047e578063a22cb4651461049357600080fd5b806318916f9b1161014a57806318916f9b146102ec57806323b872dd146103015780632a55205a146103215780633ccfd60b1461036057806342842e0e14610375578063588fd2f3146103955780636352211e146103aa57806370a08231146103ca57600080fd5b80630110a176146101a857806301ffc9a7146101ed578063065de74c1461020d57806306f660ef1461022f57806306fdde0314610252578063081812fc14610274578063095ea7b3146102ac578063162094c4146102cc575b600080fd5b3480156101b457600080fd5b506101d86101c33660046121f7565b6000908152600a602052604090205460ff1690565b60405190151581526020015b60405180910390f35b3480156101f957600080fd5b506101d86102083660046121bd565b61057a565b34801561021957600080fd5b5061022d6102283660046121f7565b61058b565b005b34801561023b57600080fd5b506102446106d7565b6040519081526020016101e4565b34801561025e57600080fd5b50610267610709565b6040516101e4919061233a565b34801561028057600080fd5b5061029461028f3660046121f7565b61079b565b6040516001600160a01b0390911681526020016101e4565b3480156102b857600080fd5b5061022d6102c7366004612193565b610823565b3480156102d857600080fd5b5061022d6102e7366004612233565b610934565b3480156102f857600080fd5b506101d86109f9565b34801561030d57600080fd5b5061022d61031c36600461209f565b610a29565b34801561032d57600080fd5b5061034161033c36600461228e565b610a5a565b604080516001600160a01b0390931683526020830191909152016101e4565b34801561036c57600080fd5b5061022d610b06565b34801561038157600080fd5b5061022d61039036600461209f565b610e19565b3480156103a157600080fd5b50610294610e34565b3480156103b657600080fd5b506102946103c53660046121f7565b610e69565b3480156103d657600080fd5b506102446103e536600461204a565b610ee0565b3480156103f657600080fd5b5061022d610f67565b34801561040b57600080fd5b50610244610fa2565b34801561042057600080fd5b506101d861042f3660046121f7565b610fce565b34801561044057600080fd5b5061029461101e565b34801561045557600080fd5b5061022d610464366004612210565b61102d565b34801561047557600080fd5b50610267611137565b34801561048a57600080fd5b50600c54610244565b34801561049f57600080fd5b5061022d6104ae366004612157565b611146565b3480156104bf57600080fd5b5061022d6104ce3660046120db565b611151565b3480156104df57600080fd5b506102676104ee3660046121f7565b611189565b3480156104ff57600080fd5b50610244611296565b34801561051457600080fd5b506101d861052336600461206c565b611307565b34801561053457600080fd5b50610244611335565b61022d611361565b34801561055157600080fd5b5061022d61056036600461204a565b6115fc565b34801561057157600080fd5b5061022d61169c565b6000610585826117dc565b92915050565b3361059461101e565b6001600160a01b0316146105c35760405162461bcd60e51b81526004016105ba9061245d565b60405180910390fd5b600c54156105e35760405162461bcd60e51b81526004016105ba9061239f565b6000811180156105f4575060638111155b6106105760405162461bcd60e51b81526004016105ba90612492565b6000818152600a602052604090205460ff161561063f5760405162461bcd60e51b81526004016105ba9061242e565b6000818152600e6020526040812080546106589061257d565b9050116106775760405162461bcd60e51b81526004016105ba90612400565b600c819055610689620151804261250d565b600f81905567016345785d8a0000600d556040805183815260208101929092527ff8910119ddbef5440c54532457dfe8250a10ed39e583292818f44724b9e1344c910160405180910390a150565b6000600c54600014156106fc5760405162461bcd60e51b81526004016105ba906123d4565b5067016345785d8a000090565b6060600280546107189061257d565b80601f01602080910402602001604051908101604052809291908181526020018280546107449061257d565b80156107915780601f1061076657610100808354040283529160200191610791565b820191906000526020600020905b81548152906001019060200180831161077457829003601f168201915b5050505050905090565b60006107a68261181c565b6108075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ba565b506000908152600660205260409020546001600160a01b031690565b600061082e82610e69565b9050806001600160a01b0316836001600160a01b0316141561089c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105ba565b336001600160a01b03821614806108b857506108b88133611307565b6109255760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776044820152771b995c881b9bdc88185c1c1c9bdd995908199bdc88185b1b60421b60648201526084016105ba565b61092f8383611839565b505050565b3361093d61101e565b6001600160a01b0316146109635760405162461bcd60e51b81526004016105ba9061245d565b60008151116109ad5760405162461bcd60e51b8152602060048201526016602482015275546f6b656e20555249206973206d616e6461746f727960501b60448201526064016105ba565b6000821180156109be575060638211155b6109da5760405162461bcd60e51b81526004016105ba90612492565b6000828152600e60209081526040909120825161092f92840190611f1f565b6000600c5460001415610a1e5760405162461bcd60e51b81526004016105ba906123d4565b42600f541115905090565b610a3333826118a7565b610a4f5760405162461bcd60e51b81526004016105ba906124bc565b61092f838383611971565b60008281526001602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610acf5750604080518082019091526000546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610aee906001600160601b031687612547565b610af89190612525565b915196919550909350505050565b33610b0f61101e565b6001600160a01b031614610b355760405162461bcd60e51b81526004016105ba9061245d565b600c5415610b985760405162461bcd60e51b815260206004820152602a60248201527f576974686472617720647572696e67206163746976652061756374696f6e206e6044820152691bdd08185b1b1bddd95960b21b60648201526084016105ba565b60004711610bd35760405162461bcd60e51b81526020600482015260086024820152674e6f2066756e647360c01b60448201526064016105ba565b476000610be1606483612525565b610bec906032612547565b60405190915060009073d50c2a4faa066763127cac3ba46fe4817906a9c09083908381818185875af1925050503d8060008114610c45576040519150601f19603f3d011682016040523d82523d6000602084013e610c4a565b606091505b5050905080610c9b5760405162461bcd60e51b815260206004820152601e60248201527f5769746864726177207472616e73616374696f6e202331206661696c6564000060448201526064016105ba565b6000610ca8606485612525565b610cb390602d612547565b60405190915060009073c938c5f20aa151ccc854b7c0438e387394ed4cb29083908381818185875af1925050503d8060008114610d0c576040519150601f19603f3d011682016040523d82523d6000602084013e610d11565b606091505b5050905080610d625760405162461bcd60e51b815260206004820152601e60248201527f5769746864726177207472616e73616374696f6e202332206661696c6564000060448201526064016105ba565b6040514790600090731abc492f34839d3204d9f1d1078528ad4611962a9083908381818185875af1925050503d8060008114610dba576040519150601f19603f3d011682016040523d82523d6000602084013e610dbf565b606091505b5050905080610e105760405162461bcd60e51b815260206004820152601e60248201527f5769746864726177207472616e73616374696f6e202333206661696c6564000060448201526064016105ba565b50505050505050565b61092f83838360405180602001604052806000815250611151565b6000600c5460001415610e595760405162461bcd60e51b81526004016105ba906123d4565b50600b546001600160a01b031690565b6000818152600460205260408120546001600160a01b0316806105855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105ba565b60006001600160a01b038216610f4b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105ba565b506001600160a01b031660009081526005602052604090205490565b33610f7061101e565b6001600160a01b031614610f965760405162461bcd60e51b81526004016105ba9061245d565b610fa06000611b0d565b565b6000600c5460001415610fc75760405162461bcd60e51b81526004016105ba906123d4565b50600f5490565b60008082118015610fe0575060638211155b610ffc5760405162461bcd60e51b81526004016105ba90612492565b6000828152600e6020526040902080546110159061257d565b15159392505050565b6008546001600160a01b031690565b3361103661101e565b6001600160a01b03161461105c5760405162461bcd60e51b81526004016105ba9061245d565b600c541561107c5760405162461bcd60e51b81526004016105ba9061239f565b60008211801561108d575060638211155b6110a95760405162461bcd60e51b81526004016105ba90612492565b6000828152600a602052604090205460ff16156110d85760405162461bcd60e51b81526004016105ba9061242e565b6000828152600e6020526040812080546110f19061257d565b9050116111105760405162461bcd60e51b81526004016105ba90612400565b6000828152600a60205260409020805460ff191660011790556111338183611b5f565b5050565b6060600380546107189061257d565b611133338383611b79565b61115b33836118a7565b6111775760405162461bcd60e51b81526004016105ba906124bc565b61118384848484611c44565b50505050565b60606111948261181c565b6111f85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105ba565b6000828152600e6020526040902080546112119061257d565b80601f016020809104026020016040519081016040528092919081815260200182805461123d9061257d565b801561128a5780601f1061125f5761010080835404028352916020019161128a565b820191906000526020600020905b81548152906001019060200180831161126d57829003601f168201915b50505050509050919050565b6000600c54600014156112bb5760405162461bcd60e51b81526004016105ba906123d4565b600b546001600160a01b03166112d8575067016345785d8a000090565b6127106103e8600d546112eb9190612547565b6112f59190612525565b600d54611302919061250d565b905090565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000600c546000141561135a5760405162461bcd60e51b81526004016105ba906123d4565b50600d5490565b600c546113805760405162461bcd60e51b81526004016105ba906123d4565b600260095414156113d35760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016105ba565b60026009553233146114235760405162461bcd60e51b815260206004820152601960248201527810d85b1b195c8818d85b9b9bdd0818994818dbdb9d1c9858dd603a1b60448201526064016105ba565b61142b611296565b34101561146a5760405162461bcd60e51b815260206004820152600d60248201526c151bdbc81cdb585b1b08189a59609a1b60448201526064016105ba565b6114726109f9565b156114af5760405162461bcd60e51b815260206004820152600d60248201526c105d58dd1a5bdb88195b991959609a1b60448201526064016105ba565b600f546114be6103844261250d565b106114d3576114cf6103844261250d565b600f555b600b546001600160a01b03161561158b57600b54600d546040516000926001600160a01b031691908381818185875af1925050503d8060008114611533576040519150601f19603f3d011682016040523d82523d6000602084013e611538565b606091505b50509050806115895760405162461bcd60e51b815260206004820152601f60248201527f52657475726e696e6720657363726f7765642066756e6473206661696c65640060448201526064016105ba565b505b34600d819055600b80546001600160a01b03191633908117909155600c54600f54604080519283526020830193909352818301939093526060810192909252517f250f632c81f23de9a99ce68c28fd43382e6bbf1cb9b546f87549feff5df76c809181900360800190a16001600955565b3361160561101e565b6001600160a01b03161461162b5760405162461bcd60e51b81526004016105ba9061245d565b6001600160a01b0381166116905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105ba565b61169981611b0d565b50565b600c546116bb5760405162461bcd60e51b81526004016105ba906123d4565b336116c461101e565b6001600160a01b0316146116ea5760405162461bcd60e51b81526004016105ba9061245d565b6116f26109f9565b6117325760405162461bcd60e51b8152602060048201526011602482015270105d58dd1a5bdb881b9bdd08195b991959607a1b60448201526064016105ba565b600b546001600160a01b03161561177857600c80546000908152600a60205260409020805460ff19166001179055600b549054611778916001600160a01b031690611b5f565b600c54600b54604080519283526001600160a01b0390911660208301527f95b73f79c6d7b09d4dd9a323589aec50a424621f53a70ece1cc21aa75554b519910160405180910390a16000600d819055600c55600b80546001600160a01b0319169055565b60006001600160e01b031982166380ac58cd60e01b148061180d57506001600160e01b03198216635b5e139f60e01b145b80610585575061058582611c77565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061186e82610e69565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118b28261181c565b6119135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105ba565b600061191e83610e69565b9050806001600160a01b0316846001600160a01b0316148061194557506119458185611307565b806119695750836001600160a01b031661195e8461079b565b6001600160a01b0316145b949350505050565b826001600160a01b031661198482610e69565b6001600160a01b0316146119e85760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016105ba565b6001600160a01b038216611a4a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105ba565b611a55600082611839565b6001600160a01b0383166000908152600560205260408120805460019290611a7e908490612566565b90915550506001600160a01b0382166000908152600560205260408120805460019290611aac90849061250d565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611133828260405180602001604052806000815250611cac565b816001600160a01b0316836001600160a01b03161415611bd75760405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b60448201526064016105ba565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c4f848484611971565b611c5b84848484611cdf565b6111835760405162461bcd60e51b81526004016105ba9061234d565b60006001600160e01b0319821663152a902d60e11b148061058557506301ffc9a760e01b6001600160e01b0319831614610585565b611cb68383611dec565b611cc36000848484611cdf565b61092f5760405162461bcd60e51b81526004016105ba9061234d565b60006001600160a01b0384163b15611de157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d239033908990889088906004016122fd565b602060405180830381600087803b158015611d3d57600080fd5b505af1925050508015611d6d575060408051601f3d908101601f19168201909252611d6a918101906121da565b60015b611dc7573d808015611d9b576040519150601f19603f3d011682016040523d82523d6000602084013e611da0565b606091505b508051611dbf5760405162461bcd60e51b81526004016105ba9061234d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611969565b506001949350505050565b6001600160a01b038216611e425760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105ba565b611e4b8161181c565b15611e985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105ba565b6001600160a01b0382166000908152600560205260408120805460019290611ec190849061250d565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f2b9061257d565b90600052602060002090601f016020900481019282611f4d5760008555611f93565b82601f10611f6657805160ff1916838001178555611f93565b82800160010185558215611f93579182015b82811115611f93578251825591602001919060010190611f78565b50611f9f929150611fa3565b5090565b5b80821115611f9f5760008155600101611fa4565b600067ffffffffffffffff80841115611fd357611fd36125ce565b604051601f8501601f19908116603f01168101908282118183101715611ffb57611ffb6125ce565b8160405280935085815286868601111561201457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461204557600080fd5b919050565b60006020828403121561205c57600080fd5b6120658261202e565b9392505050565b6000806040838503121561207f57600080fd5b6120888361202e565b91506120966020840161202e565b90509250929050565b6000806000606084860312156120b457600080fd5b6120bd8461202e565b92506120cb6020850161202e565b9150604084013590509250925092565b600080600080608085870312156120f157600080fd5b6120fa8561202e565b93506121086020860161202e565b925060408501359150606085013567ffffffffffffffff81111561212b57600080fd5b8501601f8101871361213c57600080fd5b61214b87823560208401611fb8565b91505092959194509250565b6000806040838503121561216a57600080fd5b6121738361202e565b91506020830135801515811461218857600080fd5b809150509250929050565b600080604083850312156121a657600080fd5b6121af8361202e565b946020939093013593505050565b6000602082840312156121cf57600080fd5b8135612065816125e4565b6000602082840312156121ec57600080fd5b8151612065816125e4565b60006020828403121561220957600080fd5b5035919050565b6000806040838503121561222357600080fd5b823591506120966020840161202e565b6000806040838503121561224657600080fd5b82359150602083013567ffffffffffffffff81111561226457600080fd5b8301601f8101851361227557600080fd5b61228485823560208401611fb8565b9150509250929050565b600080604083850312156122a157600080fd5b50508035926020909101359150565b6000815180845260005b818110156122d6576020818501810151868301820152016122ba565b818111156122e8576000602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612330908301846122b0565b9695505050505050565b60208152600061206560208301846122b0565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f43757272656e742061756374696f6e206973206e6f742066696e616c697a6564604082015260600190565b60208082526012908201527141756374696f6e206e6f742061637469766560701b604082015260600190565b6020808252601490820152730546f6b656e20555249206e6f74207365742075760641b604082015260600190565b602080825260159082015274151bdad95b88125108185b1c9958591e481cdbdb19605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f125b9d985b1a59081d1bdad95b88125160821b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612520576125206125b8565b500190565b60008261254257634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615612561576125616125b8565b500290565b600082821015612578576125786125b8565b500390565b600181811c9082168061259157607f821691505b602082108114156125b257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461169957600080fdfea26469706673582212202a199f78bbea10e2548e1f974dadd7d7fef60342271a6d198ce4f21b9c032eee64736f6c63430008070033

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.