ETH Price: $3,605.47 (+9.22%)

Token

BongaNFT (BCNC)
 

Overview

Max Total Supply

297 BCNC

Holders

189

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
shardeum.eth
Balance
2 BCNC
0xcd0d967449430caaabda422af22f64254c3f1168
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Token

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 15 : Token.sol
pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT

import "ERC721URIStorage.sol";
import "ERC721Enumerable.sol";
import "IERC2981.sol";
import "Ownable.sol";
import "Address.sol";

/**
 * @title Sample NFT contract
 * @dev Extends ERC-721 NFT contract and implements ERC-2981
 */

contract Token is Ownable, ERC721Enumerable, ERC721URIStorage {
    using Address for address payable;
    bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;

    string baseUri;
    // Keep a mapping of token ids and corresponding hashes
    mapping(string => uint8) hashes;
    // Maximum amounts of mintable tokens
    uint256 private MAX_SUPPLY = 10000;
    // Address of the royalties recipient
    address private _royaltiesReceiver;
    // Percentage of each sale to pay as royalties
    uint256 private royaltiesPercentage;
    // Mint price wei
    uint256 private mintPrice;
    bool private saleIsActive;

    mapping(address => uint256) private _deposits;

    // Events
    event Mint(uint256 tokenId, address recipient);
    event Deposited(address indexed payee, uint256 weiAmount);
    event Withdrawn(address indexed payee, uint256 weiAmount);

constructor(address initialRoyaltiesReceiver) ERC721("BongaNFT", "BCNC") {
        baseUri = "https://bonganft.io/metadata/";
        _royaltiesReceiver = initialRoyaltiesReceiver;
        mintPrice = 150000000000000000;  
        MAX_SUPPLY = 10000;
        royaltiesPercentage = 250;
        saleIsActive = false;
    }
    
    /// @notice Checks if NFT contract implements the ERC-2981 interface
    /// @param _contract - the address of the NFT contract to query
    /// @return true if ERC-2981 interface is supported, false otherwise
    function _checkRoyalties(address _contract) internal returns (bool) {
        (bool success) = IERC2981(_contract).
        supportsInterface(_INTERFACE_ID_ERC2981);
        return success;
    }

    function startSale() public onlyOwner {
        saleIsActive = true;
    }

    function toggleSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function setMintPrice(uint256 newMintPrice)
    external onlyOwner {
        require(mintPrice != newMintPrice, "same price"); // dev: Same price
        mintPrice = newMintPrice;
    }

    function getMintPrice() public view returns (uint256) {
        return mintPrice;
    }

    function setMaxSupply(uint256 newMaxSupply)
    external onlyOwner {
        require(MAX_SUPPLY != newMaxSupply, "same supply"); // dev: Same MAX_SUPPLY
        MAX_SUPPLY = newMaxSupply;
    }

    function setRoyaltiesPercentage(uint256 newRoyaltiesPercentage)
    external onlyOwner {
        require(royaltiesPercentage != newRoyaltiesPercentage, "same percent"); // dev: Same MAX_SUPPLY
        require(newRoyaltiesPercentage < 10000, "Royalty total value should be < 10000");
        royaltiesPercentage = newRoyaltiesPercentage;
    }

    /** Overrides ERC-721's _baseURI function */
    function _baseURI() internal view override returns (string memory) {
        return baseUri;
    }

    function setBaseURI(string memory _newUri)
    external onlyOwner {
        baseUri = _newUri;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
    internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, amount);
    }

    function _burn(uint256 tokenId)
    internal override(ERC721, ERC721URIStorage) {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        super._burn(tokenId);
    }

    /// @notice Getter function for _royaltiesReceiver
    /// @return the address of the royalties recipient
    function royaltiesReceiver() external view returns(address) {
        return _royaltiesReceiver;
    }

    /// @notice Changes the royalties' recipient address (in case rights are
    ///         transferred for instance)
    /// @param newRoyaltiesReceiver - address of the new royalties recipient
    function setRoyaltiesReceiver(address newRoyaltiesReceiver)
    external onlyOwner {
        require(newRoyaltiesReceiver != _royaltiesReceiver); // dev: Same address
        _royaltiesReceiver = newRoyaltiesReceiver;
    }

    /// @notice Returns a token's URI
    /// @dev See {IERC721Metadata-tokenURI}.
    /// @param tokenId - the id of the token whose URI to return
    /// @return a string containing an URI pointing to the token's ressource
    function tokenURI(uint256 tokenId)
    public view override(ERC721, ERC721URIStorage)
    returns (string memory) {
        return super.tokenURI(tokenId);
    }

    function setTokenURI(uint256 tokenId, string memory _tokenURI) public {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _setTokenURI(tokenId, _tokenURI);
    }

    /// @notice Informs callers that this contract supports ERC2981
    function supportsInterface(bytes4 interfaceId)
    public view virtual override (ERC721, ERC721Enumerable)
    returns (bool) {
        return interfaceId == type(IERC2981).interfaceId ||
        interfaceId == _INTERFACE_ID_ERC2981 ||
        super.supportsInterface(interfaceId);
    }


    /// @notice Returns all the tokens owned by an address
    /// @param _owner - the address to query
    /// @return ownerTokens - an array containing the ids of all tokens
    ///         owned by the address
    function tokensOfOwner(address _owner) external view
    returns(uint256[] memory ownerTokens ) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory result = new uint256[](tokenCount);

        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            for (uint256 i=0; i<tokenCount; i++) {
                result[i] = tokenOfOwnerByIndex(_owner, i);
            }
            return result;
        }
    }

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _salePrice - sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _value sale price
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view
    returns (address receiver, uint256 royaltyAmount) {
        uint256 _royalties = (_salePrice * royaltiesPercentage) / 10000;
        return (_royaltiesReceiver, _royalties);
    }

    /// @notice Mints tokens Owner
    /// @param recipient - the address to which the token will be transfered
    /// @return tokenId - the id of the token
    function mintOwner(address recipient) external onlyOwner
    returns (uint256 tokenId)
    {
        require(totalSupply() <= MAX_SUPPLY, "All tokens minted");
        uint256 newItemId = totalSupply() + 1;
        string memory hash = string(abi.encodePacked(uint2uristr(newItemId*15+99), ".json"));
        _safeMint(recipient, newItemId);
        _setTokenURI(newItemId, hash);
        emit Mint(newItemId, recipient);
        return newItemId;
    }

    /// @notice Mints tokens All
    /// @param recipient - the address to which the token will be transfered
    /// @return tokenId - the id of the token
    function mint(address recipient, uint256 qty) external payable
    returns (uint256 tokenId)
    {
        require(saleIsActive == true, "Minting disabled");
        require(totalSupply() <= MAX_SUPPLY, "All tokens minted");
        require(msg.value >= mintPrice*qty, "Not enough ETH sent; check price!"); 
        uint256 newItemId = totalSupply();
        string memory hash = "";

        for (uint256 i=0; i<qty; i++) {
            newItemId = newItemId + 1;
            hash = string(abi.encodePacked(uint2uristr(newItemId*15+99), ".json"));
            _safeMint(recipient, newItemId);
            _setTokenURI(newItemId, hash);
            emit Mint(newItemId, recipient);
        }
        return newItemId;
    }

    function uint2uristr(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }

        return string(bstr);
    }

    //deposits
    function depositsOf(address payee) public view returns (uint256) {
        return _deposits[payee];
    }

    /**
     * @dev Stores the sent amount as credit to be withdrawn.
     * @param payee The destination address of the funds.
     */
    function deposit(address payee) public payable virtual onlyOwner {
        uint256 amount = msg.value;
        _deposits[payee] += amount;
        emit Deposited(payee, amount);
    }

    /**
     * @dev Withdraw accumulated balance for a payee, forwarding all gas to the
     * recipient.
     *
     * WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities.
     * Make sure you trust the recipient, or are either following the
     * checks-effects-interactions pattern or using {ReentrancyGuard}.
     *
     * @param payee The address whose funds will be withdrawn and transferred to.
     */
    function withdraw(address payable payee, uint256 payment) public virtual onlyOwner {
        payee.sendValue(payment);

        emit Withdrawn(payee, payment);
    }

    function withdrawAll(address payable payee) public virtual onlyOwner {
        uint256 balance = address(this).balance;
        payee.sendValue(balance);
        emit Withdrawn(payee, balance);
    }
}

File 2 of 15 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 3 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC721.sol";
import "IERC721Receiver.sol";
import "IERC721Metadata.sol";
import "Address.sol";
import "Context.sol";
import "Strings.sol";
import "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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 4 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 6 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 7 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

File 8 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 9 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 10 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 11 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC165.sol";

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

File 12 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "ERC721.sol";
import "IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 13 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 14 of 15 : IERC2981.sol
pragma solidity ^0.8.0;

import "ERC165.sol";

///
/// @dev Interface for the NFT Royalty Standard
///
interface IERC2981 is IERC165 {
    /// ERC165 bytes to add to interface array - set in parent contract
    /// implementing this standard
    ///
    /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
    /// bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a;
    /// _registerInterface(_INTERFACE_ID_ERC2981);

    /// @notice Called with the sale price to determine how much royalty
    //          is owed and to whom.
    /// @param _tokenId - the NFT asset queried for royalty information
    /// @param _salePrice - the sale price of the NFT asset specified by _tokenId
    /// @return receiver - address of who should be sent the royalty payment
    /// @return royaltyAmount - the royalty payment amount for _salePrice
    function royaltyInfo(
        uint256 _tokenId,
        uint256 _salePrice
    ) external view returns (
        address receiver,
        uint256 royaltyAmount
    );

}

File 15 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialRoyaltiesReceiver","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"payee","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"Mint","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"payee","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"payee","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"payee","type":"address"}],"name":"depositsOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"mintOwner","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltiesReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newRoyaltiesPercentage","type":"uint256"}],"name":"setRoyaltiesPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRoyaltiesReceiver","type":"address"}],"name":"setRoyaltiesReceiver","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":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"ownerTokens","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"payee","type":"address"},{"internalType":"uint256","name":"payment","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"payee","type":"address"}],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052612710600e553480156200001757600080fd5b506040516200326b3803806200326b8339810160408190526200003a916200023b565b60405180604001604052806008815260200167109bdb99d853919560c21b8152506040518060400160405280600481526020016342434e4360e01b81525060006200008a6200019160201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000e990600190602085019062000195565b508051620000ff90600290602084019062000195565b505060408051808201909152601d8082527f68747470733a2f2f626f6e67616e66742e696f2f6d657461646174612f0000006020909201918252620001499250600c919062000195565b50600f80546001600160a01b0319166001600160a01b0392909216919091179055670214e8348c4f0000601155612710600e5560fa6010556012805460ff19169055620002a8565b3390565b828054620001a3906200026b565b90600052602060002090601f016020900481019282620001c7576000855562000212565b82601f10620001e257805160ff191683800117855562000212565b8280016001018555821562000212579182015b8281111562000212578251825591602001919060010190620001f5565b506200022092915062000224565b5090565b5b8082111562000220576000815560010162000225565b6000602082840312156200024d578081fd5b81516001600160a01b038116811462000264578182fd5b9392505050565b6002810460018216806200028057607f821691505b60208210811415620002a257634e487b7160e01b600052602260045260246000fd5b50919050565b612fb380620002b86000396000f3fe60806040526004361061021a5760003560e01c80638462151c11610123578063b88d4fde116100ab578063f2fde38b1161006f578063f2fde38b14610609578063f340fa0114610629578063f3fef3a31461063c578063f4a0a5281461065c578063fa09e6301461067c5761021a565b8063b88d4fde14610574578063c87b56dd14610594578063daaeec86146105b4578063e3a9db1a146105c9578063e985e9c5146105e95761021a565b8063a22cb465116100f2578063a22cb465146104f5578063a3a51bd514610515578063a7f93ebd1461052a578063b51437151461053f578063b66a0e5d1461055f5761021a565b80638462151c1461047e5780638da5cb5b146104ab5780639466d206146104c057806395d89b41146104e05761021a565b806340c10f19116101a657806361f80f881161017557806361f80f88146103e95780636352211e146104095780636f8b44b01461042957806370a0823114610449578063715018a6146104695761021a565b806340c10f191461037657806342842e0e146103895780634f6ccce7146103a957806355f804b3146103c95761021a565b8063162094c4116101ed578063162094c4146102c657806318160ddd146102e657806323b872dd146103085780632a55205a146103285780632f745c59146103565761021a565b806301ffc9a71461021f57806306fdde0314610255578063081812fc14610277578063095ea7b3146102a4575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461241a565b61069c565b60405161024c9190612638565b60405180910390f35b34801561026157600080fd5b5061026a6106e4565b60405161024c9190612643565b34801561028357600080fd5b50610297610292366004612485565b610776565b60405161024c919061258a565b3480156102b057600080fd5b506102c46102bf366004612408565b6107c2565b005b3480156102d257600080fd5b506102c46102e136600461249d565b61085a565b3480156102f257600080fd5b506102fb610895565b60405161024c9190612dd0565b34801561031457600080fd5b506102c461032336600461231a565b61089b565b34801561033457600080fd5b506103486103433660046124e2565b6108d3565b60405161024c9291906125db565b34801561036257600080fd5b506102fb610371366004612408565b61090a565b6102fb610384366004612408565b61095c565b34801561039557600080fd5b506102c46103a436600461231a565b610ab8565b3480156103b557600080fd5b506102fb6103c4366004612485565b610ad3565b3480156103d557600080fd5b506102c46103e4366004612452565b610b2e565b3480156103f557600080fd5b506102fb61040436600461229b565b610b80565b34801561041557600080fd5b50610297610424366004612485565b610c86565b34801561043557600080fd5b506102c4610444366004612485565b610cbb565b34801561045557600080fd5b506102fb61046436600461229b565b610d21565b34801561047557600080fd5b506102c4610d65565b34801561048a57600080fd5b5061049e61049936600461229b565b610dee565b60405161024c91906125f4565b3480156104b757600080fd5b50610297610ecb565b3480156104cc57600080fd5b506102c46104db366004612485565b610eda565b3480156104ec57600080fd5b5061026a610f61565b34801561050157600080fd5b506102c46105103660046123d7565b610f70565b34801561052157600080fd5b5061029761103e565b34801561053657600080fd5b506102fb61104d565b34801561054b57600080fd5b506102c461055a36600461229b565b611053565b34801561056b57600080fd5b506102c46110cf565b34801561058057600080fd5b506102c461058f36600461235a565b61111d565b3480156105a057600080fd5b5061026a6105af366004612485565b611156565b3480156105c057600080fd5b506102c4611161565b3480156105d557600080fd5b506102fb6105e436600461229b565b6111b4565b3480156105f557600080fd5b5061023f6106043660046122e2565b6111cf565b34801561061557600080fd5b506102c461062436600461229b565b6111fd565b6102c461063736600461229b565b6112bd565b34801561064857600080fd5b506102c46106573660046122b7565b611372565b34801561066857600080fd5b506102c4610677366004612485565b6113fd565b34801561068857600080fd5b506102c461069736600461229b565b611463565b60006001600160e01b0319821663152a902d60e11b14806106cd57506001600160e01b0319821663152a902d60e11b145b806106dc57506106dc826114b6565b90505b919050565b6060600180546106f390612ea3565b80601f016020809104026020016040519081016040528092919081815260200182805461071f90612ea3565b801561076c5780601f106107415761010080835404028352916020019161076c565b820191906000526020600020905b81548152906001019060200180831161074f57829003601f168201915b5050505050905090565b6000610781826114db565b6107a65760405162461bcd60e51b815260040161079d90612ade565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107cd82610c86565b9050806001600160a01b0316836001600160a01b031614156108015760405162461bcd60e51b815260040161079d90612c21565b806001600160a01b03166108136114f8565b6001600160a01b0316148061082f575061082f816106046114f8565b61084b5760405162461bcd60e51b815260040161079d9061291a565b61085583836114fc565b505050565b61086b6108656114f8565b8361156a565b6108875760405162461bcd60e51b815260040161079d90612c88565b61089182826115ef565b5050565b60095490565b6108ac6108a66114f8565b8261156a565b6108c85760405162461bcd60e51b815260040161079d90612c88565b610855838383611633565b6000806000612710601054856108e99190612e41565b6108f39190612e2d565b600f546001600160a01b0316969095509350505050565b600061091583610d21565b82106109335760405162461bcd60e51b815260040161079d90612656565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b60125460009060ff1615156001146109865760405162461bcd60e51b815260040161079d90612b5f565b600e54610991610895565b11156109af5760405162461bcd60e51b815260040161079d90612739565b816011546109bd9190612e41565b3410156109dc5760405162461bcd60e51b815260040161079d90612d6a565b60006109e6610895565b60408051602081019091526000808252919250905b84811015610aae57610a0e836001612df0565b9250610a2e610a1e84600f612e41565b610a29906063612df0565b611760565b604051602001610a3e919061255e565b6040516020818303038152906040529150610a5986846118a6565b610a6383836115ef565b7ff3cea5493d790af0133817606f7350a91d7f154ea52eaa79d179d4d231e501028387604051610a94929190612dd9565b60405180910390a180610aa681612ede565b9150506109fb565b5090949350505050565b6108558383836040518060200160405280600081525061111d565b6000610add610895565b8210610afb5760405162461bcd60e51b815260040161079d90612cd9565b60098281548110610b1c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610b366114f8565b6001600160a01b0316610b47610ecb565b6001600160a01b031614610b6d5760405162461bcd60e51b815260040161079d90612b2a565b805161089190600c906020840190612173565b6000610b8a6114f8565b6001600160a01b0316610b9b610ecb565b6001600160a01b031614610bc15760405162461bcd60e51b815260040161079d90612b2a565b600e54610bcc610895565b1115610bea5760405162461bcd60e51b815260040161079d90612739565b6000610bf4610895565b610bff906001612df0565b90506000610c11610a1e83600f612e41565b604051602001610c21919061255e565b6040516020818303038152906040529050610c3c84836118a6565b610c4682826115ef565b7ff3cea5493d790af0133817606f7350a91d7f154ea52eaa79d179d4d231e501028285604051610c77929190612dd9565b60405180910390a15092915050565b6000818152600360205260408120546001600160a01b0316806106dc5760405162461bcd60e51b815260040161079d906129c1565b610cc36114f8565b6001600160a01b0316610cd4610ecb565b6001600160a01b031614610cfa5760405162461bcd60e51b815260040161079d90612b2a565b80600e541415610d1c5760405162461bcd60e51b815260040161079d90612dab565b600e55565b60006001600160a01b038216610d495760405162461bcd60e51b815260040161079d90612977565b506001600160a01b031660009081526004602052604090205490565b610d6d6114f8565b6001600160a01b0316610d7e610ecb565b6001600160a01b031614610da45760405162461bcd60e51b815260040161079d90612b2a565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606000610dfb83610d21565b905060008167ffffffffffffffff811115610e2657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e4f578160200160208202803683370190505b50905081610e6f57505060408051600081526020810190915290506106df565b60005b82811015610ec157610e84858261090a565b828281518110610ea457634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610eb981612ede565b915050610e72565b5091506106df9050565b6000546001600160a01b031690565b610ee26114f8565b6001600160a01b0316610ef3610ecb565b6001600160a01b031614610f195760405162461bcd60e51b815260040161079d90612b2a565b806010541415610f3b5760405162461bcd60e51b815260040161079d90612c62565b6127108110610f5c5760405162461bcd60e51b815260040161079d90612d25565b601055565b6060600280546106f390612ea3565b610f786114f8565b6001600160a01b0316826001600160a01b03161415610fa95760405162461bcd60e51b815260040161079d90612803565b8060066000610fb66114f8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ffa6114f8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110329190612638565b60405180910390a35050565b600f546001600160a01b031690565b60115490565b61105b6114f8565b6001600160a01b031661106c610ecb565b6001600160a01b0316146110925760405162461bcd60e51b815260040161079d90612b2a565b600f546001600160a01b03828116911614156110ad57600080fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6110d76114f8565b6001600160a01b03166110e8610ecb565b6001600160a01b03161461110e5760405162461bcd60e51b815260040161079d90612b2a565b6012805460ff19166001179055565b6111286108656114f8565b6111445760405162461bcd60e51b815260040161079d90612c88565b611150848484846118c0565b50505050565b60606106dc826118f3565b6111696114f8565b6001600160a01b031661117a610ecb565b6001600160a01b0316146111a05760405162461bcd60e51b815260040161079d90612b2a565b6012805460ff19811660ff90911615179055565b6001600160a01b031660009081526013602052604090205490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6112056114f8565b6001600160a01b0316611216610ecb565b6001600160a01b03161461123c5760405162461bcd60e51b815260040161079d90612b2a565b6001600160a01b0381166112625760405162461bcd60e51b815260040161079d906126f3565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6112c56114f8565b6001600160a01b03166112d6610ecb565b6001600160a01b0316146112fc5760405162461bcd60e51b815260040161079d90612b2a565b6001600160a01b038116600090815260136020526040812080543492839291611326908490612df0565b92505081905550816001600160a01b03167f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4826040516113669190612dd0565b60405180910390a25050565b61137a6114f8565b6001600160a01b031661138b610ecb565b6001600160a01b0316146113b15760405162461bcd60e51b815260040161079d90612b2a565b6113c46001600160a01b03831682611a0c565b816001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5826040516113669190612dd0565b6114056114f8565b6001600160a01b0316611416610ecb565b6001600160a01b03161461143c5760405162461bcd60e51b815260040161079d90612b2a565b80601154141561145e5760405162461bcd60e51b815260040161079d9061279b565b601155565b61146b6114f8565b6001600160a01b031661147c610ecb565b6001600160a01b0316146114a25760405162461bcd60e51b815260040161079d90612b2a565b476113c46001600160a01b03831682611a0c565b60006001600160e01b0319821663780e9d6360e01b14806106dc57506106dc82611aa8565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061153182610c86565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611575826114db565b6115915760405162461bcd60e51b815260040161079d906128ce565b600061159c83610c86565b9050806001600160a01b0316846001600160a01b031614806115d75750836001600160a01b03166115cc84610776565b6001600160a01b0316145b806115e757506115e781856111cf565b949350505050565b6115f8826114db565b6116145760405162461bcd60e51b815260040161079d90612a0a565b6000828152600b60209081526040909120825161085592840190612173565b826001600160a01b031661164682610c86565b6001600160a01b03161461166c5760405162461bcd60e51b815260040161079d90612b89565b6001600160a01b0382166116925760405162461bcd60e51b815260040161079d906127bf565b61169d838383611ae8565b6116a86000826114fc565b6001600160a01b03831660009081526004602052604081208054600192906116d1908490612e60565b90915550506001600160a01b03821660009081526004602052604081208054600192906116ff908490612df0565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60608161178557506040805180820190915260018152600360fc1b60208201526106df565b8160005b81156117af578061179981612ede565b91506117a89050600a83612e2d565b9150611789565b60008167ffffffffffffffff8111156117d857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611802576020820181803683370190505b509050815b851561189d57611818600182612e60565b90506000611827600a88612e2d565b61183290600a612e41565b61183c9088612e60565b611847906030612e08565b905060008160f81b90508084848151811061187257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611894600a89612e2d565b97505050611807565b50949350505050565b610891828260405180602001604052806000815250611af3565b6118cb848484611633565b6118d784848484611b26565b6111505760405162461bcd60e51b815260040161079d906126a1565b60606118fe826114db565b61191a5760405162461bcd60e51b815260040161079d90612a8d565b6000828152600b60205260408120805461193390612ea3565b80601f016020809104026020016040519081016040528092919081815260200182805461195f90612ea3565b80156119ac5780601f10611981576101008083540402835291602001916119ac565b820191906000526020600020905b81548152906001019060200180831161198f57829003601f168201915b5050505050905060006119bd611c41565b90508051600014156119d1575090506106df565b815115611a035780826040516020016119eb92919061252f565b604051602081830303815290604052925050506106df565b6115e784611c50565b80471015611a2c5760405162461bcd60e51b815260040161079d90612897565b6000826001600160a01b031682604051611a4590612587565b60006040518083038185875af1925050503d8060008114611a82576040519150601f19603f3d011682016040523d82523d6000602084013e611a87565b606091505b50509050806108555760405162461bcd60e51b815260040161079d9061283a565b60006001600160e01b031982166380ac58cd60e01b1480611ad957506001600160e01b03198216635b5e139f60e01b145b806106dc57506106dc82611cd3565b610855838383611cec565b611afd8383611d75565b611b0a6000848484611b26565b6108555760405162461bcd60e51b815260040161079d906126a1565b6000611b3a846001600160a01b0316611e54565b15611c3657836001600160a01b031663150b7a02611b566114f8565b8786866040518563ffffffff1660e01b8152600401611b78949392919061259e565b602060405180830381600087803b158015611b9257600080fd5b505af1925050508015611bc2575060408051601f3d908101601f19168201909252611bbf91810190612436565b60015b611c1c573d808015611bf0576040519150601f19603f3d011682016040523d82523d6000602084013e611bf5565b606091505b508051611c145760405162461bcd60e51b815260040161079d906126a1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115e7565b506001949350505050565b6060600c80546106f390612ea3565b6060611c5b826114db565b611c775760405162461bcd60e51b815260040161079d90612bd2565b6000611c81611c41565b90506000815111611ca15760405180602001604052806000815250611ccc565b80611cab84611e5a565b604051602001611cbc92919061252f565b6040516020818303038152906040525b9392505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611cf7838383610855565b6001600160a01b038316611d1357611d0e81611f75565b611d36565b816001600160a01b0316836001600160a01b031614611d3657611d368382611fb9565b6001600160a01b038216611d5257611d4d81612056565b610855565b826001600160a01b0316826001600160a01b03161461085557610855828261212f565b6001600160a01b038216611d9b5760405162461bcd60e51b815260040161079d90612a58565b611da4816114db565b15611dc15760405162461bcd60e51b815260040161079d90612764565b611dcd60008383611ae8565b6001600160a01b0382166000908152600460205260408120805460019290611df6908490612df0565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b606081611e7f57506040805180820190915260018152600360fc1b60208201526106df565b8160005b8115611ea95780611e9381612ede565b9150611ea29050600a83612e2d565b9150611e83565b60008167ffffffffffffffff811115611ed257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611efc576020820181803683370190505b5090505b84156115e757611f11600183612e60565b9150611f1e600a86612ef9565b611f29906030612df0565b60f81b818381518110611f4c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f6e600a86612e2d565b9450611f00565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001611fc684610d21565b611fd09190612e60565b600083815260086020526040902054909150808214612023576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061206890600190612e60565b6000838152600a60205260408120546009805493945090928490811061209e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600983815481106120cd57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061211357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061213a83610d21565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461217f90612ea3565b90600052602060002090601f0160209004810192826121a157600085556121e7565b82601f106121ba57805160ff19168380011785556121e7565b828001600101855582156121e7579182015b828111156121e75782518255916020019190600101906121cc565b506121f39291506121f7565b5090565b5b808211156121f357600081556001016121f8565b600067ffffffffffffffff8084111561222757612227612f39565b604051601f8501601f19168101602001828111828210171561224b5761224b612f39565b60405284815291508183850186101561226357600080fd5b8484602083013760006020868301015250509392505050565b600082601f83011261228c578081fd5b611ccc8383356020850161220c565b6000602082840312156122ac578081fd5b8135611ccc81612f4f565b600080604083850312156122c9578081fd5b82356122d481612f4f565b946020939093013593505050565b600080604083850312156122f4578182fd5b82356122ff81612f4f565b9150602083013561230f81612f4f565b809150509250929050565b60008060006060848603121561232e578081fd5b833561233981612f4f565b9250602084013561234981612f4f565b929592945050506040919091013590565b6000806000806080858703121561236f578081fd5b843561237a81612f4f565b9350602085013561238a81612f4f565b925060408501359150606085013567ffffffffffffffff8111156123ac578182fd5b8501601f810187136123bc578182fd5b6123cb8782356020840161220c565b91505092959194509250565b600080604083850312156123e9578182fd5b82356123f481612f4f565b91506020830135801515811461230f578182fd5b600080604083850312156122c9578182fd5b60006020828403121561242b578081fd5b8135611ccc81612f67565b600060208284031215612447578081fd5b8151611ccc81612f67565b600060208284031215612463578081fd5b813567ffffffffffffffff811115612479578182fd5b6115e78482850161227c565b600060208284031215612496578081fd5b5035919050565b600080604083850312156124af578182fd5b82359150602083013567ffffffffffffffff8111156124cc578182fd5b6124d88582860161227c565b9150509250929050565b600080604083850312156124f4578182fd5b50508035926020909101359150565b6000815180845261251b816020860160208601612e77565b601f01601f19169290920160200192915050565b60008351612541818460208801612e77565b835190830190612555818360208801612e77565b01949350505050565b60008251612570818460208701612e77565b64173539b7b760d91b920191825250600501919050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125d190830184612503565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b8181101561262c57835183529284019291840191600101612610565b50909695505050505050565b901515815260200190565b600060208252611ccc6020830184612503565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b602080825260119082015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252600a908201526973616d6520707269636560b01b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f135a5b9d1a5b99c8191a5cd8589b195960821b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252600c908201526b1cd85b59481c195c98d95b9d60a21b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526025908201527f526f79616c747920746f74616c2076616c75652073686f756c64206265203c20604082015264031303030360dc1b606082015260800190565b60208082526021908201527f4e6f7420656e6f756768204554482073656e743b20636865636b2070726963656040820152602160f81b606082015260800190565b6020808252600b908201526a73616d6520737570706c7960a81b604082015260600190565b90815260200190565b9182526001600160a01b0316602082015260400190565b60008219821115612e0357612e03612f0d565b500190565b600060ff821660ff84168060ff03821115612e2557612e25612f0d565b019392505050565b600082612e3c57612e3c612f23565b500490565b6000816000190483118215151615612e5b57612e5b612f0d565b500290565b600082821015612e7257612e72612f0d565b500390565b60005b83811015612e92578181015183820152602001612e7a565b838111156111505750506000910152565b600281046001821680612eb757607f821691505b60208210811415612ed857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ef257612ef2612f0d565b5060010190565b600082612f0857612f08612f23565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114612f6457600080fd5b50565b6001600160e01b031981168114612f6457600080fdfea26469706673582212200b83757ffcf2d73f5b383a3c2a8ecb4f9d2de871e064fff85e42e475d9a9e93064736f6c63430008000033000000000000000000000000ed1bdbc93bc6741af76910f223b9282732c9b62a

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80638462151c11610123578063b88d4fde116100ab578063f2fde38b1161006f578063f2fde38b14610609578063f340fa0114610629578063f3fef3a31461063c578063f4a0a5281461065c578063fa09e6301461067c5761021a565b8063b88d4fde14610574578063c87b56dd14610594578063daaeec86146105b4578063e3a9db1a146105c9578063e985e9c5146105e95761021a565b8063a22cb465116100f2578063a22cb465146104f5578063a3a51bd514610515578063a7f93ebd1461052a578063b51437151461053f578063b66a0e5d1461055f5761021a565b80638462151c1461047e5780638da5cb5b146104ab5780639466d206146104c057806395d89b41146104e05761021a565b806340c10f19116101a657806361f80f881161017557806361f80f88146103e95780636352211e146104095780636f8b44b01461042957806370a0823114610449578063715018a6146104695761021a565b806340c10f191461037657806342842e0e146103895780634f6ccce7146103a957806355f804b3146103c95761021a565b8063162094c4116101ed578063162094c4146102c657806318160ddd146102e657806323b872dd146103085780632a55205a146103285780632f745c59146103565761021a565b806301ffc9a71461021f57806306fdde0314610255578063081812fc14610277578063095ea7b3146102a4575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461241a565b61069c565b60405161024c9190612638565b60405180910390f35b34801561026157600080fd5b5061026a6106e4565b60405161024c9190612643565b34801561028357600080fd5b50610297610292366004612485565b610776565b60405161024c919061258a565b3480156102b057600080fd5b506102c46102bf366004612408565b6107c2565b005b3480156102d257600080fd5b506102c46102e136600461249d565b61085a565b3480156102f257600080fd5b506102fb610895565b60405161024c9190612dd0565b34801561031457600080fd5b506102c461032336600461231a565b61089b565b34801561033457600080fd5b506103486103433660046124e2565b6108d3565b60405161024c9291906125db565b34801561036257600080fd5b506102fb610371366004612408565b61090a565b6102fb610384366004612408565b61095c565b34801561039557600080fd5b506102c46103a436600461231a565b610ab8565b3480156103b557600080fd5b506102fb6103c4366004612485565b610ad3565b3480156103d557600080fd5b506102c46103e4366004612452565b610b2e565b3480156103f557600080fd5b506102fb61040436600461229b565b610b80565b34801561041557600080fd5b50610297610424366004612485565b610c86565b34801561043557600080fd5b506102c4610444366004612485565b610cbb565b34801561045557600080fd5b506102fb61046436600461229b565b610d21565b34801561047557600080fd5b506102c4610d65565b34801561048a57600080fd5b5061049e61049936600461229b565b610dee565b60405161024c91906125f4565b3480156104b757600080fd5b50610297610ecb565b3480156104cc57600080fd5b506102c46104db366004612485565b610eda565b3480156104ec57600080fd5b5061026a610f61565b34801561050157600080fd5b506102c46105103660046123d7565b610f70565b34801561052157600080fd5b5061029761103e565b34801561053657600080fd5b506102fb61104d565b34801561054b57600080fd5b506102c461055a36600461229b565b611053565b34801561056b57600080fd5b506102c46110cf565b34801561058057600080fd5b506102c461058f36600461235a565b61111d565b3480156105a057600080fd5b5061026a6105af366004612485565b611156565b3480156105c057600080fd5b506102c4611161565b3480156105d557600080fd5b506102fb6105e436600461229b565b6111b4565b3480156105f557600080fd5b5061023f6106043660046122e2565b6111cf565b34801561061557600080fd5b506102c461062436600461229b565b6111fd565b6102c461063736600461229b565b6112bd565b34801561064857600080fd5b506102c46106573660046122b7565b611372565b34801561066857600080fd5b506102c4610677366004612485565b6113fd565b34801561068857600080fd5b506102c461069736600461229b565b611463565b60006001600160e01b0319821663152a902d60e11b14806106cd57506001600160e01b0319821663152a902d60e11b145b806106dc57506106dc826114b6565b90505b919050565b6060600180546106f390612ea3565b80601f016020809104026020016040519081016040528092919081815260200182805461071f90612ea3565b801561076c5780601f106107415761010080835404028352916020019161076c565b820191906000526020600020905b81548152906001019060200180831161074f57829003601f168201915b5050505050905090565b6000610781826114db565b6107a65760405162461bcd60e51b815260040161079d90612ade565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107cd82610c86565b9050806001600160a01b0316836001600160a01b031614156108015760405162461bcd60e51b815260040161079d90612c21565b806001600160a01b03166108136114f8565b6001600160a01b0316148061082f575061082f816106046114f8565b61084b5760405162461bcd60e51b815260040161079d9061291a565b61085583836114fc565b505050565b61086b6108656114f8565b8361156a565b6108875760405162461bcd60e51b815260040161079d90612c88565b61089182826115ef565b5050565b60095490565b6108ac6108a66114f8565b8261156a565b6108c85760405162461bcd60e51b815260040161079d90612c88565b610855838383611633565b6000806000612710601054856108e99190612e41565b6108f39190612e2d565b600f546001600160a01b0316969095509350505050565b600061091583610d21565b82106109335760405162461bcd60e51b815260040161079d90612656565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b60125460009060ff1615156001146109865760405162461bcd60e51b815260040161079d90612b5f565b600e54610991610895565b11156109af5760405162461bcd60e51b815260040161079d90612739565b816011546109bd9190612e41565b3410156109dc5760405162461bcd60e51b815260040161079d90612d6a565b60006109e6610895565b60408051602081019091526000808252919250905b84811015610aae57610a0e836001612df0565b9250610a2e610a1e84600f612e41565b610a29906063612df0565b611760565b604051602001610a3e919061255e565b6040516020818303038152906040529150610a5986846118a6565b610a6383836115ef565b7ff3cea5493d790af0133817606f7350a91d7f154ea52eaa79d179d4d231e501028387604051610a94929190612dd9565b60405180910390a180610aa681612ede565b9150506109fb565b5090949350505050565b6108558383836040518060200160405280600081525061111d565b6000610add610895565b8210610afb5760405162461bcd60e51b815260040161079d90612cd9565b60098281548110610b1c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610b366114f8565b6001600160a01b0316610b47610ecb565b6001600160a01b031614610b6d5760405162461bcd60e51b815260040161079d90612b2a565b805161089190600c906020840190612173565b6000610b8a6114f8565b6001600160a01b0316610b9b610ecb565b6001600160a01b031614610bc15760405162461bcd60e51b815260040161079d90612b2a565b600e54610bcc610895565b1115610bea5760405162461bcd60e51b815260040161079d90612739565b6000610bf4610895565b610bff906001612df0565b90506000610c11610a1e83600f612e41565b604051602001610c21919061255e565b6040516020818303038152906040529050610c3c84836118a6565b610c4682826115ef565b7ff3cea5493d790af0133817606f7350a91d7f154ea52eaa79d179d4d231e501028285604051610c77929190612dd9565b60405180910390a15092915050565b6000818152600360205260408120546001600160a01b0316806106dc5760405162461bcd60e51b815260040161079d906129c1565b610cc36114f8565b6001600160a01b0316610cd4610ecb565b6001600160a01b031614610cfa5760405162461bcd60e51b815260040161079d90612b2a565b80600e541415610d1c5760405162461bcd60e51b815260040161079d90612dab565b600e55565b60006001600160a01b038216610d495760405162461bcd60e51b815260040161079d90612977565b506001600160a01b031660009081526004602052604090205490565b610d6d6114f8565b6001600160a01b0316610d7e610ecb565b6001600160a01b031614610da45760405162461bcd60e51b815260040161079d90612b2a565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606000610dfb83610d21565b905060008167ffffffffffffffff811115610e2657634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610e4f578160200160208202803683370190505b50905081610e6f57505060408051600081526020810190915290506106df565b60005b82811015610ec157610e84858261090a565b828281518110610ea457634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610eb981612ede565b915050610e72565b5091506106df9050565b6000546001600160a01b031690565b610ee26114f8565b6001600160a01b0316610ef3610ecb565b6001600160a01b031614610f195760405162461bcd60e51b815260040161079d90612b2a565b806010541415610f3b5760405162461bcd60e51b815260040161079d90612c62565b6127108110610f5c5760405162461bcd60e51b815260040161079d90612d25565b601055565b6060600280546106f390612ea3565b610f786114f8565b6001600160a01b0316826001600160a01b03161415610fa95760405162461bcd60e51b815260040161079d90612803565b8060066000610fb66114f8565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ffa6114f8565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110329190612638565b60405180910390a35050565b600f546001600160a01b031690565b60115490565b61105b6114f8565b6001600160a01b031661106c610ecb565b6001600160a01b0316146110925760405162461bcd60e51b815260040161079d90612b2a565b600f546001600160a01b03828116911614156110ad57600080fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6110d76114f8565b6001600160a01b03166110e8610ecb565b6001600160a01b03161461110e5760405162461bcd60e51b815260040161079d90612b2a565b6012805460ff19166001179055565b6111286108656114f8565b6111445760405162461bcd60e51b815260040161079d90612c88565b611150848484846118c0565b50505050565b60606106dc826118f3565b6111696114f8565b6001600160a01b031661117a610ecb565b6001600160a01b0316146111a05760405162461bcd60e51b815260040161079d90612b2a565b6012805460ff19811660ff90911615179055565b6001600160a01b031660009081526013602052604090205490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6112056114f8565b6001600160a01b0316611216610ecb565b6001600160a01b03161461123c5760405162461bcd60e51b815260040161079d90612b2a565b6001600160a01b0381166112625760405162461bcd60e51b815260040161079d906126f3565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6112c56114f8565b6001600160a01b03166112d6610ecb565b6001600160a01b0316146112fc5760405162461bcd60e51b815260040161079d90612b2a565b6001600160a01b038116600090815260136020526040812080543492839291611326908490612df0565b92505081905550816001600160a01b03167f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4826040516113669190612dd0565b60405180910390a25050565b61137a6114f8565b6001600160a01b031661138b610ecb565b6001600160a01b0316146113b15760405162461bcd60e51b815260040161079d90612b2a565b6113c46001600160a01b03831682611a0c565b816001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5826040516113669190612dd0565b6114056114f8565b6001600160a01b0316611416610ecb565b6001600160a01b03161461143c5760405162461bcd60e51b815260040161079d90612b2a565b80601154141561145e5760405162461bcd60e51b815260040161079d9061279b565b601155565b61146b6114f8565b6001600160a01b031661147c610ecb565b6001600160a01b0316146114a25760405162461bcd60e51b815260040161079d90612b2a565b476113c46001600160a01b03831682611a0c565b60006001600160e01b0319821663780e9d6360e01b14806106dc57506106dc82611aa8565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061153182610c86565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611575826114db565b6115915760405162461bcd60e51b815260040161079d906128ce565b600061159c83610c86565b9050806001600160a01b0316846001600160a01b031614806115d75750836001600160a01b03166115cc84610776565b6001600160a01b0316145b806115e757506115e781856111cf565b949350505050565b6115f8826114db565b6116145760405162461bcd60e51b815260040161079d90612a0a565b6000828152600b60209081526040909120825161085592840190612173565b826001600160a01b031661164682610c86565b6001600160a01b03161461166c5760405162461bcd60e51b815260040161079d90612b89565b6001600160a01b0382166116925760405162461bcd60e51b815260040161079d906127bf565b61169d838383611ae8565b6116a86000826114fc565b6001600160a01b03831660009081526004602052604081208054600192906116d1908490612e60565b90915550506001600160a01b03821660009081526004602052604081208054600192906116ff908490612df0565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60608161178557506040805180820190915260018152600360fc1b60208201526106df565b8160005b81156117af578061179981612ede565b91506117a89050600a83612e2d565b9150611789565b60008167ffffffffffffffff8111156117d857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611802576020820181803683370190505b509050815b851561189d57611818600182612e60565b90506000611827600a88612e2d565b61183290600a612e41565b61183c9088612e60565b611847906030612e08565b905060008160f81b90508084848151811061187257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611894600a89612e2d565b97505050611807565b50949350505050565b610891828260405180602001604052806000815250611af3565b6118cb848484611633565b6118d784848484611b26565b6111505760405162461bcd60e51b815260040161079d906126a1565b60606118fe826114db565b61191a5760405162461bcd60e51b815260040161079d90612a8d565b6000828152600b60205260408120805461193390612ea3565b80601f016020809104026020016040519081016040528092919081815260200182805461195f90612ea3565b80156119ac5780601f10611981576101008083540402835291602001916119ac565b820191906000526020600020905b81548152906001019060200180831161198f57829003601f168201915b5050505050905060006119bd611c41565b90508051600014156119d1575090506106df565b815115611a035780826040516020016119eb92919061252f565b604051602081830303815290604052925050506106df565b6115e784611c50565b80471015611a2c5760405162461bcd60e51b815260040161079d90612897565b6000826001600160a01b031682604051611a4590612587565b60006040518083038185875af1925050503d8060008114611a82576040519150601f19603f3d011682016040523d82523d6000602084013e611a87565b606091505b50509050806108555760405162461bcd60e51b815260040161079d9061283a565b60006001600160e01b031982166380ac58cd60e01b1480611ad957506001600160e01b03198216635b5e139f60e01b145b806106dc57506106dc82611cd3565b610855838383611cec565b611afd8383611d75565b611b0a6000848484611b26565b6108555760405162461bcd60e51b815260040161079d906126a1565b6000611b3a846001600160a01b0316611e54565b15611c3657836001600160a01b031663150b7a02611b566114f8565b8786866040518563ffffffff1660e01b8152600401611b78949392919061259e565b602060405180830381600087803b158015611b9257600080fd5b505af1925050508015611bc2575060408051601f3d908101601f19168201909252611bbf91810190612436565b60015b611c1c573d808015611bf0576040519150601f19603f3d011682016040523d82523d6000602084013e611bf5565b606091505b508051611c145760405162461bcd60e51b815260040161079d906126a1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115e7565b506001949350505050565b6060600c80546106f390612ea3565b6060611c5b826114db565b611c775760405162461bcd60e51b815260040161079d90612bd2565b6000611c81611c41565b90506000815111611ca15760405180602001604052806000815250611ccc565b80611cab84611e5a565b604051602001611cbc92919061252f565b6040516020818303038152906040525b9392505050565b6001600160e01b031981166301ffc9a760e01b14919050565b611cf7838383610855565b6001600160a01b038316611d1357611d0e81611f75565b611d36565b816001600160a01b0316836001600160a01b031614611d3657611d368382611fb9565b6001600160a01b038216611d5257611d4d81612056565b610855565b826001600160a01b0316826001600160a01b03161461085557610855828261212f565b6001600160a01b038216611d9b5760405162461bcd60e51b815260040161079d90612a58565b611da4816114db565b15611dc15760405162461bcd60e51b815260040161079d90612764565b611dcd60008383611ae8565b6001600160a01b0382166000908152600460205260408120805460019290611df6908490612df0565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b606081611e7f57506040805180820190915260018152600360fc1b60208201526106df565b8160005b8115611ea95780611e9381612ede565b9150611ea29050600a83612e2d565b9150611e83565b60008167ffffffffffffffff811115611ed257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611efc576020820181803683370190505b5090505b84156115e757611f11600183612e60565b9150611f1e600a86612ef9565b611f29906030612df0565b60f81b818381518110611f4c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611f6e600a86612e2d565b9450611f00565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001611fc684610d21565b611fd09190612e60565b600083815260086020526040902054909150808214612023576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061206890600190612e60565b6000838152600a60205260408120546009805493945090928490811061209e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600983815481106120cd57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061211357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061213a83610d21565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b82805461217f90612ea3565b90600052602060002090601f0160209004810192826121a157600085556121e7565b82601f106121ba57805160ff19168380011785556121e7565b828001600101855582156121e7579182015b828111156121e75782518255916020019190600101906121cc565b506121f39291506121f7565b5090565b5b808211156121f357600081556001016121f8565b600067ffffffffffffffff8084111561222757612227612f39565b604051601f8501601f19168101602001828111828210171561224b5761224b612f39565b60405284815291508183850186101561226357600080fd5b8484602083013760006020868301015250509392505050565b600082601f83011261228c578081fd5b611ccc8383356020850161220c565b6000602082840312156122ac578081fd5b8135611ccc81612f4f565b600080604083850312156122c9578081fd5b82356122d481612f4f565b946020939093013593505050565b600080604083850312156122f4578182fd5b82356122ff81612f4f565b9150602083013561230f81612f4f565b809150509250929050565b60008060006060848603121561232e578081fd5b833561233981612f4f565b9250602084013561234981612f4f565b929592945050506040919091013590565b6000806000806080858703121561236f578081fd5b843561237a81612f4f565b9350602085013561238a81612f4f565b925060408501359150606085013567ffffffffffffffff8111156123ac578182fd5b8501601f810187136123bc578182fd5b6123cb8782356020840161220c565b91505092959194509250565b600080604083850312156123e9578182fd5b82356123f481612f4f565b91506020830135801515811461230f578182fd5b600080604083850312156122c9578182fd5b60006020828403121561242b578081fd5b8135611ccc81612f67565b600060208284031215612447578081fd5b8151611ccc81612f67565b600060208284031215612463578081fd5b813567ffffffffffffffff811115612479578182fd5b6115e78482850161227c565b600060208284031215612496578081fd5b5035919050565b600080604083850312156124af578182fd5b82359150602083013567ffffffffffffffff8111156124cc578182fd5b6124d88582860161227c565b9150509250929050565b600080604083850312156124f4578182fd5b50508035926020909101359150565b6000815180845261251b816020860160208601612e77565b601f01601f19169290920160200192915050565b60008351612541818460208801612e77565b835190830190612555818360208801612e77565b01949350505050565b60008251612570818460208701612e77565b64173539b7b760d91b920191825250600501919050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125d190830184612503565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b8181101561262c57835183529284019291840191600101612610565b50909695505050505050565b901515815260200190565b600060208252611ccc6020830184612503565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b602080825260119082015270105b1b081d1bdad95b9cc81b5a5b9d1959607a1b604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252600a908201526973616d6520707269636560b01b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602e908201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60408201526d32bc34b9ba32b73a103a37b5b2b760911b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f135a5b9d1a5b99c8191a5cd8589b195960821b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252600c908201526b1cd85b59481c195c98d95b9d60a21b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526025908201527f526f79616c747920746f74616c2076616c75652073686f756c64206265203c20604082015264031303030360dc1b606082015260800190565b60208082526021908201527f4e6f7420656e6f756768204554482073656e743b20636865636b2070726963656040820152602160f81b606082015260800190565b6020808252600b908201526a73616d6520737570706c7960a81b604082015260600190565b90815260200190565b9182526001600160a01b0316602082015260400190565b60008219821115612e0357612e03612f0d565b500190565b600060ff821660ff84168060ff03821115612e2557612e25612f0d565b019392505050565b600082612e3c57612e3c612f23565b500490565b6000816000190483118215151615612e5b57612e5b612f0d565b500290565b600082821015612e7257612e72612f0d565b500390565b60005b83811015612e92578181015183820152602001612e7a565b838111156111505750506000910152565b600281046001821680612eb757607f821691505b60208210811415612ed857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ef257612ef2612f0d565b5060010190565b600082612f0857612f08612f23565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114612f6457600080fd5b50565b6001600160e01b031981168114612f6457600080fdfea26469706673582212200b83757ffcf2d73f5b383a3c2a8ecb4f9d2de871e064fff85e42e475d9a9e93064736f6c63430008000033

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

000000000000000000000000ed1bdbc93bc6741af76910f223b9282732c9b62a

-----Decoded View---------------
Arg [0] : initialRoyaltiesReceiver (address): 0xed1bdbc93BC6741aF76910F223B9282732C9B62A

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ed1bdbc93bc6741af76910f223b9282732c9b62a


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.