ETH Price: $3,280.25 (-3.82%)
Gas: 15 Gwei

Token

Kumite - Genesis Collection (Kumite)
 

Overview

Max Total Supply

9,599 Kumite

Holders

1,436

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rebekahb.eth
Balance
1 Kumite
0xfc5446efe679f109f2772e45ea623caa63791d5e
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:
Kumite

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

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

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

import "./MinterACLs.sol";
import "./OwnableRoyalties.sol";

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title Kumite
 * Kumite - ERC721 contract
 */
contract Kumite is
    ERC721Enumerable,
    ERC721Burnable,
    OwnableRoyalties,
    MinterACLs
{
    using Counters for Counters.Counter;
    Counters.Counter public nftCount;
    string baseURI;
    address proxyRegistryAddress;
    string contractURL;

    mapping(uint256 => uint256) public lastTransfer;
    uint256 private _useBuyContract = 1;
    uint256 public maxPerMint = 10;
    address public buyContract;
    uint256 public paused = 1;
    uint256 public price = .08 ether;
    uint256 public maxNFTs = 9600;
    string public baseExtension = ".json";

    // Royality fee BPS (1/100ths of a percent, eg 1000 = 10%)
    uint16 private immutable _feeBps = 750;

    constructor(
        string memory _name,
        string memory _symbol,
        uint256 _limit,
        address _proxyRegistryAddress,
        string memory _IPFSURL
    ) ERC721(_name, _symbol) OwnableRoyalties() MinterACLs() {
        proxyRegistryAddress = _proxyRegistryAddress;
        maxNFTs = _limit;
        setBaseURI(string(abi.encodePacked("ipfs://", _IPFSURL, "/")));
        setContractURI(
            string(abi.encodePacked("ipfs://", _IPFSURL, "/metadata.json"))
        );
    }

    modifier salesContract() {
        if (_useBuyContract == 1)
            require(msg.sender == buyContract, "Must be sales contract");
        _;
    }

    function airdrop(address[] memory _addrs) external onlyOwner {
        uint256 supply = nftCount.current();
        require(
            (supply + _addrs.length) < maxNFTs,
            "All NFTs have been minted."
        );
        for (uint256 i = 0; i < _addrs.length; i++) {
            uint256 _id = nftCount.current() + 1;
            _safeMint(_addrs[i], _id);
            nftCount.increment();
        }
    }

    function buy() public payable salesContract {
        require(msg.value >= price, "Not enough to pay for that.");
        uint256 _id = nftCount.current() + 1;
        _buy(_id);
    }

    function buy(uint256 _quantity) public payable salesContract {
        require(msg.value >= price * _quantity, "Not enough to pay for that.");
        require(_quantity <= maxPerMint, "Can't mint that many at a time.");

        for (uint256 _loop = 1; _loop <= _quantity; _loop += 1) {
            uint256 _id = nftCount.current() + 1;
            _buy(_id);
        }
    }

    function _buy(uint256 _id) internal {
        uint256 supply = totalSupply();
        require(paused == 0, "Contract is currently paused.");
        require(
            (_useBuyContract == 1 && msg.sender == buyContract) ||
                _useBuyContract == 0,
            "Must use the buy contract."
        );
        require(supply < maxNFTs, "Not enough left to mint.");
        require(canMint(_id), "Can't mint that NFT");

        _safeMint(tx.origin, _id);
        nftCount.increment();
    }

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

    function pause(uint256 _state) public onlyOwner {
        paused = _state;
    }

    function canMint(uint256 _id) public view virtual returns (bool) {
        return !_exists(_id) && _id > 0 && _id <= maxNFTs;
    }

    function stats()
        public
        view
        virtual
        returns (
            uint256,
            uint256,
            uint256
        )
    {
        return (price, totalSupply(), maxNFTs);
    }

    /**
     * Metadata setters
     */

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

    function setContractURI(string memory _contractURL) public onlyOwner {
        contractURL = _contractURL;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        Strings.toString(tokenId),
                        baseExtension
                    )
                )
                : "";
    }

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

    function setMaxNFTs(uint256 _newMax) public onlyOwner {
        maxNFTs = _newMax;
    }

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

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    /**
     * Buying setters
     */

    function setBuyContract(address _newAddress) public onlyOwner {
        buyContract = _newAddress;
    }

    function setUseBuyContract(uint256 _state) public onlyOwner {
        _useBuyContract = _state;
    }

    function setPrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }

    function setMaxPerMint(uint256 _newMax) public onlyOwner {
        maxPerMint = _newMax;
    }

    /**
     *
     */

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
        lastTransfer[tokenId] = block.timestamp;
    }

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable, IERC165)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

    /**
     * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-free listings.
     * Update it with setProxyAddress
     */
    function setProxyAddress(address _a) public onlyOwner {
        proxyRegistryAddress = _a;
    }

    function isApprovedForAll(address _owner, address _operator)
        public
        view
        override
        returns (bool isOperator)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(_owner)) == _operator) {
            return true;
        }

        return ERC721.isApprovedForAll(_owner, _operator);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 19 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

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 6 of 19 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 8 of 19 : MinterACLs.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @title MinterACLs Contract
 * MinterACLs
 */
abstract contract MinterACLs is Ownable {
    mapping(address => uint256) internal _Minters;

    constructor() {}

    function setMinter(address _minter, uint256 enabled) public onlyOwner {
        _Minters[_minter] = enabled;
    }

    function isMinter(address _minter) public view returns (uint256) {
        return _Minters[_minter];
    }
}

File 9 of 19 : OwnableRoyalties.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/access/Ownable.sol";
import "./protocols/IRaribleRoyalties.sol";
import "./protocols/IERC2981.sol";

/**
 * @title Royalties Contract
 * Royalties spec via IERC2981
 */
abstract contract OwnableRoyalties is Ownable, IRaribleRoyalties, IERC2981 {
    // Superplastic is the owner/recipeint of royalties
    address payable private _recipeint;

    // Royality fee BPS (1/100ths of a percent, eg 1000 = 10%)
    uint16 private immutable _feeBps = 750;

    constructor() {
        _recipeint = payable(msg.sender);
    }

    function setRoyaltyOwner(address payable _royal) public onlyOwner {
        require(
            owner() == _msgSender(),
            "You are not the owner and can't set the royalties"
        );
        _recipeint = _royal;
    }

    // rarible royalties
    function getFeeRecipients(uint256 tokenId)
        public
        view
        override
        returns (address payable[] memory)
    {
        address payable[] memory ret = new address payable[](1);
        ret[0] = payable(_recipeint);
        return ret;
    }

    // rarible royalties
    function getFeeBps(uint256 tokenId)
        public
        view
        override
        returns (uint256[] memory)
    {
        uint256[] memory ret = new uint256[](1);
        ret[0] = uint256(_feeBps);
        return ret;
    }

    // ---
    // More royalities (mintable?) / EIP-2981
    // ---
    function royaltyInfo(uint256 tokenId)
        external
        view
        override
        returns (address receiver, uint256 amount)
    {
        return (_recipeint, uint256(_feeBps) * 100);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

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;
        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");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

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 18 of 19 : IRaribleRoyalties.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// raribles royalty interface
interface IRaribleRoyalties {

    // emitted on mint
    event SecondarySaleFees(uint256 tokenId, address[] recipients, uint[] bps);

    // addresses that should get the fee
    function getFeeRecipients(uint256 tokenId) external view returns (address payable[] memory);

    // fee basis points
    function getFeeBps(uint256 tokenId) external view returns (uint[] memory);

}

File 19 of 19 : IERC2981.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/utils/introspection/IERC165.sol";

// taken from here:
//   https://eips.ethereum.org/EIPS/eip-2981

/**
 * @dev Implementation of royalties for 721s
 *
 */
interface IERC2981 is IERC165 {
    /*
     * ERC165 bytes to add to interface array - set in parent contract implementing this standard
     *
     * bytes4(keccak256('royaltyInfo()')) == 0x46e80720
     * bytes4 private constant _INTERFACE_ID_ERC721ROYALTIES = 0x46e80720;
     * _registerInterface(_INTERFACE_ID_ERC721ROYALTIES);
     */
    /**
    /**
     *      @notice Called to return both the creator's address and the royalty percentage - this would be the main function called by marketplaces unless they specifically        *       need just the royaltyAmount
     *       @notice Percentage is calculated as a fixed point with a scaling factor of 10,000, such that 100% would be the value (1000000) where, 1000000/10000 = 100. 1%          *        would be the value 10000/10000 = 1
     */
    function royaltyInfo(uint256 _tokenId) external returns (address receiver, uint256 amount);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_limit","type":"uint256"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"},{"internalType":"string","name":"_IPFSURL","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"recipients","type":"address[]"},{"indexed":false,"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"name":"SecondarySaleFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_addrs","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buyContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isOperator","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"isMinter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxNFTs","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftCount","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"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":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setBuyContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURL","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"},{"internalType":"uint256","name":"enabled","type":"uint256"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_a","type":"address"}],"name":"setProxyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_royal","type":"address"}],"name":"setRoyaltyOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_state","type":"uint256"}],"name":"setUseBuyContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stats","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61017760f11b60805260016012819055600a60135560155567011c37937e080000601655612580601755610100604052600560c081905264173539b7b760d91b60e09081526200005391601891906200026f565b5061017760f11b60a0523480156200006a57600080fd5b50604051620034d3380380620034d38339810160408190526200008d91620003a6565b84846200009a336200015c565b8151620000af9060019060208501906200026f565b508051620000c59060029060208401906200026f565b5050600b8054336001600160a01b031991821617909155600f80549091166001600160a01b03851617905550601783905560405162000124906200010e908390602001620004ac565b60408051601f19818403018152919052620001ac565b62000151816040516020016200013b919062000463565b60408051601f1981840301815291905262000214565b50505050506200056e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000546001600160a01b03163314620001fb5760405162461bcd60e51b81526020600482018190526024820152600080516020620034b383398151915260448201526064015b60405180910390fd5b80516200021090600e9060208401906200026f565b5050565b6000546001600160a01b031633146200025f5760405162461bcd60e51b81526020600482018190526024820152600080516020620034b38339815191526044820152606401620001f2565b8051620002109060109060208401905b8280546200027d906200051b565b90600052602060002090601f016020900481019282620002a15760008555620002ec565b82601f10620002bc57805160ff1916838001178555620002ec565b82800160010185558215620002ec579182015b82811115620002ec578251825591602001919060010190620002cf565b50620002fa929150620002fe565b5090565b5b80821115620002fa5760008155600101620002ff565b600082601f8301126200032757600080fd5b81516001600160401b038082111562000344576200034462000558565b604051601f8301601f19908116603f011681019082821181831017156200036f576200036f62000558565b816040528381528660208588010111156200038957600080fd5b6200039c846020830160208901620004e8565b9695505050505050565b600080600080600060a08688031215620003bf57600080fd5b85516001600160401b0380821115620003d757600080fd5b620003e589838a0162000315565b96506020880151915080821115620003fc57600080fd5b6200040a89838a0162000315565b604089015160608a0151919750955091506001600160a01b03821682146200043157600080fd5b6080880151919350808211156200044757600080fd5b50620004568882890162000315565b9150509295509295909350565b66697066733a2f2f60c81b81526000825162000487816007850160208701620004e8565b6d17b6b2ba30b230ba30973539b7b760911b6007939091019283015250601501919050565b66697066733a2f2f60c81b815260008251620004d0816007850160208701620004e8565b602f60f81b6007939091019283015250600801919050565b60005b8381101562000505578181015183820152602001620004eb565b8381111562000515576000848401525b50505050565b600181811c908216806200053057607f821691505b602082108114156200055257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160f01c60a05160f01c612f156200059e6000396000505060008181610bd501526116310152612f156000f3fe6080604052600436106102e45760003560e01c80637103ef0d11610190578063b88d4fde116100dc578063d96a094a11610095578063de866db11161006f578063de866db1146108e5578063e8a3d48514610905578063e985e9c51461091a578063f2fde38b1461093a57600080fd5b8063d96a094a14610892578063da3ef23f146108a5578063db6242c3146108c557600080fd5b8063b88d4fde146107a1578063b9c4d9fb146107c1578063c6682862146107ee578063c87b56dd14610803578063cef6d36814610823578063d80528ae1461086257600080fd5b806395d89b4111610149578063a22cb46511610123578063a22cb46514610723578063a552bf9514610743578063a6f2ae3a14610763578063aa271e1a1461076b57600080fd5b806395d89b41146106d85780639ce38998146106ed578063a035b1fe1461070d57600080fd5b80637103ef0d14610625578063715018a614610645578063729ad39e1461065a5780638da5cb5b1461067a57806391b7f5ed14610698578063938e3d7b146106b857600080fd5b80633ccfd60b1161024f5780634f6ccce7116102085780635c975abb116101e25780635c975abb146105af5780635dd871a3146105c55780636352211e146105e557806370a082311461060557600080fd5b80634f6ccce714610559578063507e094f1461057957806355f804b31461058f57600080fd5b80633ccfd60b146104a15780634139493e146104b657806342842e0e146104e357806342966c681461050357806346a7dadc146105235780634e9e1ec61461054357600080fd5b8063136439dd116102a1578063136439dd146103ec57806318160ddd1461040c57806323b872dd146104215780632525b3d714610441578063267531f9146104615780632f745c591461048157600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b3146103785780630af2c6ca1461039a5780630ebd4c7f146103bf575b600080fd5b3480156102f557600080fd5b506103096103043660046129c7565b61095a565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033361096b565b6040516103159190612c32565b34801561034c57600080fd5b5061036061035b366004612a67565b6109fd565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b506103986103933660046128e2565b610a97565b005b3480156103a657600080fd5b50600d546103b19081565b604051908152602001610315565b3480156103cb57600080fd5b506103df6103da366004612a67565b610bad565b6040516103159190612bfa565b3480156103f857600080fd5b50610398610407366004612a67565b610c1c565b34801561041857600080fd5b506009546103b1565b34801561042d57600080fd5b5061039861043c3660046127ee565b610c4b565b34801561044d57600080fd5b5061039861045c366004612798565b610c7d565b34801561046d57600080fd5b5061039861047c366004612a67565b610d3d565b34801561048d57600080fd5b506103b161049c3660046128e2565b610d6c565b3480156104ad57600080fd5b50610398610e02565b3480156104c257600080fd5b506103b16104d1366004612a67565b60116020526000908152604090205481565b3480156104ef57600080fd5b506103986104fe3660046127ee565b610e5f565b34801561050f57600080fd5b5061039861051e366004612a67565b610e7a565b34801561052f57600080fd5b5061039861053e366004612798565b610ef4565b34801561054f57600080fd5b506103b160175481565b34801561056557600080fd5b506103b1610574366004612a67565b610f40565b34801561058557600080fd5b506103b160135481565b34801561059b57600080fd5b506103986105aa366004612a1e565b610fd3565b3480156105bb57600080fd5b506103b160155481565b3480156105d157600080fd5b506103096105e0366004612a67565b611010565b3480156105f157600080fd5b50610360610600366004612a67565b611045565b34801561061157600080fd5b506103b1610620366004612798565b6110bc565b34801561063157600080fd5b50610398610640366004612798565b611143565b34801561065157600080fd5b5061039861118f565b34801561066657600080fd5b5061039861067536600461290e565b6111c5565b34801561068657600080fd5b506000546001600160a01b0316610360565b3480156106a457600080fd5b506103986106b3366004612a67565b6112c1565b3480156106c457600080fd5b506103986106d3366004612a1e565b6112f0565b3480156106e457600080fd5b5061033361132d565b3480156106f957600080fd5b506103986107083660046128e2565b61133c565b34801561071957600080fd5b506103b160165481565b34801561072f57600080fd5b5061039861073e3660046128af565b611382565b34801561074f57600080fd5b5061039861075e366004612a67565b61138d565b6103986113bc565b34801561077757600080fd5b506103b1610786366004612798565b6001600160a01b03166000908152600c602052604090205490565b3480156107ad57600080fd5b506103986107bc36600461282f565b61148d565b3480156107cd57600080fd5b506107e16107dc366004612a67565b6114c5565b6040516103159190612bad565b3480156107fa57600080fd5b50610333611529565b34801561080f57600080fd5b5061033361081e366004612a67565b6115b7565b34801561082f57600080fd5b5061084361083e366004612a67565b611618565b604080516001600160a01b039093168352602083019190915201610315565b34801561086e57600080fd5b50610877611661565b60408051938452602084019290925290820152606001610315565b6103986108a0366004612a67565b611680565b3480156108b157600080fd5b506103986108c0366004612a1e565b6117cb565b3480156108d157600080fd5b506103986108e0366004612a67565b611808565b3480156108f157600080fd5b50601454610360906001600160a01b031681565b34801561091157600080fd5b50610333611837565b34801561092657600080fd5b506103096109353660046127b5565b611846565b34801561094657600080fd5b50610398610955366004612798565b611916565b6000610965826119ae565b92915050565b60606001805461097a90612ddc565b80601f01602080910402602001604051908101604052809291908181526020018280546109a690612ddc565b80156109f35780601f106109c8576101008083540402835291602001916109f3565b820191906000526020600020905b8154815290600101906020018083116109d657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610a7b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610aa282611045565b9050806001600160a01b0316836001600160a01b03161415610b105760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a72565b336001600160a01b0382161480610b2c5750610b2c8133611846565b610b9e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a72565b610ba883836119d3565b505050565b60408051600180825281830190925260609160009190602080830190803683370190505090507f000000000000000000000000000000000000000000000000000000000000000061ffff1681600081518110610c0b57610c0b612e88565b602090810291909101015292915050565b6000546001600160a01b03163314610c465760405162461bcd60e51b8152600401610a7290612c97565b601555565b610c56335b82611a41565b610c725760405162461bcd60e51b8152600401610a7290612ccc565b610ba8838383611b10565b6000546001600160a01b03163314610ca75760405162461bcd60e51b8152600401610a7290612c97565b6000546001600160a01b03163314610d1b5760405162461bcd60e51b815260206004820152603160248201527f596f7520617265206e6f7420746865206f776e657220616e642063616e2774206044820152707365742074686520726f79616c7469657360781b6064820152608401610a72565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610d675760405162461bcd60e51b8152600401610a7290612c97565b601255565b6000610d77836110bc565b8210610dd95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a72565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610e2c5760405162461bcd60e51b8152600401610a7290612c97565b6040514790339082156108fc029083906000818181858888f19350505050158015610e5b573d6000803e3d6000fd5b5050565b610ba88383836040518060200160405280600081525061148d565b610e8333610c50565b610ee85760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a72565b610ef181611cbb565b50565b6000546001600160a01b03163314610f1e5760405162461bcd60e51b8152600401610a7290612c97565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610f4b60095490565b8210610fae5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a72565b60098281548110610fc157610fc1612e88565b90600052602060002001549050919050565b6000546001600160a01b03163314610ffd5760405162461bcd60e51b8152600401610a7290612c97565b8051610e5b90600e9060208401906126a7565b6000818152600360205260408120546001600160a01b03161580156110355750600082115b8015610965575050601754101590565b6000818152600360205260408120546001600160a01b0316806109655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a72565b60006001600160a01b0382166111275760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a72565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461116d5760405162461bcd60e51b8152600401610a7290612c97565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146111b95760405162461bcd60e51b8152600401610a7290612c97565b6111c36000611d62565b565b6000546001600160a01b031633146111ef5760405162461bcd60e51b8152600401610a7290612c97565b60006111fa600d5490565b905060175482518261120c9190612d4e565b106112595760405162461bcd60e51b815260206004820152601a60248201527f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006044820152606401610a72565b60005b8251811015610ba8576000611270600d5490565b61127b906001612d4e565b90506112a084838151811061129257611292612e88565b602002602001015182611db2565b6112ae600d80546001019055565b50806112b981612e17565b91505061125c565b6000546001600160a01b031633146112eb5760405162461bcd60e51b8152600401610a7290612c97565b601655565b6000546001600160a01b0316331461131a5760405162461bcd60e51b8152600401610a7290612c97565b8051610e5b9060109060208401906126a7565b60606002805461097a90612ddc565b6000546001600160a01b031633146113665760405162461bcd60e51b8152600401610a7290612c97565b6001600160a01b039091166000908152600c6020526040902055565b610e5b338383611dcc565b6000546001600160a01b031633146113b75760405162461bcd60e51b8152600401610a7290612c97565b601755565b6012546001141561141a576014546001600160a01b0316331461141a5760405162461bcd60e51b8152602060048201526016602482015275135d5cdd081899481cd85b195cc818dbdb9d1c9858dd60521b6044820152606401610a72565b60165434101561146c5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f2070617920666f7220746861742e00000000006044820152606401610a72565b6000611477600d5490565b611482906001612d4e565b9050610ef181611e9b565b6114973383611a41565b6114b35760405162461bcd60e51b8152600401610a7290612ccc565b6114bf84848484612021565b50505050565b60408051600180825281830190925260609160009190602080830190803683375050600b5482519293506001600160a01b03169183915060009061150b5761150b612e88565b6001600160a01b039092166020928302919091019091015292915050565b6018805461153690612ddc565b80601f016020809104026020016040519081016040528092919081815260200182805461156290612ddc565b80156115af5780601f10611584576101008083540402835291602001916115af565b820191906000526020600020905b81548152906001019060200180831161159257829003601f168201915b505050505081565b606060006115c3612054565b905060008151116115e35760405180602001604052806000815250611611565b806115ed84612063565b601860405160200161160193929190612aac565b6040516020818303038152906040525b9392505050565b600b5460009081906001600160a01b031661165861ffff7f0000000000000000000000000000000000000000000000000000000000000000166064612d7a565b91509150915091565b600080600060165461167260095490565b601754925092509250909192565b601254600114156116de576014546001600160a01b031633146116de5760405162461bcd60e51b8152602060048201526016602482015275135d5cdd081899481cd85b195cc818dbdb9d1c9858dd60521b6044820152606401610a72565b806016546116ec9190612d7a565b34101561173b5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f2070617920666f7220746861742e00000000006044820152606401610a72565b60135481111561178d5760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e742074686174206d616e7920617420612074696d652e006044820152606401610a72565b60015b818111610e5b5760006117a2600d5490565b6117ad906001612d4e565b90506117b881611e9b565b506117c4600182612d4e565b9050611790565b6000546001600160a01b031633146117f55760405162461bcd60e51b8152600401610a7290612c97565b8051610e5b9060189060208401906126a7565b6000546001600160a01b031633146118325760405162461bcd60e51b8152600401610a7290612c97565b601355565b60606010805461097a90612ddc565b600f5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561189357600080fd5b505afa1580156118a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118cb9190612a01565b6001600160a01b031614156118e4576001915050610965565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6000546001600160a01b031633146119405760405162461bcd60e51b8152600401610a7290612c97565b6001600160a01b0381166119a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a72565b610ef181611d62565b60006001600160e01b0319821663780e9d6360e01b1480610965575061096582612161565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a0882611045565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611aba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a72565b6000611ac583611045565b9050806001600160a01b0316846001600160a01b03161480611b005750836001600160a01b0316611af5846109fd565b6001600160a01b0316145b8061190e575061190e8185611846565b826001600160a01b0316611b2382611045565b6001600160a01b031614611b8b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a72565b6001600160a01b038216611bed5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a72565b611bf88383836121b1565b611c036000826119d3565b6001600160a01b0383166000908152600460205260408120805460019290611c2c908490612d99565b90915550506001600160a01b0382166000908152600460205260408120805460019290611c5a908490612d4e565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611cc682611045565b9050611cd4816000846121b1565b611cdf6000836119d3565b6001600160a01b0381166000908152600460205260408120805460019290611d08908490612d99565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610e5b8282604051806020016040528060008152506121d1565b816001600160a01b0316836001600160a01b03161415611e2e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a72565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000611ea660095490565b9050601554600014611efa5760405162461bcd60e51b815260206004820152601d60248201527f436f6e74726163742069732063757272656e746c79207061757365642e0000006044820152606401610a72565b6012546001148015611f1657506014546001600160a01b031633145b80611f215750601254155b611f6d5760405162461bcd60e51b815260206004820152601a60248201527f4d75737420757365207468652062757920636f6e74726163742e0000000000006044820152606401610a72565b6017548110611fbe5760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656e6f756768206c65667420746f206d696e742e00000000000000006044820152606401610a72565b611fc782611010565b6120095760405162461bcd60e51b815260206004820152601360248201527210d85b89dd081b5a5b9d081d1a185d08139195606a1b6044820152606401610a72565b6120133283611db2565b610e5b600d80546001019055565b61202c848484611b10565b61203884848484612204565b6114bf5760405162461bcd60e51b8152600401610a7290612c45565b6060600e805461097a90612ddc565b6060816120875750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120b1578061209b81612e17565b91506120aa9050600a83612d66565b915061208b565b60008167ffffffffffffffff8111156120cc576120cc612e9e565b6040519080825280601f01601f1916602001820160405280156120f6576020820181803683370190505b5090505b841561190e5761210b600183612d99565b9150612118600a86612e32565b612123906030612d4e565b60f81b81838151811061213857612138612e88565b60200101906001600160f81b031916908160001a90535061215a600a86612d66565b94506120fa565b60006001600160e01b031982166380ac58cd60e01b148061219257506001600160e01b03198216635b5e139f60e01b145b8061096557506301ffc9a760e01b6001600160e01b0319831614610965565b6121bc838383612311565b60009081526011602052604090204290555050565b6121db83836123c9565b6121e86000848484612204565b610ba85760405162461bcd60e51b8152600401610a7290612c45565b60006001600160a01b0384163b1561230657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612248903390899088908890600401612b70565b602060405180830381600087803b15801561226257600080fd5b505af1925050508015612292575060408051601f3d908101601f1916820190925261228f918101906129e4565b60015b6122ec573d8080156122c0576040519150601f19603f3d011682016040523d82523d6000602084013e6122c5565b606091505b5080516122e45760405162461bcd60e51b8152600401610a7290612c45565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061190e565b506001949350505050565b6001600160a01b03831661236c5761236781600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61238f565b816001600160a01b0316836001600160a01b03161461238f5761238f8382612517565b6001600160a01b0382166123a657610ba8816125b4565b826001600160a01b0316826001600160a01b031614610ba857610ba88282612663565b6001600160a01b03821661241f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a72565b6000818152600360205260409020546001600160a01b0316156124845760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a72565b612490600083836121b1565b6001600160a01b03821660009081526004602052604081208054600192906124b9908490612d4e565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612524846110bc565b61252e9190612d99565b600083815260086020526040902054909150808214612581576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906125c690600190612d99565b6000838152600a6020526040812054600980549394509092849081106125ee576125ee612e88565b90600052602060002001549050806009838154811061260f5761260f612e88565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061264757612647612e72565b6001900381819060005260206000200160009055905550505050565b600061266e836110bc565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546126b390612ddc565b90600052602060002090601f0160209004810192826126d5576000855561271b565b82601f106126ee57805160ff191683800117855561271b565b8280016001018555821561271b579182015b8281111561271b578251825591602001919060010190612700565b5061272792915061272b565b5090565b5b80821115612727576000815560010161272c565b600067ffffffffffffffff83111561275a5761275a612e9e565b61276d601f8401601f1916602001612d1d565b905082815283838301111561278157600080fd5b828260208301376000602084830101529392505050565b6000602082840312156127aa57600080fd5b813561161181612eb4565b600080604083850312156127c857600080fd5b82356127d381612eb4565b915060208301356127e381612eb4565b809150509250929050565b60008060006060848603121561280357600080fd5b833561280e81612eb4565b9250602084013561281e81612eb4565b929592945050506040919091013590565b6000806000806080858703121561284557600080fd5b843561285081612eb4565b9350602085013561286081612eb4565b925060408501359150606085013567ffffffffffffffff81111561288357600080fd5b8501601f8101871361289457600080fd5b6128a387823560208401612740565b91505092959194509250565b600080604083850312156128c257600080fd5b82356128cd81612eb4565b9150602083013580151581146127e357600080fd5b600080604083850312156128f557600080fd5b823561290081612eb4565b946020939093013593505050565b6000602080838503121561292157600080fd5b823567ffffffffffffffff8082111561293957600080fd5b818501915085601f83011261294d57600080fd5b81358181111561295f5761295f612e9e565b8060051b9150612970848301612d1d565b8181528481019084860184860187018a101561298b57600080fd5b600095505b838610156129ba57803594506129a585612eb4565b84835260019590950194918601918601612990565b5098975050505050505050565b6000602082840312156129d957600080fd5b813561161181612ec9565b6000602082840312156129f657600080fd5b815161161181612ec9565b600060208284031215612a1357600080fd5b815161161181612eb4565b600060208284031215612a3057600080fd5b813567ffffffffffffffff811115612a4757600080fd5b8201601f81018413612a5857600080fd5b61190e84823560208401612740565b600060208284031215612a7957600080fd5b5035919050565b60008151808452612a98816020860160208601612db0565b601f01601f19169290920160200192915050565b600084516020612abf8285838a01612db0565b855191840191612ad28184848a01612db0565b8554920191600090600181811c9080831680612aef57607f831692505b858310811415612b0d57634e487b7160e01b85526022600452602485fd5b808015612b215760018114612b3257612b5f565b60ff19851688528388019550612b5f565b60008b81526020902060005b85811015612b575781548a820152908401908801612b3e565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ba390830184612a80565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612bee5783516001600160a01b031683529284019291840191600101612bc9565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612bee57835183529284019291840191600101612c16565b6020815260006116116020830184612a80565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612d4657612d46612e9e565b604052919050565b60008219821115612d6157612d61612e46565b500190565b600082612d7557612d75612e5c565b500490565b6000816000190483118215151615612d9457612d94612e46565b500290565b600082821015612dab57612dab612e46565b500390565b60005b83811015612dcb578181015183820152602001612db3565b838111156114bf5750506000910152565b600181811c90821680612df057607f821691505b60208210811415612e1157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e2b57612e2b612e46565b5060010190565b600082612e4157612e41612e5c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ef157600080fd5b6001600160e01b031981168114610ef157600080fdfea2646970667358221220e6dae18dfb5b8662955ba2d9999aea90c91ccd8defa7e29a95266e7725515edd64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000002580000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001b4b756d697465202d2047656e6573697320436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000064b756d69746500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5535764c4771633538593562554846457131484e68594b39627634366759784d384e415270576643626b53610000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80637103ef0d11610190578063b88d4fde116100dc578063d96a094a11610095578063de866db11161006f578063de866db1146108e5578063e8a3d48514610905578063e985e9c51461091a578063f2fde38b1461093a57600080fd5b8063d96a094a14610892578063da3ef23f146108a5578063db6242c3146108c557600080fd5b8063b88d4fde146107a1578063b9c4d9fb146107c1578063c6682862146107ee578063c87b56dd14610803578063cef6d36814610823578063d80528ae1461086257600080fd5b806395d89b4111610149578063a22cb46511610123578063a22cb46514610723578063a552bf9514610743578063a6f2ae3a14610763578063aa271e1a1461076b57600080fd5b806395d89b41146106d85780639ce38998146106ed578063a035b1fe1461070d57600080fd5b80637103ef0d14610625578063715018a614610645578063729ad39e1461065a5780638da5cb5b1461067a57806391b7f5ed14610698578063938e3d7b146106b857600080fd5b80633ccfd60b1161024f5780634f6ccce7116102085780635c975abb116101e25780635c975abb146105af5780635dd871a3146105c55780636352211e146105e557806370a082311461060557600080fd5b80634f6ccce714610559578063507e094f1461057957806355f804b31461058f57600080fd5b80633ccfd60b146104a15780634139493e146104b657806342842e0e146104e357806342966c681461050357806346a7dadc146105235780634e9e1ec61461054357600080fd5b8063136439dd116102a1578063136439dd146103ec57806318160ddd1461040c57806323b872dd146104215780632525b3d714610441578063267531f9146104615780632f745c591461048157600080fd5b806301ffc9a7146102e957806306fdde031461031e578063081812fc14610340578063095ea7b3146103785780630af2c6ca1461039a5780630ebd4c7f146103bf575b600080fd5b3480156102f557600080fd5b506103096103043660046129c7565b61095a565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033361096b565b6040516103159190612c32565b34801561034c57600080fd5b5061036061035b366004612a67565b6109fd565b6040516001600160a01b039091168152602001610315565b34801561038457600080fd5b506103986103933660046128e2565b610a97565b005b3480156103a657600080fd5b50600d546103b19081565b604051908152602001610315565b3480156103cb57600080fd5b506103df6103da366004612a67565b610bad565b6040516103159190612bfa565b3480156103f857600080fd5b50610398610407366004612a67565b610c1c565b34801561041857600080fd5b506009546103b1565b34801561042d57600080fd5b5061039861043c3660046127ee565b610c4b565b34801561044d57600080fd5b5061039861045c366004612798565b610c7d565b34801561046d57600080fd5b5061039861047c366004612a67565b610d3d565b34801561048d57600080fd5b506103b161049c3660046128e2565b610d6c565b3480156104ad57600080fd5b50610398610e02565b3480156104c257600080fd5b506103b16104d1366004612a67565b60116020526000908152604090205481565b3480156104ef57600080fd5b506103986104fe3660046127ee565b610e5f565b34801561050f57600080fd5b5061039861051e366004612a67565b610e7a565b34801561052f57600080fd5b5061039861053e366004612798565b610ef4565b34801561054f57600080fd5b506103b160175481565b34801561056557600080fd5b506103b1610574366004612a67565b610f40565b34801561058557600080fd5b506103b160135481565b34801561059b57600080fd5b506103986105aa366004612a1e565b610fd3565b3480156105bb57600080fd5b506103b160155481565b3480156105d157600080fd5b506103096105e0366004612a67565b611010565b3480156105f157600080fd5b50610360610600366004612a67565b611045565b34801561061157600080fd5b506103b1610620366004612798565b6110bc565b34801561063157600080fd5b50610398610640366004612798565b611143565b34801561065157600080fd5b5061039861118f565b34801561066657600080fd5b5061039861067536600461290e565b6111c5565b34801561068657600080fd5b506000546001600160a01b0316610360565b3480156106a457600080fd5b506103986106b3366004612a67565b6112c1565b3480156106c457600080fd5b506103986106d3366004612a1e565b6112f0565b3480156106e457600080fd5b5061033361132d565b3480156106f957600080fd5b506103986107083660046128e2565b61133c565b34801561071957600080fd5b506103b160165481565b34801561072f57600080fd5b5061039861073e3660046128af565b611382565b34801561074f57600080fd5b5061039861075e366004612a67565b61138d565b6103986113bc565b34801561077757600080fd5b506103b1610786366004612798565b6001600160a01b03166000908152600c602052604090205490565b3480156107ad57600080fd5b506103986107bc36600461282f565b61148d565b3480156107cd57600080fd5b506107e16107dc366004612a67565b6114c5565b6040516103159190612bad565b3480156107fa57600080fd5b50610333611529565b34801561080f57600080fd5b5061033361081e366004612a67565b6115b7565b34801561082f57600080fd5b5061084361083e366004612a67565b611618565b604080516001600160a01b039093168352602083019190915201610315565b34801561086e57600080fd5b50610877611661565b60408051938452602084019290925290820152606001610315565b6103986108a0366004612a67565b611680565b3480156108b157600080fd5b506103986108c0366004612a1e565b6117cb565b3480156108d157600080fd5b506103986108e0366004612a67565b611808565b3480156108f157600080fd5b50601454610360906001600160a01b031681565b34801561091157600080fd5b50610333611837565b34801561092657600080fd5b506103096109353660046127b5565b611846565b34801561094657600080fd5b50610398610955366004612798565b611916565b6000610965826119ae565b92915050565b60606001805461097a90612ddc565b80601f01602080910402602001604051908101604052809291908181526020018280546109a690612ddc565b80156109f35780601f106109c8576101008083540402835291602001916109f3565b820191906000526020600020905b8154815290600101906020018083116109d657829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b0316610a7b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610aa282611045565b9050806001600160a01b0316836001600160a01b03161415610b105760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a72565b336001600160a01b0382161480610b2c5750610b2c8133611846565b610b9e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a72565b610ba883836119d3565b505050565b60408051600180825281830190925260609160009190602080830190803683370190505090507f00000000000000000000000000000000000000000000000000000000000002ee61ffff1681600081518110610c0b57610c0b612e88565b602090810291909101015292915050565b6000546001600160a01b03163314610c465760405162461bcd60e51b8152600401610a7290612c97565b601555565b610c56335b82611a41565b610c725760405162461bcd60e51b8152600401610a7290612ccc565b610ba8838383611b10565b6000546001600160a01b03163314610ca75760405162461bcd60e51b8152600401610a7290612c97565b6000546001600160a01b03163314610d1b5760405162461bcd60e51b815260206004820152603160248201527f596f7520617265206e6f7420746865206f776e657220616e642063616e2774206044820152707365742074686520726f79616c7469657360781b6064820152608401610a72565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610d675760405162461bcd60e51b8152600401610a7290612c97565b601255565b6000610d77836110bc565b8210610dd95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a72565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b03163314610e2c5760405162461bcd60e51b8152600401610a7290612c97565b6040514790339082156108fc029083906000818181858888f19350505050158015610e5b573d6000803e3d6000fd5b5050565b610ba88383836040518060200160405280600081525061148d565b610e8333610c50565b610ee85760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a72565b610ef181611cbb565b50565b6000546001600160a01b03163314610f1e5760405162461bcd60e51b8152600401610a7290612c97565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610f4b60095490565b8210610fae5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a72565b60098281548110610fc157610fc1612e88565b90600052602060002001549050919050565b6000546001600160a01b03163314610ffd5760405162461bcd60e51b8152600401610a7290612c97565b8051610e5b90600e9060208401906126a7565b6000818152600360205260408120546001600160a01b03161580156110355750600082115b8015610965575050601754101590565b6000818152600360205260408120546001600160a01b0316806109655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a72565b60006001600160a01b0382166111275760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a72565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b0316331461116d5760405162461bcd60e51b8152600401610a7290612c97565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146111b95760405162461bcd60e51b8152600401610a7290612c97565b6111c36000611d62565b565b6000546001600160a01b031633146111ef5760405162461bcd60e51b8152600401610a7290612c97565b60006111fa600d5490565b905060175482518261120c9190612d4e565b106112595760405162461bcd60e51b815260206004820152601a60248201527f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006044820152606401610a72565b60005b8251811015610ba8576000611270600d5490565b61127b906001612d4e565b90506112a084838151811061129257611292612e88565b602002602001015182611db2565b6112ae600d80546001019055565b50806112b981612e17565b91505061125c565b6000546001600160a01b031633146112eb5760405162461bcd60e51b8152600401610a7290612c97565b601655565b6000546001600160a01b0316331461131a5760405162461bcd60e51b8152600401610a7290612c97565b8051610e5b9060109060208401906126a7565b60606002805461097a90612ddc565b6000546001600160a01b031633146113665760405162461bcd60e51b8152600401610a7290612c97565b6001600160a01b039091166000908152600c6020526040902055565b610e5b338383611dcc565b6000546001600160a01b031633146113b75760405162461bcd60e51b8152600401610a7290612c97565b601755565b6012546001141561141a576014546001600160a01b0316331461141a5760405162461bcd60e51b8152602060048201526016602482015275135d5cdd081899481cd85b195cc818dbdb9d1c9858dd60521b6044820152606401610a72565b60165434101561146c5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f2070617920666f7220746861742e00000000006044820152606401610a72565b6000611477600d5490565b611482906001612d4e565b9050610ef181611e9b565b6114973383611a41565b6114b35760405162461bcd60e51b8152600401610a7290612ccc565b6114bf84848484612021565b50505050565b60408051600180825281830190925260609160009190602080830190803683375050600b5482519293506001600160a01b03169183915060009061150b5761150b612e88565b6001600160a01b039092166020928302919091019091015292915050565b6018805461153690612ddc565b80601f016020809104026020016040519081016040528092919081815260200182805461156290612ddc565b80156115af5780601f10611584576101008083540402835291602001916115af565b820191906000526020600020905b81548152906001019060200180831161159257829003601f168201915b505050505081565b606060006115c3612054565b905060008151116115e35760405180602001604052806000815250611611565b806115ed84612063565b601860405160200161160193929190612aac565b6040516020818303038152906040525b9392505050565b600b5460009081906001600160a01b031661165861ffff7f00000000000000000000000000000000000000000000000000000000000002ee166064612d7a565b91509150915091565b600080600060165461167260095490565b601754925092509250909192565b601254600114156116de576014546001600160a01b031633146116de5760405162461bcd60e51b8152602060048201526016602482015275135d5cdd081899481cd85b195cc818dbdb9d1c9858dd60521b6044820152606401610a72565b806016546116ec9190612d7a565b34101561173b5760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f2070617920666f7220746861742e00000000006044820152606401610a72565b60135481111561178d5760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e742074686174206d616e7920617420612074696d652e006044820152606401610a72565b60015b818111610e5b5760006117a2600d5490565b6117ad906001612d4e565b90506117b881611e9b565b506117c4600182612d4e565b9050611790565b6000546001600160a01b031633146117f55760405162461bcd60e51b8152600401610a7290612c97565b8051610e5b9060189060208401906126a7565b6000546001600160a01b031633146118325760405162461bcd60e51b8152600401610a7290612c97565b601355565b60606010805461097a90612ddc565b600f5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561189357600080fd5b505afa1580156118a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118cb9190612a01565b6001600160a01b031614156118e4576001915050610965565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6000546001600160a01b031633146119405760405162461bcd60e51b8152600401610a7290612c97565b6001600160a01b0381166119a55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a72565b610ef181611d62565b60006001600160e01b0319821663780e9d6360e01b1480610965575061096582612161565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a0882611045565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b0316611aba5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a72565b6000611ac583611045565b9050806001600160a01b0316846001600160a01b03161480611b005750836001600160a01b0316611af5846109fd565b6001600160a01b0316145b8061190e575061190e8185611846565b826001600160a01b0316611b2382611045565b6001600160a01b031614611b8b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a72565b6001600160a01b038216611bed5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a72565b611bf88383836121b1565b611c036000826119d3565b6001600160a01b0383166000908152600460205260408120805460019290611c2c908490612d99565b90915550506001600160a01b0382166000908152600460205260408120805460019290611c5a908490612d4e565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000611cc682611045565b9050611cd4816000846121b1565b611cdf6000836119d3565b6001600160a01b0381166000908152600460205260408120805460019290611d08908490612d99565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610e5b8282604051806020016040528060008152506121d1565b816001600160a01b0316836001600160a01b03161415611e2e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a72565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000611ea660095490565b9050601554600014611efa5760405162461bcd60e51b815260206004820152601d60248201527f436f6e74726163742069732063757272656e746c79207061757365642e0000006044820152606401610a72565b6012546001148015611f1657506014546001600160a01b031633145b80611f215750601254155b611f6d5760405162461bcd60e51b815260206004820152601a60248201527f4d75737420757365207468652062757920636f6e74726163742e0000000000006044820152606401610a72565b6017548110611fbe5760405162461bcd60e51b815260206004820152601860248201527f4e6f7420656e6f756768206c65667420746f206d696e742e00000000000000006044820152606401610a72565b611fc782611010565b6120095760405162461bcd60e51b815260206004820152601360248201527210d85b89dd081b5a5b9d081d1a185d08139195606a1b6044820152606401610a72565b6120133283611db2565b610e5b600d80546001019055565b61202c848484611b10565b61203884848484612204565b6114bf5760405162461bcd60e51b8152600401610a7290612c45565b6060600e805461097a90612ddc565b6060816120875750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120b1578061209b81612e17565b91506120aa9050600a83612d66565b915061208b565b60008167ffffffffffffffff8111156120cc576120cc612e9e565b6040519080825280601f01601f1916602001820160405280156120f6576020820181803683370190505b5090505b841561190e5761210b600183612d99565b9150612118600a86612e32565b612123906030612d4e565b60f81b81838151811061213857612138612e88565b60200101906001600160f81b031916908160001a90535061215a600a86612d66565b94506120fa565b60006001600160e01b031982166380ac58cd60e01b148061219257506001600160e01b03198216635b5e139f60e01b145b8061096557506301ffc9a760e01b6001600160e01b0319831614610965565b6121bc838383612311565b60009081526011602052604090204290555050565b6121db83836123c9565b6121e86000848484612204565b610ba85760405162461bcd60e51b8152600401610a7290612c45565b60006001600160a01b0384163b1561230657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612248903390899088908890600401612b70565b602060405180830381600087803b15801561226257600080fd5b505af1925050508015612292575060408051601f3d908101601f1916820190925261228f918101906129e4565b60015b6122ec573d8080156122c0576040519150601f19603f3d011682016040523d82523d6000602084013e6122c5565b606091505b5080516122e45760405162461bcd60e51b8152600401610a7290612c45565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061190e565b506001949350505050565b6001600160a01b03831661236c5761236781600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b61238f565b816001600160a01b0316836001600160a01b03161461238f5761238f8382612517565b6001600160a01b0382166123a657610ba8816125b4565b826001600160a01b0316826001600160a01b031614610ba857610ba88282612663565b6001600160a01b03821661241f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a72565b6000818152600360205260409020546001600160a01b0316156124845760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a72565b612490600083836121b1565b6001600160a01b03821660009081526004602052604081208054600192906124b9908490612d4e565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612524846110bc565b61252e9190612d99565b600083815260086020526040902054909150808214612581576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906125c690600190612d99565b6000838152600a6020526040812054600980549394509092849081106125ee576125ee612e88565b90600052602060002001549050806009838154811061260f5761260f612e88565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061264757612647612e72565b6001900381819060005260206000200160009055905550505050565b600061266e836110bc565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b8280546126b390612ddc565b90600052602060002090601f0160209004810192826126d5576000855561271b565b82601f106126ee57805160ff191683800117855561271b565b8280016001018555821561271b579182015b8281111561271b578251825591602001919060010190612700565b5061272792915061272b565b5090565b5b80821115612727576000815560010161272c565b600067ffffffffffffffff83111561275a5761275a612e9e565b61276d601f8401601f1916602001612d1d565b905082815283838301111561278157600080fd5b828260208301376000602084830101529392505050565b6000602082840312156127aa57600080fd5b813561161181612eb4565b600080604083850312156127c857600080fd5b82356127d381612eb4565b915060208301356127e381612eb4565b809150509250929050565b60008060006060848603121561280357600080fd5b833561280e81612eb4565b9250602084013561281e81612eb4565b929592945050506040919091013590565b6000806000806080858703121561284557600080fd5b843561285081612eb4565b9350602085013561286081612eb4565b925060408501359150606085013567ffffffffffffffff81111561288357600080fd5b8501601f8101871361289457600080fd5b6128a387823560208401612740565b91505092959194509250565b600080604083850312156128c257600080fd5b82356128cd81612eb4565b9150602083013580151581146127e357600080fd5b600080604083850312156128f557600080fd5b823561290081612eb4565b946020939093013593505050565b6000602080838503121561292157600080fd5b823567ffffffffffffffff8082111561293957600080fd5b818501915085601f83011261294d57600080fd5b81358181111561295f5761295f612e9e565b8060051b9150612970848301612d1d565b8181528481019084860184860187018a101561298b57600080fd5b600095505b838610156129ba57803594506129a585612eb4565b84835260019590950194918601918601612990565b5098975050505050505050565b6000602082840312156129d957600080fd5b813561161181612ec9565b6000602082840312156129f657600080fd5b815161161181612ec9565b600060208284031215612a1357600080fd5b815161161181612eb4565b600060208284031215612a3057600080fd5b813567ffffffffffffffff811115612a4757600080fd5b8201601f81018413612a5857600080fd5b61190e84823560208401612740565b600060208284031215612a7957600080fd5b5035919050565b60008151808452612a98816020860160208601612db0565b601f01601f19169290920160200192915050565b600084516020612abf8285838a01612db0565b855191840191612ad28184848a01612db0565b8554920191600090600181811c9080831680612aef57607f831692505b858310811415612b0d57634e487b7160e01b85526022600452602485fd5b808015612b215760018114612b3257612b5f565b60ff19851688528388019550612b5f565b60008b81526020902060005b85811015612b575781548a820152908401908801612b3e565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ba390830184612a80565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612bee5783516001600160a01b031683529284019291840191600101612bc9565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612bee57835183529284019291840191600101612c16565b6020815260006116116020830184612a80565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612d4657612d46612e9e565b604052919050565b60008219821115612d6157612d61612e46565b500190565b600082612d7557612d75612e5c565b500490565b6000816000190483118215151615612d9457612d94612e46565b500290565b600082821015612dab57612dab612e46565b500390565b60005b83811015612dcb578181015183820152602001612db3565b838111156114bf5750506000910152565b600181811c90821680612df057607f821691505b60208210811415612e1157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e2b57612e2b612e46565b5060010190565b600082612e4157612e41612e5c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ef157600080fd5b6001600160e01b031981168114610ef157600080fdfea2646970667358221220e6dae18dfb5b8662955ba2d9999aea90c91ccd8defa7e29a95266e7725515edd64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000002580000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c10000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001b4b756d697465202d2047656e6573697320436f6c6c656374696f6e000000000000000000000000000000000000000000000000000000000000000000000000064b756d69746500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5535764c4771633538593562554846457131484e68594b39627634366759784d384e415270576643626b53610000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Kumite - Genesis Collection
Arg [1] : _symbol (string): Kumite
Arg [2] : _limit (uint256): 9600
Arg [3] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
Arg [4] : _IPFSURL (string): ipfs://QmU5vLGqc58Y5bUHFEq1HNhYK9bv46gYxM8NARpWfCbkSa

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002580
Arg [3] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 000000000000000000000000000000000000000000000000000000000000001b
Arg [6] : 4b756d697465202d2047656e6573697320436f6c6c656374696f6e0000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [8] : 4b756d6974650000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [10] : 697066733a2f2f516d5535764c4771633538593562554846457131484e68594b
Arg [11] : 39627634366759784d384e415270576643626b53610000000000000000000000


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.